Home
last modified time | relevance | path

Searched refs:hi_pc (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.cpp232 dw_addr_t hi_pc = LLDB_INVALID_ADDRESS; in GetDIENamesAndRanges() local
262 hi_pc += lo_pc; in GetDIENamesAndRanges()
274 hi_pc = form_value.Address(); in GetDIENamesAndRanges()
276 hi_pc = form_value.Unsigned(); in GetDIENamesAndRanges()
278 do_offset = hi_pc != LLDB_INVALID_ADDRESS; in GetDIENamesAndRanges()
280 hi_pc += lo_pc; // DWARF 4 introduces <offset-from-lo-pc> to save in GetDIENamesAndRanges()
373 if (hi_pc != LLDB_INVALID_ADDRESS && hi_pc > lo_pc) in GetDIENamesAndRanges()
374 ranges.Append(DWARFRangeList::Entry(lo_pc, hi_pc - lo_pc)); in GetDIENamesAndRanges()
598 const DWARFUnit *cu, dw_addr_t &lo_pc, dw_addr_t &hi_pc, in GetAttributeAddressRange() argument
603 hi_pc = GetAttributeHighPC(cu, lo_pc, fail_value, in GetAttributeAddressRange()
[all …]
DDWARFDebugInfoEntry.h84 const DWARFUnit *cu, dw_addr_t &lo_pc, dw_addr_t &hi_pc,
/external/llvm-project/lldb/examples/functions/
Dmain.cpp223 addr_t hi_pc = function.GetEndAddress().GetFileAddress(); in main() local
244 lo_pc, hi_pc); in main()
246 printf("[0x%16.16llx - 0x%16.16llx) ", lo_pc, hi_pc); in main()