Searched refs:PcOffset (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/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 112 Ranges.insert(FuncLowPc, FuncHighPc, PcOffset); in addFunctionRange() 113 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset); in addFunctionRange() 114 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset); in addFunctionRange() 124 void CompileUnit::noteLocationAttribute(PatchLocation Attr, int64_t PcOffset) { in noteLocationAttribute() argument 125 LocationAttributes.emplace_back(Attr, PcOffset); in noteLocationAttribute()
|
| H A D | DWARFStreamer.cpp | 317 int64_t PcOffset = Entries.empty() ? 0 : FuncRange.value() + UnitPcOffset; in emitRangesEntries() local 332 MS->emitIntValue(Range.StartAddress + PcOffset, AddressSize); in emitRangesEntries() 333 MS->emitIntValue(Range.EndAddress + PcOffset, AddressSize); in emitRangesEntries() 410 int64_t PcOffset = -Unit.getLowPc(); in emitUnitRangesEntries() local 413 MS->emitIntValue(Range->first + PcOffset, AddressSize); in emitUnitRangesEntries() 416 MS->emitIntValue(Range->second + PcOffset, AddressSize); in emitUnitRangesEntries()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWARFLinker/ |
| H A D | DWARFLinkerCompileUnit.h | 176 void addLabelLowPc(uint64_t LabelLowPc, int64_t PcOffset); 187 void noteLocationAttribute(PatchLocation Attr, int64_t PcOffset);
|