10b57cec5SDimitry Andric //===- MCFragment.h - Fragment type hierarchy -------------------*- C++ -*-===// 20b57cec5SDimitry Andric // 30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 60b57cec5SDimitry Andric // 70b57cec5SDimitry Andric //===----------------------------------------------------------------------===// 80b57cec5SDimitry Andric 90b57cec5SDimitry Andric #ifndef LLVM_MC_MCFRAGMENT_H 100b57cec5SDimitry Andric #define LLVM_MC_MCFRAGMENT_H 110b57cec5SDimitry Andric 120b57cec5SDimitry Andric #include "llvm/ADT/ArrayRef.h" 130b57cec5SDimitry Andric #include "llvm/ADT/SmallString.h" 140b57cec5SDimitry Andric #include "llvm/ADT/SmallVector.h" 150b57cec5SDimitry Andric #include "llvm/ADT/StringRef.h" 160b57cec5SDimitry Andric #include "llvm/ADT/ilist_node.h" 170b57cec5SDimitry Andric #include "llvm/MC/MCFixup.h" 180b57cec5SDimitry Andric #include "llvm/MC/MCInst.h" 19480093f4SDimitry Andric #include "llvm/Support/Alignment.h" 200b57cec5SDimitry Andric #include "llvm/Support/SMLoc.h" 210b57cec5SDimitry Andric #include <cstdint> 220b57cec5SDimitry Andric #include <utility> 230b57cec5SDimitry Andric 240b57cec5SDimitry Andric namespace llvm { 250b57cec5SDimitry Andric 260b57cec5SDimitry Andric class MCSection; 270b57cec5SDimitry Andric class MCSubtargetInfo; 280b57cec5SDimitry Andric class MCSymbol; 290b57cec5SDimitry Andric 300b57cec5SDimitry Andric class MCFragment : public ilist_node_with_parent<MCFragment, MCSection> { 310b57cec5SDimitry Andric friend class MCAsmLayout; 320b57cec5SDimitry Andric 330b57cec5SDimitry Andric public: 340b57cec5SDimitry Andric enum FragmentType : uint8_t { 350b57cec5SDimitry Andric FT_Align, 360b57cec5SDimitry Andric FT_Data, 370b57cec5SDimitry Andric FT_CompactEncodedInst, 380b57cec5SDimitry Andric FT_Fill, 39e8d8bef9SDimitry Andric FT_Nops, 400b57cec5SDimitry Andric FT_Relaxable, 410b57cec5SDimitry Andric FT_Org, 420b57cec5SDimitry Andric FT_Dwarf, 430b57cec5SDimitry Andric FT_DwarfFrame, 440b57cec5SDimitry Andric FT_LEB, 45480093f4SDimitry Andric FT_BoundaryAlign, 460b57cec5SDimitry Andric FT_SymbolId, 470b57cec5SDimitry Andric FT_CVInlineLines, 480b57cec5SDimitry Andric FT_CVDefRange, 49e8d8bef9SDimitry Andric FT_PseudoProbe, 500b57cec5SDimitry Andric FT_Dummy 510b57cec5SDimitry Andric }; 520b57cec5SDimitry Andric 530b57cec5SDimitry Andric private: 54480093f4SDimitry Andric /// The data for the section this fragment is in. 55480093f4SDimitry Andric MCSection *Parent; 56480093f4SDimitry Andric 57480093f4SDimitry Andric /// The atom this fragment is in, as represented by its defining symbol. 58480093f4SDimitry Andric const MCSymbol *Atom; 59480093f4SDimitry Andric 60480093f4SDimitry Andric /// The offset of this fragment in its section. This is ~0 until 61480093f4SDimitry Andric /// initialized. 62480093f4SDimitry Andric uint64_t Offset; 63480093f4SDimitry Andric 64480093f4SDimitry Andric /// The layout order of this fragment. 65480093f4SDimitry Andric unsigned LayoutOrder; 66480093f4SDimitry Andric 67e8d8bef9SDimitry Andric /// The subsection this fragment belongs to. This is 0 if the fragment is not 68e8d8bef9SDimitry Andric // in any subsection. 69e8d8bef9SDimitry Andric unsigned SubsectionNumber = 0; 70e8d8bef9SDimitry Andric 710b57cec5SDimitry Andric FragmentType Kind; 720b57cec5SDimitry Andric 735ffd83dbSDimitry Andric /// Whether fragment is being laid out. 745ffd83dbSDimitry Andric bool IsBeingLaidOut; 755ffd83dbSDimitry Andric 760b57cec5SDimitry Andric protected: 770b57cec5SDimitry Andric bool HasInstructions; 780b57cec5SDimitry Andric 790b57cec5SDimitry Andric MCFragment(FragmentType Kind, bool HasInstructions, 800b57cec5SDimitry Andric MCSection *Parent = nullptr); 810b57cec5SDimitry Andric 820b57cec5SDimitry Andric public: 830b57cec5SDimitry Andric MCFragment() = delete; 840b57cec5SDimitry Andric MCFragment(const MCFragment &) = delete; 850b57cec5SDimitry Andric MCFragment &operator=(const MCFragment &) = delete; 860b57cec5SDimitry Andric 870b57cec5SDimitry Andric /// Destroys the current fragment. 880b57cec5SDimitry Andric /// 890b57cec5SDimitry Andric /// This must be used instead of delete as MCFragment is non-virtual. 900b57cec5SDimitry Andric /// This method will dispatch to the appropriate subclass. 910b57cec5SDimitry Andric void destroy(); 920b57cec5SDimitry Andric 930b57cec5SDimitry Andric FragmentType getKind() const { return Kind; } 940b57cec5SDimitry Andric 950b57cec5SDimitry Andric MCSection *getParent() const { return Parent; } 960b57cec5SDimitry Andric void setParent(MCSection *Value) { Parent = Value; } 970b57cec5SDimitry Andric 980b57cec5SDimitry Andric const MCSymbol *getAtom() const { return Atom; } 990b57cec5SDimitry Andric void setAtom(const MCSymbol *Value) { Atom = Value; } 1000b57cec5SDimitry Andric 1010b57cec5SDimitry Andric unsigned getLayoutOrder() const { return LayoutOrder; } 1020b57cec5SDimitry Andric void setLayoutOrder(unsigned Value) { LayoutOrder = Value; } 1030b57cec5SDimitry Andric 1040b57cec5SDimitry Andric /// Does this fragment have instructions emitted into it? By default 1050b57cec5SDimitry Andric /// this is false, but specific fragment types may set it to true. 1060b57cec5SDimitry Andric bool hasInstructions() const { return HasInstructions; } 1070b57cec5SDimitry Andric 1080b57cec5SDimitry Andric void dump() const; 109e8d8bef9SDimitry Andric 110e8d8bef9SDimitry Andric void setSubsectionNumber(unsigned Value) { SubsectionNumber = Value; } 111e8d8bef9SDimitry Andric unsigned getSubsectionNumber() const { return SubsectionNumber; } 1120b57cec5SDimitry Andric }; 1130b57cec5SDimitry Andric 1140b57cec5SDimitry Andric class MCDummyFragment : public MCFragment { 1150b57cec5SDimitry Andric public: 1160b57cec5SDimitry Andric explicit MCDummyFragment(MCSection *Sec) : MCFragment(FT_Dummy, false, Sec) {} 1170b57cec5SDimitry Andric 1180b57cec5SDimitry Andric static bool classof(const MCFragment *F) { return F->getKind() == FT_Dummy; } 1190b57cec5SDimitry Andric }; 1200b57cec5SDimitry Andric 1210b57cec5SDimitry Andric /// Interface implemented by fragments that contain encoded instructions and/or 1220b57cec5SDimitry Andric /// data. 1230b57cec5SDimitry Andric /// 1240b57cec5SDimitry Andric class MCEncodedFragment : public MCFragment { 1250b57cec5SDimitry Andric /// Should this fragment be aligned to the end of a bundle? 1260b57cec5SDimitry Andric bool AlignToBundleEnd = false; 1270b57cec5SDimitry Andric 1280b57cec5SDimitry Andric uint8_t BundlePadding = 0; 1290b57cec5SDimitry Andric 1300b57cec5SDimitry Andric protected: 1310b57cec5SDimitry Andric MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, 1320b57cec5SDimitry Andric MCSection *Sec) 1330b57cec5SDimitry Andric : MCFragment(FType, HasInstructions, Sec) {} 1340b57cec5SDimitry Andric 135480093f4SDimitry Andric /// The MCSubtargetInfo in effect when the instruction was encoded. 136480093f4SDimitry Andric /// It must be non-null for instructions. 1370b57cec5SDimitry Andric const MCSubtargetInfo *STI = nullptr; 1380b57cec5SDimitry Andric 1390b57cec5SDimitry Andric public: 1400b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 1410b57cec5SDimitry Andric MCFragment::FragmentType Kind = F->getKind(); 1420b57cec5SDimitry Andric switch (Kind) { 1430b57cec5SDimitry Andric default: 1440b57cec5SDimitry Andric return false; 1450b57cec5SDimitry Andric case MCFragment::FT_Relaxable: 1460b57cec5SDimitry Andric case MCFragment::FT_CompactEncodedInst: 1470b57cec5SDimitry Andric case MCFragment::FT_Data: 1480b57cec5SDimitry Andric case MCFragment::FT_Dwarf: 1490b57cec5SDimitry Andric case MCFragment::FT_DwarfFrame: 150e8d8bef9SDimitry Andric case MCFragment::FT_PseudoProbe: 1510b57cec5SDimitry Andric return true; 1520b57cec5SDimitry Andric } 1530b57cec5SDimitry Andric } 1540b57cec5SDimitry Andric 1550b57cec5SDimitry Andric /// Should this fragment be placed at the end of an aligned bundle? 1560b57cec5SDimitry Andric bool alignToBundleEnd() const { return AlignToBundleEnd; } 1570b57cec5SDimitry Andric void setAlignToBundleEnd(bool V) { AlignToBundleEnd = V; } 1580b57cec5SDimitry Andric 1590b57cec5SDimitry Andric /// Get the padding size that must be inserted before this fragment. 1600b57cec5SDimitry Andric /// Used for bundling. By default, no padding is inserted. 1610b57cec5SDimitry Andric /// Note that padding size is restricted to 8 bits. This is an optimization 1620b57cec5SDimitry Andric /// to reduce the amount of space used for each fragment. In practice, larger 1630b57cec5SDimitry Andric /// padding should never be required. 1640b57cec5SDimitry Andric uint8_t getBundlePadding() const { return BundlePadding; } 1650b57cec5SDimitry Andric 1660b57cec5SDimitry Andric /// Set the padding size for this fragment. By default it's a no-op, 1670b57cec5SDimitry Andric /// and only some fragments have a meaningful implementation. 1680b57cec5SDimitry Andric void setBundlePadding(uint8_t N) { BundlePadding = N; } 1690b57cec5SDimitry Andric 1700b57cec5SDimitry Andric /// Retrieve the MCSubTargetInfo in effect when the instruction was encoded. 1710b57cec5SDimitry Andric /// Guaranteed to be non-null if hasInstructions() == true 1720b57cec5SDimitry Andric const MCSubtargetInfo *getSubtargetInfo() const { return STI; } 1730b57cec5SDimitry Andric 1740b57cec5SDimitry Andric /// Record that the fragment contains instructions with the MCSubtargetInfo in 1750b57cec5SDimitry Andric /// effect when the instruction was encoded. 1760b57cec5SDimitry Andric void setHasInstructions(const MCSubtargetInfo &STI) { 1770b57cec5SDimitry Andric HasInstructions = true; 1780b57cec5SDimitry Andric this->STI = &STI; 1790b57cec5SDimitry Andric } 1800b57cec5SDimitry Andric }; 1810b57cec5SDimitry Andric 1820b57cec5SDimitry Andric /// Interface implemented by fragments that contain encoded instructions and/or 1830b57cec5SDimitry Andric /// data. 1840b57cec5SDimitry Andric /// 1850b57cec5SDimitry Andric template<unsigned ContentsSize> 1860b57cec5SDimitry Andric class MCEncodedFragmentWithContents : public MCEncodedFragment { 1870b57cec5SDimitry Andric SmallVector<char, ContentsSize> Contents; 1880b57cec5SDimitry Andric 1890b57cec5SDimitry Andric protected: 1900b57cec5SDimitry Andric MCEncodedFragmentWithContents(MCFragment::FragmentType FType, 1910b57cec5SDimitry Andric bool HasInstructions, 1920b57cec5SDimitry Andric MCSection *Sec) 1930b57cec5SDimitry Andric : MCEncodedFragment(FType, HasInstructions, Sec) {} 1940b57cec5SDimitry Andric 1950b57cec5SDimitry Andric public: 1960b57cec5SDimitry Andric SmallVectorImpl<char> &getContents() { return Contents; } 1970b57cec5SDimitry Andric const SmallVectorImpl<char> &getContents() const { return Contents; } 1980b57cec5SDimitry Andric }; 1990b57cec5SDimitry Andric 2000b57cec5SDimitry Andric /// Interface implemented by fragments that contain encoded instructions and/or 2010b57cec5SDimitry Andric /// data and also have fixups registered. 2020b57cec5SDimitry Andric /// 2030b57cec5SDimitry Andric template<unsigned ContentsSize, unsigned FixupsSize> 2040b57cec5SDimitry Andric class MCEncodedFragmentWithFixups : 2050b57cec5SDimitry Andric public MCEncodedFragmentWithContents<ContentsSize> { 2060b57cec5SDimitry Andric 207480093f4SDimitry Andric /// The list of fixups in this fragment. 2080b57cec5SDimitry Andric SmallVector<MCFixup, FixupsSize> Fixups; 2090b57cec5SDimitry Andric 2100b57cec5SDimitry Andric protected: 2110b57cec5SDimitry Andric MCEncodedFragmentWithFixups(MCFragment::FragmentType FType, 2120b57cec5SDimitry Andric bool HasInstructions, 2130b57cec5SDimitry Andric MCSection *Sec) 2140b57cec5SDimitry Andric : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, 2150b57cec5SDimitry Andric Sec) {} 2160b57cec5SDimitry Andric 2170b57cec5SDimitry Andric public: 2180b57cec5SDimitry Andric 2190b57cec5SDimitry Andric using const_fixup_iterator = SmallVectorImpl<MCFixup>::const_iterator; 2200b57cec5SDimitry Andric using fixup_iterator = SmallVectorImpl<MCFixup>::iterator; 2210b57cec5SDimitry Andric 2220b57cec5SDimitry Andric SmallVectorImpl<MCFixup> &getFixups() { return Fixups; } 2230b57cec5SDimitry Andric const SmallVectorImpl<MCFixup> &getFixups() const { return Fixups; } 2240b57cec5SDimitry Andric 2250b57cec5SDimitry Andric fixup_iterator fixup_begin() { return Fixups.begin(); } 2260b57cec5SDimitry Andric const_fixup_iterator fixup_begin() const { return Fixups.begin(); } 2270b57cec5SDimitry Andric 2280b57cec5SDimitry Andric fixup_iterator fixup_end() { return Fixups.end(); } 2290b57cec5SDimitry Andric const_fixup_iterator fixup_end() const { return Fixups.end(); } 2300b57cec5SDimitry Andric 2310b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 2320b57cec5SDimitry Andric MCFragment::FragmentType Kind = F->getKind(); 2330b57cec5SDimitry Andric return Kind == MCFragment::FT_Relaxable || Kind == MCFragment::FT_Data || 2340b57cec5SDimitry Andric Kind == MCFragment::FT_CVDefRange || Kind == MCFragment::FT_Dwarf || 2350b57cec5SDimitry Andric Kind == MCFragment::FT_DwarfFrame; 2360b57cec5SDimitry Andric } 2370b57cec5SDimitry Andric }; 2380b57cec5SDimitry Andric 2390b57cec5SDimitry Andric /// Fragment for data and encoded instructions. 2400b57cec5SDimitry Andric /// 2410b57cec5SDimitry Andric class MCDataFragment : public MCEncodedFragmentWithFixups<32, 4> { 2420b57cec5SDimitry Andric public: 2430b57cec5SDimitry Andric MCDataFragment(MCSection *Sec = nullptr) 2440b57cec5SDimitry Andric : MCEncodedFragmentWithFixups<32, 4>(FT_Data, false, Sec) {} 2450b57cec5SDimitry Andric 2460b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 2470b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_Data; 2480b57cec5SDimitry Andric } 2490b57cec5SDimitry Andric }; 2500b57cec5SDimitry Andric 2510b57cec5SDimitry Andric /// This is a compact (memory-size-wise) fragment for holding an encoded 2520b57cec5SDimitry Andric /// instruction (non-relaxable) that has no fixups registered. When applicable, 2530b57cec5SDimitry Andric /// it can be used instead of MCDataFragment and lead to lower memory 2540b57cec5SDimitry Andric /// consumption. 2550b57cec5SDimitry Andric /// 2560b57cec5SDimitry Andric class MCCompactEncodedInstFragment : public MCEncodedFragmentWithContents<4> { 2570b57cec5SDimitry Andric public: 2580b57cec5SDimitry Andric MCCompactEncodedInstFragment(MCSection *Sec = nullptr) 2590b57cec5SDimitry Andric : MCEncodedFragmentWithContents(FT_CompactEncodedInst, true, Sec) { 2600b57cec5SDimitry Andric } 2610b57cec5SDimitry Andric 2620b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 2630b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_CompactEncodedInst; 2640b57cec5SDimitry Andric } 2650b57cec5SDimitry Andric }; 2660b57cec5SDimitry Andric 2670b57cec5SDimitry Andric /// A relaxable fragment holds on to its MCInst, since it may need to be 2680b57cec5SDimitry Andric /// relaxed during the assembler layout and relaxation stage. 2690b57cec5SDimitry Andric /// 2700b57cec5SDimitry Andric class MCRelaxableFragment : public MCEncodedFragmentWithFixups<8, 1> { 2710b57cec5SDimitry Andric 272480093f4SDimitry Andric /// The instruction this is a fragment for. 2730b57cec5SDimitry Andric MCInst Inst; 2745ffd83dbSDimitry Andric /// Can we auto pad the instruction? 2755ffd83dbSDimitry Andric bool AllowAutoPadding = false; 2760b57cec5SDimitry Andric 2770b57cec5SDimitry Andric public: 2780b57cec5SDimitry Andric MCRelaxableFragment(const MCInst &Inst, const MCSubtargetInfo &STI, 2790b57cec5SDimitry Andric MCSection *Sec = nullptr) 2800b57cec5SDimitry Andric : MCEncodedFragmentWithFixups(FT_Relaxable, true, Sec), 2810b57cec5SDimitry Andric Inst(Inst) { this->STI = &STI; } 2820b57cec5SDimitry Andric 2830b57cec5SDimitry Andric const MCInst &getInst() const { return Inst; } 2840b57cec5SDimitry Andric void setInst(const MCInst &Value) { Inst = Value; } 2850b57cec5SDimitry Andric 2865ffd83dbSDimitry Andric bool getAllowAutoPadding() const { return AllowAutoPadding; } 2875ffd83dbSDimitry Andric void setAllowAutoPadding(bool V) { AllowAutoPadding = V; } 2885ffd83dbSDimitry Andric 2890b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 2900b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_Relaxable; 2910b57cec5SDimitry Andric } 2920b57cec5SDimitry Andric }; 2930b57cec5SDimitry Andric 2940b57cec5SDimitry Andric class MCAlignFragment : public MCFragment { 295480093f4SDimitry Andric /// The alignment to ensure, in bytes. 296*81ad6265SDimitry Andric Align Alignment; 2970b57cec5SDimitry Andric 298480093f4SDimitry Andric /// Flag to indicate that (optimal) NOPs should be emitted instead 2990b57cec5SDimitry Andric /// of using the provided value. The exact interpretation of this flag is 3000b57cec5SDimitry Andric /// target dependent. 3010b57cec5SDimitry Andric bool EmitNops : 1; 3020b57cec5SDimitry Andric 303480093f4SDimitry Andric /// Value to use for filling padding bytes. 3040b57cec5SDimitry Andric int64_t Value; 3050b57cec5SDimitry Andric 306480093f4SDimitry Andric /// The size of the integer (in bytes) of \p Value. 3070b57cec5SDimitry Andric unsigned ValueSize; 3080b57cec5SDimitry Andric 309480093f4SDimitry Andric /// The maximum number of bytes to emit; if the alignment 3100b57cec5SDimitry Andric /// cannot be satisfied in this width then this fragment is ignored. 3110b57cec5SDimitry Andric unsigned MaxBytesToEmit; 3120b57cec5SDimitry Andric 313349cc55cSDimitry Andric /// When emitting Nops some subtargets have specific nop encodings. 314349cc55cSDimitry Andric const MCSubtargetInfo *STI; 315349cc55cSDimitry Andric 3160b57cec5SDimitry Andric public: 317*81ad6265SDimitry Andric MCAlignFragment(Align Alignment, int64_t Value, unsigned ValueSize, 3180b57cec5SDimitry Andric unsigned MaxBytesToEmit, MCSection *Sec = nullptr) 3190b57cec5SDimitry Andric : MCFragment(FT_Align, false, Sec), Alignment(Alignment), EmitNops(false), 3200b57cec5SDimitry Andric Value(Value), ValueSize(ValueSize), MaxBytesToEmit(MaxBytesToEmit) {} 3210b57cec5SDimitry Andric 322*81ad6265SDimitry Andric Align getAlignment() const { return Alignment; } 3230b57cec5SDimitry Andric 3240b57cec5SDimitry Andric int64_t getValue() const { return Value; } 3250b57cec5SDimitry Andric 3260b57cec5SDimitry Andric unsigned getValueSize() const { return ValueSize; } 3270b57cec5SDimitry Andric 3280b57cec5SDimitry Andric unsigned getMaxBytesToEmit() const { return MaxBytesToEmit; } 3290b57cec5SDimitry Andric 3300b57cec5SDimitry Andric bool hasEmitNops() const { return EmitNops; } 331349cc55cSDimitry Andric void setEmitNops(bool Value, const MCSubtargetInfo *STI) { 332349cc55cSDimitry Andric EmitNops = Value; 333349cc55cSDimitry Andric this->STI = STI; 334349cc55cSDimitry Andric } 335349cc55cSDimitry Andric 336349cc55cSDimitry Andric const MCSubtargetInfo *getSubtargetInfo() const { return STI; } 3370b57cec5SDimitry Andric 3380b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 3390b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_Align; 3400b57cec5SDimitry Andric } 3410b57cec5SDimitry Andric }; 3420b57cec5SDimitry Andric 3430b57cec5SDimitry Andric class MCFillFragment : public MCFragment { 344480093f4SDimitry Andric uint8_t ValueSize; 3450b57cec5SDimitry Andric /// Value to use for filling bytes. 3460b57cec5SDimitry Andric uint64_t Value; 3470b57cec5SDimitry Andric /// The number of bytes to insert. 3480b57cec5SDimitry Andric const MCExpr &NumValues; 3490b57cec5SDimitry Andric 3500b57cec5SDimitry Andric /// Source location of the directive that this fragment was created for. 3510b57cec5SDimitry Andric SMLoc Loc; 3520b57cec5SDimitry Andric 3530b57cec5SDimitry Andric public: 3540b57cec5SDimitry Andric MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, 3550b57cec5SDimitry Andric SMLoc Loc, MCSection *Sec = nullptr) 356480093f4SDimitry Andric : MCFragment(FT_Fill, false, Sec), ValueSize(VSize), Value(Value), 3570b57cec5SDimitry Andric NumValues(NumValues), Loc(Loc) {} 3580b57cec5SDimitry Andric 3590b57cec5SDimitry Andric uint64_t getValue() const { return Value; } 3600b57cec5SDimitry Andric uint8_t getValueSize() const { return ValueSize; } 3610b57cec5SDimitry Andric const MCExpr &getNumValues() const { return NumValues; } 3620b57cec5SDimitry Andric 3630b57cec5SDimitry Andric SMLoc getLoc() const { return Loc; } 3640b57cec5SDimitry Andric 3650b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 3660b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_Fill; 3670b57cec5SDimitry Andric } 3680b57cec5SDimitry Andric }; 3690b57cec5SDimitry Andric 370e8d8bef9SDimitry Andric class MCNopsFragment : public MCFragment { 371e8d8bef9SDimitry Andric /// The number of bytes to insert. 372e8d8bef9SDimitry Andric int64_t Size; 373e8d8bef9SDimitry Andric /// Maximum number of bytes allowed in each NOP instruction. 374e8d8bef9SDimitry Andric int64_t ControlledNopLength; 375e8d8bef9SDimitry Andric 376e8d8bef9SDimitry Andric /// Source location of the directive that this fragment was created for. 377e8d8bef9SDimitry Andric SMLoc Loc; 378e8d8bef9SDimitry Andric 379349cc55cSDimitry Andric /// When emitting Nops some subtargets have specific nop encodings. 380349cc55cSDimitry Andric const MCSubtargetInfo &STI; 381349cc55cSDimitry Andric 382e8d8bef9SDimitry Andric public: 383e8d8bef9SDimitry Andric MCNopsFragment(int64_t NumBytes, int64_t ControlledNopLength, SMLoc L, 384349cc55cSDimitry Andric const MCSubtargetInfo &STI, MCSection *Sec = nullptr) 385e8d8bef9SDimitry Andric : MCFragment(FT_Nops, false, Sec), Size(NumBytes), 386349cc55cSDimitry Andric ControlledNopLength(ControlledNopLength), Loc(L), STI(STI) {} 387e8d8bef9SDimitry Andric 388e8d8bef9SDimitry Andric int64_t getNumBytes() const { return Size; } 389e8d8bef9SDimitry Andric int64_t getControlledNopLength() const { return ControlledNopLength; } 390e8d8bef9SDimitry Andric 391e8d8bef9SDimitry Andric SMLoc getLoc() const { return Loc; } 392e8d8bef9SDimitry Andric 393349cc55cSDimitry Andric const MCSubtargetInfo *getSubtargetInfo() const { return &STI; } 394349cc55cSDimitry Andric 395e8d8bef9SDimitry Andric static bool classof(const MCFragment *F) { 396e8d8bef9SDimitry Andric return F->getKind() == MCFragment::FT_Nops; 397e8d8bef9SDimitry Andric } 398e8d8bef9SDimitry Andric }; 399e8d8bef9SDimitry Andric 4000b57cec5SDimitry Andric class MCOrgFragment : public MCFragment { 4010b57cec5SDimitry Andric /// Value to use for filling bytes. 4020b57cec5SDimitry Andric int8_t Value; 4030b57cec5SDimitry Andric 404480093f4SDimitry Andric /// The offset this fragment should start at. 405480093f4SDimitry Andric const MCExpr *Offset; 406480093f4SDimitry Andric 4070b57cec5SDimitry Andric /// Source location of the directive that this fragment was created for. 4080b57cec5SDimitry Andric SMLoc Loc; 4090b57cec5SDimitry Andric 4100b57cec5SDimitry Andric public: 4110b57cec5SDimitry Andric MCOrgFragment(const MCExpr &Offset, int8_t Value, SMLoc Loc, 4120b57cec5SDimitry Andric MCSection *Sec = nullptr) 413480093f4SDimitry Andric : MCFragment(FT_Org, false, Sec), Value(Value), Offset(&Offset), 414480093f4SDimitry Andric Loc(Loc) {} 4150b57cec5SDimitry Andric 4160b57cec5SDimitry Andric const MCExpr &getOffset() const { return *Offset; } 4170b57cec5SDimitry Andric 4180b57cec5SDimitry Andric uint8_t getValue() const { return Value; } 4190b57cec5SDimitry Andric 4200b57cec5SDimitry Andric SMLoc getLoc() const { return Loc; } 4210b57cec5SDimitry Andric 4220b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 4230b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_Org; 4240b57cec5SDimitry Andric } 4250b57cec5SDimitry Andric }; 4260b57cec5SDimitry Andric 4270b57cec5SDimitry Andric class MCLEBFragment : public MCFragment { 428480093f4SDimitry Andric /// True if this is a sleb128, false if uleb128. 4290b57cec5SDimitry Andric bool IsSigned; 4300b57cec5SDimitry Andric 431480093f4SDimitry Andric /// The value this fragment should contain. 432480093f4SDimitry Andric const MCExpr *Value; 433480093f4SDimitry Andric 4340b57cec5SDimitry Andric SmallString<8> Contents; 4350b57cec5SDimitry Andric 4360b57cec5SDimitry Andric public: 4370b57cec5SDimitry Andric MCLEBFragment(const MCExpr &Value_, bool IsSigned_, MCSection *Sec = nullptr) 438480093f4SDimitry Andric : MCFragment(FT_LEB, false, Sec), IsSigned(IsSigned_), Value(&Value_) { 4390b57cec5SDimitry Andric Contents.push_back(0); 4400b57cec5SDimitry Andric } 4410b57cec5SDimitry Andric 4420b57cec5SDimitry Andric const MCExpr &getValue() const { return *Value; } 4430b57cec5SDimitry Andric 4440b57cec5SDimitry Andric bool isSigned() const { return IsSigned; } 4450b57cec5SDimitry Andric 4460b57cec5SDimitry Andric SmallString<8> &getContents() { return Contents; } 4470b57cec5SDimitry Andric const SmallString<8> &getContents() const { return Contents; } 4480b57cec5SDimitry Andric 4490b57cec5SDimitry Andric /// @} 4500b57cec5SDimitry Andric 4510b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 4520b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_LEB; 4530b57cec5SDimitry Andric } 4540b57cec5SDimitry Andric }; 4550b57cec5SDimitry Andric 4560b57cec5SDimitry Andric class MCDwarfLineAddrFragment : public MCEncodedFragmentWithFixups<8, 1> { 457480093f4SDimitry Andric /// The value of the difference between the two line numbers 4580b57cec5SDimitry Andric /// between two .loc dwarf directives. 4590b57cec5SDimitry Andric int64_t LineDelta; 4600b57cec5SDimitry Andric 461480093f4SDimitry Andric /// The expression for the difference of the two symbols that 4620b57cec5SDimitry Andric /// make up the address delta between two .loc dwarf directives. 4630b57cec5SDimitry Andric const MCExpr *AddrDelta; 4640b57cec5SDimitry Andric 4650b57cec5SDimitry Andric public: 4660b57cec5SDimitry Andric MCDwarfLineAddrFragment(int64_t LineDelta, const MCExpr &AddrDelta, 4670b57cec5SDimitry Andric MCSection *Sec = nullptr) 4680b57cec5SDimitry Andric : MCEncodedFragmentWithFixups<8, 1>(FT_Dwarf, false, Sec), 4690b57cec5SDimitry Andric LineDelta(LineDelta), AddrDelta(&AddrDelta) {} 4700b57cec5SDimitry Andric 4710b57cec5SDimitry Andric int64_t getLineDelta() const { return LineDelta; } 4720b57cec5SDimitry Andric 4730b57cec5SDimitry Andric const MCExpr &getAddrDelta() const { return *AddrDelta; } 4740b57cec5SDimitry Andric 4750b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 4760b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_Dwarf; 4770b57cec5SDimitry Andric } 4780b57cec5SDimitry Andric }; 4790b57cec5SDimitry Andric 4800b57cec5SDimitry Andric class MCDwarfCallFrameFragment : public MCEncodedFragmentWithFixups<8, 1> { 481480093f4SDimitry Andric /// The expression for the difference of the two symbols that 4820b57cec5SDimitry Andric /// make up the address delta between two .cfi_* dwarf directives. 4830b57cec5SDimitry Andric const MCExpr *AddrDelta; 4840b57cec5SDimitry Andric 4850b57cec5SDimitry Andric public: 4860b57cec5SDimitry Andric MCDwarfCallFrameFragment(const MCExpr &AddrDelta, MCSection *Sec = nullptr) 4870b57cec5SDimitry Andric : MCEncodedFragmentWithFixups<8, 1>(FT_DwarfFrame, false, Sec), 4880b57cec5SDimitry Andric AddrDelta(&AddrDelta) {} 4890b57cec5SDimitry Andric 4900b57cec5SDimitry Andric const MCExpr &getAddrDelta() const { return *AddrDelta; } 4910b57cec5SDimitry Andric 4920b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 4930b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_DwarfFrame; 4940b57cec5SDimitry Andric } 4950b57cec5SDimitry Andric }; 4960b57cec5SDimitry Andric 4970b57cec5SDimitry Andric /// Represents a symbol table index fragment. 4980b57cec5SDimitry Andric class MCSymbolIdFragment : public MCFragment { 4990b57cec5SDimitry Andric const MCSymbol *Sym; 5000b57cec5SDimitry Andric 5010b57cec5SDimitry Andric public: 5020b57cec5SDimitry Andric MCSymbolIdFragment(const MCSymbol *Sym, MCSection *Sec = nullptr) 5030b57cec5SDimitry Andric : MCFragment(FT_SymbolId, false, Sec), Sym(Sym) {} 5040b57cec5SDimitry Andric 5050b57cec5SDimitry Andric const MCSymbol *getSymbol() { return Sym; } 5060b57cec5SDimitry Andric const MCSymbol *getSymbol() const { return Sym; } 5070b57cec5SDimitry Andric 5080b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 5090b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_SymbolId; 5100b57cec5SDimitry Andric } 5110b57cec5SDimitry Andric }; 5120b57cec5SDimitry Andric 5130b57cec5SDimitry Andric /// Fragment representing the binary annotations produced by the 5140b57cec5SDimitry Andric /// .cv_inline_linetable directive. 5150b57cec5SDimitry Andric class MCCVInlineLineTableFragment : public MCFragment { 5160b57cec5SDimitry Andric unsigned SiteFuncId; 5170b57cec5SDimitry Andric unsigned StartFileId; 5180b57cec5SDimitry Andric unsigned StartLineNum; 5190b57cec5SDimitry Andric const MCSymbol *FnStartSym; 5200b57cec5SDimitry Andric const MCSymbol *FnEndSym; 5210b57cec5SDimitry Andric SmallString<8> Contents; 5220b57cec5SDimitry Andric 5230b57cec5SDimitry Andric /// CodeViewContext has the real knowledge about this format, so let it access 5240b57cec5SDimitry Andric /// our members. 5250b57cec5SDimitry Andric friend class CodeViewContext; 5260b57cec5SDimitry Andric 5270b57cec5SDimitry Andric public: 5280b57cec5SDimitry Andric MCCVInlineLineTableFragment(unsigned SiteFuncId, unsigned StartFileId, 5290b57cec5SDimitry Andric unsigned StartLineNum, const MCSymbol *FnStartSym, 5300b57cec5SDimitry Andric const MCSymbol *FnEndSym, 5310b57cec5SDimitry Andric MCSection *Sec = nullptr) 5320b57cec5SDimitry Andric : MCFragment(FT_CVInlineLines, false, Sec), SiteFuncId(SiteFuncId), 5330b57cec5SDimitry Andric StartFileId(StartFileId), StartLineNum(StartLineNum), 5340b57cec5SDimitry Andric FnStartSym(FnStartSym), FnEndSym(FnEndSym) {} 5350b57cec5SDimitry Andric 5360b57cec5SDimitry Andric const MCSymbol *getFnStartSym() const { return FnStartSym; } 5370b57cec5SDimitry Andric const MCSymbol *getFnEndSym() const { return FnEndSym; } 5380b57cec5SDimitry Andric 5390b57cec5SDimitry Andric SmallString<8> &getContents() { return Contents; } 5400b57cec5SDimitry Andric const SmallString<8> &getContents() const { return Contents; } 5410b57cec5SDimitry Andric 5420b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 5430b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_CVInlineLines; 5440b57cec5SDimitry Andric } 5450b57cec5SDimitry Andric }; 5460b57cec5SDimitry Andric 5470b57cec5SDimitry Andric /// Fragment representing the .cv_def_range directive. 5480b57cec5SDimitry Andric class MCCVDefRangeFragment : public MCEncodedFragmentWithFixups<32, 4> { 5490b57cec5SDimitry Andric SmallVector<std::pair<const MCSymbol *, const MCSymbol *>, 2> Ranges; 5500b57cec5SDimitry Andric SmallString<32> FixedSizePortion; 5510b57cec5SDimitry Andric 5520b57cec5SDimitry Andric /// CodeViewContext has the real knowledge about this format, so let it access 5530b57cec5SDimitry Andric /// our members. 5540b57cec5SDimitry Andric friend class CodeViewContext; 5550b57cec5SDimitry Andric 5560b57cec5SDimitry Andric public: 5570b57cec5SDimitry Andric MCCVDefRangeFragment( 5580b57cec5SDimitry Andric ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges, 5590b57cec5SDimitry Andric StringRef FixedSizePortion, MCSection *Sec = nullptr) 5600b57cec5SDimitry Andric : MCEncodedFragmentWithFixups<32, 4>(FT_CVDefRange, false, Sec), 5610b57cec5SDimitry Andric Ranges(Ranges.begin(), Ranges.end()), 5620b57cec5SDimitry Andric FixedSizePortion(FixedSizePortion) {} 5630b57cec5SDimitry Andric 5640b57cec5SDimitry Andric ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> getRanges() const { 5650b57cec5SDimitry Andric return Ranges; 5660b57cec5SDimitry Andric } 5670b57cec5SDimitry Andric 568fe6060f1SDimitry Andric StringRef getFixedSizePortion() const { return FixedSizePortion.str(); } 5690b57cec5SDimitry Andric 5700b57cec5SDimitry Andric static bool classof(const MCFragment *F) { 5710b57cec5SDimitry Andric return F->getKind() == MCFragment::FT_CVDefRange; 5720b57cec5SDimitry Andric } 5730b57cec5SDimitry Andric }; 5740b57cec5SDimitry Andric 575480093f4SDimitry Andric /// Represents required padding such that a particular other set of fragments 576480093f4SDimitry Andric /// does not cross a particular power-of-two boundary. The other fragments must 577480093f4SDimitry Andric /// follow this one within the same section. 578480093f4SDimitry Andric class MCBoundaryAlignFragment : public MCFragment { 579480093f4SDimitry Andric /// The alignment requirement of the branch to be aligned. 580480093f4SDimitry Andric Align AlignBoundary; 5815ffd83dbSDimitry Andric /// The last fragment in the set of fragments to be aligned. 5825ffd83dbSDimitry Andric const MCFragment *LastFragment = nullptr; 583480093f4SDimitry Andric /// The size of the fragment. The size is lazily set during relaxation, and 584480093f4SDimitry Andric /// is not meaningful before that. 585480093f4SDimitry Andric uint64_t Size = 0; 586480093f4SDimitry Andric 587349cc55cSDimitry Andric /// When emitting Nops some subtargets have specific nop encodings. 588349cc55cSDimitry Andric const MCSubtargetInfo &STI; 589349cc55cSDimitry Andric 590480093f4SDimitry Andric public: 591349cc55cSDimitry Andric MCBoundaryAlignFragment(Align AlignBoundary, const MCSubtargetInfo &STI, 592349cc55cSDimitry Andric MCSection *Sec = nullptr) 593349cc55cSDimitry Andric : MCFragment(FT_BoundaryAlign, false, Sec), AlignBoundary(AlignBoundary), 594349cc55cSDimitry Andric STI(STI) {} 595480093f4SDimitry Andric 596480093f4SDimitry Andric uint64_t getSize() const { return Size; } 597480093f4SDimitry Andric void setSize(uint64_t Value) { Size = Value; } 598480093f4SDimitry Andric 599480093f4SDimitry Andric Align getAlignment() const { return AlignBoundary; } 6005ffd83dbSDimitry Andric void setAlignment(Align Value) { AlignBoundary = Value; } 601480093f4SDimitry Andric 6025ffd83dbSDimitry Andric const MCFragment *getLastFragment() const { return LastFragment; } 6035ffd83dbSDimitry Andric void setLastFragment(const MCFragment *F) { 6045ffd83dbSDimitry Andric assert(!F || getParent() == F->getParent()); 6055ffd83dbSDimitry Andric LastFragment = F; 6065ffd83dbSDimitry Andric } 607480093f4SDimitry Andric 608349cc55cSDimitry Andric const MCSubtargetInfo *getSubtargetInfo() const { return &STI; } 609349cc55cSDimitry Andric 610480093f4SDimitry Andric static bool classof(const MCFragment *F) { 611480093f4SDimitry Andric return F->getKind() == MCFragment::FT_BoundaryAlign; 612480093f4SDimitry Andric } 613480093f4SDimitry Andric }; 614e8d8bef9SDimitry Andric 615e8d8bef9SDimitry Andric class MCPseudoProbeAddrFragment : public MCEncodedFragmentWithFixups<8, 1> { 616e8d8bef9SDimitry Andric /// The expression for the difference of the two symbols that 617e8d8bef9SDimitry Andric /// make up the address delta between two .pseudoprobe directives. 618e8d8bef9SDimitry Andric const MCExpr *AddrDelta; 619e8d8bef9SDimitry Andric 620e8d8bef9SDimitry Andric public: 621e8d8bef9SDimitry Andric MCPseudoProbeAddrFragment(const MCExpr *AddrDelta, MCSection *Sec = nullptr) 622e8d8bef9SDimitry Andric : MCEncodedFragmentWithFixups<8, 1>(FT_PseudoProbe, false, Sec), 623e8d8bef9SDimitry Andric AddrDelta(AddrDelta) {} 624e8d8bef9SDimitry Andric 625e8d8bef9SDimitry Andric const MCExpr &getAddrDelta() const { return *AddrDelta; } 626e8d8bef9SDimitry Andric 627e8d8bef9SDimitry Andric static bool classof(const MCFragment *F) { 628e8d8bef9SDimitry Andric return F->getKind() == MCFragment::FT_PseudoProbe; 629e8d8bef9SDimitry Andric } 630e8d8bef9SDimitry Andric }; 6310b57cec5SDimitry Andric } // end namespace llvm 6320b57cec5SDimitry Andric 6330b57cec5SDimitry Andric #endif // LLVM_MC_MCFRAGMENT_H 634