Searched refs:function_offset (Results 1 – 11 of 11) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | CompactUnwindInfo.h | 53 uint32_t function_offset = 0; // The offset of the first function covered by member 69 return function_offset < rhs.function_offset; 73 return function_offset == rhs.function_offset; 109 uint32_t entry_count, uint32_t function_offset, 121 uint32_t function_offset);
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/gwp_asan/scripts/ |
| H A D | symbolize.sh | 22 function_offset="$(echo $line | grep -oE '\(.*\)' | grep -oE '\+.*\)' |\ 28 symbolized="$(echo $function_offset | addr2line -ie $binary_name)" 32 function_addr="0x$(echo $function_offset |\ 43 binary_offset="$(printf "0x%X" "$((function_addr+function_offset))")"
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | CompactUnwindInfo.cpp | 346 uint32_t function_offset = in ScanIndex() local 359 function_offset &= ~1ull; in ScanIndex() 362 this_index.function_offset = function_offset; in ScanIndex() 384 uint32_t function_offset) { in GetLSDAForFunctionOffset() argument 399 if (mid_func_offset == function_offset) { in GetLSDAForFunctionOffset() 402 if (mid_func_offset < function_offset) { in GetLSDAForFunctionOffset() 412 uint32_t entry_page_offset, uint32_t entry_count, uint32_t function_offset, in BinarySearchRegularSecondPage() argument 434 if (mid_func_offset <= function_offset) { in BinarySearchRegularSecondPage() 435 if (mid == last || (next_func_offset > function_offset)) { in BinarySearchRegularSecondPage() 511 addr_t function_offset = in GetCompactUnwindInfoForFunction() local [all …]
|
| H A D | SymbolContext.cpp | 100 const addr_t function_offset = in DumpStopContext() local 106 s->Printf("+%" PRIu64 ">", function_offset); in DumpStopContext() 107 } else if (function_offset) { in DumpStopContext() 109 s->Printf(" + %" PRIu64, function_offset); in DumpStopContext()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stacktrace_printer.cpp | 164 buffer->append("0x%zx", info->function_offset != AddressInfo::kUnknown in RenderFrame() 165 ? info->function_offset in RenderFrame() 183 if (!info->file && info->function_offset != AddressInfo::kUnknown) in RenderFrame() 184 buffer->append("+0x%zx", info->function_offset); in RenderFrame()
|
| H A D | sanitizer_symbolizer.cpp | 25 function_offset = kUnknown; in AddressInfo() 33 function_offset = kUnknown; in Clear()
|
| H A D | sanitizer_symbolizer_mac.cpp | 41 stack->info.function_offset = addr - sym_addr; in SymbolizePC() 184 stack->info.function_offset = addr - start_address; in SymbolizePC()
|
| H A D | sanitizer_symbolizer.h | 40 uptr function_offset; member
|
| H A D | sanitizer_symbolizer_win.cpp | 157 frame->info.function_offset = (uptr)offset; in SymbolizePC()
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | symbolication.py | 137 function_offset = self.load_addr - function_start_load_addr 138 if function_offset > 0: 139 self.symbolication += " + %u" % (function_offset) 140 elif function_offset < 0: 141 … self.symbolication += " %i (invalid negative offset, file a bug) " % function_offset
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_stacktrace_printer_test.cpp | 75 info.function_offset = 0x100; in TEST() 142 info.function_offset = 0x100; in TEST()
|