Searched refs:module_start (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/wasm/
H A Dmodule-decoder.h14 // Decodes the bytes of a WASM module between {module_start} and {module_end}.
16 const byte* module_start, const byte* module_end,
H A Dwasm-module.h90 const byte* module_start; // starting address for the module bytes. member in struct:v8::internal::wasm::WasmModule
110 return reinterpret_cast<const char*>(module_start + offset);
115 size_t size = module_end - module_start;
182 int32_t CompileAndRunWasmModule(Isolate* isolate, const byte* module_start,
H A Dmodule-decoder.cc29 ModuleDecoder(Zone* zone, const byte* module_start, const byte* module_end, argument
31 : Decoder(module_start, module_end), module_zone(zone), asm_js_(asm_js) {
46 module->module_start = start_;
515 const byte* module_start, const byte* module_end,
517 size_t size = module_end - module_start;
518 if (module_start > module_end) return ModuleError("start > end");
521 ModuleDecoder decoder(zone, module_start, module_end, asm_js);
514 DecodeWasmModule(Isolate* isolate, Zone* zone, const byte* module_start, const byte* module_end, bool verify_functions, bool asm_js) argument
H A Dwasm-module.cc176 memcpy(addr, module->module_start + segment.source_offset,
414 int32_t CompileAndRunWasmModule(Isolate* isolate, const byte* module_start, argument
421 DecodeWasmModule(isolate, &zone, module_start, module_end, false, false);
/external/elfutils/libdwfl/
H A Ddwfl_segment_report_module.c136 handle_file_note (GElf_Addr module_start, GElf_Addr module_end, argument
180 if (mstart == module_start && moffset == 0)
434 GElf_Addr module_start = -1l; local
567 if ((vaddr & -align) < module_start)
569 module_start = vaddr & -align;
615 module_start += bias;
632 if (module_start <= module->l_ld && module->l_ld < module_end)
639 && module_start + fixup <= module->l_ld
642 module_start += fixup;
660 if ((module_end > module->start && module_start < modul
[all...]
/external/v8/src/compiler/
H A Dwasm-compiler.cc1864 const byte* ptr = module->module->module_start + func->name_offset;
1938 const byte* ptr = module->module->module_start + func->name_offset;
1986 module_env->module->module_start, // --
1987 module_env->module->module_start + function.code_start_offset, // --
1988 module_env->module->module_start + function.code_end_offset); // --
2017 const byte* ptr = module_env->module->module_start + function.name_offset;
/external/v8/test/unittests/wasm/
H A Dmodule-decoder-unittest.cc16 ModuleResult DecodeModule(const byte* module_start, const byte* module_end) { argument
17 return DecodeWasmModule(nullptr, zone(), module_start, module_end, false,

Completed in 178 milliseconds