Home | History | Annotate | Download | only in dsymutil

Lines Matching refs:LowPc

200       : OrigUnit(OrigUnit), ID(ID), LowPc(UINT64_MAX), HighPc(0), RangeAlloc(),
241 uint64_t getLowPc() const { return LowPc; }
281 /// \brief Add a function range [\p LowPC, \p HighPC) that is
283 void addFunctionRange(uint64_t LowPC, uint64_t HighPC, int64_t PCOffset);
341 uint64_t LowPc;
434 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset);
2137 uint64_t LowPc =
2139 assert(LowPc != -1ULL && "low_pc attribute is not an address.");
2140 if (LowPc == -1ULL ||
2161 HighPc = LowPc + *HighPcValue.getAsUnsignedConstant();
2165 Ranges[LowPc] = std::make_pair(HighPc, MyInfo.AddrAdjust);
2166 Unit.addFunctionRange(LowPc, HighPc, MyInfo.AddrAdjust);