Remove the unused TheTarget member.
[oota-llvm.git] / include / llvm / Target / TargetLoweringObjectFile.h
1 //===-- llvm/Target/TargetLoweringObjectFile.h - Object 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 implements classes used to handle lowerings specific to common
11 // object file formats.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TARGET_TARGETLOWERINGOBJECTFILE_H
16 #define LLVM_TARGET_TARGETLOWERINGOBJECTFILE_H
17
18 #include "llvm/ADT/StringRef.h"
19 #include "llvm/MC/SectionKind.h"
20
21 namespace llvm {
22   class MachineModuleInfo;
23   class Mangler;
24   class MCAsmInfo;
25   class MCContext;
26   class MCExpr;
27   class MCSection;
28   class MCSectionMachO;
29   class MCSymbol;
30   class MCStreamer;
31   class GlobalValue;
32   class TargetMachine;
33   
34 class TargetLoweringObjectFile {
35   MCContext *Ctx;
36   
37   TargetLoweringObjectFile(const TargetLoweringObjectFile&); // DO NOT IMPLEMENT
38   void operator=(const TargetLoweringObjectFile&);           // DO NOT IMPLEMENT
39 protected:
40   
41   TargetLoweringObjectFile();
42   
43   /// TextSection - Section directive for standard text.
44   ///
45   const MCSection *TextSection;
46   
47   /// DataSection - Section directive for standard data.
48   ///
49   const MCSection *DataSection;
50   
51   /// BSSSection - Section that is default initialized to zero.
52   const MCSection *BSSSection;
53   
54   /// ReadOnlySection - Section that is readonly and can contain arbitrary
55   /// initialized data.  Targets are not required to have a readonly section.
56   /// If they don't, various bits of code will fall back to using the data
57   /// section for constants.
58   const MCSection *ReadOnlySection;
59   
60   /// StaticCtorSection - This section contains the static constructor pointer
61   /// list.
62   const MCSection *StaticCtorSection;
63
64   /// StaticDtorSection - This section contains the static destructor pointer
65   /// list.
66   const MCSection *StaticDtorSection;
67   
68   /// LSDASection - If exception handling is supported by the target, this is
69   /// the section the Language Specific Data Area information is emitted to.
70   const MCSection *LSDASection;
71   
72   /// EHFrameSection - If exception handling is supported by the target, this is
73   /// the section the EH Frame is emitted to.
74   const MCSection *EHFrameSection;
75   
76   // Dwarf sections for debug info.  If a target supports debug info, these must
77   // be set.
78   const MCSection *DwarfAbbrevSection;
79   const MCSection *DwarfInfoSection;
80   const MCSection *DwarfLineSection;
81   const MCSection *DwarfFrameSection;
82   const MCSection *DwarfPubNamesSection;
83   const MCSection *DwarfPubTypesSection;
84   const MCSection *DwarfDebugInlineSection;
85   const MCSection *DwarfStrSection;
86   const MCSection *DwarfLocSection;
87   const MCSection *DwarfARangesSection;
88   const MCSection *DwarfRangesSection;
89   const MCSection *DwarfMacroInfoSection;
90   
91   // Extra TLS Variable Data section.  If the target needs to put additional
92   // information for a TLS variable, it'll go here.
93   const MCSection *TLSExtraDataSection;
94   
95   /// CommDirectiveSupportsAlignment - True if .comm supports alignment.  This
96   /// is a hack for as long as we support 10.4 Tiger, whose assembler doesn't
97   /// support alignment on comm.
98   bool CommDirectiveSupportsAlignment;
99   
100   /// SupportsWeakEmptyEHFrame - True if target object file supports a
101   /// weak_definition of constant 0 for an omitted EH frame.
102   bool SupportsWeakOmittedEHFrame;
103   
104   /// IsFunctionEHSymbolGlobal - This flag is set to true if the ".eh" symbol
105   /// for a function should be marked .globl.
106   bool IsFunctionEHSymbolGlobal;
107   
108   /// IsFunctionEHFrameSymbolPrivate - This flag is set to true if the
109   /// "EH_frame" symbol for EH information should be an assembler temporary (aka
110   /// private linkage, aka an L or .L label) or false if it should be a normal
111   /// non-.globl label.  This defaults to true.
112   bool IsFunctionEHFrameSymbolPrivate;
113 public:
114   
115   MCContext &getContext() const { return *Ctx; }
116   
117   virtual ~TargetLoweringObjectFile();
118   
119   /// Initialize - this method must be called before any actual lowering is
120   /// done.  This specifies the current context for codegen, and gives the
121   /// lowering implementations a chance to set up their default sections.
122   virtual void Initialize(MCContext &ctx, const TargetMachine &TM) {
123     Ctx = &ctx;
124   }
125   
126   bool isFunctionEHSymbolGlobal() const {
127     return IsFunctionEHSymbolGlobal;
128   }
129   bool isFunctionEHFrameSymbolPrivate() const {
130     return IsFunctionEHFrameSymbolPrivate;
131   }
132   bool getSupportsWeakOmittedEHFrame() const {
133     return SupportsWeakOmittedEHFrame;
134   }
135   
136   bool getCommDirectiveSupportsAlignment() const {
137     return CommDirectiveSupportsAlignment;
138   }
139
140   const MCSection *getTextSection() const { return TextSection; }
141   const MCSection *getDataSection() const { return DataSection; }
142   const MCSection *getBSSSection() const { return BSSSection; }
143   const MCSection *getStaticCtorSection() const { return StaticCtorSection; }
144   const MCSection *getStaticDtorSection() const { return StaticDtorSection; }
145   const MCSection *getLSDASection() const { return LSDASection; }
146   const MCSection *getEHFrameSection() const { return EHFrameSection; }
147   const MCSection *getDwarfAbbrevSection() const { return DwarfAbbrevSection; }
148   const MCSection *getDwarfInfoSection() const { return DwarfInfoSection; }
149   const MCSection *getDwarfLineSection() const { return DwarfLineSection; }
150   const MCSection *getDwarfFrameSection() const { return DwarfFrameSection; }
151   const MCSection *getDwarfPubNamesSection() const{return DwarfPubNamesSection;}
152   const MCSection *getDwarfPubTypesSection() const{return DwarfPubTypesSection;}
153   const MCSection *getDwarfDebugInlineSection() const {
154     return DwarfDebugInlineSection;
155   }
156   const MCSection *getDwarfStrSection() const { return DwarfStrSection; }
157   const MCSection *getDwarfLocSection() const { return DwarfLocSection; }
158   const MCSection *getDwarfARangesSection() const { return DwarfARangesSection;}
159   const MCSection *getDwarfRangesSection() const { return DwarfRangesSection; }
160   const MCSection *getDwarfMacroInfoSection() const {
161     return DwarfMacroInfoSection;
162   }
163   const MCSection *getTLSExtraDataSection() const {
164     return TLSExtraDataSection;
165   }
166   
167   /// shouldEmitUsedDirectiveFor - This hook allows targets to selectively
168   /// decide not to emit the UsedDirective for some symbols in llvm.used.
169   /// FIXME: REMOVE this (rdar://7071300)
170   virtual bool shouldEmitUsedDirectiveFor(const GlobalValue *GV,
171                                           Mangler *) const {
172     return GV != 0;
173   }
174   
175   /// getSectionForConstant - Given a constant with the SectionKind, return a
176   /// section that it should be placed in.
177   virtual const MCSection *getSectionForConstant(SectionKind Kind) const;
178   
179   /// getKindForGlobal - Classify the specified global variable into a set of
180   /// target independent categories embodied in SectionKind.
181   static SectionKind getKindForGlobal(const GlobalValue *GV,
182                                       const TargetMachine &TM);
183   
184   /// SectionForGlobal - This method computes the appropriate section to emit
185   /// the specified global variable or function definition.  This should not
186   /// be passed external (or available externally) globals.
187   const MCSection *SectionForGlobal(const GlobalValue *GV,
188                                     SectionKind Kind, Mangler *Mang,
189                                     const TargetMachine &TM) const;
190   
191   /// SectionForGlobal - This method computes the appropriate section to emit
192   /// the specified global variable or function definition.  This should not
193   /// be passed external (or available externally) globals.
194   const MCSection *SectionForGlobal(const GlobalValue *GV,
195                                     Mangler *Mang,
196                                     const TargetMachine &TM) const {
197     return SectionForGlobal(GV, getKindForGlobal(GV, TM), Mang, TM);
198   }
199   
200   
201   
202   /// getExplicitSectionGlobal - Targets should implement this method to assign
203   /// a section to globals with an explicit section specfied.  The
204   /// implementation of this method can assume that GV->hasSection() is true.
205   virtual const MCSection *
206   getExplicitSectionGlobal(const GlobalValue *GV, SectionKind Kind, 
207                            Mangler *Mang, const TargetMachine &TM) const = 0;
208   
209   /// getSpecialCasedSectionGlobals - Allow the target to completely override
210   /// section assignment of a global.
211   virtual const MCSection *
212   getSpecialCasedSectionGlobals(const GlobalValue *GV, Mangler *Mang,
213                                 SectionKind Kind) const {
214     return 0;
215   }
216   
217   /// getExprForDwarfGlobalReference - Return an MCExpr to use for a reference
218   /// to the specified global variable from exception handling information.
219   ///
220   virtual const MCExpr *
221   getExprForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang,
222                                  MachineModuleInfo *MMI, unsigned Encoding,
223                                  MCStreamer &Streamer) const;
224
225   /// 
226   const MCExpr *
227   getExprForDwarfReference(const MCSymbol *Sym, Mangler *Mang,
228                            MachineModuleInfo *MMI, unsigned Encoding,
229                            MCStreamer &Streamer) const;
230   
231   virtual unsigned getPersonalityEncoding() const;
232   virtual unsigned getLSDAEncoding() const;
233   virtual unsigned getFDEEncoding() const;
234   virtual unsigned getTTypeEncoding() const;
235
236 protected:
237   virtual const MCSection *
238   SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
239                          Mangler *Mang, const TargetMachine &TM) const;
240 };
241
242 } // end namespace llvm
243
244 #endif