/external/elfutils/libdwfl/ |
D | dwfl_segment_report_module.c | 136 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/ |
D | module-decoder.cc | 33 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 …]
|
D | module-decoder.h | 16 const byte* module_start, const byte* module_end, 33 FunctionOffsetsResult DecodeWasmFunctionOffsets(const byte* module_start,
|
D | wasm-module.h | 162 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,
|
D | wasm-module.cc | 140 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()
|
D | wasm-interpreter.cc | 879 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/ |
D | test-wasm-function-name-table.cc | 50 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/ |
D | module-decoder-unittest.cc | 130 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/ |
D | wasm-compiler.cc | 3118 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()
|