Home
last modified time | relevance | path

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

/external/v8/src/wasm/
Dwasm-js.cc143 const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower) { in GetFirstArgumentAsModule() argument
146 thrower->TypeError("Argument 0 must be a WebAssembly.Module"); in GetFirstArgumentAsModule()
156 const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower, in GetFirstArgumentAsBytes() argument
181 thrower->TypeError("Argument 0 must be a buffer source"); in GetFirstArgumentAsBytes()
185 thrower->CompileError("BufferSource argument is empty"); in GetFirstArgumentAsBytes()
188 thrower->RangeError("buffer source exceeds maximum size of %zu (is %zu)", in GetFirstArgumentAsBytes()
191 if (thrower->error()) return i::wasm::ModuleWireBytes(nullptr, nullptr); in GetFirstArgumentAsBytes()
196 ErrorThrower* thrower) { in GetValueAsImports() argument
200 thrower->TypeError("Argument 1 must be an object"); in GetValueAsImports()
395 ScheduledErrorThrower thrower(i_isolate, "WebAssembly.compile()"); in WebAssemblyCompile() local
[all …]
Dwasm-engine.cc40 Isolate* isolate, ErrorThrower* thrower, const ModuleWireBytes& bytes, in SyncCompileTranslatedAsmJs() argument
50 return CompileToModuleObject(isolate, kAsmjsWasmFeatures, thrower, in SyncCompileTranslatedAsmJs()
56 Isolate* isolate, const WasmFeatures& enabled, ErrorThrower* thrower, in SyncCompile() argument
62 thrower->CompileFailed("Wasm decoding failed", result); in SyncCompile()
68 return CompileToModuleObject(isolate, enabled, thrower, std::move(result.val), in SyncCompile()
73 Isolate* isolate, ErrorThrower* thrower, in SyncInstantiate() argument
76 return InstantiateToInstanceObject(isolate, thrower, module_object, imports, in SyncInstantiate()
83 ErrorThrower thrower(isolate, "WebAssembly Instantiation"); in AsyncInstantiate() local
93 isolate, &thrower, module_object, imports, Handle<JSArrayBuffer>::null()); in AsyncInstantiate()
108 thrower.Reset(); in AsyncInstantiate()
[all …]
Dfunction-compiler.cc104 WasmCode* WasmCompilationUnit::FinishCompilation(ErrorThrower* thrower) { in FinishCompilation() argument
108 ret = liftoff_unit_->FinishCompilation(thrower); in FinishCompilation()
111 ret = turbofan_unit_->FinishCompilation(thrower); in FinishCompilation()
117 thrower->RuntimeError("Error finalizing code."); in FinishCompilation()
149 ErrorThrower* thrower, ModuleEnv* env, const WasmFunction* function, in CompileWasmFunction() argument
161 return unit.FinishCompilation(thrower); in CompileWasmFunction()
Dmodule-compiler.cc88 void OnError(ErrorThrower* thrower);
120 void NotifyOnEvent(CompilationEvent event, ErrorThrower* thrower);
213 InstanceBuilder(Isolate* isolate, ErrorThrower* thrower,
332 Isolate* isolate, ErrorThrower* thrower, in InstantiateToInstanceObject() argument
335 InstanceBuilder builder(isolate, thrower, module_object, imports, memory); in InstantiateToInstanceObject()
371 ErrorThrower thrower(isolate, "WasmLazyCompile"); in LazyCompileFunction() local
376 WasmCode* wasm_code = unit.FinishCompilation(&thrower); in LazyCompileFunction()
385 CHECK(!thrower.error()); in LazyCompileFunction()
556 ErrorThrower* thrower) { in FinishCompilationUnits() argument
563 WasmCode* result = unit->FinishCompilation(thrower); in FinishCompilationUnits()
[all …]
Dwasm-engine.h58 Isolate* isolate, ErrorThrower* thrower, const ModuleWireBytes& bytes,
66 ErrorThrower* thrower,
73 Isolate* isolate, ErrorThrower* thrower,
Dfunction-compiler.h95 WasmCode* FinishCompilation(ErrorThrower* thrower);
99 ErrorThrower* thrower, ModuleEnv* env, const WasmFunction* function,
Dmodule-compiler.h52 Isolate* isolate, const WasmFeatures& enabled, ErrorThrower* thrower,
57 Isolate* isolate, ErrorThrower* thrower,
Dwasm-module.h231 Isolate* isolate, const byte* start, const byte* end, ErrorThrower* thrower,
244 ErrorThrower* thrower);
Dwasm-module.cc251 Handle<String> name, ErrorThrower* thrower) { in GetCustomSections() argument
275 thrower->RangeError("out of memory allocating custom section data"); in GetCustomSections()
/external/clang/test/CodeGenObjC/
Darc-no-arc-exceptions.m8 void thrower(void); function
12 // CHECK: call void @thrower(), !clang.arc.no_objc_arc_exceptions !
18 thrower();
23 // CHECK: call void @thrower(), !clang.arc.no_objc_arc_exceptions !
30 thrower();
/external/v8/src/asmjs/
Dasm-js.cc283 wasm::ErrorThrower thrower(isolate, "AsmJs::Compile"); in FinalizeJobImpl() local
287 isolate, &thrower, in FinalizeJobImpl()
292 DCHECK(!thrower.error()); in FinalizeJobImpl()
404 wasm::ErrorThrower thrower(isolate, "AsmJs::Instantiate"); in InstantiateAsmWasm() local
406 isolate->wasm_engine()->SyncInstantiate(isolate, &thrower, module, in InstantiateAsmWasm()
412 if (thrower.error()) { in InstantiateAsmWasm()
414 SNPrintF(error_reason, "Internal wasm failure: %s", thrower.error_msg()); in InstantiateAsmWasm()
419 thrower.Reset(); // Ensure exceptions do not propagate. in InstantiateAsmWasm()
422 DCHECK(!thrower.error()); in InstantiateAsmWasm()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1502 MethodId<?, ?> thrower = TEST_TYPE.getMethod(TypeId.VOID, "thrower", TypeId.INT); in testCatchExceptions() local
1503 code.invokeStatic(thrower, null, localI); in testCatchExceptions()
1533 public static void thrower(int a) throws Exception { in thrower() method in DexMakerTest
1580 MethodId<?, ?> thrower = TEST_TYPE.getMethod(TypeId.VOID, "thrower", TypeId.INT); in testNestedCatchClauses() local
1581 code.invokeStatic(thrower, null, localA); in testNestedCatchClauses()
1586 code.invokeStatic(thrower, null, localB); in testNestedCatchClauses()
1589 code.invokeStatic(thrower, null, localC); in testNestedCatchClauses()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dspeculative-load-hardening.ll501 ; X64-NEXT: # %bb.2: # %thrower
568 ; X64-LFENCE-NEXT: # %bb.1: # %thrower
602 br i1 %a.cmp, label %thrower, label %exit
604 thrower:
/external/v8/src/builtins/
Dbuiltins-promise-gen.cc1534 Node* const thrower = in CreateThrowerFunction() local
1536 return thrower; in CreateThrowerFunction()
1568 Node* const thrower = CreateThrowerFunction(reason, native_context); in TF_BUILTIN() local
1571 Return(InvokeThen(native_context, promise, thrower)); in TF_BUILTIN()
/external/v8/src/
Dvalue-serializer.cc1816 wasm::ErrorThrower thrower(isolate_, "ValueDeserializer::ReadWasmModule"); in ReadWasmModule() local
1820 isolate_, enabled_features, &thrower, in ReadWasmModule()
Dbootstrapper.cc1144 Handle<JSFunction> thrower = GetThrowTypeErrorIntrinsic(); in AddRestrictedFunctionProperties() local
1146 accessors->set_getter(*thrower); in AddRestrictedFunctionProperties()
1147 accessors->set_setter(*thrower); in AddRestrictedFunctionProperties()
Dapi.cc7507 i::wasm::ErrorThrower thrower(i_isolate, "WasmCompiledModule::Compile()"); in Compile() local
7514 i_isolate, enabled_features, &thrower, in Compile()
/external/v8/src/compiler/
Dwasm-compiler.cc5209 wasm::ErrorThrower* thrower) { in FinishCompilation() argument
5223 thrower->CompileFailed(message.start(), graph_construction_result_); in FinishCompilation()
/external/toolchain-utils/dejagnu/gdb_baseline/
Darmv7a-cros-linux-gnueabi6362 PASS: gdb.base/savedregs.exp: advance thrower
6368 PASS: gdb.base/savedregs.exp: Get thrower info frame
6369 PASS: gdb.base/savedregs.exp: Check main info frame; stack contains catcher sigtramp thrower main
6374 …savedregs.exp: Check sigtramp info frame; stack contains caller dummy catcher sigtramp thrower main
6375 PASS: gdb.base/savedregs.exp: Check thrower info frame; stack contains caller dummy catcher sigtram…
6376 …ase/savedregs.exp: Check main info frame; stack contains caller dummy catcher sigtramp thrower main
6379 …dregs.exp: Check dummy info frame; stack contains callee caller dummy catcher sigtramp thrower main
6380 …egs.exp: Check catcher info frame; stack contains callee caller dummy catcher sigtramp thrower main
6381 …gs.exp: Check sigtramp info frame; stack contains callee caller dummy catcher sigtramp thrower main
6382 PASS: gdb.base/savedregs.exp: Check thrower info frame; stack contains callee caller dummy catcher …
[all …]
Dx86_64-cros-linux-gnu6743 PASS: gdb.base/savedregs.exp: advance thrower
6749 PASS: gdb.base/savedregs.exp: Get thrower info frame
6750 PASS: gdb.base/savedregs.exp: Check main info frame; stack contains catcher sigtramp thrower main
6755 …savedregs.exp: Check sigtramp info frame; stack contains caller dummy catcher sigtramp thrower main
6756 PASS: gdb.base/savedregs.exp: Check thrower info frame; stack contains caller dummy catcher sigtram…
6757 …ase/savedregs.exp: Check main info frame; stack contains caller dummy catcher sigtramp thrower main
6760 …dregs.exp: Check dummy info frame; stack contains callee caller dummy catcher sigtramp thrower main
6761 …egs.exp: Check catcher info frame; stack contains callee caller dummy catcher sigtramp thrower main
6762 …gs.exp: Check sigtramp info frame; stack contains callee caller dummy catcher sigtramp thrower main
6763 PASS: gdb.base/savedregs.exp: Check thrower info frame; stack contains callee caller dummy catcher …
[all …]
Di686-pc-linux-gnu6508 PASS: gdb.base/savedregs.exp: advance thrower
6514 PASS: gdb.base/savedregs.exp: Get thrower info frame
6515 PASS: gdb.base/savedregs.exp: Check main info frame; stack contains catcher sigtramp thrower main
6520 …savedregs.exp: Check sigtramp info frame; stack contains caller dummy catcher sigtramp thrower main
6521 PASS: gdb.base/savedregs.exp: Check thrower info frame; stack contains caller dummy catcher sigtram…
6522 …ase/savedregs.exp: Check main info frame; stack contains caller dummy catcher sigtramp thrower main
6525 …dregs.exp: Check dummy info frame; stack contains callee caller dummy catcher sigtramp thrower main
6526 …egs.exp: Check catcher info frame; stack contains callee caller dummy catcher sigtramp thrower main
6527 …gs.exp: Check sigtramp info frame; stack contains callee caller dummy catcher sigtramp thrower main
6528 PASS: gdb.base/savedregs.exp: Check thrower info frame; stack contains callee caller dummy catcher …
[all …]
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/owasp/sanitizer/tools/findbugs/lib/
Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd ...
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA-old.txt196048 thrower %20370 θrˈoər
Dinternal_raw_IPA.txt164038 thrower %29951 θrˈoər