Remove IsExplicit. It was always false.
[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/MC/SectionKind.h"
14 #include "llvm/MC/MCDwarf.h"
15 #include "llvm/ADT/DenseMap.h"
16 #include "llvm/ADT/StringMap.h"
17 #include "llvm/Support/Allocator.h"
18 #include "llvm/Support/raw_ostream.h"
19 #include <vector> // FIXME: Shouldn't be needed.
20
21 namespace llvm {
22   class MCAsmInfo;
23   class MCExpr;
24   class MCSection;
25   class MCSymbol;
26   class MCLabel;
27   class MCDwarfFile;
28   class MCDwarfLoc;
29   class MCLineSection;
30   class StringRef;
31   class Twine;
32   class MCSectionMachO;
33
34   /// MCContext - Context object for machine code objects.  This class owns all
35   /// of the sections that it creates.
36   ///
37   class MCContext {
38     MCContext(const MCContext&); // DO NOT IMPLEMENT
39     MCContext &operator=(const MCContext&); // DO NOT IMPLEMENT
40
41     /// The MCAsmInfo for this target.
42     const MCAsmInfo &MAI;
43
44     /// Symbols - Bindings of names to symbols.
45     StringMap<MCSymbol*> Symbols;
46
47     /// NextUniqueID - The next ID to dole out to an unnamed assembler temporary
48     /// symbol.
49     unsigned NextUniqueID;
50
51     /// Instances of directional local labels.
52     DenseMap<unsigned, MCLabel *> Instances;
53     /// NextInstance() creates the next instance of the directional local label
54     /// for the LocalLabelVal and adds it to the map if needed.
55     unsigned NextInstance(int64_t LocalLabelVal);
56     /// GetInstance() gets the current instance of the directional local label
57     /// for the LocalLabelVal and adds it to the map if needed.
58     unsigned GetInstance(int64_t LocalLabelVal);
59     
60     /// The file name of the log file from the enviromment variable
61     /// AS_SECURE_LOG_FILE.  Which must be set before the .secure_log_unique
62     /// directive is used or it is an error.
63     char *SecureLogFile;
64     /// The stream that gets written to for the .secure_log_unique directive.
65     raw_ostream *SecureLog;
66     /// Boolean toggled when .secure_log_unique / .secure_log_reset is seen to
67     /// catch errors if .secure_log_unique appears twice without
68     /// .secure_log_reset appearing between them.
69     bool SecureLogUsed;
70
71     /// The dwarf file and directory tables from the dwarf .file directive.
72     std::vector<MCDwarfFile *> MCDwarfFiles;
73     std::vector<StringRef> MCDwarfDirs;
74
75     /// The current dwarf line information from the last dwarf .loc directive.
76     MCDwarfLoc CurrentDwarfLoc;
77     bool DwarfLocSeen;
78
79     /// The dwarf line information from the .loc directives for the sections
80     /// with assembled machine instructions have after seeing .loc directives.
81     DenseMap<const MCSection *, MCLineSection *> MCLineSections;
82
83     /// Allocator - Allocator object used for creating machine code objects.
84     ///
85     /// We use a bump pointer allocator to avoid the need to track all allocated
86     /// objects.
87     BumpPtrAllocator Allocator;
88     
89     void *MachOUniquingMap, *ELFUniquingMap, *COFFUniquingMap;
90   public:
91     explicit MCContext(const MCAsmInfo &MAI);
92     ~MCContext();
93     
94     const MCAsmInfo &getAsmInfo() const { return MAI; }
95
96     /// @name Symbol Managment
97     /// @{
98     
99     /// CreateTempSymbol - Create and return a new assembler temporary symbol
100     /// with a unique but unspecified name.
101     MCSymbol *CreateTempSymbol();
102
103     /// CreateDirectionalLocalSymbol - Create the defintion of a directional
104     /// local symbol for numbered label (used for "1:" defintions).
105     MCSymbol *CreateDirectionalLocalSymbol(int64_t LocalLabelVal);
106
107     /// GetDirectionalLocalSymbol - Create and return a directional local
108     /// symbol for numbered label (used for "1b" or 1f" references).
109     MCSymbol *GetDirectionalLocalSymbol(int64_t LocalLabelVal, int bORf);
110
111     /// GetOrCreateSymbol - Lookup the symbol inside with the specified
112     /// @p Name.  If it exists, return it.  If not, create a forward
113     /// reference and return it.
114     ///
115     /// @param Name - The symbol name, which must be unique across all symbols.
116     MCSymbol *GetOrCreateSymbol(StringRef Name);
117     MCSymbol *GetOrCreateSymbol(const Twine &Name);
118
119     /// LookupSymbol - Get the symbol for \p Name, or null.
120     MCSymbol *LookupSymbol(StringRef Name) const;
121
122     /// @}
123     
124     /// @name Section Managment
125     /// @{
126
127     /// getMachOSection - Return the MCSection for the specified mach-o section.
128     /// This requires the operands to be valid.
129     const MCSectionMachO *getMachOSection(StringRef Segment,
130                                           StringRef Section,
131                                           unsigned TypeAndAttributes,
132                                           unsigned Reserved2,
133                                           SectionKind K);
134     const MCSectionMachO *getMachOSection(StringRef Segment,
135                                           StringRef Section,
136                                           unsigned TypeAndAttributes,
137                                           SectionKind K) {
138       return getMachOSection(Segment, Section, TypeAndAttributes, 0, K);
139     }
140     
141     const MCSection *getELFSection(StringRef Section, unsigned Type,
142                                    unsigned Flags, SectionKind Kind,
143                                    unsigned EntrySize = 0);
144
145     const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics,
146                                     int Selection, SectionKind Kind);
147
148     const MCSection *getCOFFSection(StringRef Section, unsigned Characteristics,
149                                     SectionKind Kind) {
150       return getCOFFSection (Section, Characteristics, 0, Kind);
151     }
152
153     
154     /// @}
155
156     /// @name Dwarf Managment
157     /// @{
158
159     /// GetDwarfFile - creates an entry in the dwarf file and directory tables.
160     unsigned GetDwarfFile(StringRef FileName, unsigned FileNumber);
161
162     bool isValidDwarfFileNumber(unsigned FileNumber);
163
164     bool hasDwarfFiles(void) {
165       return MCDwarfFiles.size() != 0;
166     }
167
168     const std::vector<MCDwarfFile *> &getMCDwarfFiles() {
169       return MCDwarfFiles;
170     }
171     const std::vector<StringRef> &getMCDwarfDirs() {
172       return MCDwarfDirs;
173     }
174     DenseMap<const MCSection *, MCLineSection *> &getMCLineSections() {
175       return MCLineSections;
176     }
177
178     /// setCurrentDwarfLoc - saves the information from the currently parsed
179     /// dwarf .loc directive and sets DwarfLocSeen.  When the next instruction
180     /// is assembled an entry in the line number table with this information and
181     /// the address of the instruction will be created.
182     void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
183                             unsigned Flags, unsigned Isa) {
184       CurrentDwarfLoc.setFileNum(FileNum);
185       CurrentDwarfLoc.setLine(Line);
186       CurrentDwarfLoc.setColumn(Column);
187       CurrentDwarfLoc.setFlags(Flags);
188       CurrentDwarfLoc.setIsa(Isa);
189       DwarfLocSeen = true;
190     }
191     void ClearDwarfLocSeen() { DwarfLocSeen = false; }
192
193     bool getDwarfLocSeen() { return DwarfLocSeen; }
194     const MCDwarfLoc &getCurrentDwarfLoc() { return CurrentDwarfLoc; }
195
196     /// @}
197
198     char *getSecureLogFile() { return SecureLogFile; }
199     raw_ostream *getSecureLog() { return SecureLog; }
200     bool getSecureLogUsed() { return SecureLogUsed; }
201     void setSecureLog(raw_ostream *Value) {
202       SecureLog = Value;
203     }
204     void setSecureLogUsed(bool Value) {
205       SecureLogUsed = Value;
206     }
207
208     void *Allocate(unsigned Size, unsigned Align = 8) {
209       return Allocator.Allocate(Size, Align);
210     }
211     void Deallocate(void *Ptr) {
212     }
213   };
214
215 } // end namespace llvm
216
217 // operator new and delete aren't allowed inside namespaces.
218 // The throw specifications are mandated by the standard.
219 /// @brief Placement new for using the MCContext's allocator.
220 ///
221 /// This placement form of operator new uses the MCContext's allocator for
222 /// obtaining memory. It is a non-throwing new, which means that it returns
223 /// null on error. (If that is what the allocator does. The current does, so if
224 /// this ever changes, this operator will have to be changed, too.)
225 /// Usage looks like this (assuming there's an MCContext 'Context' in scope):
226 /// @code
227 /// // Default alignment (16)
228 /// IntegerLiteral *Ex = new (Context) IntegerLiteral(arguments);
229 /// // Specific alignment
230 /// IntegerLiteral *Ex2 = new (Context, 8) IntegerLiteral(arguments);
231 /// @endcode
232 /// Please note that you cannot use delete on the pointer; it must be
233 /// deallocated using an explicit destructor call followed by
234 /// @c Context.Deallocate(Ptr).
235 ///
236 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
237 /// @param C The MCContext that provides the allocator.
238 /// @param Alignment The alignment of the allocated memory (if the underlying
239 ///                  allocator supports it).
240 /// @return The allocated memory. Could be NULL.
241 inline void *operator new(size_t Bytes, llvm::MCContext &C,
242                           size_t Alignment = 16) throw () {
243   return C.Allocate(Bytes, Alignment);
244 }
245 /// @brief Placement delete companion to the new above.
246 ///
247 /// This operator is just a companion to the new above. There is no way of
248 /// invoking it directly; see the new operator for more details. This operator
249 /// is called implicitly by the compiler if a placement new expression using
250 /// the MCContext throws in the object constructor.
251 inline void operator delete(void *Ptr, llvm::MCContext &C, size_t)
252               throw () {
253   C.Deallocate(Ptr);
254 }
255
256 /// This placement form of operator new[] uses the MCContext's allocator for
257 /// obtaining memory. It is a non-throwing new[], which means that it returns
258 /// null on error.
259 /// Usage looks like this (assuming there's an MCContext 'Context' in scope):
260 /// @code
261 /// // Default alignment (16)
262 /// char *data = new (Context) char[10];
263 /// // Specific alignment
264 /// char *data = new (Context, 8) char[10];
265 /// @endcode
266 /// Please note that you cannot use delete on the pointer; it must be
267 /// deallocated using an explicit destructor call followed by
268 /// @c Context.Deallocate(Ptr).
269 ///
270 /// @param Bytes The number of bytes to allocate. Calculated by the compiler.
271 /// @param C The MCContext that provides the allocator.
272 /// @param Alignment The alignment of the allocated memory (if the underlying
273 ///                  allocator supports it).
274 /// @return The allocated memory. Could be NULL.
275 inline void *operator new[](size_t Bytes, llvm::MCContext& C,
276                             size_t Alignment = 16) throw () {
277   return C.Allocate(Bytes, Alignment);
278 }
279
280 /// @brief Placement delete[] companion to the new[] above.
281 ///
282 /// This operator is just a companion to the new[] above. There is no way of
283 /// invoking it directly; see the new[] operator for more details. This operator
284 /// is called implicitly by the compiler if a placement new[] expression using
285 /// the MCContext throws in the object constructor.
286 inline void operator delete[](void *Ptr, llvm::MCContext &C) throw () {
287   C.Deallocate(Ptr);
288 }
289
290 #endif