Home
last modified time | relevance | path

Searched refs:function_offset (Results 1 – 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDCompactUnwindInfo.h53 uint32_t function_offset; // The offset of the first function covered by member
66 : function_offset(0), second_level(0), lsda_array_start(0), in UnwindIndex()
70 return function_offset < rhs.function_offset;
74 return function_offset == rhs.function_offset;
114 uint32_t entry_count, uint32_t function_offset,
126 uint32_t function_offset);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
HDCompactUnwindInfo.cpp346 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 …]
HDSymbolContext.cpp102 const addr_t function_offset = in DumpStopContext() local
108 s->Printf("+%" PRIu64 ">", function_offset); in DumpStopContext()
109 } else if (function_offset) { in DumpStopContext()
111 s->Printf(" + %" PRIu64, function_offset); in DumpStopContext()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_stacktrace_printer.cpp143 buffer->append("0x%zx", info.function_offset != AddressInfo::kUnknown in RenderFrame()
144 ? info.function_offset in RenderFrame()
163 if (!info.file && info.function_offset != AddressInfo::kUnknown) in RenderFrame()
164 buffer->append("+0x%zx", info.function_offset); in RenderFrame()
HDsanitizer_symbolizer.cpp24 function_offset = kUnknown; in AddressInfo()
32 function_offset = kUnknown; in Clear()
HDsanitizer_symbolizer_mac.cpp36 stack->info.function_offset = addr - reinterpret_cast<uptr>(info.dli_saddr); in SymbolizePC()
172 stack->info.function_offset = addr - start_address; in SymbolizePC()
HDsanitizer_symbolizer.h38 uptr function_offset; member
HDsanitizer_symbolizer_win.cpp156 frame->info.function_offset = (uptr)offset; in SymbolizePC()