Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompactUnwindInfo.h55 uint32_t function_offset; // The offset of the first function covered by member
68 : function_offset(0), second_level(0), lsda_array_start(0), in UnwindIndex()
72 return function_offset < rhs.function_offset;
76 return function_offset == rhs.function_offset;
116 uint32_t entry_count, uint32_t function_offset,
128 uint32_t function_offset);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp348 uint32_t function_offset = in ScanIndex() local
361 function_offset &= ~1ull; in ScanIndex()
364 this_index.function_offset = function_offset; in ScanIndex()
401 if (mid_func_offset == function_offset) { in GetLSDAForFunctionOffset()
404 if (mid_func_offset < function_offset) { in GetLSDAForFunctionOffset()
436 if (mid_func_offset <= function_offset) { in BinarySearchRegularSecondPage()
437 if (mid == last || (next_func_offset > function_offset)) { in BinarySearchRegularSecondPage()
513 addr_t function_offset = in GetCompactUnwindInfoForFunction() local
517 key.function_offset = function_offset; in GetCompactUnwindInfoForFunction()
525 if (it->function_offset != key.function_offset) { in GetCompactUnwindInfoForFunction()
[all …]
H A DSymbolContext.cpp122 const addr_t function_offset = in DumpStopContext() local
128 s->Printf("+%" PRIu64 ">", function_offset); in DumpStopContext()
129 } else if (function_offset) { in DumpStopContext()
131 s->Printf(" + %" PRIu64, function_offset); in DumpStopContext()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cc144 buffer->append("0x%zx", info.function_offset != AddressInfo::kUnknown in RenderFrame()
145 ? info.function_offset in RenderFrame()
164 if (!info.file && info.function_offset != AddressInfo::kUnknown) in RenderFrame()
165 buffer->append("+0x%zx", info.function_offset); in RenderFrame()
H A Dsanitizer_symbolizer.cc25 function_offset = kUnknown; in AddressInfo()
33 function_offset = kUnknown; in Clear()
H A Dsanitizer_symbolizer.h38 uptr function_offset; member
H A Dsanitizer_symbolizer_win.cc154 frame->info.function_offset = (uptr)offset; in SymbolizePC()