Home
last modified time | relevance | path

Searched refs:ErrorThrower (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/wasm/
Dwasm-result.cc60 void ErrorThrower::Format(ErrorType type, const char* format, va_list args) { in Format()
74 void ErrorThrower::TypeError(const char* format, ...) { in TypeError()
81 void ErrorThrower::RangeError(const char* format, ...) { in RangeError()
88 void ErrorThrower::CompileError(const char* format, ...) { in CompileError()
95 void ErrorThrower::LinkError(const char* format, ...) { in LinkError()
102 void ErrorThrower::RuntimeError(const char* format, ...) { in RuntimeError()
109 Handle<Object> ErrorThrower::Reify() { in Reify()
137 void ErrorThrower::Reset() { in Reset()
142 ErrorThrower::ErrorThrower(ErrorThrower&& other) V8_NOEXCEPT in ErrorThrower() function in v8::internal::wasm::ErrorThrower
150 ErrorThrower::~ErrorThrower() { in ~ErrorThrower()
Dwasm-result.h116 class V8_EXPORT_PRIVATE ErrorThrower {
118 ErrorThrower(Isolate* isolate, const char* context) in ErrorThrower() function
121 ErrorThrower(ErrorThrower&& other) V8_NOEXCEPT;
122 ErrorThrower(const ErrorThrower&) = delete;
123 ErrorThrower& operator=(const ErrorThrower&) = delete;
124 ~ErrorThrower();
182 class V8_EXPORT_PRIVATE ScheduledErrorThrower : public ErrorThrower {
185 : ErrorThrower(isolate, context) {} in ScheduledErrorThrower()
Dmodule-instantiate.h33 class ErrorThrower; variable
36 Isolate* isolate, ErrorThrower* thrower,
Dwasm-engine.h47 class ErrorThrower; variable
161 Isolate* isolate, ErrorThrower* thrower, const ModuleWireBytes& bytes,
172 ErrorThrower* thrower,
179 Isolate* isolate, ErrorThrower* thrower,
Dmodule-compiler.h45 class ErrorThrower; variable
54 Isolate* isolate, const WasmFeatures& enabled, ErrorThrower* thrower,
Dsync-streaming-decoder.cc63 ErrorThrower thrower(isolate_, api_method_name_for_errors_); in Finish()
Dwasm-engine.cc485 Isolate* isolate, ErrorThrower* thrower, const ModuleWireBytes& bytes, in SyncCompileTranslatedAsmJs()
537 Isolate* isolate, const WasmFeatures& enabled, ErrorThrower* thrower, in SyncCompile()
590 Isolate* isolate, ErrorThrower* thrower, in SyncInstantiate()
601 ErrorThrower thrower(isolate, "WebAssembly.instantiate()"); in AsyncInstantiate()
642 ErrorThrower thrower(isolate, api_method_name_for_errors); in AsyncCompile()
Dwasm-module.h38 class ErrorThrower; variable
662 Handle<String> name, ErrorThrower* thrower);
Dmodule-instantiate.cc272 ErrorThrower* thrower, Handle<WasmModuleObject> module_object,
293 ErrorThrower* thrower_;
419 Isolate* isolate, ErrorThrower* thrower, in InstantiateToInstanceObject()
436 ErrorThrower* thrower, in InstanceBuilder()
903 ErrorThrower* thrower) { in EvaluateInitExpression()
2026 ErrorThrower thrower(isolate, "LoadElemSegment"); in LoadElemSegmentImpl()
Dwasm-js.cc47 using v8::internal::wasm::ErrorThrower;
182 ErrorThrower* thrower) { \
197 const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower, in GET_FIRST_ARGUMENT_AS()
238 const v8::FunctionCallbackInfo<v8::Value>& args, ErrorThrower* thrower) { in GetFirstArgumentAsJSFunction()
248 ErrorThrower* thrower) { in GetValueAsImports()
477 ErrorThrower* thrower, uint32_t* res) { in EnforceUint32()
1022 bool GetIntegerProperty(v8::Isolate* isolate, ErrorThrower* thrower, in GetIntegerProperty()
1047 bool GetOptionalIntegerProperty(v8::Isolate* isolate, ErrorThrower* thrower, in GetOptionalIntegerProperty()
1076 bool GetInitialOrMinimumProperty(v8::Isolate* isolate, ErrorThrower* thrower, in GetInitialOrMinimumProperty()
Dmodule-compiler.cc1071 void SetCompileError(ErrorThrower* thrower, ModuleWireBytes wire_bytes, in SetCompileError()
1108 AccountingAllocator* allocator, ErrorThrower* thrower, bool lazy_module, in ValidateSequentially()
1195 ErrorThrower thrower(isolate, nullptr); in CompileLazy()
1807 ErrorThrower* thrower, const WasmModule* wasm_module, in CompileNativeModule()
1903 Isolate* isolate, const WasmFeatures& enabled, ErrorThrower* thrower, in CompileToNativeModule()
2259 ErrorThrower thrower(isolate_, api_method_name_); in DecodeFailed()
2268 ErrorThrower thrower(isolate_, api_method_name_); in AsyncCompileFailed()
Dwasm-module.cc550 Handle<String> name, ErrorThrower* thrower) { in GetCustomSections()
Dc-api.cc1139 i::wasm::ErrorThrower thrower(isolate, "ignored"); in make()
2149 i::wasm::ErrorThrower thrower(isolate, "instantiation"); in make()
/third_party/node/deps/v8/src/asmjs/
Dasm-js.cc267 wasm::ErrorThrower thrower(isolate, "AsmJs::Compile"); in FinalizeJobImpl()
388 wasm::ErrorThrower thrower(isolate, "AsmJs::Instantiate"); in InstantiateAsmWasm()
/third_party/node/deps/v8/src/api/
Dapi.cc7862 i::wasm::ErrorThrower thrower(i_isolate, "WasmModuleObject::Compile()"); in Compile()