/external/v8/src/ |
D | execution.cc | 130 if (isolate->pending_exception() == Failure::OutOfMemoryException()) { in Invoke() 148 bool* pending_exception, in Call() argument 150 *pending_exception = false; in Call() 153 callable = TryGetFunctionDelegate(callable, pending_exception); in Call() 154 if (*pending_exception) return callable; in Call() 168 receiver = ToObject(receiver, pending_exception); in Call() 170 if (*pending_exception) return callable; in Call() 173 return Invoke(false, func, receiver, argc, argv, pending_exception); in Call() 180 bool* pending_exception) { in New() argument 182 pending_exception); in New() [all …]
|
D | execution.h | 69 bool* pending_exception, 82 bool* pending_exception);
|
D | isolate.cc | 948 thread_local_top()->scheduled_exception_ = pending_exception(); in ScheduleThrow() 1161 if (!is_catchable_by_javascript(pending_exception())) { in IsExternallyCaught() 1242 pending_exception() == heap_.termination_exception(); in OptionalRescheduleException() 1275 thread_local_top()->scheduled_exception_ = pending_exception(); in OptionalRescheduleException() 1293 MaybeObject* e = pending_exception(); in is_out_of_memory() 1699 ASSERT(!pending_exception()->IsFailure()); in PropagatePendingExceptionToExternalTryCatch() 1701 try_catch_handler()->exception_ = pending_exception(); in PropagatePendingExceptionToExternalTryCatch()
|
D | builtins.cc | 474 bool pending_exception; in CallJsBuiltin() local 479 &pending_exception); in CallJsBuiltin() 480 if (pending_exception) return Failure::Exception(); in CallJsBuiltin() 1074 bool pending_exception = false; in HandleApiCallHelper() local 1076 desc, Handle<JSObject>::cast(args.receiver()), &pending_exception); in HandleApiCallHelper() 1077 ASSERT(isolate->has_pending_exception() == pending_exception); in HandleApiCallHelper() 1078 if (pending_exception) return Failure::Exception(); in HandleApiCallHelper()
|
D | isolate.h | 141 C(PendingException, pending_exception) \ 535 MaybeObject* pending_exception() { in pending_exception() function 651 pending_exception_(isolate_->pending_exception()->ToObjectUnchecked()), in ExceptionScope()
|
D | factory.cc | 1404 bool* pending_exception) { in ConfigureInstance() argument 1411 pending_exception); in ConfigureInstance() 1413 *pending_exception = false; in ConfigureInstance()
|
D | factory.h | 405 bool* pending_exception);
|
D | debug.h | 773 bool* pending_exception);
|
D | bootstrapper.cc | 2143 bool pending_exception = false; in ConfigureApiObject() local 2145 Execution::InstantiateObject(object_template, &pending_exception); in ConfigureApiObject() 2146 if (pending_exception) { in ConfigureApiObject()
|
D | debug.cc | 3120 bool* pending_exception) { in Call() argument 3143 pending_exception); in Call()
|
D | runtime.cc | 10063 maybe_value = heap->isolate()->pending_exception(); in DebugLookupResultValue() 12572 bool pending_exception; in RUNTIME_FUNCTION() local 12576 &pending_exception); in RUNTIME_FUNCTION() 12580 &pending_exception); in RUNTIME_FUNCTION() 12583 if (!pending_exception) { in RUNTIME_FUNCTION() 13061 bool pending_exception; in RUNTIME_FUNCTION() local 13066 &pending_exception); in RUNTIME_FUNCTION() 13067 if (pending_exception) return Failure::Exception(); in RUNTIME_FUNCTION()
|
/external/qemu/target-arm/ |
D | cpu.h | 166 int pending_exception; member
|
/external/v8/test/cctest/ |
D | test-compiler.cc | 275 CHECK_EQ(42.0, Isolate::Current()->pending_exception()-> in TEST()
|
D | test-parsing.cc | 1074 i::MaybeObject* maybe_object = i::Isolate::Current()->pending_exception(); in TestParserSync()
|
/external/v8/src/ia32/ |
D | code-stubs-ia32.cc | 3905 ExternalReference pending_exception(Isolate::kPendingExceptionAddress, in Generate() 3908 __ mov(eax, Operand::StaticVariable(pending_exception)); in Generate() 3914 __ mov(Operand::StaticVariable(pending_exception), edx); in Generate() 4967 ExternalReference pending_exception(Isolate::kPendingExceptionAddress, in Generate() local 4970 __ mov(Operand::StaticVariable(pending_exception), eax); in Generate() 5022 ExternalReference pending_exception(Isolate::kPendingExceptionAddress, in GenerateBody() local 5024 __ mov(Operand::StaticVariable(pending_exception), eax); in GenerateBody() 5035 __ mov(Operand::StaticVariable(pending_exception), edx); in GenerateBody()
|
/external/v8/src/x64/ |
D | code-stubs-x64.cc | 3999 ExternalReference pending_exception(Isolate::kPendingExceptionAddress, in Generate() local 4002 __ Store(pending_exception, rax); in Generate() 4081 ExternalReference pending_exception(Isolate::kPendingExceptionAddress, in GenerateBody() local 4083 __ Store(pending_exception, rax); in GenerateBody() 4094 __ Store(pending_exception, rax); in GenerateBody()
|