Home
last modified time | relevance | path

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

12

/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-random.cc54 bool has_pending_exception; in TestSeeds() local
60 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TestSeeds()
82 bool has_pending_exception; in TEST() local
92 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TEST()
93 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TEST()
104 Execution::Call(fun, global, 0, NULL, &has_pending_exception); in TEST()
/external/chromium_org/v8/test/cctest/
Dtest-compiler.cc130 bool has_pending_exception; in Inc() local
132 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception); in Inc()
133 CHECK(!has_pending_exception); in Inc()
151 bool has_pending_exception; in Add() local
153 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception); in Add()
154 CHECK(!has_pending_exception); in Add()
171 bool has_pending_exception; in Abs() local
173 Execution::Call(isolate, fun, global, 0, NULL, &has_pending_exception); in Abs()
174 CHECK(!has_pending_exception); in Abs()
192 bool has_pending_exception; in Sum() local
[all …]
/external/chromium_org/v8/src/
Dexecution.cc75 bool* has_pending_exception) { in Invoke() argument
127 *has_pending_exception = value->IsException(); in Invoke()
128 ASSERT(*has_pending_exception == isolate->has_pending_exception()); in Invoke()
129 if (*has_pending_exception) { in Invoke()
218 ASSERT(isolate->has_pending_exception()); in TryCall()
232 ASSERT(!isolate->has_pending_exception()); in TryCall()
267 bool* has_pending_exception) { in TryGetFunctionDelegate() argument
290 *has_pending_exception = true; in TryGetFunctionDelegate()
325 bool* has_pending_exception) { in TryGetConstructorDelegate() argument
351 *has_pending_exception = true; in TryGetConstructorDelegate()
[all …]
Dexecution.h165 bool* has_pending_exception);
173 bool* has_pending_exception);
Dapi.cc89 bool has_pending_exception = false
97 if (has_pending_exception) { \
1826 has_pending_exception = result.is_null(); in New()
1900 isolate, fun, receiver, 0, NULL, &has_pending_exception); in Run()
2191 bool* has_pending_exception) { in CallV8HeapFunction() argument
2200 isolate, fun, recv, argc, argv, has_pending_exception); in CallV8HeapFunction()
2207 bool* has_pending_exception) { in CallV8HeapFunction() argument
2213 has_pending_exception); in CallV8HeapFunction()
2226 &has_pending_exception); in GetLineNumber()
2261 &has_pending_exception); in GetStartColumn()
[all …]
Disolate.cc914 if (has_pending_exception() && in CancelTerminateExecution()
958 if (has_pending_exception()) { in ScheduleThrow()
1088 ASSERT(!has_pending_exception()); in DoThrow()
1227 ASSERT(has_pending_exception()); in IsExternallyCaught()
1269 ASSERT(has_pending_exception()); in ReportPendingMessages()
1308 ASSERT(has_pending_exception()); in GetMessageLocation()
1327 ASSERT(has_pending_exception()); in OptionalRescheduleException()
1383 if (has_pending_exception()) { in is_out_of_memory()
1838 ASSERT(has_pending_exception()); in PropagatePendingExceptionToExternalTryCatch()
Disolate.h138 ASSERT((isolate)->has_pending_exception()); \
145 ASSERT(!(isolate)->has_pending_exception()); \
147 CHECK(!(isolate)->has_pending_exception()); \
554 ASSERT(has_pending_exception()); in pending_exception()
572 bool has_pending_exception() { in has_pending_exception() function
Druntime.cc2151 ASSERT(!isolate->has_pending_exception()); in RUNTIME_FUNCTION()
2741 bool has_pending_exception; in RUNTIME_FUNCTION() local
2744 &has_pending_exception); in RUNTIME_FUNCTION()
2745 if (has_pending_exception) { in RUNTIME_FUNCTION()
2746 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
4859 bool has_pending_exception = false; in ToName() local
4861 Execution::ToString(isolate, key, &has_pending_exception); in ToName()
4862 if (has_pending_exception) return Handle<Name>(); in ToName()
5202 bool has_pending_exception = false; in SetObjectProperty() local
5204 ? key : Execution::ToString(isolate, key, &has_pending_exception); in SetObjectProperty()
[all …]
Dcompiler.cc477 if (isolate()->has_pending_exception()) { in CreateGraph()
693 if (!isolate->has_pending_exception()) isolate->StackOverflow(); in MakeFunctionInfo()
1032 if (!isolate->has_pending_exception()) { in CompileLazy()
1122 ASSERT(!isolate->has_pending_exception()); in RecompileConcurrent()
1132 if (isolate->has_pending_exception()) isolate->clear_pending_exception(); in RecompileConcurrent()
Dregexp-macro-assembler.cc183 if (result == EXCEPTION && !isolate->has_pending_exception()) { in Execute()
Dmessages.cc115 if (isolate->has_pending_exception()) { in ReportMessage()
Dcontexts.cc138 if (isolate->has_pending_exception()) return Handle<Object>(); in Lookup()
Dbootstrapper.cc1475 ASSERT(isolate->has_pending_exception() != result); in CompileNative()
1533 bool has_pending_exception; in CompileScriptCached() local
1534 Execution::Call(isolate, fun, receiver, 0, NULL, &has_pending_exception); in CompileScriptCached()
1535 if (has_pending_exception) return false; in CompileScriptCached()
2326 ASSERT(isolate->has_pending_exception() != result); in InstallExtension()
2403 ASSERT(isolate()->has_pending_exception()); in ConfigureApiObject()
/external/v8/src/
Dexecution.cc74 bool* has_pending_exception) { in Invoke() argument
126 *has_pending_exception = value->IsException(); in Invoke()
127 ASSERT(*has_pending_exception == Isolate::Current()->has_pending_exception()); in Invoke()
128 if (*has_pending_exception) { in Invoke()
206 ASSERT(isolate->has_pending_exception()); in TryCall()
217 ASSERT(!Isolate::Current()->has_pending_exception()); in TryCall()
251 bool* has_pending_exception) { in TryGetFunctionDelegate() argument
275 *has_pending_exception = true; in TryGetFunctionDelegate()
309 bool* has_pending_exception) { in TryGetConstructorDelegate() argument
336 *has_pending_exception = true; in TryGetConstructorDelegate()
[all …]
Dexecution.h155 bool* has_pending_exception);
161 bool* has_pending_exception);
Dapi.cc83 bool has_pending_exception = false
91 if (has_pending_exception) { \
1521 has_pending_exception = result.is_null(); in New()
1589 i::Execution::Call(fun, receiver, 0, NULL, &has_pending_exception); in Run()
1817 bool* has_pending_exception) { in CallV8HeapFunction() argument
1825 i::Execution::Call(fun, recv, argc, argv, has_pending_exception); in CallV8HeapFunction()
1832 bool* has_pending_exception) { in CallV8HeapFunction() argument
1838 has_pending_exception); in CallV8HeapFunction()
1851 &has_pending_exception); in GetLineNumber()
1891 &has_pending_exception); in GetStartColumn()
[all …]
Disolate.h122 ASSERT((isolate)->has_pending_exception()); \
129 ASSERT(!(isolate)->has_pending_exception()); \
131 CHECK(!(isolate)->has_pending_exception()); \
536 ASSERT(has_pending_exception()); in pending_exception()
554 bool has_pending_exception() { in has_pending_exception() function
Disolate.cc1058 ASSERT(!has_pending_exception()); in DoThrow()
1152 ASSERT(has_pending_exception()); in IsExternallyCaught()
1194 ASSERT(has_pending_exception()); in ReportPendingMessages()
1236 ASSERT(has_pending_exception()); in OptionalRescheduleException()
1292 if (has_pending_exception()) { in is_out_of_memory()
1683 ASSERT(has_pending_exception()); in PropagatePendingExceptionToExternalTryCatch()
Dcompiler.cc301 if (info->isolate()->has_pending_exception()) { in MakeCrankshaftCode()
412 if (!isolate->has_pending_exception()) isolate->StackOverflow(); in MakeFunctionInfo()
631 if (!isolate->has_pending_exception()) { in CompileLazy()
Dregexp-macro-assembler.cc183 if (result == EXCEPTION && !isolate->has_pending_exception()) { in Execute()
Druntime.cc1379 ASSERT(!isolate->has_pending_exception()); in RUNTIME_FUNCTION()
1944 bool has_pending_exception; in RUNTIME_FUNCTION() local
1947 &has_pending_exception); in RUNTIME_FUNCTION()
1948 if (has_pending_exception) { in RUNTIME_FUNCTION()
1949 ASSERT(isolate->has_pending_exception()); in RUNTIME_FUNCTION()
4207 bool has_pending_exception = false; in GetObjectProperty() local
4209 Execution::ToString(key, &has_pending_exception); in GetObjectProperty()
4210 if (has_pending_exception) return Failure::Exception(); in GetObjectProperty()
4448 bool has_pending_exception = false; in SetObjectProperty() local
4449 Handle<Object> name = Execution::ToString(key, &has_pending_exception); in SetObjectProperty()
[all …]
Dbootstrapper.cc1316 ASSERT(isolate->has_pending_exception() != result); in CompileNative()
1370 bool has_pending_exception; in CompileScriptCached() local
1371 Execution::Call(fun, receiver, 0, NULL, &has_pending_exception); in CompileScriptCached()
1372 if (has_pending_exception) return false; in CompileScriptCached()
2071 ASSERT(isolate->has_pending_exception() != result); in InstallExtension()
2147 ASSERT(isolate()->has_pending_exception()); in ConfigureApiObject()
Dobjects.cc233 if (isolate->has_pending_exception()) return Failure::Exception(); in GetPropertyWithHandler()
289 bool has_pending_exception; in GetPropertyWithDefinedGetter() local
291 Execution::Call(fun, self, 0, NULL, &has_pending_exception, true); in GetPropertyWithDefinedGetter()
293 if (has_pending_exception) return Failure::Exception(); in GetPropertyWithDefinedGetter()
2041 bool has_pending_exception; in SetPropertyWithDefinedSetter() local
2043 Execution::Call(fun, self, ARRAY_SIZE(argv), argv, &has_pending_exception); in SetPropertyWithDefinedSetter()
2045 if (has_pending_exception) return Failure::Exception(); in SetPropertyWithDefinedSetter()
2628 if (isolate->has_pending_exception()) return Failure::Exception(); in HasPropertyWithHandler()
2647 if (isolate->has_pending_exception()) return Failure::Exception(); in SetPropertyWithHandler()
2668 if (isolate->has_pending_exception()) return Failure::Exception(); in SetPropertyWithHandlerIfDefiningSetter()
[all …]
Ddebug.cc759 ASSERT(isolate->has_pending_exception()); in CompileDebuggerScript()
776 ASSERT(!isolate->has_pending_exception()); in CompileDebuggerScript()
782 ASSERT(!isolate->has_pending_exception()); in CompileDebuggerScript()
1770 ASSERT(!info.isolate()->has_pending_exception()); in CompileFullCodeForDebugging()
1775 ASSERT(result != Isolate::Current()->has_pending_exception()); in CompileFullCodeForDebugging()
3257 if (!isolate_->has_pending_exception()) { in ~EnterDebugger()

12