/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-regexp.cc | 1252 CHECK(isolate->has_pending_exception()); in TEST()
|
D | test-api.cc | 6707 ASSERT(!i::Isolate::Current()->has_pending_exception()); in THREADED_TEST() 8668 CHECK(!i::Isolate::Current()->has_pending_exception()); in ThrowingCallbackWithTryCatch()
|
/external/v8/src/ |
D | execution.cc | 73 bool* has_pending_exception) { in Invoke() argument 130 *has_pending_exception = value->IsException(); in Invoke() 131 ASSERT(*has_pending_exception == Isolate::Current()->has_pending_exception()); in Invoke() 132 if (*has_pending_exception) { in Invoke() 183 ASSERT(isolate->has_pending_exception()); in TryCall() 194 ASSERT(!Isolate::Current()->has_pending_exception()); in TryCall() 471 #define RETURN_NATIVE_CALL(name, argc, argv, has_pending_exception) \ argument 475 ASSERT(has_pending_exception != NULL); \ 478 has_pending_exception); \
|
D | api.cc | 81 bool has_pending_exception = false 89 if (has_pending_exception) { \ 1356 has_pending_exception = result.is_null(); in New() 1421 i::Execution::Call(fun, receiver, 0, NULL, &has_pending_exception); in Run() 1643 bool* has_pending_exception) { in CallV8HeapFunction() argument 1651 i::Execution::Call(fun, recv, argc, argv, has_pending_exception); in CallV8HeapFunction() 1658 bool* has_pending_exception) { in CallV8HeapFunction() argument 1664 has_pending_exception); in CallV8HeapFunction() 1677 &has_pending_exception); in GetLineNumber() 1717 &has_pending_exception); in GetStartColumn() [all …]
|
D | top.cc | 686 ASSERT(!has_pending_exception()); in DoThrow() 770 ASSERT(has_pending_exception()); in IsExternallyCaught() 812 ASSERT(has_pending_exception()); in ReportPendingMessages() 854 ASSERT(has_pending_exception()); in OptionalRescheduleException() 910 if (has_pending_exception()) { in is_out_of_memory()
|
D | handles.cc | 335 ASSERT(!isolate->has_pending_exception()); in SetLocalPropertyNoThrow() 338 CHECK(!isolate->has_pending_exception()); in SetLocalPropertyNoThrow() 922 ASSERT(!info->isolate()->has_pending_exception()); in CompileLazyHelper() 924 ASSERT(result != Isolate::Current()->has_pending_exception()); in CompileLazyHelper()
|
D | regexp-macro-assembler.cc | 179 if (result == EXCEPTION && !isolate->has_pending_exception()) { in Execute()
|
D | isolate.h | 117 ASSERT(isolate->has_pending_exception()); \ 551 ASSERT(has_pending_exception()); in pending_exception() 569 bool has_pending_exception() { in has_pending_exception() function
|
D | bootstrapper.cc | 1187 ASSERT(isolate->has_pending_exception() != result); in CompileNative() 1241 bool has_pending_exception; in CompileScriptCached() local 1243 Execution::Call(fun, receiver, 0, NULL, &has_pending_exception); in CompileScriptCached() 1244 if (has_pending_exception) return false; in CompileScriptCached() 1859 ASSERT(isolate->has_pending_exception() != result); in InstallExtension() 1926 ASSERT(isolate->has_pending_exception()); in ConfigureApiObject()
|
D | runtime.cc | 1203 ASSERT(!isolate->has_pending_exception()); in RUNTIME_FUNCTION() 1811 bool has_pending_exception; in RUNTIME_FUNCTION() local 1814 &has_pending_exception); in RUNTIME_FUNCTION() 1815 if (has_pending_exception) { in RUNTIME_FUNCTION() 1816 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION() 3701 bool has_pending_exception = false; in GetObjectProperty() local 3703 Execution::ToString(key, &has_pending_exception); in GetObjectProperty() 3704 if (has_pending_exception) return Failure::Exception(); in GetObjectProperty() 3978 bool has_pending_exception = false; in SetObjectProperty() local 3979 Handle<Object> converted = Execution::ToString(key, &has_pending_exception); in SetObjectProperty() [all …]
|
D | compiler.cc | 301 if (info->isolate()->has_pending_exception()) { in MakeCrankshaftCode() 616 if (!isolate->has_pending_exception()) { in CompileLazy()
|
D | isolate.cc | 654 ASSERT(has_pending_exception()); in PropagatePendingExceptionToExternalTryCatch()
|
D | jsregexp.cc | 69 bool* has_pending_exception) { in CreateRegExpLiteral() argument 73 return Execution::New(constructor, 2, argv, has_pending_exception); in CreateRegExpLiteral() 178 ASSERT(!result.is_null() || Isolate::Current()->has_pending_exception()); in Exec() 473 isolate->has_pending_exception()); in IrregexpExecOnce() 537 ASSERT(Isolate::Current()->has_pending_exception()); in IrregexpExec() 563 ASSERT(Isolate::Current()->has_pending_exception()); in IrregexpExec()
|
D | debug.h | 910 if (!isolate_->has_pending_exception()) { in ~EnterDebugger()
|
D | full-codegen.cc | 294 ASSERT(!isolate->has_pending_exception()); in MakeCode()
|
D | jsregexp.h | 57 bool* has_pending_exception);
|
D | objects.cc | 243 bool has_pending_exception; in GetPropertyWithDefinedGetter() local 245 Execution::Call(fun, self, 0, NULL, &has_pending_exception); in GetPropertyWithDefinedGetter() 247 if (has_pending_exception) return Failure::Exception(); in GetPropertyWithDefinedGetter() 1799 bool has_pending_exception; in SetPropertyWithDefinedSetter() local 1801 Execution::Call(fun, self, 1, argv, &has_pending_exception); in SetPropertyWithDefinedSetter() 1803 if (has_pending_exception) return Failure::Exception(); in SetPropertyWithDefinedSetter()
|
D | builtins.cc | 1082 ASSERT(isolate->has_pending_exception() == pending_exception); in HandleApiCallHelper()
|
D | debug.cc | 793 ASSERT(isolate->has_pending_exception()); in CompileDebuggerScript()
|
D | parser.cc | 5164 ASSERT(info->isolate()->has_pending_exception()); in Parse()
|
D | hydrogen.cc | 4072 if (target_info.isolate()->has_pending_exception()) { in TryInline()
|