Home
last modified time | relevance | path

Searched refs:module_offset (Results 1 – 11 of 11) sorted by relevance

/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libcdep.cpp105 uptr module_offset; in SymbolizeData() local
107 if (!FindModuleNameAndOffsetForAddress(addr, &module_name, &module_offset, in SymbolizeData()
112 info->module_offset = module_offset; in SymbolizeData()
127 addr, &module_name, &info->module_offset, &info->module_arch)) in SymbolizeFrame()
176 uptr *module_offset, in FindModuleNameAndOffsetForAddress() argument
182 *module_offset = address - module->base_address(); in FindModuleNameAndOffsetForAddress()
355 cur->info.FillModuleInfo(res->info.module, res->info.module_offset, in ParseSymbolizePCOutput()
426 "CODE", info->module, info->module_offset, info->module_arch); in SymbolizePC()
435 "DATA", info->module, info->module_offset, info->module_arch); in SymbolizeData()
439 info->start += (addr - info->module_offset); // Add the base address. in SymbolizeData()
[all …]
H A Dsanitizer_symbolizer.h33 uptr module_offset; member
51 uptr module_base() const { return address - module_offset; } in module_base()
92 uptr module_offset; member
124 uptr module_offset; member
205 uptr *module_offset,
H A Dsanitizer_symbolizer_posix_libcdep.cpp279 SendCommand(stack->info.module, stack->info.module_offset)) { in SymbolizePC()
291 const char *SendCommand(const char *module_name, uptr module_offset) { in SendCommand() argument
308 module_offset, dummy_address_); in SendCommand()
356 stack->info.module, stack->info.module_offset, buffer_, sizeof(buffer_)); in SymbolizePC()
363 bool result = __sanitizer_symbolize_data(info->module, info->module_offset, in SymbolizeData()
367 info->start += (addr - info->module_offset); // Add the base address. in SymbolizeData()
373 bool result = __sanitizer_symbolize_frame(info->module, info->module_offset, in SymbolizeFrame()
H A Dsanitizer_stacktrace_printer.cpp201 buffer->AppendF("0x%zx", info->module_offset); in RenderFrame()
245 RenderModuleLocation(buffer, info->module, info->module_offset, in RenderFrame()
262 info->module_offset, info->module_arch, ""); in RenderFrame()
H A Dsanitizer_symbolizer.cpp42 module_offset = mod_offset; in FillModuleInfo()
49 module_offset = address - mod.base_address(); in FillModuleInfo()
H A Dsanitizer_symbolizer_internal.h141 const char *module_name, uptr module_offset,
H A Dsanitizer_symbolizer_libbacktrace.cpp97 info->FillModuleInfo(first->info.module, first->info.module_offset, in get_new_frame()
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_printer_test.cpp88 info.module_offset = 0x200; in TEST()
137 info.module_offset = 0x200; in TEST()
/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.cpp174 StripModuleName(global.module), global.module_offset); in PrintLocation()
178 StripModuleName(global.module), global.module_offset); in PrintLocation()
377 info.line, info.module_offset); in PrintStack()
/llvm-project/compiler-rt/lib/tsan/go/
H A Dtsan_go.cpp63 info.module_offset = cbctx.off; in SymbolizeCode()
/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp170 Buffer, Info.module, Info.module_offset, Info.module_arch, in RenderLocation()