9#ifndef LLVM_DWARFLINKER_ADDRESSESMAP_H
10#define LLVM_DWARFLINKER_ADDRESSESMAP_H
55 virtual std::optional<int64_t>
66 bool IsLittleEndian) = 0;
101 virtual std::optional<uint64_t>
114 int64_t Adjustment) {
118 assert(Symbol->LowPC <= LowPC && LowPC < Symbol->HighPC &&
119 "Symbol range must contain the address it was looked up for");
120 uint64_t LinkedSymbolHighPC = Symbol->HighPC + Adjustment;
121 assert(LinkedSymbolHighPC > Symbol->LowPC + Adjustment &&
122 "Adjusting a symbol range must preserve its order");
123 std::optional<uint64_t> NextStart =
127 assert(*NextStart >= LinkedSymbolHighPC &&
128 "A range must never be cut short of its own symbol");
129 return std::min(HighPC, *NextStart - Adjustment);
138 std::pair<bool, std::optional<int64_t>>
141 DIE.
getTag() == dwarf::DW_TAG_constant) &&
142 "Wrong type of input die");
144 const auto *Abbrev =
DIE.getAbbreviationDeclarationPtr();
148 std::optional<uint32_t> LocationIdx =
149 Abbrev->findAttributeIndex(dwarf::DW_AT_location);
151 return std::make_pair(
false, std::nullopt);
155 Abbrev->getAttributeOffsetFromIndex(*LocationIdx,
DIE.
getOffset(), *U);
158 std::optional<DWARFFormValue> LocationValue =
159 Abbrev->getAttributeValueFromOffset(*LocationIdx, AttrOffset, *U);
161 return std::make_pair(
false, std::nullopt);
166 std::optional<ArrayRef<uint8_t>> Expr = LocationValue->getAsBlock();
168 return std::make_pair(
false, std::nullopt);
173 U->getFormParams().Format);
175 bool HasLocationAddress =
false;
183 switch (
Op.getCode()) {
184 case dwarf::DW_OP_const2u:
185 case dwarf::DW_OP_const4u:
186 case dwarf::DW_OP_const8u:
187 case dwarf::DW_OP_const2s:
188 case dwarf::DW_OP_const4s:
189 case dwarf::DW_OP_const8s:
194 case dwarf::DW_OP_addr: {
195 HasLocationAddress =
true;
197 if (std::optional<int64_t> RelocAdjustment =
199 *U,
Op, AttrOffset + CurExprOffset,
200 AttrOffset +
Op.getEndOffset(),
Verbose))
201 return std::make_pair(HasLocationAddress, *RelocAdjustment);
203 case dwarf::DW_OP_constx:
204 case dwarf::DW_OP_addrx: {
205 HasLocationAddress =
true;
206 if (std::optional<uint64_t> AddressOffset =
207 DIE.getDwarfUnit()->getIndexedAddressOffset(
208 Op.getRawOperand(0))) {
210 if (std::optional<int64_t> RelocAdjustment =
212 *U,
Op, *AddressOffset,
213 *AddressOffset +
DIE.getDwarfUnit()->getAddressByteSize(),
215 return std::make_pair(HasLocationAddress, *RelocAdjustment);
222 CurExprOffset =
Op.getEndOffset();
225 return std::make_pair(HasLocationAddress, std::nullopt);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AddressRangesMap class maps values to the address ranges.
A structured debug information entry.
unsigned getOffset() const
Get the compile/type unit relative offset of this DIE.
dwarf::Tag getTag() const
Utility class that carries the DWARF compile/type unit and the debug info entry in an object.
This class represents an Operation in the Expression.
An iterator to go through the expression operations.
Class representing an expression and its matching format.
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
AddressesMap represents information about valid addresses used by debug information.
virtual bool hasValidRelocs()=0
Checks that there are valid relocations in the .debug_info section.
virtual void updateAndSaveValidRelocs(bool IsDWARF5, uint64_t OriginalUnitOffset, int64_t LinkedOffset, uint64_t StartOffset, uint64_t EndOffset)=0
Update and save relocation values to be serialized.
virtual void clear()=0
Erases all data.
virtual std::optional< uint64_t > getNextLinkedSymbolStart(uint64_t LinkedAddr)
Returns the linked address of the first symbol placed at or after LinkedAddr, if one is known.
virtual bool needToSaveValidRelocs()=0
Check if the linker needs to gather and save relocation info.
virtual std::optional< StringRef > getLibraryInstallName()=0
virtual ~AddressesMap()=default
uint64_t constrainCodeRangeHighPC(uint64_t LowPC, uint64_t HighPC, int64_t Adjustment)
Constrains the end of the code range starting at LowPC, whose addresses shift by Adjustment in the ou...
virtual std::optional< SymbolRange > getSymbolRangeForAddress(uint64_t Addr)
Returns the symbol range [LowPC, HighPC) containing Addr, if known.
virtual bool applyValidRelocs(MutableArrayRef< char > Data, uint64_t BaseOffset, bool IsLittleEndian)=0
Apply the valid relocations to the buffer Data, taking into account that Data is at BaseOffset in the...
virtual std::optional< int64_t > getExprOpAddressRelocAdjustment(DWARFUnit &U, const DWARFExpression::Operation &Op, uint64_t StartOffset, uint64_t EndOffset, bool Verbose)=0
Checks that the specified DWARF expression operand Op references live code section and returns the re...
virtual void updateRelocationsWithUnitOffset(uint64_t OriginalUnitOffset, uint64_t OutputUnitOffset)=0
Update the valid relocations that used OriginalUnitOffset as the compile unit offset,...
std::pair< bool, std::optional< int64_t > > getVariableRelocAdjustment(const DWARFDie &DIE, bool Verbose)
This function checks whether variable has DWARF expression containing operation referencing live addr...
virtual std::optional< int64_t > getSubprogramRelocAdjustment(const DWARFDie &DIE, bool Verbose)=0
Checks that the specified subprogram DIE references the live code section and returns the relocation ...
AddressRangesMap RangesTy
Mapped value in the address map is the offset to apply to the linked address.
bool isTlsAddressOp(uint8_t O)
This is an optimization pass for GlobalISel generic memory operations.
DWARFExpression::Operation Op
SymbolRange(uint64_t LowPC, uint64_t HighPC)