Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/DWARFLinker/
H A DDWARFLinkerCompileUnit.cpp110 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset); in addFunctionRange()
H A DDWARFLinker.cpp501 Optional<uint64_t> HighPc = DIE.getHighPC(*LowPc); in shouldKeepSubprogramDIE() local
502 if (!HighPc) { in shouldKeepSubprogramDIE()
507 if (*LowPc > *HighPc) { in shouldKeepSubprogramDIE()
514 Ranges.insert({*LowPc, *HighPc}, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE()
515 Unit.addFunctionRange(*LowPc, *HighPc, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE()
1148 if (uint64_t HighPc = Unit.getHighPc()) in cloneAddressAttribute() local
1149 Addr = HighPc; in cloneAddressAttribute()
/llvm-project-15.0.7/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h135 uint64_t getHighPc() const { return HighPc; } in getHighPc()
253 uint64_t HighPc = 0; variable