1 //===- MCSection.h - Machine Code Sections ----------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file declares the MCSection class.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_MC_MCSECTION_H
14 #define LLVM_MC_MCSECTION_H
15 
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/ADT/ilist.h"
18 #include "llvm/MC/MCFragment.h"
19 #include "llvm/MC/SectionKind.h"
20 #include "llvm/Support/Alignment.h"
21 #include <cassert>
22 #include <utility>
23 
24 namespace llvm {
25 
26 class MCAsmInfo;
27 class MCContext;
28 class MCExpr;
29 class MCSymbol;
30 class raw_ostream;
31 class Triple;
32 
33 template <> struct ilist_alloc_traits<MCFragment> {
34   static void deleteNode(MCFragment *V);
35 };
36 
37 /// Instances of this class represent a uniqued identifier for a section in the
38 /// current translation unit.  The MCContext class uniques and creates these.
39 class MCSection {
40 public:
41   static constexpr unsigned NonUniqueID = ~0U;
42 
43   enum SectionVariant {
44     SV_COFF = 0,
45     SV_ELF,
46     SV_GOFF,
47     SV_MachO,
48     SV_Wasm,
49     SV_XCOFF,
50     SV_SPIRV,
51     SV_DXContainer,
52   };
53 
54   /// Express the state of bundle locked groups while emitting code.
55   enum BundleLockStateType {
56     NotBundleLocked,
57     BundleLocked,
58     BundleLockedAlignToEnd
59   };
60 
61   using FragmentListType = iplist<MCFragment>;
62 
63   using const_iterator = FragmentListType::const_iterator;
64   using iterator = FragmentListType::iterator;
65 
66   using const_reverse_iterator = FragmentListType::const_reverse_iterator;
67   using reverse_iterator = FragmentListType::reverse_iterator;
68 
69 private:
70   MCSymbol *Begin;
71   MCSymbol *End = nullptr;
72   /// The alignment requirement of this section.
73   Align Alignment;
74   /// The section index in the assemblers section list.
75   unsigned Ordinal = 0;
76   /// The index of this section in the layout order.
77   unsigned LayoutOrder;
78 
79   /// Keeping track of bundle-locked state.
80   BundleLockStateType BundleLockState = NotBundleLocked;
81 
82   /// Current nesting depth of bundle_lock directives.
83   unsigned BundleLockNestingDepth = 0;
84 
85   /// We've seen a bundle_lock directive but not its first instruction
86   /// yet.
87   bool BundleGroupBeforeFirstInst : 1;
88 
89   /// Whether this section has had instructions emitted into it.
90   bool HasInstructions : 1;
91 
92   bool IsRegistered : 1;
93 
94   MCDummyFragment DummyFragment;
95 
96   FragmentListType Fragments;
97 
98   /// Mapping from subsection number to insertion point for subsection numbers
99   /// below that number.
100   SmallVector<std::pair<unsigned, MCFragment *>, 1> SubsectionFragmentMap;
101 
102   /// State for tracking labels that don't yet have Fragments
103   struct PendingLabel {
104     MCSymbol* Sym;
105     unsigned Subsection;
106     PendingLabel(MCSymbol* Sym, unsigned Subsection = 0)
107       : Sym(Sym), Subsection(Subsection) {}
108   };
109   SmallVector<PendingLabel, 2> PendingLabels;
110 
111 protected:
112   // TODO Make Name private when possible.
113   StringRef Name;
114   SectionVariant Variant;
115   SectionKind Kind;
116 
117   MCSection(SectionVariant V, StringRef Name, SectionKind K, MCSymbol *Begin);
118   ~MCSection();
119 
120 public:
121   MCSection(const MCSection &) = delete;
122   MCSection &operator=(const MCSection &) = delete;
123 
124   StringRef getName() const { return Name; }
125   SectionKind getKind() const { return Kind; }
126 
127   SectionVariant getVariant() const { return Variant; }
128 
129   MCSymbol *getBeginSymbol() { return Begin; }
130   const MCSymbol *getBeginSymbol() const {
131     return const_cast<MCSection *>(this)->getBeginSymbol();
132   }
133   void setBeginSymbol(MCSymbol *Sym) {
134     assert(!Begin);
135     Begin = Sym;
136   }
137   MCSymbol *getEndSymbol(MCContext &Ctx);
138   bool hasEnded() const;
139 
140   unsigned getAlignment() const { return Alignment.value(); }
141   void setAlignment(Align Value) { Alignment = Value; }
142 
143   unsigned getOrdinal() const { return Ordinal; }
144   void setOrdinal(unsigned Value) { Ordinal = Value; }
145 
146   unsigned getLayoutOrder() const { return LayoutOrder; }
147   void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
148 
149   BundleLockStateType getBundleLockState() const { return BundleLockState; }
150   void setBundleLockState(BundleLockStateType NewState);
151   bool isBundleLocked() const { return BundleLockState != NotBundleLocked; }
152 
153   bool isBundleGroupBeforeFirstInst() const {
154     return BundleGroupBeforeFirstInst;
155   }
156   void setBundleGroupBeforeFirstInst(bool IsFirst) {
157     BundleGroupBeforeFirstInst = IsFirst;
158   }
159 
160   bool hasInstructions() const { return HasInstructions; }
161   void setHasInstructions(bool Value) { HasInstructions = Value; }
162 
163   bool isRegistered() const { return IsRegistered; }
164   void setIsRegistered(bool Value) { IsRegistered = Value; }
165 
166   MCSection::FragmentListType &getFragmentList() { return Fragments; }
167   const MCSection::FragmentListType &getFragmentList() const {
168     return const_cast<MCSection *>(this)->getFragmentList();
169   }
170 
171   /// Support for MCFragment::getNextNode().
172   static FragmentListType MCSection::*getSublistAccess(MCFragment *) {
173     return &MCSection::Fragments;
174   }
175 
176   const MCDummyFragment &getDummyFragment() const { return DummyFragment; }
177   MCDummyFragment &getDummyFragment() { return DummyFragment; }
178 
179   iterator begin() { return Fragments.begin(); }
180   const_iterator begin() const { return Fragments.begin(); }
181 
182   iterator end() { return Fragments.end(); }
183   const_iterator end() const { return Fragments.end(); }
184 
185   MCSection::iterator getSubsectionInsertionPoint(unsigned Subsection);
186 
187   void dump() const;
188 
189   virtual void printSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
190                                     raw_ostream &OS,
191                                     const MCExpr *Subsection) const = 0;
192 
193   /// Return true if a .align directive should use "optimized nops" to fill
194   /// instead of 0s.
195   virtual bool useCodeAlign() const = 0;
196 
197   /// Check whether this section is "virtual", that is has no actual object
198   /// file contents.
199   virtual bool isVirtualSection() const = 0;
200 
201   virtual StringRef getVirtualSectionKind() const;
202 
203   /// Add a pending label for the requested subsection. This label will be
204   /// associated with a fragment in flushPendingLabels()
205   void addPendingLabel(MCSymbol* label, unsigned Subsection = 0);
206 
207   /// Associate all pending labels in a subsection with a fragment.
208   void flushPendingLabels(MCFragment *F, uint64_t FOffset = 0,
209 			  unsigned Subsection = 0);
210 
211   /// Associate all pending labels with empty data fragments. One fragment
212   /// will be created for each subsection as necessary.
213   void flushPendingLabels();
214 };
215 
216 } // end namespace llvm
217 
218 #endif // LLVM_MC_MCSECTION_H
219