Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.cpp759 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()
[all …]
DDWARFDebugInfoEntry.h210 dw_addr_t& hi_pc,
/external/lldb/examples/functions/
Dmain.cpp239 addr_t hi_pc = function.GetEndAddress().GetFileAddress(); in main() local
260 … printf (" range: [0x%16.16llx - 0x%16.16llx)\n type: ", lo_pc, hi_pc); in main()
264 printf ("[0x%16.16llx - 0x%16.16llx) ", lo_pc, hi_pc); in main()
/external/lldb/source/Expression/
DDWARFExpression.cpp1114 addr_t hi_pc = m_data.GetAddress(&offset); in LocationListContainsAddress() local
1115 if (lo_pc == 0 && hi_pc == 0) in LocationListContainsAddress()
1120 hi_pc += loclist_base_addr - m_loclist_slide; in LocationListContainsAddress()
1122 if (lo_pc <= addr && addr < hi_pc) in LocationListContainsAddress()
1150 addr_t hi_pc = m_data.GetAddress(&offset); in GetLocation() local
1151 if (lo_pc == 0 && hi_pc == 0) in GetLocation()
1158 hi_pc += curr_base_addr - m_loclist_slide; in GetLocation()
1162 if (length > 0 && lo_pc <= pc && pc < hi_pc) in GetLocation()
1257 addr_t hi_pc = m_data.GetAddress(&offset); in Evaluate() local
1258 if (lo_pc == 0 && hi_pc == 0) in Evaluate()
[all …]