Searched refs:LowPc (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/ |
D | DWARFLinkerCompileUnit.cpp | 105 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset); in addFunctionRange()
|
/external/llvm-project/llvm/lib/DWARFLinker/ |
D | DWARFLinkerCompileUnit.cpp | 113 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset); in addFunctionRange()
|
D | DWARFLinker.cpp | 513 auto LowPc = dwarf::toAddress(DIE.find(dwarf::DW_AT_low_pc)); in shouldKeepSubprogramDIE() local 514 assert(LowPc.hasValue() && "low_pc attribute is not an address."); in shouldKeepSubprogramDIE() 515 if (!LowPc || in shouldKeepSubprogramDIE() 528 if (Unit.hasLabelAt(*LowPc)) in shouldKeepSubprogramDIE() 535 .getValueOr(UINT64_MAX) <= LowPc) in shouldKeepSubprogramDIE() 537 Unit.addLabelLowPc(*LowPc, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE() 543 Optional<uint64_t> HighPc = DIE.getHighPC(*LowPc); in shouldKeepSubprogramDIE() 551 Ranges[*LowPc] = ObjFileAddressRange(*HighPc, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE() 552 Unit.addFunctionRange(*LowPc, *HighPc, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerCompileUnit.h | 128 uint64_t getLowPc() const { return LowPc; } in getLowPc() 264 uint64_t LowPc = std::numeric_limits<uint64_t>::max();
|
/external/llvm-project/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerCompileUnit.h | 132 uint64_t getLowPc() const { return LowPc; } in getLowPc() 268 uint64_t LowPc = std::numeric_limits<uint64_t>::max();
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 200 : OrigUnit(OrigUnit), ID(ID), LowPc(UINT64_MAX), HighPc(0), RangeAlloc(), in CompileUnit() 241 uint64_t getLowPc() const { return LowPc; } in getLowPc() 341 uint64_t LowPc; member in llvm::dsymutil::__anondabe43b60111::CompileUnit 434 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset); in addFunctionRange() 2137 uint64_t LowPc = in shouldKeepSubprogramDIE() local 2139 assert(LowPc != -1ULL && "low_pc attribute is not an address."); in shouldKeepSubprogramDIE() 2140 if (LowPc == -1ULL || in shouldKeepSubprogramDIE() 2161 HighPc = LowPc + *HighPcValue.getAsUnsignedConstant(); in shouldKeepSubprogramDIE() 2165 Ranges[LowPc] = std::make_pair(HighPc, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE() 2166 Unit.addFunctionRange(LowPc, HighPc, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE()
|