Remember the contents of leb and dwarfline fragments when relaxing. This avoids
[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/SmallString.h"
15 #include "llvm/ADT/ilist.h"
16 #include "llvm/ADT/ilist_node.h"
17 #include "llvm/Support/Casting.h"
18 #include "llvm/MC/MCFixup.h"
19 #include "llvm/MC/MCInst.h"
20 #include "llvm/Support/DataTypes.h"
21 #include <vector> // FIXME: Shouldn't be needed.
22
23 namespace llvm {
24 class raw_ostream;
25 class MCAsmLayout;
26 class MCAssembler;
27 class MCBinaryExpr;
28 class MCContext;
29 class MCCodeEmitter;
30 class MCExpr;
31 class MCFragment;
32 class MCObjectWriter;
33 class MCSection;
34 class MCSectionData;
35 class MCSymbol;
36 class MCSymbolData;
37 class MCValue;
38 class TargetAsmBackend;
39
40 class MCFragment : public ilist_node<MCFragment> {
41   friend class MCAsmLayout;
42
43   MCFragment(const MCFragment&);     // DO NOT IMPLEMENT
44   void operator=(const MCFragment&); // DO NOT IMPLEMENT
45
46 public:
47   enum FragmentType {
48     FT_Align,
49     FT_Data,
50     FT_Fill,
51     FT_Inst,
52     FT_Org,
53     FT_Dwarf,
54     FT_LEB
55   };
56
57 private:
58   FragmentType Kind;
59
60   /// Parent - The data for the section this fragment is in.
61   MCSectionData *Parent;
62
63   /// Atom - The atom this fragment is in, as represented by it's defining
64   /// symbol. Atom's are only used by backends which set
65   /// \see MCAsmBackend::hasReliableSymbolDifference().
66   MCSymbolData *Atom;
67
68   /// @name Assembler Backend Data
69   /// @{
70   //
71   // FIXME: This could all be kept private to the assembler implementation.
72
73   /// Offset - The offset of this fragment in its section. This is ~0 until
74   /// initialized.
75   uint64_t Offset;
76
77   /// EffectiveSize - The compute size of this section. This is ~0 until
78   /// initialized.
79   uint64_t EffectiveSize;
80
81   /// LayoutOrder - The global layout order of this fragment. This is the index
82   /// across all fragments in the file, not just within the section.
83   unsigned LayoutOrder;
84
85   /// @}
86
87 protected:
88   MCFragment(FragmentType _Kind, MCSectionData *_Parent = 0);
89
90 public:
91   // Only for sentinel.
92   MCFragment();
93   virtual ~MCFragment();
94
95   FragmentType getKind() const { return Kind; }
96
97   MCSectionData *getParent() const { return Parent; }
98   void setParent(MCSectionData *Value) { Parent = Value; }
99
100   MCSymbolData *getAtom() const { return Atom; }
101   void setAtom(MCSymbolData *Value) { Atom = Value; }
102
103   unsigned getLayoutOrder() const { return LayoutOrder; }
104   void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
105
106   static bool classof(const MCFragment *O) { return true; }
107
108   void dump();
109 };
110
111 class MCDataFragment : public MCFragment {
112   SmallString<32> Contents;
113
114   /// Fixups - The list of fixups in this fragment.
115   std::vector<MCFixup> Fixups;
116
117 public:
118   typedef std::vector<MCFixup>::const_iterator const_fixup_iterator;
119   typedef std::vector<MCFixup>::iterator fixup_iterator;
120
121 public:
122   MCDataFragment(MCSectionData *SD = 0) : MCFragment(FT_Data, SD) {}
123
124   /// @name Accessors
125   /// @{
126
127   SmallString<32> &getContents() { return Contents; }
128   const SmallString<32> &getContents() const { return Contents; }
129
130   /// @}
131   /// @name Fixup Access
132   /// @{
133
134   void addFixup(MCFixup Fixup) {
135     // Enforce invariant that fixups are in offset order.
136     assert((Fixups.empty() || Fixup.getOffset() > Fixups.back().getOffset()) &&
137            "Fixups must be added in order!");
138     Fixups.push_back(Fixup);
139   }
140
141   std::vector<MCFixup> &getFixups() { return Fixups; }
142   const std::vector<MCFixup> &getFixups() const { return Fixups; }
143
144   fixup_iterator fixup_begin() { return Fixups.begin(); }
145   const_fixup_iterator fixup_begin() const { return Fixups.begin(); }
146
147   fixup_iterator fixup_end() {return Fixups.end();}
148   const_fixup_iterator fixup_end() const {return Fixups.end();}
149
150   size_t fixup_size() const { return Fixups.size(); }
151
152   /// @}
153
154   static bool classof(const MCFragment *F) {
155     return F->getKind() == MCFragment::FT_Data;
156   }
157   static bool classof(const MCDataFragment *) { return true; }
158 };
159
160 // FIXME: This current incarnation of MCInstFragment doesn't make much sense, as
161 // it is almost entirely a duplicate of MCDataFragment. If we decide to stick
162 // with this approach (as opposed to making MCInstFragment a very light weight
163 // object with just the MCInst and a code size, then we should just change
164 // MCDataFragment to have an optional MCInst at its end.
165 class MCInstFragment : public MCFragment {
166   /// Inst - The instruction this is a fragment for.
167   MCInst Inst;
168
169   /// Code - Binary data for the currently encoded instruction.
170   SmallString<8> Code;
171
172   /// Fixups - The list of fixups in this fragment.
173   SmallVector<MCFixup, 1> Fixups;
174
175 public:
176   typedef SmallVectorImpl<MCFixup>::const_iterator const_fixup_iterator;
177   typedef SmallVectorImpl<MCFixup>::iterator fixup_iterator;
178
179 public:
180   MCInstFragment(MCInst _Inst, MCSectionData *SD = 0)
181     : MCFragment(FT_Inst, SD), Inst(_Inst) {
182   }
183
184   /// @name Accessors
185   /// @{
186
187   SmallVectorImpl<char> &getCode() { return Code; }
188   const SmallVectorImpl<char> &getCode() const { return Code; }
189
190   unsigned getInstSize() const { return Code.size(); }
191
192   MCInst &getInst() { return Inst; }
193   const MCInst &getInst() const { return Inst; }
194
195   void setInst(MCInst Value) { Inst = Value; }
196
197   /// @}
198   /// @name Fixup Access
199   /// @{
200
201   SmallVectorImpl<MCFixup> &getFixups() { return Fixups; }
202   const SmallVectorImpl<MCFixup> &getFixups() const { return Fixups; }
203
204   fixup_iterator fixup_begin() { return Fixups.begin(); }
205   const_fixup_iterator fixup_begin() const { return Fixups.begin(); }
206
207   fixup_iterator fixup_end() {return Fixups.end();}
208   const_fixup_iterator fixup_end() const {return Fixups.end();}
209
210   size_t fixup_size() const { return Fixups.size(); }
211
212   /// @}
213
214   static bool classof(const MCFragment *F) {
215     return F->getKind() == MCFragment::FT_Inst;
216   }
217   static bool classof(const MCInstFragment *) { return true; }
218 };
219
220 class MCAlignFragment : public MCFragment {
221   /// Alignment - The alignment to ensure, in bytes.
222   unsigned Alignment;
223
224   /// Value - Value to use for filling padding bytes.
225   int64_t Value;
226
227   /// ValueSize - The size of the integer (in bytes) of \arg Value.
228   unsigned ValueSize;
229
230   /// MaxBytesToEmit - The maximum number of bytes to emit; if the alignment
231   /// cannot be satisfied in this width then this fragment is ignored.
232   unsigned MaxBytesToEmit;
233
234   /// EmitNops - Flag to indicate that (optimal) NOPs should be emitted instead
235   /// of using the provided value. The exact interpretation of this flag is
236   /// target dependent.
237   bool EmitNops : 1;
238
239   /// OnlyAlignAddress - Flag to indicate that this align is only used to adjust
240   /// the address space size of a section and that it should not be included as
241   /// part of the section size. This flag can only be used on the last fragment
242   /// in a section.
243   bool OnlyAlignAddress : 1;
244
245 public:
246   MCAlignFragment(unsigned _Alignment, int64_t _Value, unsigned _ValueSize,
247                   unsigned _MaxBytesToEmit, MCSectionData *SD = 0)
248     : MCFragment(FT_Align, SD), Alignment(_Alignment),
249       Value(_Value),ValueSize(_ValueSize),
250       MaxBytesToEmit(_MaxBytesToEmit), EmitNops(false),
251       OnlyAlignAddress(false) {}
252
253   /// @name Accessors
254   /// @{
255
256   unsigned getAlignment() const { return Alignment; }
257
258   int64_t getValue() const { return Value; }
259
260   unsigned getValueSize() const { return ValueSize; }
261
262   unsigned getMaxBytesToEmit() const { return MaxBytesToEmit; }
263
264   bool hasEmitNops() const { return EmitNops; }
265   void setEmitNops(bool Value) { EmitNops = Value; }
266
267   bool hasOnlyAlignAddress() const { return OnlyAlignAddress; }
268   void setOnlyAlignAddress(bool Value) { OnlyAlignAddress = Value; }
269
270   /// @}
271
272   static bool classof(const MCFragment *F) {
273     return F->getKind() == MCFragment::FT_Align;
274   }
275   static bool classof(const MCAlignFragment *) { return true; }
276 };
277
278 class MCFillFragment : public MCFragment {
279   /// Value - Value to use for filling bytes.
280   int64_t Value;
281
282   /// ValueSize - The size (in bytes) of \arg Value to use when filling, or 0 if
283   /// this is a virtual fill fragment.
284   unsigned ValueSize;
285
286   /// Size - The number of bytes to insert.
287   uint64_t Size;
288
289 public:
290   MCFillFragment(int64_t _Value, unsigned _ValueSize, uint64_t _Size,
291                  MCSectionData *SD = 0)
292     : MCFragment(FT_Fill, SD),
293       Value(_Value), ValueSize(_ValueSize), Size(_Size) {
294     assert((!ValueSize || (Size % ValueSize) == 0) &&
295            "Fill size must be a multiple of the value size!");
296   }
297
298   /// @name Accessors
299   /// @{
300
301   int64_t getValue() const { return Value; }
302
303   unsigned getValueSize() const { return ValueSize; }
304
305   uint64_t getSize() const { return Size; }
306
307   /// @}
308
309   static bool classof(const MCFragment *F) {
310     return F->getKind() == MCFragment::FT_Fill;
311   }
312   static bool classof(const MCFillFragment *) { return true; }
313 };
314
315 class MCOrgFragment : public MCFragment {
316   /// Offset - The offset this fragment should start at.
317   const MCExpr *Offset;
318
319   /// Value - Value to use for filling bytes.
320   int8_t Value;
321
322   /// Size - The current estimate of the size.
323   unsigned Size;
324
325 public:
326   MCOrgFragment(const MCExpr &_Offset, int8_t _Value, MCSectionData *SD = 0)
327     : MCFragment(FT_Org, SD),
328       Offset(&_Offset), Value(_Value), Size(0) {}
329
330   /// @name Accessors
331   /// @{
332
333   const MCExpr &getOffset() const { return *Offset; }
334
335   uint8_t getValue() const { return Value; }
336
337   unsigned getSize() const { return Size; }
338
339   void setSize(unsigned Size_) { Size = Size_; }
340   /// @}
341
342   static bool classof(const MCFragment *F) {
343     return F->getKind() == MCFragment::FT_Org;
344   }
345   static bool classof(const MCOrgFragment *) { return true; }
346 };
347
348 class MCLEBFragment : public MCFragment {
349   /// Value - The value this fragment should contain.
350   const MCExpr *Value;
351
352   /// IsSigned - True if this is a sleb128, false if uleb128.
353   bool IsSigned;
354
355   SmallString<8> Contents;
356 public:
357   MCLEBFragment(const MCExpr &Value_, bool IsSigned_, MCSectionData *SD)
358     : MCFragment(FT_LEB, SD),
359       Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
360
361   /// @name Accessors
362   /// @{
363
364   const MCExpr &getValue() const { return *Value; }
365
366   bool isSigned() const { return IsSigned; }
367
368   SmallString<8> &getContents() { return Contents; }
369   const SmallString<8> &getContents() const { return Contents; }
370
371   /// @}
372
373   static bool classof(const MCFragment *F) {
374     return F->getKind() == MCFragment::FT_LEB;
375   }
376   static bool classof(const MCLEBFragment *) { return true; }
377 };
378
379 class MCDwarfLineAddrFragment : public MCFragment {
380   /// LineDelta - the value of the difference between the two line numbers
381   /// between two .loc dwarf directives.
382   int64_t LineDelta;
383
384   /// AddrDelta - The expression for the difference of the two symbols that
385   /// make up the address delta between two .loc dwarf directives.
386   const MCExpr *AddrDelta;
387
388   SmallString<8> Contents;
389
390 public:
391   MCDwarfLineAddrFragment(int64_t _LineDelta, const MCExpr &_AddrDelta,
392                       MCSectionData *SD = 0)
393     : MCFragment(FT_Dwarf, SD),
394       LineDelta(_LineDelta), AddrDelta(&_AddrDelta) { Contents.push_back(0); }
395
396   /// @name Accessors
397   /// @{
398
399   int64_t getLineDelta() const { return LineDelta; }
400
401   const MCExpr &getAddrDelta() const { return *AddrDelta; }
402
403   SmallString<8> &getContents() { return Contents; }
404   const SmallString<8> &getContents() const { return Contents; }
405
406   /// @}
407
408   static bool classof(const MCFragment *F) {
409     return F->getKind() == MCFragment::FT_Dwarf;
410   }
411   static bool classof(const MCDwarfLineAddrFragment *) { return true; }
412 };
413
414 // FIXME: Should this be a separate class, or just merged into MCSection? Since
415 // we anticipate the fast path being through an MCAssembler, the only reason to
416 // keep it out is for API abstraction.
417 class MCSectionData : public ilist_node<MCSectionData> {
418   friend class MCAsmLayout;
419
420   MCSectionData(const MCSectionData&);  // DO NOT IMPLEMENT
421   void operator=(const MCSectionData&); // DO NOT IMPLEMENT
422
423 public:
424   typedef iplist<MCFragment> FragmentListType;
425
426   typedef FragmentListType::const_iterator const_iterator;
427   typedef FragmentListType::iterator iterator;
428
429   typedef FragmentListType::const_reverse_iterator const_reverse_iterator;
430   typedef FragmentListType::reverse_iterator reverse_iterator;
431
432 private:
433   FragmentListType Fragments;
434   const MCSection *Section;
435
436   /// Ordinal - The section index in the assemblers section list.
437   unsigned Ordinal;
438
439   /// LayoutOrder - The index of this section in the layout order.
440   unsigned LayoutOrder;
441
442   /// Alignment - The maximum alignment seen in this section.
443   unsigned Alignment;
444
445   /// @name Assembler Backend Data
446   /// @{
447   //
448   // FIXME: This could all be kept private to the assembler implementation.
449
450   /// Address - The computed address of this section. This is ~0 until
451   /// initialized.
452   uint64_t Address;
453
454   /// HasInstructions - Whether this section has had instructions emitted into
455   /// it.
456   unsigned HasInstructions : 1;
457
458   /// @}
459
460 public:
461   // Only for use as sentinel.
462   MCSectionData();
463   MCSectionData(const MCSection &Section, MCAssembler *A = 0);
464
465   const MCSection &getSection() const { return *Section; }
466
467   unsigned getAlignment() const { return Alignment; }
468   void setAlignment(unsigned Value) { Alignment = Value; }
469
470   bool hasInstructions() const { return HasInstructions; }
471   void setHasInstructions(bool Value) { HasInstructions = Value; }
472
473   unsigned getOrdinal() const { return Ordinal; }
474   void setOrdinal(unsigned Value) { Ordinal = Value; }
475
476   unsigned getLayoutOrder() const { return LayoutOrder; }
477   void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
478
479   uint64_t getAddress() const { return Address; }
480
481   /// @name Fragment Access
482   /// @{
483
484   const FragmentListType &getFragmentList() const { return Fragments; }
485   FragmentListType &getFragmentList() { return Fragments; }
486
487   iterator begin() { return Fragments.begin(); }
488   const_iterator begin() const { return Fragments.begin(); }
489
490   iterator end() { return Fragments.end(); }
491   const_iterator end() const { return Fragments.end(); }
492
493   reverse_iterator rbegin() { return Fragments.rbegin(); }
494   const_reverse_iterator rbegin() const { return Fragments.rbegin(); }
495
496   reverse_iterator rend() { return Fragments.rend(); }
497   const_reverse_iterator rend() const { return Fragments.rend(); }
498
499   size_t size() const { return Fragments.size(); }
500
501   bool empty() const { return Fragments.empty(); }
502
503   void dump();
504
505   /// @}
506 };
507
508 // FIXME: Same concerns as with SectionData.
509 class MCSymbolData : public ilist_node<MCSymbolData> {
510 public:
511   const MCSymbol *Symbol;
512
513   /// Fragment - The fragment this symbol's value is relative to, if any.
514   MCFragment *Fragment;
515
516   /// Offset - The offset to apply to the fragment address to form this symbol's
517   /// value.
518   uint64_t Offset;
519
520   /// IsExternal - True if this symbol is visible outside this translation
521   /// unit.
522   unsigned IsExternal : 1;
523
524   /// IsPrivateExtern - True if this symbol is private extern.
525   unsigned IsPrivateExtern : 1;
526
527   /// CommonSize - The size of the symbol, if it is 'common', or 0.
528   //
529   // FIXME: Pack this in with other fields? We could put it in offset, since a
530   // common symbol can never get a definition.
531   uint64_t CommonSize;
532
533   /// SymbolSize - An expression describing how to calculate the size of
534   /// a symbol. If a symbol has no size this field will be NULL.
535   const MCExpr *SymbolSize;
536
537   /// CommonAlign - The alignment of the symbol, if it is 'common'.
538   //
539   // FIXME: Pack this in with other fields?
540   unsigned CommonAlign;
541
542   /// Flags - The Flags field is used by object file implementations to store
543   /// additional per symbol information which is not easily classified.
544   uint32_t Flags;
545
546   /// Index - Index field, for use by the object file implementation.
547   uint64_t Index;
548
549 public:
550   // Only for use as sentinel.
551   MCSymbolData();
552   MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment, uint64_t _Offset,
553                MCAssembler *A = 0);
554
555   /// @name Accessors
556   /// @{
557
558   const MCSymbol &getSymbol() const { return *Symbol; }
559
560   MCFragment *getFragment() const { return Fragment; }
561   void setFragment(MCFragment *Value) { Fragment = Value; }
562
563   uint64_t getOffset() const { return Offset; }
564   void setOffset(uint64_t Value) { Offset = Value; }
565
566   /// @}
567   /// @name Symbol Attributes
568   /// @{
569
570   bool isExternal() const { return IsExternal; }
571   void setExternal(bool Value) { IsExternal = Value; }
572
573   bool isPrivateExtern() const { return IsPrivateExtern; }
574   void setPrivateExtern(bool Value) { IsPrivateExtern = Value; }
575
576   /// isCommon - Is this a 'common' symbol.
577   bool isCommon() const { return CommonSize != 0; }
578
579   /// setCommon - Mark this symbol as being 'common'.
580   ///
581   /// \param Size - The size of the symbol.
582   /// \param Align - The alignment of the symbol.
583   void setCommon(uint64_t Size, unsigned Align) {
584     CommonSize = Size;
585     CommonAlign = Align;
586   }
587
588   /// getCommonSize - Return the size of a 'common' symbol.
589   uint64_t getCommonSize() const {
590     assert(isCommon() && "Not a 'common' symbol!");
591     return CommonSize;
592   }
593
594   void setSize(const MCExpr *SS) {
595     SymbolSize = SS;
596   }
597
598   const MCExpr *getSize() const {
599     return SymbolSize;
600   }
601
602
603   /// getCommonAlignment - Return the alignment of a 'common' symbol.
604   unsigned getCommonAlignment() const {
605     assert(isCommon() && "Not a 'common' symbol!");
606     return CommonAlign;
607   }
608
609   /// getFlags - Get the (implementation defined) symbol flags.
610   uint32_t getFlags() const { return Flags; }
611
612   /// setFlags - Set the (implementation defined) symbol flags.
613   void setFlags(uint32_t Value) { Flags = Value; }
614
615   /// modifyFlags - Modify the flags via a mask
616   void modifyFlags(uint32_t Value, uint32_t Mask) {
617     Flags = (Flags & ~Mask) | Value;
618   }
619
620   /// getIndex - Get the (implementation defined) index.
621   uint64_t getIndex() const { return Index; }
622
623   /// setIndex - Set the (implementation defined) index.
624   void setIndex(uint64_t Value) { Index = Value; }
625
626   /// @}
627
628   void dump();
629 };
630
631 // FIXME: This really doesn't belong here. See comments below.
632 struct IndirectSymbolData {
633   MCSymbol *Symbol;
634   MCSectionData *SectionData;
635 };
636
637 class MCAssembler {
638   friend class MCAsmLayout;
639
640 public:
641   typedef iplist<MCSectionData> SectionDataListType;
642   typedef iplist<MCSymbolData> SymbolDataListType;
643
644   typedef SectionDataListType::const_iterator const_iterator;
645   typedef SectionDataListType::iterator iterator;
646
647   typedef SymbolDataListType::const_iterator const_symbol_iterator;
648   typedef SymbolDataListType::iterator symbol_iterator;
649
650   typedef std::vector<IndirectSymbolData>::const_iterator
651     const_indirect_symbol_iterator;
652   typedef std::vector<IndirectSymbolData>::iterator indirect_symbol_iterator;
653
654 private:
655   MCAssembler(const MCAssembler&);    // DO NOT IMPLEMENT
656   void operator=(const MCAssembler&); // DO NOT IMPLEMENT
657
658   MCContext &Context;
659
660   TargetAsmBackend &Backend;
661
662   MCCodeEmitter &Emitter;
663
664   raw_ostream &OS;
665
666   iplist<MCSectionData> Sections;
667
668   iplist<MCSymbolData> Symbols;
669
670   /// The map of sections to their associated assembler backend data.
671   //
672   // FIXME: Avoid this indirection?
673   DenseMap<const MCSection*, MCSectionData*> SectionMap;
674
675   /// The map of symbols to their associated assembler backend data.
676   //
677   // FIXME: Avoid this indirection?
678   DenseMap<const MCSymbol*, MCSymbolData*> SymbolMap;
679
680   std::vector<IndirectSymbolData> IndirectSymbols;
681
682   unsigned RelaxAll : 1;
683   unsigned SubsectionsViaSymbols : 1;
684   unsigned PadSectionToAlignment : 1;
685
686 private:
687   /// Evaluate a fixup to a relocatable expression and the value which should be
688   /// placed into the fixup.
689   ///
690   /// \param Layout The layout to use for evaluation.
691   /// \param Fixup The fixup to evaluate.
692   /// \param DF The fragment the fixup is inside.
693   /// \param Target [out] On return, the relocatable expression the fixup
694   /// evaluates to.
695   /// \param Value [out] On return, the value of the fixup as currently layed
696   /// out.
697   /// \return Whether the fixup value was fully resolved. This is true if the
698   /// \arg Value result is fixed, otherwise the value may change due to
699   /// relocation.
700   bool EvaluateFixup(const MCObjectWriter &Writer, const MCAsmLayout &Layout,
701                      const MCFixup &Fixup, const MCFragment *DF,
702                      MCValue &Target, uint64_t &Value) const;
703
704   /// Check whether a fixup can be satisfied, or whether it needs to be relaxed
705   /// (increased in size, in order to hold its value correctly).
706   bool FixupNeedsRelaxation(const MCObjectWriter &Writer,
707                             const MCFixup &Fixup, const MCFragment *DF,
708                             const MCAsmLayout &Layout) const;
709
710   /// Check whether the given fragment needs relaxation.
711   bool FragmentNeedsRelaxation(const MCObjectWriter &Writer,
712                                const MCInstFragment *IF,
713                                const MCAsmLayout &Layout) const;
714
715   /// Compute the effective fragment size assuming it is layed out at the given
716   /// \arg SectionAddress and \arg FragmentOffset.
717   uint64_t ComputeFragmentSize(const MCFragment &F,
718                                uint64_t SectionAddress,
719                                uint64_t FragmentOffset) const;
720
721   /// LayoutOnce - Perform one layout iteration and return true if any offsets
722   /// were adjusted.
723   bool LayoutOnce(const MCObjectWriter &Writer, MCAsmLayout &Layout);
724
725   bool RelaxInstruction(const MCObjectWriter &Writer, MCAsmLayout &Layout,
726                         MCInstFragment &IF);
727
728   bool RelaxOrg(const MCObjectWriter &Writer, MCAsmLayout &Layout,
729                 MCOrgFragment &OF);
730
731   bool RelaxLEB(const MCObjectWriter &Writer, MCAsmLayout &Layout,
732                 MCLEBFragment &IF);
733
734   bool RelaxDwarfLineAddr(const MCObjectWriter &Writer, MCAsmLayout &Layout,
735                           MCDwarfLineAddrFragment &DF);
736
737   /// FinishLayout - Finalize a layout, including fragment lowering.
738   void FinishLayout(MCAsmLayout &Layout);
739
740 public:
741   /// Find the symbol which defines the atom containing the given symbol, or
742   /// null if there is no such symbol.
743   const MCSymbolData *getAtom(const MCSymbolData *Symbol) const;
744
745   /// Check whether a particular symbol is visible to the linker and is required
746   /// in the symbol table, or whether it can be discarded by the assembler. This
747   /// also effects whether the assembler treats the label as potentially
748   /// defining a separate atom.
749   bool isSymbolLinkerVisible(const MCSymbol &SD) const;
750
751   /// Emit the section contents using the given object writer.
752   //
753   // FIXME: Should MCAssembler always have a reference to the object writer?
754   void WriteSectionData(const MCSectionData *Section, const MCAsmLayout &Layout,
755                         MCObjectWriter *OW) const;
756
757 public:
758   /// Construct a new assembler instance.
759   ///
760   /// \arg OS - The stream to output to.
761   //
762   // FIXME: How are we going to parameterize this? Two obvious options are stay
763   // concrete and require clients to pass in a target like object. The other
764   // option is to make this abstract, and have targets provide concrete
765   // implementations as we do with AsmParser.
766   MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
767               MCCodeEmitter &_Emitter, bool _PadSectionToAlignment,
768               raw_ostream &OS);
769   ~MCAssembler();
770
771   MCContext &getContext() const { return Context; }
772
773   TargetAsmBackend &getBackend() const { return Backend; }
774
775   MCCodeEmitter &getEmitter() const { return Emitter; }
776
777   /// Finish - Do final processing and write the object to the output stream.
778   /// \arg Writer is used for custom object writer (as the MCJIT does),
779   /// if not specified it is automatically created from backend.
780   void Finish(MCObjectWriter *Writer = 0);
781
782   // FIXME: This does not belong here.
783   bool getSubsectionsViaSymbols() const {
784     return SubsectionsViaSymbols;
785   }
786   void setSubsectionsViaSymbols(bool Value) {
787     SubsectionsViaSymbols = Value;
788   }
789
790   bool getRelaxAll() const { return RelaxAll; }
791   void setRelaxAll(bool Value) { RelaxAll = Value; }
792
793   /// @name Section List Access
794   /// @{
795
796   const SectionDataListType &getSectionList() const { return Sections; }
797   SectionDataListType &getSectionList() { return Sections; }
798
799   iterator begin() { return Sections.begin(); }
800   const_iterator begin() const { return Sections.begin(); }
801
802   iterator end() { return Sections.end(); }
803   const_iterator end() const { return Sections.end(); }
804
805   size_t size() const { return Sections.size(); }
806
807   /// @}
808   /// @name Symbol List Access
809   /// @{
810
811   const SymbolDataListType &getSymbolList() const { return Symbols; }
812   SymbolDataListType &getSymbolList() { return Symbols; }
813
814   symbol_iterator symbol_begin() { return Symbols.begin(); }
815   const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
816
817   symbol_iterator symbol_end() { return Symbols.end(); }
818   const_symbol_iterator symbol_end() const { return Symbols.end(); }
819
820   size_t symbol_size() const { return Symbols.size(); }
821
822   /// @}
823   /// @name Indirect Symbol List Access
824   /// @{
825
826   // FIXME: This is a total hack, this should not be here. Once things are
827   // factored so that the streamer has direct access to the .o writer, it can
828   // disappear.
829   std::vector<IndirectSymbolData> &getIndirectSymbols() {
830     return IndirectSymbols;
831   }
832
833   indirect_symbol_iterator indirect_symbol_begin() {
834     return IndirectSymbols.begin();
835   }
836   const_indirect_symbol_iterator indirect_symbol_begin() const {
837     return IndirectSymbols.begin();
838   }
839
840   indirect_symbol_iterator indirect_symbol_end() {
841     return IndirectSymbols.end();
842   }
843   const_indirect_symbol_iterator indirect_symbol_end() const {
844     return IndirectSymbols.end();
845   }
846
847   size_t indirect_symbol_size() const { return IndirectSymbols.size(); }
848
849   /// @}
850   /// @name Backend Data Access
851   /// @{
852
853   MCSectionData &getSectionData(const MCSection &Section) const {
854     MCSectionData *Entry = SectionMap.lookup(&Section);
855     assert(Entry && "Missing section data!");
856     return *Entry;
857   }
858
859   MCSectionData &getOrCreateSectionData(const MCSection &Section,
860                                         bool *Created = 0) {
861     MCSectionData *&Entry = SectionMap[&Section];
862
863     if (Created) *Created = !Entry;
864     if (!Entry)
865       Entry = new MCSectionData(Section, this);
866
867     return *Entry;
868   }
869
870   MCSymbolData &getSymbolData(const MCSymbol &Symbol) const {
871     MCSymbolData *Entry = SymbolMap.lookup(&Symbol);
872     assert(Entry && "Missing symbol data!");
873     return *Entry;
874   }
875
876   MCSymbolData &getOrCreateSymbolData(const MCSymbol &Symbol,
877                                       bool *Created = 0) {
878     MCSymbolData *&Entry = SymbolMap[&Symbol];
879
880     if (Created) *Created = !Entry;
881     if (!Entry)
882       Entry = new MCSymbolData(Symbol, 0, 0, this);
883
884     return *Entry;
885   }
886
887   /// @}
888
889   void dump();
890 };
891
892 } // end namespace llvm
893
894 #endif