Home
last modified time | relevance | path

Searched refs:module_start (Results 1 – 9 of 9) sorted by relevance

/external/elfutils/libdwfl/
Ddwfl_segment_report_module.c136 handle_file_note (GElf_Addr module_start, GElf_Addr module_end, in handle_file_note() argument
180 if (mstart == module_start && moffset == 0) in handle_file_note()
434 GElf_Addr module_start = -1l; in dwfl_segment_report_module() local
567 if ((vaddr & -align) < module_start) in dwfl_segment_report_module()
569 module_start = vaddr & -align; in dwfl_segment_report_module()
615 module_start += bias; in dwfl_segment_report_module()
632 if (module_start <= module->l_ld && module->l_ld < module_end) in dwfl_segment_report_module()
639 && module_start + fixup <= module->l_ld in dwfl_segment_report_module()
642 module_start += fixup; in dwfl_segment_report_module()
660 if ((module_end > module->start && module_start < module->end) in dwfl_segment_report_module()
[all …]
/external/v8/src/wasm/
Dmodule-decoder.cc33 ModuleDecoder(Zone* zone, const byte* module_start, const byte* module_end, in ModuleDecoder() argument
35 : Decoder(module_start, module_end), module_zone(zone), origin_(origin) { in ModuleDecoder()
57 size_t hash = base::hash_range(module->module_start, module->module_end); in DumpModule()
66 fwrite(module->module_start, module->module_end - module->module_start, 1, in DumpModule()
75 module->module_start = start_; in DecodeModule()
743 Vector<const byte> FindSection(const byte* module_start, const byte* module_end, in FindSection() argument
745 Decoder decoder(module_start, module_end); in FindSection()
779 const byte* module_start, const byte* module_end, in DecodeWasmModule() argument
784 size_t size = module_end - module_start; in DecodeWasmModule()
785 if (module_start > module_end) return ModuleError("start > end"); in DecodeWasmModule()
[all …]
Dmodule-decoder.h16 const byte* module_start, const byte* module_end,
33 FunctionOffsetsResult DecodeWasmFunctionOffsets(const byte* module_start,
Dwasm-module.h162 const byte* module_start; // starting address for the module bytes. member
197 return {reinterpret_cast<const char*>(module_start + offset), in GetName()
211 return {reinterpret_cast<const char*>(module_start + offset), in GetNameOrNull()
222 size_t size = module_end - module_start; in BoundsCheck()
368 int32_t CompileAndRunWasmModule(Isolate* isolate, const byte* module_start,
Dwasm-module.cc140 memcpy(addr, module->module_start + segment.source_offset, in LoadDataSegments()
342 : module_start(nullptr), in WasmModule()
788 instance.module->module_end - instance.module->module_start; in Instantiate()
790 Vector<const uint8_t> module_bytes_vec(instance.module->module_start, in Instantiate()
1031 int32_t CompileAndRunWasmModule(Isolate* isolate, const byte* module_start, in CompileAndRunWasmModule() argument
1040 DecodeWasmModule(isolate, &zone, module_start, module_end, false, in CompileAndRunWasmModule()
Dwasm-interpreter.cc879 module->module_start + function->code_start_offset; in CodeMap()
880 const byte* code_end = module->module_start + function->code_end_offset; in CodeMap()
/external/v8/test/cctest/wasm/
Dtest-wasm-function-name-table.cc50 module.module_start = reinterpret_cast<byte *>(all_names.data()); in testFunctionNameTable()
51 module.module_end = module.module_start + all_names.size(); in testFunctionNameTable()
/external/v8/test/unittests/wasm/
Dmodule-decoder-unittest.cc130 ModuleResult DecodeModule(const byte* module_start, const byte* module_end) { in DecodeModule() argument
132 size_t size = static_cast<size_t>(module_end - module_start); in DecodeModule()
137 memcpy(temp + sizeof(header), module_start, size); in DecodeModule()
143 ModuleResult DecodeModuleNoHeader(const byte* module_start, in DecodeModuleNoHeader() argument
145 return DecodeWasmModule(isolate(), zone(), module_start, module_end, false, in DecodeModuleNoHeader()
/external/v8/src/compiler/
Dwasm-compiler.cc3118 module_env_, function_->sig, module_env_->module->module_start, in BuildGraphForWasmFunction()
3119 module_env_->module->module_start + function_->code_start_offset, in BuildGraphForWasmFunction()
3120 module_env_->module->module_start + function_->code_end_offset}; in BuildGraphForWasmFunction()