Revert r169456, "change MCContext to work on the doInitialization/doFinalization...
[oota-llvm.git] / include / llvm / MC / MCContext.h
1 //===- MCContext.h - Machine Code Context -----------------------*- 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_MCCONTEXT_H
11 #define LLVM_MC_MCCONTEXT_H
12
13 #include "llvm/ADT/DenseMap.h"
14 #include "llvm/ADT/StringMap.h"
15 #include "llvm/MC/MCDwarf.h"
16 #include "llvm/MC/SectionKind.h"
17 #include "llvm/Support/Allocator.h"
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Support/raw_ostream.h"
20 #include <vector> // FIXME: Shouldn't be needed.
21
22 namespace llvm {
23   class MCAsmInfo;
24   class MCExpr;
25   class MCSection;
26   class MCSymbol;
27   class MCLabel;
28   class MCDwarfFile;
29   class MCDwarfLoc;
30   class MCObjectFileInfo;
31   class MCRegisterInfo;
32   class MCLineSection;
33   class SMLoc;
34   class StringRef;
35   class Twine;
36   class MCSectionMachO;
37   class MCSectionELF;
38
39   /// MCContext - Context object for machine code objects.  This class owns all
40   /// of the sections that it creates.
41   ///
42   class MCContext {
43     MCContext(const MCContext&) LLVM_DELETED_FUNCTION;
44     MCContext &operator=(const MCContext&) LLVM_DELETED_FUNCTION;
45   public:
46     typedef StringMap<MCSymbol*, BumpPtrAllocator&> SymbolTable;
47   private:
48     /// The SourceMgr for this object, if any.
49     const SourceMgr *SrcMgr;
50
51     /// The MCAsmInfo for this target.
52     const MCAsmInfo &MAI;
53
54     /// The MCRegisterInfo for this target.
55     const MCRegisterInfo &MRI;
56
57     /// The MCObjectFileInfo for this target.
58     const MCObjectFileInfo *MOFI;
59
60     /// Allocator - Allocator object used for creating machine code objects.
61     ///
62     /// We use a bump pointer allocator to avoid the need to track all allocated
63     /// objects.
64     BumpPtrAllocator Allocator;
65
66     /// Symbols - Bindings of names to symbols.
67     SymbolTable Symbols;
68
69     /// UsedNames - Keeps tracks of names that were used both for used declared
70     /// and artificial symbols.
71     StringMap<bool, BumpPtrAllocator&> UsedNames;
72
73     /// NextUniqueID - The next ID to dole out to an unnamed assembler temporary
74     /// symbol.
75     unsigned NextUniqueID;
76
77     /// Instances of directional local labels.
78     DenseMap<unsigned, MCLabel *> Instances;
79     /// NextInstance() creates the next instance of the directional local label
80     /// for the LocalLabelVal and adds it to the map if needed.
81     unsigned NextInstance(int64_t LocalLabelVal);
82     /// GetInstance() gets the current instance of the directional local label
83     /// for the LocalLabelVal and adds it to the map if needed.
84     unsigned GetInstance(int64_t LocalLabelVal);
85
86     /// The file name of the log file from the environment variable
87     /// AS_SECURE_LOG_FILE.  Which must be set before the .secure_log_unique
88     /// directive is used or it is an error.
89     char *SecureLogFile;
90     /// The stream that gets written to for the .secure_log_unique directive.
91     raw_ostream *SecureLog;
92     /// Boolean toggled when .secure_log_unique / .secure_log_reset is seen to
93     /// catch errors if .secure_log_unique appears twice without
94     /// .secure_log_reset appearing between them.
95     bool SecureLogUsed;
96
97     /// The dwarf file and directory tables from the dwarf .file directive.
98     std::vector<MCDwarfFile *> MCDwarfFiles;
99     std::vector<StringRef> MCDwarfDirs;
100
101     /// The current dwarf line information from the last dwarf .loc directive.
102     MCDwarfLoc CurrentDwarfLoc;
103     bool DwarfLocSeen;
104
105     /// Generate dwarf debugging info for assembly source files.
106     bool GenDwarfForAssembly;
107
108     /// The current dwarf file number when generate dwarf debugging info for
109     /// assembly source files.
110     unsigned GenDwarfFileNumber;
111
112     /// The default initial text section that we generate dwarf debugging line
113     /// info for when generating dwarf assembly source files.
114     const MCSection *GenDwarfSection;
115     /// Symbols created for the start and end of this section.
116     MCSymbol *GenDwarfSectionStartSym, *GenDwarfSectionEndSym;
117
118     /// The information gathered from labels that will have dwarf label
119     /// entries when generating dwarf assembly source files.
120     std::vector<const MCGenDwarfLabelEntry *> MCGenDwarfLabelEntries;
121
122     /// The string to embed in the debug information for the compile unit, if
123     /// non-empty.
124     StringRef DwarfDebugFlags;
125
126     /// Honor temporary labels, this is useful for debugging semantic
127     /// differences between temporary and non-temporary labels (primarily on
128     /// Darwin).
129     bool AllowTemporaryLabels;
130
131     /// The dwarf line information from the .loc directives for the sections
132     /// with assembled machine instructions have after seeing .loc directives.
133     DenseMap<const MCSection *, MCLineSection *> MCLineSections;
134     /// We need a deterministic iteration order, so we remember the order
135     /// the elements were added.
136     std::vector<const MCSection *> MCLineSectionOrder;
137
138     void *MachOUniquingMap, *ELFUniquingMap, *COFFUniquingMap;
139
140     MCSymbol *CreateSymbol(StringRef Name);
141
142   public:
143     explicit MCContext(const MCAsmInfo &MAI, const MCRegisterInfo &MRI,
144                        const MCObjectFileInfo *MOFI, const SourceMgr *Mgr = 0);
145     ~MCContext();
146
147     const SourceMgr *getSourceManager() const { return SrcMgr; }
148
149     const MCAsmInfo &getAsmInfo() const { return MAI; }
150
151     const MCRegisterInfo &getRegisterInfo() const { return MRI; }
152
153     const MCObjectFileInfo *getObjectFileInfo() const { return MOFI; }
154
155     void setAllowTemporaryLabels(bool Value) { AllowTemporaryLabels = Value; }
156
157     /// @name Symbol Management
158     /// @{
159
160     /// CreateTempSymbol - Create and return a new assembler temporary symbol
161     /// with a unique but unspecified name.
162     MCSymbol *CreateTempSymbol();
163
164     /// getUniqueSymbolID() - Return a unique identifier for use in constructing
165     /// symbol names.
166     unsigned getUniqueSymbolID() { return NextUniqueID++; }
167
168     /// CreateDirectionalLocalSymbol - Create the definition of a directional
169     /// local symbol for numbered label (used for "1:" definitions).
170     MCSymbol *CreateDirectionalLocalSymbol(int64_t LocalLabelVal);
171
172     /// GetDirectionalLocalSymbol - Create and return a directional local
173     /// symbol for numbered label (used for "1b" or 1f" references).
174     MCSymbol *GetDirectionalLocalSymbol(int64_t LocalLabelVal, int bORf);
175
176     /// GetOrCreateSymbol - Lookup the symbol inside with the specified
177     /// @p Name.  If it exists, return it.  If not, create a forward
178     /// reference and return it.
179     ///
180     /// @param Name - The symbol name, which must be unique across all symbols.
181     MCSymbol *GetOrCreateSymbol(StringRef Name);
182     MCSymbol *GetOrCreateSymbol(const Twine &Name);
183
184     /// LookupSymbol - Get the symbol for \p Name, or null.
185     MCSymbol *LookupSymbol(StringRef Name) const;
186     MCSymbol *LookupSymbol(const Twine &Name) const;
187
188     /// getSymbols - Get a reference for the symbol table for clients that
189     /// want to, for example, iterate over all symbols. 'const' because we
190     /// still want any modifications to the table itself to use the MCContext
191     /// APIs.
192     const SymbolTable &getSymbols() const {
193       return Symbols;
194     }
195
196     /// @}
197
198     /// @name Section Management
199     /// @{
200
201     /// getMachOSection - Return the MCSection for the specified mach-o section.
202     /// This requires the operands to be valid.
203     const MCSectionMachO *getMachOSection(StringRef Segment,
204                                           StringRef Section,
205                                           unsigned TypeAndAttributes,
206                                           unsigned Reserved2,
207                                           SectionKind K);
208     const MCSectionMachO *getMachOSection(StringRef Segment,
209                                           StringRef Section,
210                                           unsigned TypeAndAttributes,
211                                           SectionKind K) {
212       return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
213     }
214
215     const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
216                                       unsigned Flags, SectionKind Kind);
217
218     const MCSectionELF *getELFSection(StringRef Section, unsigned Type,
219                                       unsigned Flags, SectionKind Kind,
220                                       unsigned EntrySize, StringRef Group);
221
222     const MCSectionELF *CreateELFGroupSection();
223
224     const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics,
225                                     int Selection, SectionKind Kind);
226
227     const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics,
228                                     SectionKind Kind) {
229       return getCOFFSection (Section, Characteristics, 0, Kind);
230     }
231
232
233     /// @}
234
235     /// @name Dwarf Management
236     /// @{
237
238     /// GetDwarfFile - creates an entry in the dwarf file and directory tables.
239     unsigned GetDwarfFile(StringRef Directory, StringRef FileName,
240                           unsigned FileNumber);
241
242     bool isValidDwarfFileNumber(unsigned FileNumber);
243
244     bool hasDwarfFiles() const {
245       return !MCDwarfFiles.empty();
246     }
247
248     const std::vector<MCDwarfFile *> &getMCDwarfFiles() {
249       return MCDwarfFiles;
250     }
251     const std::vector<StringRef> &getMCDwarfDirs() {
252       return MCDwarfDirs;
253     }
254
255     const DenseMap<const MCSection *, MCLineSection *>
256     &getMCLineSections() const {
257       return MCLineSections;
258     }
259     const std::vector<const MCSection *> &getMCLineSectionOrder() const {
260       return MCLineSectionOrder;
261     }
262     void addMCLineSection(const MCSection *Sec, MCLineSection *Line) {
263       MCLineSections[Sec] = Line;
264       MCLineSectionOrder.push_back(Sec);
265     }
266
267     /// setCurrentDwarfLoc - saves the information from the currently parsed
268     /// dwarf .loc directive and sets DwarfLocSeen.  When the next instruction
269     /// is assembled an entry in the line number table with this information and
270     /// the address of the instruction will be created.
271     void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
272                             unsigned Flags, unsigned Isa,
273                             unsigned Discriminator) {
274       CurrentDwarfLoc.setFileNum(FileNum);
275       CurrentDwarfLoc.setLine(Line);
276       CurrentDwarfLoc.setColumn(Column);
277       CurrentDwarfLoc.setFlags(Flags);
278       CurrentDwarfLoc.setIsa(Isa);
279       CurrentDwarfLoc.setDiscriminator(Discriminator);
280       DwarfLocSeen = true;
281     }
282     void ClearDwarfLocSeen() { DwarfLocSeen = false; }
283
284     bool getDwarfLocSeen() { return DwarfLocSeen; }
285     const MCDwarfLoc &getCurrentDwarfLoc() { return CurrentDwarfLoc; }
286
287     bool getGenDwarfForAssembly() { return GenDwarfForAssembly; }
288     void setGenDwarfForAssembly(bool Value) { GenDwarfForAssembly = Value; }
289     unsigned getGenDwarfFileNumber() { return GenDwarfFileNumber; }
290     unsigned nextGenDwarfFileNumber() { return ++GenDwarfFileNumber; }
291     const MCSection *getGenDwarfSection() { return GenDwarfSection; }
292     void setGenDwarfSection(const MCSection *Sec) { GenDwarfSection = Sec; }
293     MCSymbol *getGenDwarfSectionStartSym() { return GenDwarfSectionStartSym; }
294     void setGenDwarfSectionStartSym(MCSymbol *Sym) {
295       GenDwarfSectionStartSym = Sym;
296     }
297     MCSymbol *getGenDwarfSectionEndSym() { return GenDwarfSectionEndSym; }
298     void setGenDwarfSectionEndSym(MCSymbol *Sym) {
299       GenDwarfSectionEndSym = Sym;
300     }
301     const std::vector<const MCGenDwarfLabelEntry *>
302       &getMCGenDwarfLabelEntries() const {
303       return MCGenDwarfLabelEntries;
304     }
305     void addMCGenDwarfLabelEntry(const MCGenDwarfLabelEntry *E) {
306       MCGenDwarfLabelEntries.push_back(E);
307     }
308
309     void setDwarfDebugFlags(StringRef S) { DwarfDebugFlags = S; }
310     StringRef getDwarfDebugFlags() { return DwarfDebugFlags; }
311
312     /// @}
313
314     char *getSecureLogFile() { return SecureLogFile; }
315     raw_ostream *getSecureLog() { return SecureLog; }
316     bool getSecureLogUsed() { return SecureLogUsed; }
317     void setSecureLog(raw_ostream *Value) {
318       SecureLog = Value;
319     }
320     void setSecureLogUsed(bool Value) {
321       SecureLogUsed = Value;
322     }
323
324     void *Allocate(unsigned Size, unsigned Align = 8) {
325       return Allocator.Allocate(Size, Align);
326     }
327     void Deallocate(void *Ptr) {
328     }
329
330     // Unrecoverable error has occured. Display the best diagnostic we can
331     // and bail via exit(1). For now, most MC backend errors are unrecoverable.
332     // FIXME: We should really do something about that.
333     LLVM_ATTRIBUTE_NORETURN void FatalError(SMLoc L, const Twine &Msg);
334   };
335
336 } // end namespace llvm
337
338 // operator new and delete aren't allowed inside namespaces.
339 // The throw specifications are mandated by the standard.
340 /// @brief Placement new for using the MCContext's allocator.
341 ///
342 /// This placement form of operator new uses the MCContext's allocator for
343 /// obtaining memory. It is a non-throwing new, which means that it returns
344 /// null on error. (If that is what the allocator does. The current does, so if
345 /// this ever changes, this operator will have to be changed, too.)
346 /// Usage looks like this (assuming there's an MCContext 'Context' in scope):
347 /// @code
348 /// // Default alignment (16)
349 /// IntegerLiteral *Ex = new (Context) IntegerLiteral(arguments);
350 /// // Specific alignment
351 /// IntegerLiteral *Ex2 = new (Context, 8) IntegerLiteral(arguments);
352 /// @endcode
353 /// Please note that you cannot use delete on the pointer; it must be
354 /// deallocated using an explicit destructor call followed by
355 /// @c Context.Deallocate(Ptr).
356 ///
357 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
358 /// @param C The MCContext that provides the allocator.
359 /// @param Alignment The alignment of the allocated memory (if the underlying
360 ///                  allocator supports it).
361 /// @return The allocated memory. Could be NULL.
362 inline void *operator new(size_t Bytes, llvm::MCContext &C,
363                           size_t Alignment = 16) throw () {
364   return C.Allocate(Bytes, Alignment);
365 }
366 /// @brief Placement delete companion to the new above.
367 ///
368 /// This operator is just a companion to the new above. There is no way of
369 /// invoking it directly; see the new operator for more details. This operator
370 /// is called implicitly by the compiler if a placement new expression using
371 /// the MCContext throws in the object constructor.
372 inline void operator delete(void *Ptr, llvm::MCContext &C, size_t)
373               throw () {
374   C.Deallocate(Ptr);
375 }
376
377 /// This placement form of operator new[] uses the MCContext's allocator for
378 /// obtaining memory. It is a non-throwing new[], which means that it returns
379 /// null on error.
380 /// Usage looks like this (assuming there's an MCContext 'Context' in scope):
381 /// @code
382 /// // Default alignment (16)
383 /// char *data = new (Context) char[10];
384 /// // Specific alignment
385 /// char *data = new (Context, 8) char[10];
386 /// @endcode
387 /// Please note that you cannot use delete on the pointer; it must be
388 /// deallocated using an explicit destructor call followed by
389 /// @c Context.Deallocate(Ptr).
390 ///
391 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
392 /// @param C The MCContext that provides the allocator.
393 /// @param Alignment The alignment of the allocated memory (if the underlying
394 ///                  allocator supports it).
395 /// @return The allocated memory. Could be NULL.
396 inline void *operator new[](size_t Bytes, llvm::MCContext& C,
397                             size_t Alignment = 16) throw () {
398   return C.Allocate(Bytes, Alignment);
399 }
400
401 /// @brief Placement delete[] companion to the new[] above.
402 ///
403 /// This operator is just a companion to the new[] above. There is no way of
404 /// invoking it directly; see the new[] operator for more details. This operator
405 /// is called implicitly by the compiler if a placement new[] expression using
406 /// the MCContext throws in the object constructor.
407 inline void operator delete[](void *Ptr, llvm::MCContext &C) throw () {
408   C.Deallocate(Ptr);
409 }
410
411 #endif