/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()
|
D | test-parsing.cc | 1073 CHECK(i::Isolate::Current()->has_pending_exception()); in TestParserSync()
|
D | test-regexp.cc | 1261 CHECK(isolate->has_pending_exception()); in TEST()
|
D | test-api.cc | 7874 ASSERT(!i::Isolate::Current()->has_pending_exception()); in THREADED_TEST() 10182 CHECK(!i::Isolate::Current()->has_pending_exception()); in ThrowingCallbackWithTryCatch()
|
/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()
|
D | jsregexp.cc | 69 bool* has_pending_exception) { in CreateRegExpLiteral() argument 73 has_pending_exception); in CreateRegExpLiteral() 179 regexp->GetIsolate()->has_pending_exception()); in Exec() 480 isolate->has_pending_exception()); in IrregexpExecOnce() 519 ASSERT(!isolate->has_pending_exception()); in IrregexpExecOnce() 547 ASSERT(isolate->has_pending_exception()); in IrregexpExec() 573 ASSERT(isolate->has_pending_exception()); in IrregexpExec()
|
D | full-codegen.cc | 309 ASSERT(!isolate->has_pending_exception()); in MakeCode()
|
D | jsregexp.h | 60 bool* has_pending_exception);
|
D | builtins.cc | 1077 ASSERT(isolate->has_pending_exception() == pending_exception); in HandleApiCallHelper()
|
D | parser.cc | 6015 ASSERT(info->isolate()->has_pending_exception()); in Parse()
|
D | hydrogen.cc | 5262 if (target_info.isolate()->has_pending_exception()) { in TryInline()
|