Home
last modified time | relevance | path

Searched refs:module_bytes (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/wasm/
Dwasm-objects.cc204 const byte* module_start = compiled_module->module_bytes()->GetChars(); in IsBreakablePosition()
543 DEFINE_OPTIONAL_ARR_ACCESSORS(WasmSharedModuleData, module_bytes, kModuleBytes,
553 Handle<SeqOneByteString> module_bytes, Handle<Script> script, in New() argument
559 if (!module_bytes.is_null()) { in New()
560 arr->set(kModuleBytes, *module_bytes); in New()
599 SeqOneByteString* module_bytes = shared->module_bytes(); in ReinitializeAfterDeserialization() local
601 reinterpret_cast<const byte*>(module_bytes->GetCharsAddress()); in ReinitializeAfterDeserialization()
602 const byte* end = start + module_bytes->length(); in ReinitializeAfterDeserialization()
765 Handle<SeqOneByteString> module_bytes(compiled_module->module_bytes(), in ExtractUtf8StringFromModuleBytes() local
767 DCHECK_GE(module_bytes->length(), offset); in ExtractUtf8StringFromModuleBytes()
[all …]
Dwasm-module.h216 ModuleWireBytes(Vector<const byte> module_bytes) in ModuleWireBytes()
217 : module_bytes_(module_bytes) {} in ModuleWireBytes()
327 Vector<const byte> module_bytes) in ModuleBytesEnv()
328 : module_env(module, instance), wire_bytes(module_bytes) {} in ModuleBytesEnv()
Dwasm-objects.h174 DECLARE_OPTIONAL_ACCESSORS(module_bytes, SeqOneByteString);
181 Handle<SeqOneByteString> module_bytes, Handle<Script> script,
317 FORWARD_SHARED(SeqOneByteString*, module_bytes)
Dwasm-module.cc487 Handle<String> module_bytes = in CompileToModuleObject() local
492 DCHECK(module_bytes->IsSeqOneByteString()); in CompileToModuleObject()
500 isolate_, module_wrapper, Handle<SeqOneByteString>::cast(module_bytes), in CompileToModuleObject()
1425 Handle<SeqOneByteString> module_bytes(compiled_module_->module_bytes(), in LoadDataSegments() local
1436 module_bytes->GetCharsAddress() + segment.source_offset); in LoadDataSegments()
2525 Handle<SeqOneByteString> module_bytes(compiled_module->module_bytes(), in GetCustomSections() local
2528 reinterpret_cast<const byte*>(module_bytes->GetCharsAddress()); in GetCustomSections()
2529 const byte* end = start + module_bytes->length(); in GetCustomSections()
2554 Handle<SeqOneByteString> module_bytes(compiled_module->module_bytes(), in GetCustomSections() local
2557 reinterpret_cast<const byte*>(module_bytes->GetCharsAddress()); in GetCustomSections()
Dwasm-code-specialization.cc50 func_bytes = comp_mod->module_bytes()->GetChars() + in PatchDirectCallsHelper()
Dwasm-debug.cc60 debug_info->wasm_instance()->compiled_module()->module_bytes(); in GetBytesEnv()
/external/v8/src/asmjs/
Dasm-wasm-builder.h24 ZoneBuffer* module_bytes; member
Dasm-js.cc184 wasm::ZoneBuffer* module = asm_wasm_result.module_bytes; in CompileAsmViaWasm()
/external/v8/src/snapshot/
Dcode-serializer.cc236 Handle<SeqOneByteString> module_bytes) in WasmCompiledModuleSerializer() argument
239 reference_map()->AddAttachedReference(*module_bytes); in WasmCompiledModuleSerializer()
247 handle(compiled_module->module_bytes())); in SerializeWasmModule()
Dcode-serializer.h73 Handle<SeqOneByteString> module_bytes);
/external/v8/src/
Dvalue-serializer.cc812 Handle<String> wire_bytes(compiled_part->module_bytes(), isolate_); in WriteWasmModule()
Dapi.cc7520 i::Handle<i::String> wire_bytes(compiled_part->module_bytes()); in GetWasmWireBytes()