Drop prelink support.
[oota-llvm.git] / include / llvm / MC / MCObjectFileInfo.h
1 //===-- llvm/MC/MCObjectFileInfo.h - Object File Info -----------*- 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 // This file describes common object file formats.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_MC_MCOBJECTFILEINFO_H
15 #define LLVM_MC_MCOBJECTFILEINFO_H
16
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/Support/CodeGen.h"
19
20 namespace llvm {
21 class MCContext;
22 class MCSection;
23
24 class MCObjectFileInfo {
25 protected:
26   /// True if .comm supports alignment.  This is a hack for as long as we
27   /// support 10.4 Tiger, whose assembler doesn't support alignment on comm.
28   bool CommDirectiveSupportsAlignment;
29
30   /// True if target object file supports a weak_definition of constant 0 for an
31   /// omitted EH frame.
32   bool SupportsWeakOmittedEHFrame;
33
34   /// True if the target object file supports emitting a compact unwind section
35   /// without an associated EH frame section.
36   bool SupportsCompactUnwindWithoutEHFrame;
37
38   /// OmitDwarfIfHaveCompactUnwind - True if the target object file
39   /// supports having some functions with compact unwind and other with
40   /// dwarf unwind.
41   bool OmitDwarfIfHaveCompactUnwind;
42
43   /// PersonalityEncoding, LSDAEncoding, TTypeEncoding - Some encoding values
44   /// for EH.
45   unsigned PersonalityEncoding;
46   unsigned LSDAEncoding;
47   unsigned FDECFIEncoding;
48   unsigned TTypeEncoding;
49
50   /// Compact unwind encoding indicating that we should emit only an EH frame.
51   unsigned CompactUnwindDwarfEHFrameOnly;
52
53   /// Section directive for standard text.
54   MCSection *TextSection;
55
56   /// Section directive for standard data.
57   MCSection *DataSection;
58
59   /// Section that is default initialized to zero.
60   MCSection *BSSSection;
61
62   /// Section that is readonly and can contain arbitrary initialized data.
63   /// Targets are not required to have a readonly section. If they don't,
64   /// various bits of code will fall back to using the data section for
65   /// constants.
66   MCSection *ReadOnlySection;
67
68   /// This section contains the static constructor pointer list.
69   MCSection *StaticCtorSection;
70
71   /// This section contains the static destructor pointer list.
72   MCSection *StaticDtorSection;
73
74   /// If exception handling is supported by the target, this is the section the
75   /// Language Specific Data Area information is emitted to.
76   MCSection *LSDASection;
77
78   /// If exception handling is supported by the target and the target can
79   /// support a compact representation of the CIE and FDE, this is the section
80   /// to emit them into.
81   MCSection *CompactUnwindSection;
82
83   // Dwarf sections for debug info.  If a target supports debug info, these must
84   // be set.
85   MCSection *DwarfAbbrevSection;
86   MCSection *DwarfInfoSection;
87   MCSection *DwarfLineSection;
88   MCSection *DwarfFrameSection;
89   MCSection *DwarfPubTypesSection;
90   const MCSection *DwarfDebugInlineSection;
91   MCSection *DwarfStrSection;
92   MCSection *DwarfLocSection;
93   MCSection *DwarfARangesSection;
94   MCSection *DwarfRangesSection;
95   // The pubnames section is no longer generated by default.  The generation
96   // can be enabled by a compiler flag.
97   MCSection *DwarfPubNamesSection;
98
99   /// DWARF5 Experimental Debug Info Sections
100   /// DwarfAccelNamesSection, DwarfAccelObjCSection,
101   /// DwarfAccelNamespaceSection, DwarfAccelTypesSection -
102   /// If we use the DWARF accelerated hash tables then we want to emit these
103   /// sections.
104   MCSection *DwarfAccelNamesSection;
105   MCSection *DwarfAccelObjCSection;
106   MCSection *DwarfAccelNamespaceSection;
107   MCSection *DwarfAccelTypesSection;
108
109   // These are used for the Fission separate debug information files.
110   MCSection *DwarfInfoDWOSection;
111   MCSection *DwarfTypesDWOSection;
112   MCSection *DwarfAbbrevDWOSection;
113   MCSection *DwarfStrDWOSection;
114   MCSection *DwarfLineDWOSection;
115   MCSection *DwarfLocDWOSection;
116   MCSection *DwarfStrOffDWOSection;
117   MCSection *DwarfAddrSection;
118
119   /// Section for newer gnu pubnames.
120   MCSection *DwarfGnuPubNamesSection;
121   /// Section for newer gnu pubtypes.
122   MCSection *DwarfGnuPubTypesSection;
123
124   MCSection *COFFDebugSymbolsSection;
125
126   /// Extra TLS Variable Data section.
127   ///
128   /// If the target needs to put additional information for a TLS variable,
129   /// it'll go here.
130   MCSection *TLSExtraDataSection;
131
132   /// Section directive for Thread Local data. ELF, MachO and COFF.
133   MCSection *TLSDataSection; // Defaults to ".tdata".
134
135   /// Section directive for Thread Local uninitialized data.
136   ///
137   /// Null if this target doesn't support a BSS section. ELF and MachO only.
138   MCSection *TLSBSSSection; // Defaults to ".tbss".
139
140   /// StackMap section.
141   MCSection *StackMapSection;
142
143   /// FaultMap section.
144   MCSection *FaultMapSection;
145
146   /// EH frame section.
147   ///
148   /// It is initialized on demand so it can be overwritten (with uniquing).
149   MCSection *EHFrameSection;
150
151   // ELF specific sections.
152   MCSection *DataRelSection;
153   MCSection *DataRelROSection;
154   MCSection *MergeableConst4Section;
155   MCSection *MergeableConst8Section;
156   MCSection *MergeableConst16Section;
157
158   // MachO specific sections.
159
160   /// Section for thread local structure information.
161   ///
162   /// Contains the source code name of the variable, visibility and a pointer to
163   /// the initial value (.tdata or .tbss).
164   MCSection *TLSTLVSection; // Defaults to ".tlv".
165
166   /// Section for thread local data initialization functions.
167   const MCSection *TLSThreadInitSection; // Defaults to ".thread_init_func".
168
169   MCSection *CStringSection;
170   MCSection *UStringSection;
171   MCSection *TextCoalSection;
172   MCSection *ConstTextCoalSection;
173   MCSection *ConstDataSection;
174   MCSection *DataCoalSection;
175   MCSection *DataCommonSection;
176   MCSection *DataBSSSection;
177   MCSection *FourByteConstantSection;
178   MCSection *EightByteConstantSection;
179   MCSection *SixteenByteConstantSection;
180   MCSection *LazySymbolPointerSection;
181   MCSection *NonLazySymbolPointerSection;
182
183   /// COFF specific sections.
184   MCSection *DrectveSection;
185   MCSection *PDataSection;
186   MCSection *XDataSection;
187   MCSection *SXDataSection;
188
189 public:
190   void InitMCObjectFileInfo(const Triple &TT, Reloc::Model RM,
191                             CodeModel::Model CM, MCContext &ctx);
192   LLVM_ATTRIBUTE_DEPRECATED(
193       void InitMCObjectFileInfo(StringRef TT, Reloc::Model RM,
194                                 CodeModel::Model CM, MCContext &ctx),
195       "StringRef GNU Triple argument replaced by a llvm::Triple object");
196
197   bool getSupportsWeakOmittedEHFrame() const {
198     return SupportsWeakOmittedEHFrame;
199   }
200   bool getSupportsCompactUnwindWithoutEHFrame() const {
201     return SupportsCompactUnwindWithoutEHFrame;
202   }
203   bool getOmitDwarfIfHaveCompactUnwind() const {
204     return OmitDwarfIfHaveCompactUnwind;
205   }
206
207   bool getCommDirectiveSupportsAlignment() const {
208     return CommDirectiveSupportsAlignment;
209   }
210
211   unsigned getPersonalityEncoding() const { return PersonalityEncoding; }
212   unsigned getLSDAEncoding() const { return LSDAEncoding; }
213   unsigned getFDEEncoding() const { return FDECFIEncoding; }
214   unsigned getTTypeEncoding() const { return TTypeEncoding; }
215
216   unsigned getCompactUnwindDwarfEHFrameOnly() const {
217     return CompactUnwindDwarfEHFrameOnly;
218   }
219
220   MCSection *getTextSection() const { return TextSection; }
221   MCSection *getDataSection() const { return DataSection; }
222   MCSection *getBSSSection() const { return BSSSection; }
223   MCSection *getReadOnlySection() const { return ReadOnlySection; }
224   MCSection *getLSDASection() const { return LSDASection; }
225   MCSection *getCompactUnwindSection() const { return CompactUnwindSection; }
226   MCSection *getDwarfAbbrevSection() const { return DwarfAbbrevSection; }
227   MCSection *getDwarfInfoSection() const { return DwarfInfoSection; }
228   MCSection *getDwarfLineSection() const { return DwarfLineSection; }
229   MCSection *getDwarfFrameSection() const { return DwarfFrameSection; }
230   MCSection *getDwarfPubNamesSection() const { return DwarfPubNamesSection; }
231   MCSection *getDwarfPubTypesSection() const { return DwarfPubTypesSection; }
232   MCSection *getDwarfGnuPubNamesSection() const {
233     return DwarfGnuPubNamesSection;
234   }
235   MCSection *getDwarfGnuPubTypesSection() const {
236     return DwarfGnuPubTypesSection;
237   }
238   const MCSection *getDwarfDebugInlineSection() const {
239     return DwarfDebugInlineSection;
240   }
241   MCSection *getDwarfStrSection() const { return DwarfStrSection; }
242   MCSection *getDwarfLocSection() const { return DwarfLocSection; }
243   MCSection *getDwarfARangesSection() const { return DwarfARangesSection; }
244   MCSection *getDwarfRangesSection() const { return DwarfRangesSection; }
245
246   // DWARF5 Experimental Debug Info Sections
247   MCSection *getDwarfAccelNamesSection() const {
248     return DwarfAccelNamesSection;
249   }
250   MCSection *getDwarfAccelObjCSection() const { return DwarfAccelObjCSection; }
251   MCSection *getDwarfAccelNamespaceSection() const {
252     return DwarfAccelNamespaceSection;
253   }
254   MCSection *getDwarfAccelTypesSection() const {
255     return DwarfAccelTypesSection;
256   }
257   MCSection *getDwarfInfoDWOSection() const { return DwarfInfoDWOSection; }
258   MCSection *getDwarfTypesSection(uint64_t Hash) const;
259   MCSection *getDwarfTypesDWOSection() const { return DwarfTypesDWOSection; }
260   MCSection *getDwarfAbbrevDWOSection() const { return DwarfAbbrevDWOSection; }
261   MCSection *getDwarfStrDWOSection() const { return DwarfStrDWOSection; }
262   MCSection *getDwarfLineDWOSection() const { return DwarfLineDWOSection; }
263   MCSection *getDwarfLocDWOSection() const { return DwarfLocDWOSection; }
264   MCSection *getDwarfStrOffDWOSection() const { return DwarfStrOffDWOSection; }
265   MCSection *getDwarfAddrSection() const { return DwarfAddrSection; }
266
267   MCSection *getCOFFDebugSymbolsSection() const {
268     return COFFDebugSymbolsSection;
269   }
270
271   MCSection *getTLSExtraDataSection() const { return TLSExtraDataSection; }
272   const MCSection *getTLSDataSection() const { return TLSDataSection; }
273   MCSection *getTLSBSSSection() const { return TLSBSSSection; }
274
275   MCSection *getStackMapSection() const { return StackMapSection; }
276   MCSection *getFaultMapSection() const { return FaultMapSection; }
277
278   // ELF specific sections.
279   MCSection *getDataRelSection() const { return DataRelSection; }
280   MCSection *getDataRelROSection() const { return DataRelROSection; }
281   const MCSection *getMergeableConst4Section() const {
282     return MergeableConst4Section;
283   }
284   const MCSection *getMergeableConst8Section() const {
285     return MergeableConst8Section;
286   }
287   const MCSection *getMergeableConst16Section() const {
288     return MergeableConst16Section;
289   }
290
291   // MachO specific sections.
292   const MCSection *getTLSTLVSection() const { return TLSTLVSection; }
293   const MCSection *getTLSThreadInitSection() const {
294     return TLSThreadInitSection;
295   }
296   const MCSection *getCStringSection() const { return CStringSection; }
297   const MCSection *getUStringSection() const { return UStringSection; }
298   MCSection *getTextCoalSection() const { return TextCoalSection; }
299   const MCSection *getConstTextCoalSection() const {
300     return ConstTextCoalSection;
301   }
302   const MCSection *getConstDataSection() const { return ConstDataSection; }
303   const MCSection *getDataCoalSection() const { return DataCoalSection; }
304   const MCSection *getDataCommonSection() const { return DataCommonSection; }
305   MCSection *getDataBSSSection() const { return DataBSSSection; }
306   const MCSection *getFourByteConstantSection() const {
307     return FourByteConstantSection;
308   }
309   const MCSection *getEightByteConstantSection() const {
310     return EightByteConstantSection;
311   }
312   const MCSection *getSixteenByteConstantSection() const {
313     return SixteenByteConstantSection;
314   }
315   MCSection *getLazySymbolPointerSection() const {
316     return LazySymbolPointerSection;
317   }
318   MCSection *getNonLazySymbolPointerSection() const {
319     return NonLazySymbolPointerSection;
320   }
321
322   // COFF specific sections.
323   MCSection *getDrectveSection() const { return DrectveSection; }
324   MCSection *getPDataSection() const { return PDataSection; }
325   MCSection *getXDataSection() const { return XDataSection; }
326   MCSection *getSXDataSection() const { return SXDataSection; }
327
328   MCSection *getEHFrameSection() {
329     return EHFrameSection;
330   }
331
332   enum Environment { IsMachO, IsELF, IsCOFF };
333   Environment getObjectFileType() const { return Env; }
334
335   Reloc::Model getRelocM() const { return RelocM; }
336
337 private:
338   Environment Env;
339   Reloc::Model RelocM;
340   CodeModel::Model CMModel;
341   MCContext *Ctx;
342   Triple TT;
343
344   void initMachOMCObjectFileInfo(Triple T);
345   void initELFMCObjectFileInfo(Triple T);
346   void initCOFFMCObjectFileInfo(Triple T);
347
348 public:
349   const Triple &getTargetTriple() const { return TT; }
350 };
351
352 } // end namespace llvm
353
354 #endif