Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/
DDWARFLinkerCompileUnit.cpp105 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset); in addFunctionRange()
/external/llvm-project/llvm/lib/DWARFLinker/
DDWARFLinkerCompileUnit.cpp113 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset); in addFunctionRange()
DDWARFLinker.cpp513 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/
DDWARFLinkerCompileUnit.h128 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/
DDWARFLinkerCompileUnit.h132 uint64_t getLowPc() const { return LowPc; } in getLowPc()
268 uint64_t LowPc = std::numeric_limits<uint64_t>::max();
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp200 : 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()