Searched refs:pending_exception (Results 1 - 18 of 18) sorted by relevance

/external/v8/src/
H A Dexecution.h51 // *pending_exception tells whether the invoke resulted in
58 bool* pending_exception);
64 // *pending_exception tells whether the invoke resulted in
70 bool* pending_exception);
H A Dexecution.cc134 if (isolate->pending_exception() == Failure::OutOfMemoryException()) {
152 bool* pending_exception) {
153 return Invoke(false, func, receiver, argc, args, pending_exception);
158 Object*** args, bool* pending_exception) {
160 pending_exception);
185 if (isolate->pending_exception() ==
148 Call(Handle<JSFunction> func, Handle<Object> receiver, int argc, Object*** args, bool* pending_exception) argument
157 New(Handle<JSFunction> func, int argc, Object*** args, bool* pending_exception) argument
H A Dtop.cc594 thread_local_top()->scheduled_exception_ = pending_exception();
779 if (!is_catchable_by_javascript(pending_exception())) {
860 pending_exception() == heap_.termination_exception();
893 thread_local_top()->scheduled_exception_ = pending_exception();
911 MaybeObject* e = pending_exception();
H A Dbuiltins.cc426 bool pending_exception = false; local
431 &pending_exception);
432 if (pending_exception) return Failure::Exception();
1079 bool pending_exception = false; local
1081 desc, Handle<JSObject>::cast(args.receiver()), &pending_exception);
1082 ASSERT(isolate->has_pending_exception() == pending_exception);
1083 if (pending_exception) return Failure::Exception();
H A Disolate.cc670 ASSERT(!pending_exception()->IsFailure());
672 try_catch_handler()->exception_ = pending_exception();
H A Dfactory.cc1180 bool* pending_exception) {
1187 pending_exception);
1189 *pending_exception = false;
1178 ConfigureInstance(Handle<FunctionTemplateInfo> desc, Handle<JSObject> instance, bool* pending_exception) argument
H A Dfactory.h342 bool* pending_exception);
H A Disolate.h238 // invariants that hold about pending_exception. We may want to
550 MaybeObject* pending_exception() { function in class:v8::internal::Isolate
668 pending_exception_(isolate_->pending_exception()->ToObjectUnchecked()),
H A Dbootstrapper.cc1922 bool pending_exception = false; local
1924 Execution::InstantiateObject(object_template, &pending_exception);
1925 if (pending_exception) {
H A Ddebug.h758 bool* pending_exception);
H A Ddebug.cc2793 bool* pending_exception) {
2818 pending_exception);
2791 Call(Handle<JSFunction> fun, Handle<Object> data, bool* pending_exception) argument
H A Druntime.cc9119 maybe_value = heap->isolate()->pending_exception();
11269 bool pending_exception;
11273 &pending_exception);
11277 &pending_exception);
11280 if (!pending_exception) {
11751 bool pending_exception = false;
11756 &pending_exception);
11757 if (pending_exception) return Failure::Exception();
/external/qemu/target-arm/
H A Dcpu.h166 int pending_exception; member in struct:CPUARMState::__anon8717
/external/v8/test/cctest/
H A Dtest-compiler.cc276 CHECK_EQ(42.0, Isolate::Current()->pending_exception()->
/external/v8/src/ia32/
H A Dcode-stubs-ia32.cc3117 ExternalReference pending_exception(Isolate::k_pending_exception_address,
3122 __ mov(eax, Operand::StaticVariable(pending_exception));
3128 __ mov(Operand::StaticVariable(pending_exception), edx);
4063 ExternalReference pending_exception(Isolate::k_pending_exception_address,
4065 __ mov(Operand::StaticVariable(pending_exception), eax);
4077 __ mov(Operand::StaticVariable(pending_exception), edx);
H A Dmacro-assembler-ia32.cc566 ExternalReference pending_exception(Isolate::k_pending_exception_address,
569 mov(Operand::StaticVariable(pending_exception), eax);
/external/v8/src/x64/
H A Dmacro-assembler-x64.cc1821 ExternalReference pending_exception(Isolate::k_pending_exception_address,
1824 Store(pending_exception, rax);
H A Dcode-stubs-x64.cc3061 ExternalReference pending_exception(Isolate::k_pending_exception_address,
3063 __ Store(pending_exception, rax);
3073 __ Store(pending_exception, rax);

Completed in 429 milliseconds