Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/DWARFLinker/
H A DDWARFLinkerCompileUnit.cpp134 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset); in addFunctionRange()
H A DDWARFLinker.cpp500 std::optional<uint64_t> HighPc = DIE.getHighPC(*LowPc); in shouldKeepSubprogramDIE() local
501 if (!HighPc) { in shouldKeepSubprogramDIE()
506 if (*LowPc > *HighPc) { in shouldKeepSubprogramDIE()
513 Ranges.insert({*LowPc, *HighPc}, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE()
514 Unit.addFunctionRange(*LowPc, *HighPc, MyInfo.AddrAdjust); in shouldKeepSubprogramDIE()
1209 if (uint64_t HighPc = Unit.getHighPc()) in cloneAddressAttribute() local
1210 Addr = HighPc; in cloneAddressAttribute()
/openbsd-src/gnu/llvm/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerCompileUnit.h143 uint64_t getHighPc() const { return HighPc; } in getHighPc()
261 uint64_t HighPc = 0; variable