Home
last modified time | relevance | path

Searched refs:has_pending_exception (Results 1 – 25 of 39) sorted by relevance

12

/external/v8/src/
Disolate-inl.h27 DCHECK(has_pending_exception()); in pending_exception()
45 bool Isolate::has_pending_exception() { in has_pending_exception() function
Dapi.cc98 bool has_pending_exception = false
146 if (has_pending_exception) { \
1937 has_pending_exception = !ToLocal<Value>( in Run()
1981 has_pending_exception = in Instantiate()
2000 has_pending_exception = !ToLocal(i::Module::Evaluate(self), &result); in Evaluate()
2053 has_pending_exception = result.is_null(); in CompileUnboundInternal()
2054 if (has_pending_exception && script_data != NULL) { in CompileUnboundInternal()
2182 has_pending_exception = in CompileFunctionInContext()
2188 has_pending_exception = in CompileFunctionInContext()
2195 has_pending_exception = !factory->NewConsString(source_string, brackets) in CompileFunctionInContext()
[all …]
Dexecution.cc90 DCHECK(has_exception == isolate->has_pending_exception()); in Invoke()
151 DCHECK(has_exception == isolate->has_pending_exception()); in Invoke()
218 DCHECK(isolate->has_pending_exception()); in TryCall()
231 DCHECK(!isolate->has_pending_exception()); in TryCall()
Dcompiler.cc445 if (!isolate->has_pending_exception()) isolate->StackOverflow(); in CompileUnoptimizedCode()
558 DCHECK(!isolate->has_pending_exception()); in GetOptimizedCodeNow()
650 DCHECK(!isolate->has_pending_exception()); in GetOptimizedCode()
683 if (isolate->has_pending_exception()) isolate->clear_pending_exception(); in GetOptimizedCode()
724 if (isolate->has_pending_exception()) isolate->clear_pending_exception(); in GetOptimizedCode()
837 if (!isolate->has_pending_exception()) isolate->StackOverflow(); in GetBaselineCode()
855 DCHECK(!isolate->has_pending_exception()); in GetLazyCode()
1064 DCHECK(!isolate->has_pending_exception()); in Compile()
1088 DCHECK(!isolate->has_pending_exception()); in CompileBaseline()
1104 DCHECK(!isolate->has_pending_exception()); in CompileOptimized()
[all …]
Dmessages.cc87 if (isolate->has_pending_exception()) { in ReportMessage()
832 DCHECK(isolate->has_pending_exception()); in AppendErrorString()
840 DCHECK(isolate->has_pending_exception()); in AppendErrorString()
933 DCHECK(isolate->has_pending_exception()); in FormatStackTrace()
1164 DCHECK(isolate->has_pending_exception()); in FormatMessage()
Disolate.h127 DCHECK(__isolate__->has_pending_exception()); \
136 DCHECK((isolate)->has_pending_exception()); \
166 DCHECK((isolate)->has_pending_exception()); \
588 inline bool has_pending_exception();
Dv8threads.cc305 DCHECK(!isolate_->has_pending_exception()); in FreeThreadResources()
Disolate.cc974 if (has_pending_exception() && in CancelTerminateExecution()
1069 DCHECK(!has_pending_exception()); in Throw()
1176 DCHECK(!has_pending_exception()); in Throw()
1435 if (has_pending_exception()) { in Throw()
1708 DCHECK(has_pending_exception()); in Throw()
1726 DCHECK(has_pending_exception()); in Throw()
Dcontexts.cc290 DCHECK(!isolate->has_pending_exception()); in Lookup()
Dvalue-serializer.cc1033 if (result.is_null() && !isolate_->has_pending_exception()) { in ReadObject()
1800 DCHECK(isolate_->has_pending_exception()); in ReadObjectUsingEntireBufferForLegacyFormat()
1831 DCHECK(isolate_->has_pending_exception()); in ReadObjectUsingEntireBufferForLegacyFormat()
Dapi-natives.cc23 bool has_exception = isolate_->has_pending_exception(); in ~InvokeScope()
Djson-parser.cc127 if (isolate_->has_pending_exception()) return Handle<Object>::null(); in ParseJson()
Dkeys.cc404 if (isolate_->has_pending_exception()) return MaybeHandle<FixedArray>(); in GetKeys()
/external/v8/src/runtime/
Druntime-scopes.cc177 if (isolate->has_pending_exception()) return result; in DeclareGlobals()
262 DCHECK(!isolate->has_pending_exception()); in DeclareEvalHelper()
668 if (isolate->has_pending_exception()) return name_clash_result; in RUNTIME_FUNCTION()
770 if (isolate->has_pending_exception()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
802 if (isolate->has_pending_exception()) return MaybeHandle<Object>(); in LoadLookupSlot()
900 if (isolate->has_pending_exception()) return MaybeHandle<Object>(); in StoreLookupSlot()
Druntime-object.cc164 DCHECK(!isolate->has_pending_exception()); in RUNTIME_FUNCTION()
183 DCHECK(!isolate->has_pending_exception()); in RUNTIME_FUNCTION()
699 DCHECK(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
Druntime-strings.cc77 if (isolate->has_pending_exception()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
84 if (isolate->has_pending_exception()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
Druntime-debug.cc1304 DCHECK(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
1505 DCHECK(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
1522 DCHECK(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
/external/v8/src/wasm/
Dwasm-result.cc82 if (error() && !isolate_->has_pending_exception()) { in ~ErrorThrower()
/external/v8/src/compiler-dispatcher/
Dcompiler-dispatcher-job.cc185 if (!isolate_->has_pending_exception()) isolate_->StackOverflow(); in PrepareToCompileOnMainThread()
224 if (!isolate_->has_pending_exception()) isolate_->StackOverflow(); in FinalizeCompilingOnMainThread()
/external/v8/src/compiler/
Djs-inlining.cc498 if (info_->isolate()->has_pending_exception()) { in ReduceJSCall()
509 if (info_->isolate()->has_pending_exception()) { in ReduceJSCall()
/external/v8/src/regexp/
Dregexp-macro-assembler.cc283 if (result == EXCEPTION && !isolate->has_pending_exception()) { in Execute()
/external/v8/src/debug/
Ddebug-evaluate.cc77 if (isolate->has_pending_exception()) return MaybeHandle<Object>(); in Local()
Ddebug-scopes.cc129 DCHECK(isolate_->has_pending_exception()); in ScopeIterator()
/external/v8/src/asmjs/
Dasm-js.cc159 DCHECK(!info->isolate()->has_pending_exception()); in ConvertAsmToWasm()
/external/v8/src/builtins/
Dbuiltins-string.cc732 DCHECK(isolate->has_pending_exception()); in BUILTIN()
782 DCHECK(isolate->has_pending_exception()); in BUILTIN()
1152 DCHECK(isolate->has_pending_exception()); in BUILTIN()

12