Searched refs:PcOffset (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinkerCompileUnit.cpp | 102 void CompileUnit::addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset) { in addLabelLowPc() argument 103 Labels.insert({LabelLowPc, PcOffset}); in addLabelLowPc() 107 int64_t PcOffset) { in addFunctionRange() argument 108 Ranges.insert({FuncLowPc, FuncHighPc}, PcOffset); in addFunctionRange() 109 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset); in addFunctionRange() 110 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset); in addFunctionRange() 120 void CompileUnit::noteLocationAttribute(PatchLocation Attr, int64_t PcOffset) { in noteLocationAttribute() argument 121 LocationAttributes.emplace_back(Attr, PcOffset); in noteLocationAttribute()
|
| H A D | DWARFStreamer.cpp | 330 int64_t PcOffset = in emitRangesEntries() local 345 MS->emitIntValue(Range.StartAddress + PcOffset, AddressSize); in emitRangesEntries() 346 MS->emitIntValue(Range.EndAddress + PcOffset, AddressSize); in emitRangesEntries() 425 int64_t PcOffset = -Unit.getLowPc(); in emitUnitRangesEntries() local 428 MS->emitIntValue(Range->first + PcOffset, AddressSize); in emitUnitRangesEntries() 431 MS->emitIntValue(Range->second + PcOffset, AddressSize); in emitUnitRangesEntries()
|
| /llvm-project-15.0.7/llvm/include/llvm/DWARFLinker/ |
| H A D | DWARFLinkerCompileUnit.h | 175 void addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset); 186 void noteLocationAttribute(PatchLocation Attr, int64_t PcOffset);
|