Home
last modified time | relevance | path

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

/external/llvm/tools/dsymutil/
DDwarfLinker.cpp2149 DWARFFormValue HighPcValue; in shouldKeepSubprogramDIE() local
2150 if (!DIE.getAttributeValue(&OrigUnit, dwarf::DW_AT_high_pc, HighPcValue)) { in shouldKeepSubprogramDIE()
2157 if (HighPcValue.isFormClass(DWARFFormValue::FC_Address)) { in shouldKeepSubprogramDIE()
2158 HighPc = *HighPcValue.getAsAddress(&OrigUnit); in shouldKeepSubprogramDIE()
2160 assert(HighPcValue.isFormClass(DWARFFormValue::FC_Constant)); in shouldKeepSubprogramDIE()
2161 HighPc = LowPc + *HighPcValue.getAsUnsignedConstant(); in shouldKeepSubprogramDIE()