| /third_party/node/deps/v8/src/wasm/ |
| D | wasm-engine.h | 48 struct ModuleWireBytes; 155 const ModuleWireBytes& bytes, 161 Isolate* isolate, ErrorThrower* thrower, const ModuleWireBytes& bytes, 173 const ModuleWireBytes& bytes); 189 const ModuleWireBytes& bytes, bool is_shared,
|
| D | wasm-module.h | 301 struct ModuleWireBytes; 305 WireBytesRef LookupFunctionName(const ModuleWireBytes& wire_bytes, 598 struct V8_EXPORT_PRIVATE ModuleWireBytes { struct 599 explicit ModuleWireBytes(base::Vector<const byte> module_bytes) in ModuleWireBytes() argument 601 ModuleWireBytes(const byte* start, const byte* end) in ModuleWireBytes() function
|
| D | module-compiler.h | 55 std::shared_ptr<const WasmModule> module, const ModuleWireBytes& wire_bytes, 226 ModuleWireBytes wire_bytes_;
|
| D | compilation-environment.h | 108 virtual base::Optional<ModuleWireBytes> GetModuleBytes() const = 0;
|
| D | sync-streaming-decoder.cc | 62 ModuleWireBytes wire_bytes(bytes.get(), bytes.get() + buffer_size_); in Finish()
|
| D | wasm-engine.cc | 465 const ModuleWireBytes& bytes, in SyncValidate() 485 Isolate* isolate, ErrorThrower* thrower, const ModuleWireBytes& bytes, in SyncCompileTranslatedAsmJs() 538 const ModuleWireBytes& bytes) { in SyncCompile() 636 const ModuleWireBytes& bytes, bool is_shared, in AsyncCompile() 648 ModuleWireBytes bytes_copy(copy.get(), copy.get() + bytes.length()); in AsyncCompile() 837 ModuleWireBytes(wire_bytes).GetNameOrNull(debug_symbols.external_url); in CreateWasmScript() 864 ModuleWireBytes wire_bytes(native_module->wire_bytes()); in ImportNativeModule()
|
| D | wasm-module.cc | 35 const ModuleWireBytes& wire_bytes, uint32_t function_index) const { in LookupFunctionName() 194 WasmName ModuleWireBytes::GetNameOrNull(WireBytesRef ref) const { in GetNameOrNull() 202 WasmName ModuleWireBytes::GetNameOrNull(const WasmFunction* function, in GetNameOrNull()
|
| D | module-decoder.h | 170 const WasmFeatures& enabled, Zone* zone, const ModuleWireBytes& wire_bytes,
|
| D | function-compiler.cc | 156 ModuleWireBytes wire_bytes(native_module->wire_bytes()); in CompileWasmFunction()
|
| D | module-compiler.cc | 1071 void SetCompileError(ErrorThrower* thrower, ModuleWireBytes wire_bytes, in SetCompileError() 1125 ModuleWireBytes wire_bytes{native_module->wire_bytes()}; in ValidateSequentially() 1202 SetCompileError(&thrower, ModuleWireBytes(native_module->wire_bytes()), in CompileLazy() 1811 ModuleWireBytes wire_bytes(native_module->wire_bytes()); in CompileNativeModule() 1904 std::shared_ptr<const WasmModule> module, const ModuleWireBytes& wire_bytes, in CompileToNativeModule() 2217 ModuleWireBytes wire_bytes(module_object_->native_module()->wire_bytes()); in FinishCompile() 2932 job_->wire_bytes_ = ModuleWireBytes(bytes.as_vector()); in OnFinishedStream() 3028 job_->wire_bytes_ = ModuleWireBytes(job_->native_module_->wire_bytes()); in Deserialize()
|
| D | module-decoder.cc | 1147 ModuleWireBytes bytes(module_start_, module_end_); in DecodeFunctionBody() 1538 const ModuleWireBytes& wire_bytes, in DecodeSingleFunction() 1664 const ModuleWireBytes& wire_bytes, in VerifyFunctionBody() 2353 const WasmFeatures& enabled, Zone* zone, const ModuleWireBytes& wire_bytes, in DecodeWasmFunctionForTesting()
|
| D | wasm-js.cc | 196 i::wasm::ModuleWireBytes GetFirstArgumentAsBytes( in GET_FIRST_ARGUMENT_AS() 233 if (thrower->error()) return i::wasm::ModuleWireBytes(nullptr, nullptr); in GET_FIRST_ARGUMENT_AS() 234 return i::wasm::ModuleWireBytes(start, start + length); in GET_FIRST_ARGUMENT_AS() 553 i::wasm::ModuleWireBytes bytes = in WasmStreamingCallbackForTesting() 656 i::wasm::ModuleWireBytes bytes_copy(copy.get(), in WebAssemblyValidate() 718 i::wasm::ModuleWireBytes bytes_copy(copy.get(), in WebAssemblyModule()
|
| D | wasm-code-manager.cc | 226 ModuleWireBytes wire_bytes(native_module()->wire_bytes()); in DebugName() 262 ModuleWireBytes wire_bytes(native_module_->wire_bytes()); in LogCode() 1690 base::Optional<ModuleWireBytes> GetModuleBytes() const final { in GetModuleBytes() 1691 return base::Optional<ModuleWireBytes>( in GetModuleBytes()
|
| D | streaming-decoder.cc | 80 base::Optional<ModuleWireBytes> GetModuleBytes() const final { return {}; } in GetModuleBytes()
|
| D | wasm-objects.cc | 171 wasm::ModuleWireBytes(module_object->native_module()->wire_bytes()), in GetFunctionNameOrNull() 184 wasm::ModuleWireBytes wire_bytes(native_module()->wire_bytes()); in GetRawFunctionName()
|
| D | c-api.cc | 1124 i::wasm::ModuleWireBytes bytes( in validate() 1136 i::wasm::ModuleWireBytes bytes( in make()
|
| /third_party/node/deps/v8/src/runtime/ |
| D | runtime-test-wasm.cc | 160 wasm::ModuleWireBytes wire_bytes = in RUNTIME_FUNCTION() 161 wasm::ModuleWireBytes(frame->native_module()->wire_bytes()); in RUNTIME_FUNCTION()
|
| /third_party/node/deps/v8/src/debug/ |
| D | debug-wasm-objects.cc | 44 wasm::ModuleWireBytes wire_bytes( in GetNameFromImportsAndExportsOrNull() 457 wasm::ModuleWireBytes module_wire_bytes(native_module->wire_bytes()); in GetName() 780 wasm::ModuleWireBytes module_wire_bytes(module->wire_bytes()); in GetRefTypeName() 869 wasm::ModuleWireBytes module_wire_bytes(native_module->wire_bytes()); in GetName()
|
| D | debug-interface.cc | 698 internal::wasm::ModuleWireBytes wire_bytes( in ExternalSymbolsURL() 760 i::wasm::ModuleWireBytes wire_bytes(native_module->wire_bytes()); in GetFunctionHash()
|
| /third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
| D | wasm-module-debug.cc | 345 const wasm::ModuleWireBytes wire_bytes(native_module->wire_bytes()); in GetWasmModuleBytes()
|
| /third_party/node/deps/v8/src/asmjs/ |
| D | asm-js.cc | 272 wasm::ModuleWireBytes(module_->begin(), module_->end()), in FinalizeJobImpl()
|
| /third_party/node/deps/v8/src/wasm/baseline/ |
| D | liftoff-compiler.cc | 6662 ModuleWireBytes wire_bytes{native_module->wire_bytes()}; in GenerateLiftoffDebugSideTable()
|
| /third_party/node/deps/v8/src/compiler/ |
| D | wasm-compiler.cc | 8406 base::Optional<wasm::ModuleWireBytes> module_bytes = in GetDebugName()
|
| /third_party/node/deps/v8/src/api/ |
| D | api.cc | 7942 i::wasm::ModuleWireBytes(start, start + length)); in Compile()
|