/external/v8/test/cctest/ |
D | test-compiler.cc | 140 bool has_pending_exception; in Inc() local 142 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in Inc() 143 CHECK(!has_pending_exception); in Inc() 161 bool has_pending_exception; in Add() local 163 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in Add() 164 CHECK(!has_pending_exception); in Add() 181 bool has_pending_exception; in Abs() local 183 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in Abs() 184 CHECK(!has_pending_exception); in Abs() 202 bool has_pending_exception; in Sum() local [all …]
|
D | test-random.cc | 54 bool has_pending_exception; in TestSeeds() local 60 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TestSeeds() 82 bool has_pending_exception; in TEST() local 92 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TEST() 93 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TEST() 104 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TEST()
|
/external/chromium_org/v8/test/cctest/ |
D | test-compiler.cc | 130 bool has_pending_exception; in Inc() local 132 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception); in Inc() 133 CHECK(!has_pending_exception); in Inc() 151 bool has_pending_exception; in Add() local 153 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception); in Add() 154 CHECK(!has_pending_exception); in Add() 171 bool has_pending_exception; in Abs() local 173 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception); in Abs() 174 CHECK(!has_pending_exception); in Abs() 192 bool has_pending_exception; in Sum() local [all …]
|
/external/chromium_org/v8/src/ |
D | execution.cc | 75 bool* has_pending_exception) { in Invoke() argument 127 *has_pending_exception = value->IsException(); in Invoke() 128 ASSERT(*has_pending_exception == isolate->has_pending_exception()); in Invoke() 129 if (*has_pending_exception) { in Invoke() 218 ASSERT(isolate->has_pending_exception()); in TryCall() 232 ASSERT(!isolate->has_pending_exception()); in TryCall() 267 bool* has_pending_exception) { in TryGetFunctionDelegate() argument 290 *has_pending_exception = true; in TryGetFunctionDelegate() 325 bool* has_pending_exception) { in TryGetConstructorDelegate() argument 351 *has_pending_exception = true; in TryGetConstructorDelegate() [all …]
|
D | execution.h | 165 bool* has_pending_exception); 173 bool* has_pending_exception);
|
D | api.cc | 89 bool has_pending_exception = false 97 if (has_pending_exception) { \ 1826 has_pending_exception = result.is_null(); in New() 1900 isolate, fun, receiver, 0, NULL, &has_pending_exception); in Run() 2191 bool* has_pending_exception) { in CallV8HeapFunction() argument 2200 isolate, fun, recv, argc, argv, has_pending_exception); in CallV8HeapFunction() 2207 bool* has_pending_exception) { in CallV8HeapFunction() argument 2213 has_pending_exception); in CallV8HeapFunction() 2226 &has_pending_exception); in GetLineNumber() 2261 &has_pending_exception); in GetStartColumn() [all …]
|
D | isolate.cc | 914 if (has_pending_exception() && in CancelTerminateExecution() 958 if (has_pending_exception()) { in ScheduleThrow() 1088 ASSERT(!has_pending_exception()); in DoThrow() 1227 ASSERT(has_pending_exception()); in IsExternallyCaught() 1269 ASSERT(has_pending_exception()); in ReportPendingMessages() 1308 ASSERT(has_pending_exception()); in GetMessageLocation() 1327 ASSERT(has_pending_exception()); in OptionalRescheduleException() 1383 if (has_pending_exception()) { in is_out_of_memory() 1838 ASSERT(has_pending_exception()); in PropagatePendingExceptionToExternalTryCatch()
|
D | isolate.h | 138 ASSERT((isolate)->has_pending_exception()); \ 145 ASSERT(!(isolate)->has_pending_exception()); \ 147 CHECK(!(isolate)->has_pending_exception()); \ 554 ASSERT(has_pending_exception()); in pending_exception() 572 bool has_pending_exception() { in has_pending_exception() function
|
D | runtime.cc | 2151 ASSERT(!isolate->has_pending_exception()); in RUNTIME_FUNCTION() 2741 bool has_pending_exception; in RUNTIME_FUNCTION() local 2744 &has_pending_exception); in RUNTIME_FUNCTION() 2745 if (has_pending_exception) { in RUNTIME_FUNCTION() 2746 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION() 4859 bool has_pending_exception = false; in ToName() local 4861 Execution::ToString(isolate, key, &has_pending_exception); in ToName() 4862 if (has_pending_exception) return Handle<Name>(); in ToName() 5202 bool has_pending_exception = false; in SetObjectProperty() local 5204 ? key : Execution::ToString(isolate, key, &has_pending_exception); in SetObjectProperty() [all …]
|
D | compiler.cc | 477 if (isolate()->has_pending_exception()) { in CreateGraph() 693 if (!isolate->has_pending_exception()) isolate->StackOverflow(); in MakeFunctionInfo() 1032 if (!isolate->has_pending_exception()) { in CompileLazy() 1122 ASSERT(!isolate->has_pending_exception()); in RecompileConcurrent() 1132 if (isolate->has_pending_exception()) isolate->clear_pending_exception(); in RecompileConcurrent()
|
D | regexp-macro-assembler.cc | 183 if (result == EXCEPTION && !isolate->has_pending_exception()) { in Execute()
|
D | messages.cc | 115 if (isolate->has_pending_exception()) { in ReportMessage()
|
D | contexts.cc | 138 if (isolate->has_pending_exception()) return Handle<Object>(); in Lookup()
|
D | bootstrapper.cc | 1475 ASSERT(isolate->has_pending_exception() != result); in CompileNative() 1533 bool has_pending_exception; in CompileScriptCached() local 1534 Execution::Call(isolate, fun, receiver, 0, NULL, &has_pending_exception); in CompileScriptCached() 1535 if (has_pending_exception) return false; in CompileScriptCached() 2326 ASSERT(isolate->has_pending_exception() != result); in InstallExtension() 2403 ASSERT(isolate()->has_pending_exception()); in ConfigureApiObject()
|
/external/v8/src/ |
D | execution.cc | 74 bool* has_pending_exception) { in Invoke() argument 126 *has_pending_exception = value->IsException(); in Invoke() 127 ASSERT(*has_pending_exception == Isolate::Current()->has_pending_exception()); in Invoke() 128 if (*has_pending_exception) { in Invoke() 206 ASSERT(isolate->has_pending_exception()); in TryCall() 217 ASSERT(!Isolate::Current()->has_pending_exception()); in TryCall() 251 bool* has_pending_exception) { in TryGetFunctionDelegate() argument 275 *has_pending_exception = true; in TryGetFunctionDelegate() 309 bool* has_pending_exception) { in TryGetConstructorDelegate() argument 336 *has_pending_exception = true; in TryGetConstructorDelegate() [all …]
|
D | execution.h | 155 bool* has_pending_exception); 161 bool* has_pending_exception);
|
D | api.cc | 83 bool has_pending_exception = false 91 if (has_pending_exception) { \ 1521 has_pending_exception = result.is_null(); in New() 1589 i::Execution::Call(fun, receiver, 0, NULL, &has_pending_exception); in Run() 1817 bool* has_pending_exception) { in CallV8HeapFunction() argument 1825 i::Execution::Call(fun, recv, argc, argv, has_pending_exception); in CallV8HeapFunction() 1832 bool* has_pending_exception) { in CallV8HeapFunction() argument 1838 has_pending_exception); in CallV8HeapFunction() 1851 &has_pending_exception); in GetLineNumber() 1891 &has_pending_exception); in GetStartColumn() [all …]
|
D | isolate.h | 122 ASSERT((isolate)->has_pending_exception()); \ 129 ASSERT(!(isolate)->has_pending_exception()); \ 131 CHECK(!(isolate)->has_pending_exception()); \ 536 ASSERT(has_pending_exception()); in pending_exception() 554 bool has_pending_exception() { in has_pending_exception() function
|
D | isolate.cc | 1058 ASSERT(!has_pending_exception()); in DoThrow() 1152 ASSERT(has_pending_exception()); in IsExternallyCaught() 1194 ASSERT(has_pending_exception()); in ReportPendingMessages() 1236 ASSERT(has_pending_exception()); in OptionalRescheduleException() 1292 if (has_pending_exception()) { in is_out_of_memory() 1683 ASSERT(has_pending_exception()); in PropagatePendingExceptionToExternalTryCatch()
|
D | compiler.cc | 301 if (info->isolate()->has_pending_exception()) { in MakeCrankshaftCode() 412 if (!isolate->has_pending_exception()) isolate->StackOverflow(); in MakeFunctionInfo() 631 if (!isolate->has_pending_exception()) { in CompileLazy()
|
D | regexp-macro-assembler.cc | 183 if (result == EXCEPTION && !isolate->has_pending_exception()) { in Execute()
|
D | runtime.cc | 1379 ASSERT(!isolate->has_pending_exception()); in RUNTIME_FUNCTION() 1944 bool has_pending_exception; in RUNTIME_FUNCTION() local 1947 &has_pending_exception); in RUNTIME_FUNCTION() 1948 if (has_pending_exception) { in RUNTIME_FUNCTION() 1949 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION() 4207 bool has_pending_exception = false; in GetObjectProperty() local 4209 Execution::ToString(key, &has_pending_exception); in GetObjectProperty() 4210 if (has_pending_exception) return Failure::Exception(); in GetObjectProperty() 4448 bool has_pending_exception = false; in SetObjectProperty() local 4449 Handle<Object> name = Execution::ToString(key, &has_pending_exception); in SetObjectProperty() [all …]
|
D | bootstrapper.cc | 1316 ASSERT(isolate->has_pending_exception() != result); in CompileNative() 1370 bool has_pending_exception; in CompileScriptCached() local 1371 Execution::Call(fun, receiver, 0, NULL, &has_pending_exception); in CompileScriptCached() 1372 if (has_pending_exception) return false; in CompileScriptCached() 2071 ASSERT(isolate->has_pending_exception() != result); in InstallExtension() 2147 ASSERT(isolate()->has_pending_exception()); in ConfigureApiObject()
|
D | objects.cc | 233 if (isolate->has_pending_exception()) return Failure::Exception(); in GetPropertyWithHandler() 289 bool has_pending_exception; in GetPropertyWithDefinedGetter() local 291 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true); in GetPropertyWithDefinedGetter() 293 if (has_pending_exception) return Failure::Exception(); in GetPropertyWithDefinedGetter() 2041 bool has_pending_exception; in SetPropertyWithDefinedSetter() local 2043 Execution::Call(fun, self, ARRAY_SIZE(argv), argv, &has_pending_exception); in SetPropertyWithDefinedSetter() 2045 if (has_pending_exception) return Failure::Exception(); in SetPropertyWithDefinedSetter() 2628 if (isolate->has_pending_exception()) return Failure::Exception(); in HasPropertyWithHandler() 2647 if (isolate->has_pending_exception()) return Failure::Exception(); in SetPropertyWithHandler() 2668 if (isolate->has_pending_exception()) return Failure::Exception(); in SetPropertyWithHandlerIfDefiningSetter() [all …]
|
D | debug.cc | 759 ASSERT(isolate->has_pending_exception()); in CompileDebuggerScript() 776 ASSERT(!isolate->has_pending_exception()); in CompileDebuggerScript() 782 ASSERT(!isolate->has_pending_exception()); in CompileDebuggerScript() 1770 ASSERT(!info.isolate()->has_pending_exception()); in CompileFullCodeForDebugging() 1775 ASSERT(result != Isolate::Current()->has_pending_exception()); in CompileFullCodeForDebugging() 3257 if (!isolate_->has_pending_exception()) { in ~EnterDebugger()
|