Home
last modified time | relevance | path

Searched refs:lo_pc (Results 1 – 5 of 5) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.cpp758 dw_addr_t lo_pc = LLDB_INVALID_ADDRESS; in GetDIENamesAndRanges() local
788 lo_pc = form_value.Unsigned(); in GetDIENamesAndRanges()
791 hi_pc += lo_pc; in GetDIENamesAndRanges()
796 lo_pc = form_value.Unsigned(); in GetDIENamesAndRanges()
803 if (lo_pc == LLDB_INVALID_ADDRESS) in GetDIENamesAndRanges()
806 … hi_pc += lo_pc; // DWARF 4 introduces <offset-from-lo-pc> to save on relocations in GetDIENamesAndRanges()
888 if (lo_pc != LLDB_INVALID_ADDRESS) in GetDIENamesAndRanges()
890 assert (lo_pc >= cu->GetBaseAddress()); in GetDIENamesAndRanges()
891 frame_base->SetLocationListSlide(lo_pc - cu->GetBaseAddress()); in GetDIENamesAndRanges()
911 if (lo_pc != LLDB_INVALID_ADDRESS) in GetDIENamesAndRanges()
[all …]
DDWARFDebugInfoEntry.h203 dw_addr_t lo_pc,
209 dw_addr_t& lo_pc,
/external/lldb/examples/functions/
Dmain.cpp233 addr_t lo_pc = function.GetStartAddress().GetFileAddress(); in main() local
234 if (lo_pc == LLDB_INVALID_ADDRESS) in main()
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.cpp1113 addr_t lo_pc = m_data.GetAddress(&offset); in LocationListContainsAddress() local
1115 if (lo_pc == 0 && hi_pc == 0) in LocationListContainsAddress()
1119 lo_pc += loclist_base_addr - m_loclist_slide; in LocationListContainsAddress()
1122 if (lo_pc <= addr && addr < hi_pc) in LocationListContainsAddress()
1149 addr_t lo_pc = m_data.GetAddress(&offset); in GetLocation() local
1151 if (lo_pc == 0 && hi_pc == 0) in GetLocation()
1157 lo_pc += curr_base_addr - m_loclist_slide; in GetLocation()
1162 if (length > 0 && lo_pc <= pc && pc < hi_pc) in GetLocation()
1256 addr_t lo_pc = m_data.GetAddress(&offset); in Evaluate() local
1258 if (lo_pc == 0 && hi_pc == 0) in Evaluate()
[all …]
/external/llvm/test/DebugInfo/X86/
Ddebug-loc-offset.ll32 ; Checking that we have two compile units with two sets of high/lo_pc.