Home
last modified time | relevance | path

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

/external/v8/test/cctest/
Dtest-compiler.cc140 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 …]
Dtest-regexp.cc1252 CHECK(isolate->has_pending_exception()); in TEST()
Dtest-api.cc6707 ASSERT(!i::Isolate::Current()->has_pending_exception()); in THREADED_TEST()
8668 CHECK(!i::Isolate::Current()->has_pending_exception()); in ThrowingCallbackWithTryCatch()
/external/v8/src/
Dexecution.cc73 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); \
Dapi.cc81 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 …]
Dtop.cc686 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()
Dhandles.cc335 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()
Dregexp-macro-assembler.cc179 if (result == EXCEPTION && !isolate->has_pending_exception()) { in Execute()
Disolate.h117 ASSERT(isolate->has_pending_exception()); \
551 ASSERT(has_pending_exception()); in pending_exception()
569 bool has_pending_exception() { in has_pending_exception() function
Dbootstrapper.cc1187 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()
Druntime.cc1203 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 …]
Dcompiler.cc301 if (info->isolate()->has_pending_exception()) { in MakeCrankshaftCode()
616 if (!isolate->has_pending_exception()) { in CompileLazy()
Disolate.cc654 ASSERT(has_pending_exception()); in PropagatePendingExceptionToExternalTryCatch()
Djsregexp.cc69 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()
Ddebug.h910 if (!isolate_->has_pending_exception()) { in ~EnterDebugger()
Dfull-codegen.cc294 ASSERT(!isolate->has_pending_exception()); in MakeCode()
Djsregexp.h57 bool* has_pending_exception);
Dobjects.cc243 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()
Dbuiltins.cc1082 ASSERT(isolate->has_pending_exception() == pending_exception); in HandleApiCallHelper()
Ddebug.cc793 ASSERT(isolate->has_pending_exception()); in CompileDebuggerScript()
Dparser.cc5164 ASSERT(info->isolate()->has_pending_exception()); in Parse()
Dhydrogen.cc4072 if (target_info.isolate()->has_pending_exception()) { in TryInline()