Lines Matching refs:hi_pc

759     dw_addr_t hi_pc = LLDB_INVALID_ADDRESS;  in GetDIENamesAndRanges()  local
791 hi_pc += lo_pc; in GetDIENamesAndRanges()
800 hi_pc = form_value.Unsigned(); in GetDIENamesAndRanges()
804 do_offset = hi_pc != LLDB_INVALID_ADDRESS; in GetDIENamesAndRanges()
806hi_pc += lo_pc; // DWARF 4 introduces <offset-from-lo-pc> to save on relocations in GetDIENamesAndRanges()
913 if (hi_pc != LLDB_INVALID_ADDRESS && hi_pc > lo_pc) in GetDIENamesAndRanges()
914 ranges.Append(DWARFDebugRanges::Range (lo_pc, hi_pc - lo_pc)); in GetDIENamesAndRanges()
1449 dw_addr_t hi_pc = form_value.Unsigned(); in GetAttributeHighPC() local
1451 hi_pc += lo_pc; // DWARF4 can specify the hi_pc as an <offset-from-lowpc> in GetAttributeHighPC()
1452 return hi_pc; in GetAttributeHighPC()
1471 dw_addr_t& hi_pc, in GetAttributeAddressRange() argument
1478 hi_pc = GetAttributeHighPC(dwarf2Data, cu, lo_pc, fail_value); in GetAttributeAddressRange()
1479 if (hi_pc != fail_value) in GetAttributeAddressRange()
1483 hi_pc = fail_value; in GetAttributeAddressRange()
1818 dw_addr_t hi_pc = LLDB_INVALID_ADDRESS; in BuildAddressRangeTable() local
1819 if (GetAttributeAddressRange(dwarf2Data, cu, lo_pc, hi_pc, LLDB_INVALID_ADDRESS)) in BuildAddressRangeTable()
1822 debug_aranges->AppendRange (cu->GetOffset(), lo_pc, hi_pc); in BuildAddressRangeTable()
1857 dw_addr_t hi_pc = LLDB_INVALID_ADDRESS; in BuildFunctionAddressRangeTable() local
1858 if (GetAttributeAddressRange(dwarf2Data, cu, lo_pc, hi_pc, LLDB_INVALID_ADDRESS)) in BuildFunctionAddressRangeTable()
1861 debug_aranges->AppendRange (GetOffset(), lo_pc, hi_pc); in BuildFunctionAddressRangeTable()
2148 dw_addr_t hi_pc = GetAttributeHighPC(dwarf2Data, cu, lo_pc, LLDB_INVALID_ADDRESS); in LookupAddress() local
2149 if (hi_pc != LLDB_INVALID_ADDRESS) in LookupAddress()
2152 if ((lo_pc <= address) && (address < hi_pc)) in LookupAddress()