484f370515ab8346e2a97436fad7e7a43b913aee
[oota-llvm.git] / include / llvm / MC / MCAssembler.h
1 //===- MCAssembler.h - Object File Generation -------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLVM_MC_MCASSEMBLER_H
11 #define LLVM_MC_MCASSEMBLER_H
12
13 #include "llvm/ADT/DenseMap.h"
14 #include "llvm/ADT/DenseSet.h"
15 #include "llvm/ADT/SmallPtrSet.h"
16 #include "llvm/ADT/SmallString.h"
17 #include "llvm/ADT/ilist.h"
18 #include "llvm/ADT/ilist_node.h"
19 #include "llvm/ADT/iterator.h"
20 #include "llvm/MC/MCDirectives.h"
21 #include "llvm/MC/MCFixup.h"
22 #include "llvm/MC/MCInst.h"
23 #include "llvm/MC/MCLinkerOptimizationHint.h"
24 #include "llvm/MC/MCSection.h"
25 #include "llvm/MC/MCSubtargetInfo.h"
26 #include "llvm/Support/Casting.h"
27 #include "llvm/Support/DataTypes.h"
28 #include <algorithm>
29 #include <vector> // FIXME: Shouldn't be needed.
30
31 namespace llvm {
32 class raw_ostream;
33 class MCAsmLayout;
34 class MCAssembler;
35 class MCContext;
36 class MCCodeEmitter;
37 class MCExpr;
38 class MCFragment;
39 class MCObjectWriter;
40 class MCSection;
41 class MCSubtargetInfo;
42 class MCValue;
43 class MCAsmBackend;
44
45 class MCFragment : public ilist_node<MCFragment> {
46   friend class MCAsmLayout;
47
48   MCFragment(const MCFragment &) = delete;
49   void operator=(const MCFragment &) = delete;
50
51 public:
52   enum FragmentType {
53     FT_Align,
54     FT_Data,
55     FT_CompactEncodedInst,
56     FT_Fill,
57     FT_Relaxable,
58     FT_Org,
59     FT_Dwarf,
60     FT_DwarfFrame,
61     FT_LEB,
62     FT_SafeSEH
63   };
64
65 private:
66   FragmentType Kind;
67
68   /// The data for the section this fragment is in.
69   MCSection *Parent;
70
71   /// Atom - The atom this fragment is in, as represented by it's defining
72   /// symbol.
73   const MCSymbol *Atom;
74
75   /// \name Assembler Backend Data
76   /// @{
77   //
78   // FIXME: This could all be kept private to the assembler implementation.
79
80   /// Offset - The offset of this fragment in its section. This is ~0 until
81   /// initialized.
82   uint64_t Offset;
83
84   /// LayoutOrder - The layout order of this fragment.
85   unsigned LayoutOrder;
86
87   /// @}
88
89 protected:
90   MCFragment(FragmentType Kind, MCSection *Parent = nullptr);
91
92 public:
93   // Only for sentinel.
94   MCFragment();
95   virtual ~MCFragment();
96
97   FragmentType getKind() const { return Kind; }
98
99   MCSection *getParent() const { return Parent; }
100   void setParent(MCSection *Value) { Parent = Value; }
101
102   const MCSymbol *getAtom() const { return Atom; }
103   void setAtom(const MCSymbol *Value) { Atom = Value; }
104
105   unsigned getLayoutOrder() const { return LayoutOrder; }
106   void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
107
108   /// \brief Does this fragment have instructions emitted into it? By default
109   /// this is false, but specific fragment types may set it to true.
110   virtual bool hasInstructions() const { return false; }
111
112   /// \brief Should this fragment be placed at the end of an aligned bundle?
113   virtual bool alignToBundleEnd() const { return false; }
114   virtual void setAlignToBundleEnd(bool V) {}
115
116   /// \brief Get the padding size that must be inserted before this fragment.
117   /// Used for bundling. By default, no padding is inserted.
118   /// Note that padding size is restricted to 8 bits. This is an optimization
119   /// to reduce the amount of space used for each fragment. In practice, larger
120   /// padding should never be required.
121   virtual uint8_t getBundlePadding() const { return 0; }
122
123   /// \brief Set the padding size for this fragment. By default it's a no-op,
124   /// and only some fragments have a meaningful implementation.
125   virtual void setBundlePadding(uint8_t N) {}
126
127   void dump();
128 };
129
130 /// Interface implemented by fragments that contain encoded instructions and/or
131 /// data.
132 ///
133 class MCEncodedFragment : public MCFragment {
134   virtual void anchor();
135
136   uint8_t BundlePadding;
137
138 public:
139   MCEncodedFragment(MCFragment::FragmentType FType, MCSection *Sec = nullptr)
140       : MCFragment(FType, Sec), BundlePadding(0) {}
141   ~MCEncodedFragment() override;
142
143   virtual SmallVectorImpl<char> &getContents() = 0;
144   virtual const SmallVectorImpl<char> &getContents() const = 0;
145
146   uint8_t getBundlePadding() const override { return BundlePadding; }
147
148   void setBundlePadding(uint8_t N) override { BundlePadding = N; }
149
150   static bool classof(const MCFragment *F) {
151     MCFragment::FragmentType Kind = F->getKind();
152     switch (Kind) {
153     default:
154       return false;
155     case MCFragment::FT_Relaxable:
156     case MCFragment::FT_CompactEncodedInst:
157     case MCFragment::FT_Data:
158       return true;
159     }
160   }
161 };
162
163 /// Interface implemented by fragments that contain encoded instructions and/or
164 /// data and also have fixups registered.
165 ///
166 class MCEncodedFragmentWithFixups : public MCEncodedFragment {
167   void anchor() override;
168
169 public:
170   MCEncodedFragmentWithFixups(MCFragment::FragmentType FType,
171                               MCSection *Sec = nullptr)
172       : MCEncodedFragment(FType, Sec) {}
173
174   ~MCEncodedFragmentWithFixups() override;
175
176   typedef SmallVectorImpl<MCFixup>::const_iterator const_fixup_iterator;
177   typedef SmallVectorImpl<MCFixup>::iterator fixup_iterator;
178
179   virtual SmallVectorImpl<MCFixup> &getFixups() = 0;
180   virtual const SmallVectorImpl<MCFixup> &getFixups() const = 0;
181
182   virtual fixup_iterator fixup_begin() = 0;
183   virtual const_fixup_iterator fixup_begin() const = 0;
184   virtual fixup_iterator fixup_end() = 0;
185   virtual const_fixup_iterator fixup_end() const = 0;
186
187   static bool classof(const MCFragment *F) {
188     MCFragment::FragmentType Kind = F->getKind();
189     return Kind == MCFragment::FT_Relaxable || Kind == MCFragment::FT_Data;
190   }
191 };
192
193 /// Fragment for data and encoded instructions.
194 ///
195 class MCDataFragment : public MCEncodedFragmentWithFixups {
196   void anchor() override;
197
198   /// \brief Does this fragment contain encoded instructions anywhere in it?
199   bool HasInstructions;
200
201   /// \brief Should this fragment be aligned to the end of a bundle?
202   bool AlignToBundleEnd;
203
204   SmallVector<char, 32> Contents;
205
206   /// Fixups - The list of fixups in this fragment.
207   SmallVector<MCFixup, 4> Fixups;
208
209 public:
210   MCDataFragment(MCSection *Sec = nullptr)
211       : MCEncodedFragmentWithFixups(FT_Data, Sec), HasInstructions(false),
212         AlignToBundleEnd(false) {}
213
214   SmallVectorImpl<char> &getContents() override { return Contents; }
215   const SmallVectorImpl<char> &getContents() const override { return Contents; }
216
217   SmallVectorImpl<MCFixup> &getFixups() override { return Fixups; }
218
219   const SmallVectorImpl<MCFixup> &getFixups() const override { return Fixups; }
220
221   bool hasInstructions() const override { return HasInstructions; }
222   virtual void setHasInstructions(bool V) { HasInstructions = V; }
223
224   bool alignToBundleEnd() const override { return AlignToBundleEnd; }
225   void setAlignToBundleEnd(bool V) override { AlignToBundleEnd = V; }
226
227   fixup_iterator fixup_begin() override { return Fixups.begin(); }
228   const_fixup_iterator fixup_begin() const override { return Fixups.begin(); }
229
230   fixup_iterator fixup_end() override { return Fixups.end(); }
231   const_fixup_iterator fixup_end() const override { return Fixups.end(); }
232
233   static bool classof(const MCFragment *F) {
234     return F->getKind() == MCFragment::FT_Data;
235   }
236 };
237
238 /// This is a compact (memory-size-wise) fragment for holding an encoded
239 /// instruction (non-relaxable) that has no fixups registered. When applicable,
240 /// it can be used instead of MCDataFragment and lead to lower memory
241 /// consumption.
242 ///
243 class MCCompactEncodedInstFragment : public MCEncodedFragment {
244   void anchor() override;
245
246   /// \brief Should this fragment be aligned to the end of a bundle?
247   bool AlignToBundleEnd;
248
249   SmallVector<char, 4> Contents;
250
251 public:
252   MCCompactEncodedInstFragment(MCSection *Sec = nullptr)
253       : MCEncodedFragment(FT_CompactEncodedInst, Sec), AlignToBundleEnd(false) {
254   }
255
256   bool hasInstructions() const override { return true; }
257
258   SmallVectorImpl<char> &getContents() override { return Contents; }
259   const SmallVectorImpl<char> &getContents() const override { return Contents; }
260
261   bool alignToBundleEnd() const override { return AlignToBundleEnd; }
262   void setAlignToBundleEnd(bool V) override { AlignToBundleEnd = V; }
263
264   static bool classof(const MCFragment *F) {
265     return F->getKind() == MCFragment::FT_CompactEncodedInst;
266   }
267 };
268
269 /// A relaxable fragment holds on to its MCInst, since it may need to be
270 /// relaxed during the assembler layout and relaxation stage.
271 ///
272 class MCRelaxableFragment : public MCEncodedFragmentWithFixups {
273   void anchor() override;
274
275   /// Inst - The instruction this is a fragment for.
276   MCInst Inst;
277
278   /// STI - The MCSubtargetInfo in effect when the instruction was encoded.
279   /// Keep a copy instead of a reference to make sure that updates to STI
280   /// in the assembler are not seen here.
281   const MCSubtargetInfo STI;
282
283   /// Contents - Binary data for the currently encoded instruction.
284   SmallVector<char, 8> Contents;
285
286   /// Fixups - The list of fixups in this fragment.
287   SmallVector<MCFixup, 1> Fixups;
288
289 public:
290   MCRelaxableFragment(const MCInst &Inst, const MCSubtargetInfo &STI,
291                       MCSection *Sec = nullptr)
292       : MCEncodedFragmentWithFixups(FT_Relaxable, Sec), Inst(Inst), STI(STI) {}
293
294   SmallVectorImpl<char> &getContents() override { return Contents; }
295   const SmallVectorImpl<char> &getContents() const override { return Contents; }
296
297   const MCInst &getInst() const { return Inst; }
298   void setInst(const MCInst &Value) { Inst = Value; }
299
300   const MCSubtargetInfo &getSubtargetInfo() { return STI; }
301
302   SmallVectorImpl<MCFixup> &getFixups() override { return Fixups; }
303
304   const SmallVectorImpl<MCFixup> &getFixups() const override { return Fixups; }
305
306   bool hasInstructions() const override { return true; }
307
308   fixup_iterator fixup_begin() override { return Fixups.begin(); }
309   const_fixup_iterator fixup_begin() const override { return Fixups.begin(); }
310
311   fixup_iterator fixup_end() override { return Fixups.end(); }
312   const_fixup_iterator fixup_end() const override { return Fixups.end(); }
313
314   static bool classof(const MCFragment *F) {
315     return F->getKind() == MCFragment::FT_Relaxable;
316   }
317 };
318
319 class MCAlignFragment : public MCFragment {
320   virtual void anchor();
321
322   /// Alignment - The alignment to ensure, in bytes.
323   unsigned Alignment;
324
325   /// Value - Value to use for filling padding bytes.
326   int64_t Value;
327
328   /// ValueSize - The size of the integer (in bytes) of \p Value.
329   unsigned ValueSize;
330
331   /// MaxBytesToEmit - The maximum number of bytes to emit; if the alignment
332   /// cannot be satisfied in this width then this fragment is ignored.
333   unsigned MaxBytesToEmit;
334
335   /// EmitNops - Flag to indicate that (optimal) NOPs should be emitted instead
336   /// of using the provided value. The exact interpretation of this flag is
337   /// target dependent.
338   bool EmitNops : 1;
339
340 public:
341   MCAlignFragment(unsigned Alignment, int64_t Value, unsigned ValueSize,
342                   unsigned MaxBytesToEmit, MCSection *Sec = nullptr)
343       : MCFragment(FT_Align, Sec), Alignment(Alignment), Value(Value),
344         ValueSize(ValueSize), MaxBytesToEmit(MaxBytesToEmit), EmitNops(false) {}
345
346   /// \name Accessors
347   /// @{
348
349   unsigned getAlignment() const { return Alignment; }
350
351   int64_t getValue() const { return Value; }
352
353   unsigned getValueSize() const { return ValueSize; }
354
355   unsigned getMaxBytesToEmit() const { return MaxBytesToEmit; }
356
357   bool hasEmitNops() const { return EmitNops; }
358   void setEmitNops(bool Value) { EmitNops = Value; }
359
360   /// @}
361
362   static bool classof(const MCFragment *F) {
363     return F->getKind() == MCFragment::FT_Align;
364   }
365 };
366
367 class MCFillFragment : public MCFragment {
368   virtual void anchor();
369
370   /// Value - Value to use for filling bytes.
371   int64_t Value;
372
373   /// ValueSize - The size (in bytes) of \p Value to use when filling, or 0 if
374   /// this is a virtual fill fragment.
375   unsigned ValueSize;
376
377   /// Size - The number of bytes to insert.
378   uint64_t Size;
379
380 public:
381   MCFillFragment(int64_t Value, unsigned ValueSize, uint64_t Size,
382                  MCSection *Sec = nullptr)
383       : MCFragment(FT_Fill, Sec), Value(Value), ValueSize(ValueSize),
384         Size(Size) {
385     assert((!ValueSize || (Size % ValueSize) == 0) &&
386            "Fill size must be a multiple of the value size!");
387   }
388
389   /// \name Accessors
390   /// @{
391
392   int64_t getValue() const { return Value; }
393
394   unsigned getValueSize() const { return ValueSize; }
395
396   uint64_t getSize() const { return Size; }
397
398   /// @}
399
400   static bool classof(const MCFragment *F) {
401     return F->getKind() == MCFragment::FT_Fill;
402   }
403 };
404
405 class MCOrgFragment : public MCFragment {
406   virtual void anchor();
407
408   /// Offset - The offset this fragment should start at.
409   const MCExpr *Offset;
410
411   /// Value - Value to use for filling bytes.
412   int8_t Value;
413
414 public:
415   MCOrgFragment(const MCExpr &Offset, int8_t Value, MCSection *Sec = nullptr)
416       : MCFragment(FT_Org, Sec), Offset(&Offset), Value(Value) {}
417
418   /// \name Accessors
419   /// @{
420
421   const MCExpr &getOffset() const { return *Offset; }
422
423   uint8_t getValue() const { return Value; }
424
425   /// @}
426
427   static bool classof(const MCFragment *F) {
428     return F->getKind() == MCFragment::FT_Org;
429   }
430 };
431
432 class MCLEBFragment : public MCFragment {
433   virtual void anchor();
434
435   /// Value - The value this fragment should contain.
436   const MCExpr *Value;
437
438   /// IsSigned - True if this is a sleb128, false if uleb128.
439   bool IsSigned;
440
441   SmallString<8> Contents;
442
443 public:
444   MCLEBFragment(const MCExpr &Value_, bool IsSigned_, MCSection *Sec = nullptr)
445       : MCFragment(FT_LEB, Sec), Value(&Value_), IsSigned(IsSigned_) {
446     Contents.push_back(0);
447   }
448
449   /// \name Accessors
450   /// @{
451
452   const MCExpr &getValue() const { return *Value; }
453
454   bool isSigned() const { return IsSigned; }
455
456   SmallString<8> &getContents() { return Contents; }
457   const SmallString<8> &getContents() const { return Contents; }
458
459   /// @}
460
461   static bool classof(const MCFragment *F) {
462     return F->getKind() == MCFragment::FT_LEB;
463   }
464 };
465
466 class MCDwarfLineAddrFragment : public MCFragment {
467   virtual void anchor();
468
469   /// LineDelta - the value of the difference between the two line numbers
470   /// between two .loc dwarf directives.
471   int64_t LineDelta;
472
473   /// AddrDelta - The expression for the difference of the two symbols that
474   /// make up the address delta between two .loc dwarf directives.
475   const MCExpr *AddrDelta;
476
477   SmallString<8> Contents;
478
479 public:
480   MCDwarfLineAddrFragment(int64_t LineDelta, const MCExpr &AddrDelta,
481                           MCSection *Sec = nullptr)
482       : MCFragment(FT_Dwarf, Sec), LineDelta(LineDelta), AddrDelta(&AddrDelta) {
483     Contents.push_back(0);
484   }
485
486   /// \name Accessors
487   /// @{
488
489   int64_t getLineDelta() const { return LineDelta; }
490
491   const MCExpr &getAddrDelta() const { return *AddrDelta; }
492
493   SmallString<8> &getContents() { return Contents; }
494   const SmallString<8> &getContents() const { return Contents; }
495
496   /// @}
497
498   static bool classof(const MCFragment *F) {
499     return F->getKind() == MCFragment::FT_Dwarf;
500   }
501 };
502
503 class MCDwarfCallFrameFragment : public MCFragment {
504   virtual void anchor();
505
506   /// AddrDelta - The expression for the difference of the two symbols that
507   /// make up the address delta between two .cfi_* dwarf directives.
508   const MCExpr *AddrDelta;
509
510   SmallString<8> Contents;
511
512 public:
513   MCDwarfCallFrameFragment(const MCExpr &AddrDelta, MCSection *Sec = nullptr)
514       : MCFragment(FT_DwarfFrame, Sec), AddrDelta(&AddrDelta) {
515     Contents.push_back(0);
516   }
517
518   /// \name Accessors
519   /// @{
520
521   const MCExpr &getAddrDelta() const { return *AddrDelta; }
522
523   SmallString<8> &getContents() { return Contents; }
524   const SmallString<8> &getContents() const { return Contents; }
525
526   /// @}
527
528   static bool classof(const MCFragment *F) {
529     return F->getKind() == MCFragment::FT_DwarfFrame;
530   }
531 };
532
533 class MCSafeSEHFragment : public MCFragment {
534   virtual void anchor();
535
536   const MCSymbol *Sym;
537
538 public:
539   MCSafeSEHFragment(const MCSymbol *Sym, MCSection *Sec = nullptr)
540       : MCFragment(FT_SafeSEH, Sec), Sym(Sym) {}
541
542   /// \name Accessors
543   /// @{
544
545   const MCSymbol *getSymbol() { return Sym; }
546   const MCSymbol *getSymbol() const { return Sym; }
547
548   /// @}
549
550   static bool classof(const MCFragment *F) {
551     return F->getKind() == MCFragment::FT_SafeSEH;
552   }
553 };
554
555 // FIXME: This really doesn't belong here. See comments below.
556 struct IndirectSymbolData {
557   MCSymbol *Symbol;
558   MCSection *Section;
559 };
560
561 // FIXME: Ditto this. Purely so the Streamer and the ObjectWriter can talk
562 // to one another.
563 struct DataRegionData {
564   // This enum should be kept in sync w/ the mach-o definition in
565   // llvm/Object/MachOFormat.h.
566   enum KindTy { Data = 1, JumpTable8, JumpTable16, JumpTable32 } Kind;
567   MCSymbol *Start;
568   MCSymbol *End;
569 };
570
571 class MCAssembler {
572   friend class MCAsmLayout;
573
574 public:
575   typedef std::vector<MCSection *> SectionListType;
576   typedef std::vector<const MCSymbol *> SymbolDataListType;
577
578   typedef pointee_iterator<SectionListType::const_iterator> const_iterator;
579   typedef pointee_iterator<SectionListType::iterator> iterator;
580
581   typedef pointee_iterator<SymbolDataListType::const_iterator>
582   const_symbol_iterator;
583   typedef pointee_iterator<SymbolDataListType::iterator> symbol_iterator;
584
585   typedef iterator_range<symbol_iterator> symbol_range;
586   typedef iterator_range<const_symbol_iterator> const_symbol_range;
587
588   typedef std::vector<IndirectSymbolData>::const_iterator
589       const_indirect_symbol_iterator;
590   typedef std::vector<IndirectSymbolData>::iterator indirect_symbol_iterator;
591
592   typedef std::vector<DataRegionData>::const_iterator
593       const_data_region_iterator;
594   typedef std::vector<DataRegionData>::iterator data_region_iterator;
595
596   /// MachO specific deployment target version info.
597   // A Major version of 0 indicates that no version information was supplied
598   // and so the corresponding load command should not be emitted.
599   typedef struct {
600     MCVersionMinType Kind;
601     unsigned Major;
602     unsigned Minor;
603     unsigned Update;
604   } VersionMinInfoType;
605
606 private:
607   MCAssembler(const MCAssembler &) = delete;
608   void operator=(const MCAssembler &) = delete;
609
610   MCContext &Context;
611
612   MCAsmBackend &Backend;
613
614   MCCodeEmitter &Emitter;
615
616   MCObjectWriter &Writer;
617
618   raw_ostream &OS;
619
620   SectionListType Sections;
621
622   SymbolDataListType Symbols;
623
624   std::vector<IndirectSymbolData> IndirectSymbols;
625
626   std::vector<DataRegionData> DataRegions;
627
628   /// The list of linker options to propagate into the object file.
629   std::vector<std::vector<std::string>> LinkerOptions;
630
631   /// List of declared file names
632   std::vector<std::string> FileNames;
633
634   /// The set of function symbols for which a .thumb_func directive has
635   /// been seen.
636   //
637   // FIXME: We really would like this in target specific code rather than
638   // here. Maybe when the relocation stuff moves to target specific,
639   // this can go with it? The streamer would need some target specific
640   // refactoring too.
641   mutable SmallPtrSet<const MCSymbol *, 64> ThumbFuncs;
642
643   /// \brief The bundle alignment size currently set in the assembler.
644   ///
645   /// By default it's 0, which means bundling is disabled.
646   unsigned BundleAlignSize;
647
648   unsigned RelaxAll : 1;
649   unsigned SubsectionsViaSymbols : 1;
650
651   /// ELF specific e_header flags
652   // It would be good if there were an MCELFAssembler class to hold this.
653   // ELF header flags are used both by the integrated and standalone assemblers.
654   // Access to the flags is necessary in cases where assembler directives affect
655   // which flags to be set.
656   unsigned ELFHeaderEFlags;
657
658   /// Used to communicate Linker Optimization Hint information between
659   /// the Streamer and the .o writer
660   MCLOHContainer LOHContainer;
661
662   VersionMinInfoType VersionMinInfo;
663
664 private:
665   /// Evaluate a fixup to a relocatable expression and the value which should be
666   /// placed into the fixup.
667   ///
668   /// \param Layout The layout to use for evaluation.
669   /// \param Fixup The fixup to evaluate.
670   /// \param DF The fragment the fixup is inside.
671   /// \param Target [out] On return, the relocatable expression the fixup
672   /// evaluates to.
673   /// \param Value [out] On return, the value of the fixup as currently laid
674   /// out.
675   /// \return Whether the fixup value was fully resolved. This is true if the
676   /// \p Value result is fixed, otherwise the value may change due to
677   /// relocation.
678   bool evaluateFixup(const MCAsmLayout &Layout, const MCFixup &Fixup,
679                      const MCFragment *DF, MCValue &Target,
680                      uint64_t &Value) const;
681
682   /// Check whether a fixup can be satisfied, or whether it needs to be relaxed
683   /// (increased in size, in order to hold its value correctly).
684   bool fixupNeedsRelaxation(const MCFixup &Fixup, const MCRelaxableFragment *DF,
685                             const MCAsmLayout &Layout) const;
686
687   /// Check whether the given fragment needs relaxation.
688   bool fragmentNeedsRelaxation(const MCRelaxableFragment *IF,
689                                const MCAsmLayout &Layout) const;
690
691   /// \brief Perform one layout iteration and return true if any offsets
692   /// were adjusted.
693   bool layoutOnce(MCAsmLayout &Layout);
694
695   /// \brief Perform one layout iteration of the given section and return true
696   /// if any offsets were adjusted.
697   bool layoutSectionOnce(MCAsmLayout &Layout, MCSection &Sec);
698
699   bool relaxInstruction(MCAsmLayout &Layout, MCRelaxableFragment &IF);
700
701   bool relaxLEB(MCAsmLayout &Layout, MCLEBFragment &IF);
702
703   bool relaxDwarfLineAddr(MCAsmLayout &Layout, MCDwarfLineAddrFragment &DF);
704   bool relaxDwarfCallFrameFragment(MCAsmLayout &Layout,
705                                    MCDwarfCallFrameFragment &DF);
706
707   /// finishLayout - Finalize a layout, including fragment lowering.
708   void finishLayout(MCAsmLayout &Layout);
709
710   std::pair<uint64_t, bool> handleFixup(const MCAsmLayout &Layout,
711                                         MCFragment &F, const MCFixup &Fixup);
712
713 public:
714   /// Compute the effective fragment size assuming it is laid out at the given
715   /// \p SectionAddress and \p FragmentOffset.
716   uint64_t computeFragmentSize(const MCAsmLayout &Layout,
717                                const MCFragment &F) const;
718
719   /// Find the symbol which defines the atom containing the given symbol, or
720   /// null if there is no such symbol.
721   const MCSymbol *getAtom(const MCSymbol &S) const;
722
723   /// Check whether a particular symbol is visible to the linker and is required
724   /// in the symbol table, or whether it can be discarded by the assembler. This
725   /// also effects whether the assembler treats the label as potentially
726   /// defining a separate atom.
727   bool isSymbolLinkerVisible(const MCSymbol &SD) const;
728
729   /// Emit the section contents using the given object writer.
730   void writeSectionData(const MCSection *Section,
731                         const MCAsmLayout &Layout) const;
732
733   /// Check whether a given symbol has been flagged with .thumb_func.
734   bool isThumbFunc(const MCSymbol *Func) const;
735
736   /// Flag a function symbol as the target of a .thumb_func directive.
737   void setIsThumbFunc(const MCSymbol *Func) { ThumbFuncs.insert(Func); }
738
739   /// ELF e_header flags
740   unsigned getELFHeaderEFlags() const { return ELFHeaderEFlags; }
741   void setELFHeaderEFlags(unsigned Flags) { ELFHeaderEFlags = Flags; }
742
743   /// MachO deployment target version information.
744   const VersionMinInfoType &getVersionMinInfo() const { return VersionMinInfo; }
745   void setVersionMinInfo(MCVersionMinType Kind, unsigned Major, unsigned Minor,
746                          unsigned Update) {
747     VersionMinInfo.Kind = Kind;
748     VersionMinInfo.Major = Major;
749     VersionMinInfo.Minor = Minor;
750     VersionMinInfo.Update = Update;
751   }
752
753 public:
754   /// Construct a new assembler instance.
755   ///
756   /// \param OS The stream to output to.
757   //
758   // FIXME: How are we going to parameterize this? Two obvious options are stay
759   // concrete and require clients to pass in a target like object. The other
760   // option is to make this abstract, and have targets provide concrete
761   // implementations as we do with AsmParser.
762   MCAssembler(MCContext &Context_, MCAsmBackend &Backend_,
763               MCCodeEmitter &Emitter_, MCObjectWriter &Writer_,
764               raw_ostream &OS);
765   ~MCAssembler();
766
767   /// Reuse an assembler instance
768   ///
769   void reset();
770
771   MCContext &getContext() const { return Context; }
772
773   MCAsmBackend &getBackend() const { return Backend; }
774
775   MCCodeEmitter &getEmitter() const { return Emitter; }
776
777   MCObjectWriter &getWriter() const { return Writer; }
778
779   /// Finish - Do final processing and write the object to the output stream.
780   /// \p Writer is used for custom object writer (as the MCJIT does),
781   /// if not specified it is automatically created from backend.
782   void Finish();
783
784   // FIXME: This does not belong here.
785   bool getSubsectionsViaSymbols() const { return SubsectionsViaSymbols; }
786   void setSubsectionsViaSymbols(bool Value) { SubsectionsViaSymbols = Value; }
787
788   bool getRelaxAll() const { return RelaxAll; }
789   void setRelaxAll(bool Value) { RelaxAll = Value; }
790
791   bool isBundlingEnabled() const { return BundleAlignSize != 0; }
792
793   unsigned getBundleAlignSize() const { return BundleAlignSize; }
794
795   void setBundleAlignSize(unsigned Size) {
796     assert((Size == 0 || !(Size & (Size - 1))) &&
797            "Expect a power-of-two bundle align size");
798     BundleAlignSize = Size;
799   }
800
801   /// \name Section List Access
802   /// @{
803
804   iterator begin() { return Sections.begin(); }
805   const_iterator begin() const { return Sections.begin(); }
806
807   iterator end() { return Sections.end(); }
808   const_iterator end() const { return Sections.end(); }
809
810   size_t size() const { return Sections.size(); }
811
812   /// @}
813   /// \name Symbol List Access
814   /// @{
815   symbol_iterator symbol_begin() { return Symbols.begin(); }
816   const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
817
818   symbol_iterator symbol_end() { return Symbols.end(); }
819   const_symbol_iterator symbol_end() const { return Symbols.end(); }
820
821   symbol_range symbols() { return make_range(symbol_begin(), symbol_end()); }
822   const_symbol_range symbols() const {
823     return make_range(symbol_begin(), symbol_end());
824   }
825
826   size_t symbol_size() const { return Symbols.size(); }
827
828   /// @}
829   /// \name Indirect Symbol List Access
830   /// @{
831
832   // FIXME: This is a total hack, this should not be here. Once things are
833   // factored so that the streamer has direct access to the .o writer, it can
834   // disappear.
835   std::vector<IndirectSymbolData> &getIndirectSymbols() {
836     return IndirectSymbols;
837   }
838
839   indirect_symbol_iterator indirect_symbol_begin() {
840     return IndirectSymbols.begin();
841   }
842   const_indirect_symbol_iterator indirect_symbol_begin() const {
843     return IndirectSymbols.begin();
844   }
845
846   indirect_symbol_iterator indirect_symbol_end() {
847     return IndirectSymbols.end();
848   }
849   const_indirect_symbol_iterator indirect_symbol_end() const {
850     return IndirectSymbols.end();
851   }
852
853   size_t indirect_symbol_size() const { return IndirectSymbols.size(); }
854
855   /// @}
856   /// \name Linker Option List Access
857   /// @{
858
859   std::vector<std::vector<std::string>> &getLinkerOptions() {
860     return LinkerOptions;
861   }
862
863   /// @}
864   /// \name Data Region List Access
865   /// @{
866
867   // FIXME: This is a total hack, this should not be here. Once things are
868   // factored so that the streamer has direct access to the .o writer, it can
869   // disappear.
870   std::vector<DataRegionData> &getDataRegions() { return DataRegions; }
871
872   data_region_iterator data_region_begin() { return DataRegions.begin(); }
873   const_data_region_iterator data_region_begin() const {
874     return DataRegions.begin();
875   }
876
877   data_region_iterator data_region_end() { return DataRegions.end(); }
878   const_data_region_iterator data_region_end() const {
879     return DataRegions.end();
880   }
881
882   size_t data_region_size() const { return DataRegions.size(); }
883
884   /// @}
885   /// \name Data Region List Access
886   /// @{
887
888   // FIXME: This is a total hack, this should not be here. Once things are
889   // factored so that the streamer has direct access to the .o writer, it can
890   // disappear.
891   MCLOHContainer &getLOHContainer() { return LOHContainer; }
892   const MCLOHContainer &getLOHContainer() const {
893     return const_cast<MCAssembler *>(this)->getLOHContainer();
894   }
895   /// @}
896   /// \name Backend Data Access
897   /// @{
898
899   bool registerSection(MCSection &Section) {
900     if (Section.isRegistered())
901       return false;
902     Sections.push_back(&Section);
903     Section.setIsRegistered(true);
904     return true;
905   }
906
907   void registerSymbol(const MCSymbol &Symbol, bool *Created = nullptr);
908
909   ArrayRef<std::string> getFileNames() { return FileNames; }
910
911   void addFileName(StringRef FileName) {
912     if (std::find(FileNames.begin(), FileNames.end(), FileName) ==
913         FileNames.end())
914       FileNames.push_back(FileName);
915   }
916
917   /// \brief Write the necessary bundle padding to the given object writer.
918   /// Expects a fragment \p F containing instructions and its size \p FSize.
919   void writeFragmentPadding(const MCFragment &F, uint64_t FSize,
920                             MCObjectWriter *OW) const;
921
922   /// @}
923
924   void dump();
925 };
926
927 /// \brief Compute the amount of padding required before the fragment \p F to
928 /// obey bundling restrictions, where \p FOffset is the fragment's offset in
929 /// its section and \p FSize is the fragment's size.
930 uint64_t computeBundlePadding(const MCAssembler &Assembler, const MCFragment *F,
931                               uint64_t FOffset, uint64_t FSize);
932
933 } // end namespace llvm
934
935 #endif