Remove lazy-initialization of section caches in MCContext
[oota-llvm.git] / lib / MC / MCContext.cpp
1 //===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
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 #include "llvm/MC/MCContext.h"
11 #include "llvm/ADT/SmallString.h"
12 #include "llvm/ADT/Twine.h"
13 #include "llvm/MC/MCAsmInfo.h"
14 #include "llvm/MC/MCDwarf.h"
15 #include "llvm/MC/MCLabel.h"
16 #include "llvm/MC/MCObjectFileInfo.h"
17 #include "llvm/MC/MCRegisterInfo.h"
18 #include "llvm/MC/MCSectionCOFF.h"
19 #include "llvm/MC/MCSectionELF.h"
20 #include "llvm/MC/MCSectionMachO.h"
21 #include "llvm/MC/MCSymbol.h"
22 #include "llvm/Support/ELF.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/FileSystem.h"
25 #include "llvm/Support/MemoryBuffer.h"
26 #include "llvm/Support/Signals.h"
27 #include "llvm/Support/SourceMgr.h"
28 #include <map>
29
30 using namespace llvm;
31
32 MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri,
33                      const MCObjectFileInfo *mofi, const SourceMgr *mgr,
34                      bool DoAutoReset)
35     : SrcMgr(mgr), MAI(mai), MRI(mri), MOFI(mofi), Allocator(),
36       Symbols(Allocator), UsedNames(Allocator), NextUniqueID(0),
37       CurrentDwarfLoc(0, 0, 0, DWARF2_FLAG_IS_STMT, 0, 0), DwarfLocSeen(false),
38       GenDwarfForAssembly(false), GenDwarfFileNumber(0),
39       AllowTemporaryLabels(true), DwarfCompileUnitID(0),
40       AutoReset(DoAutoReset) {
41
42   error_code EC = llvm::sys::fs::current_path(CompilationDir);
43   if (EC)
44     CompilationDir.clear();
45
46   SecureLogFile = getenv("AS_SECURE_LOG_FILE");
47   SecureLog = 0;
48   SecureLogUsed = false;
49
50   if (SrcMgr && SrcMgr->getNumBuffers() > 0)
51     MainFileName = SrcMgr->getMemoryBuffer(0)->getBufferIdentifier();
52 }
53
54 MCContext::~MCContext() {
55
56   if (AutoReset)
57     reset();
58
59   // NOTE: The symbols are all allocated out of a bump pointer allocator,
60   // we don't need to free them here.
61
62   // If the stream for the .secure_log_unique directive was created free it.
63   delete (raw_ostream*)SecureLog;
64 }
65
66 //===----------------------------------------------------------------------===//
67 // Module Lifetime Management
68 //===----------------------------------------------------------------------===//
69
70 void MCContext::reset() {
71   UsedNames.clear();
72   Symbols.clear();
73   Allocator.Reset();
74   Instances.clear();
75   MCDwarfLineTablesCUMap.clear();
76   MCGenDwarfLabelEntries.clear();
77   DwarfDebugFlags = StringRef();
78   DwarfCompileUnitID = 0;
79   CurrentDwarfLoc = MCDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0);
80
81   MachOUniquingMap.clear();
82   ELFUniquingMap.clear();
83   COFFUniquingMap.clear();
84
85   NextUniqueID = 0;
86   AllowTemporaryLabels = true;
87   DwarfLocSeen = false;
88   GenDwarfForAssembly = false;
89   GenDwarfFileNumber = 0;
90 }
91
92 //===----------------------------------------------------------------------===//
93 // Symbol Manipulation
94 //===----------------------------------------------------------------------===//
95
96 MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
97   assert(!Name.empty() && "Normal symbols cannot be unnamed!");
98
99   // Do the lookup and get the entire StringMapEntry.  We want access to the
100   // key if we are creating the entry.
101   StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
102   MCSymbol *Sym = Entry.getValue();
103
104   if (Sym)
105     return Sym;
106
107   Sym = CreateSymbol(Name);
108   Entry.setValue(Sym);
109   return Sym;
110 }
111
112 MCSymbol *MCContext::CreateSymbol(StringRef Name) {
113   // Determine whether this is an assembler temporary or normal label, if used.
114   bool isTemporary = false;
115   if (AllowTemporaryLabels)
116     isTemporary = Name.startswith(MAI->getPrivateGlobalPrefix());
117
118   StringMapEntry<bool> *NameEntry = &UsedNames.GetOrCreateValue(Name);
119   if (NameEntry->getValue()) {
120     assert(isTemporary && "Cannot rename non-temporary symbols");
121     SmallString<128> NewName = Name;
122     do {
123       NewName.resize(Name.size());
124       raw_svector_ostream(NewName) << NextUniqueID++;
125       NameEntry = &UsedNames.GetOrCreateValue(NewName);
126     } while (NameEntry->getValue());
127   }
128   NameEntry->setValue(true);
129
130   // Ok, the entry doesn't already exist.  Have the MCSymbol object itself refer
131   // to the copy of the string that is embedded in the UsedNames entry.
132   MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary);
133
134   return Result;
135 }
136
137 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
138   SmallString<128> NameSV;
139   return GetOrCreateSymbol(Name.toStringRef(NameSV));
140 }
141
142 MCSymbol *MCContext::CreateLinkerPrivateTempSymbol() {
143   SmallString<128> NameSV;
144   raw_svector_ostream(NameSV)
145     << MAI->getLinkerPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
146   return CreateSymbol(NameSV);
147 }
148
149 MCSymbol *MCContext::CreateTempSymbol() {
150   SmallString<128> NameSV;
151   raw_svector_ostream(NameSV)
152     << MAI->getPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
153   return CreateSymbol(NameSV);
154 }
155
156 unsigned MCContext::NextInstance(unsigned LocalLabelVal) {
157   MCLabel *&Label = Instances[LocalLabelVal];
158   if (!Label)
159     Label = new (*this) MCLabel(0);
160   return Label->incInstance();
161 }
162
163 unsigned MCContext::GetInstance(unsigned LocalLabelVal) {
164   MCLabel *&Label = Instances[LocalLabelVal];
165   if (!Label)
166     Label = new (*this) MCLabel(0);
167   return Label->getInstance();
168 }
169
170 MCSymbol *MCContext::getOrCreateDirectionalLocalSymbol(unsigned LocalLabelVal,
171                                                        unsigned Instance) {
172   MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)];
173   if (!Sym)
174     Sym = CreateTempSymbol();
175   return Sym;
176 }
177
178 MCSymbol *MCContext::CreateDirectionalLocalSymbol(unsigned LocalLabelVal) {
179   unsigned Instance = NextInstance(LocalLabelVal);
180   return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
181 }
182
183 MCSymbol *MCContext::GetDirectionalLocalSymbol(unsigned LocalLabelVal,
184                                                bool Before) {
185   unsigned Instance = GetInstance(LocalLabelVal);
186   if (!Before)
187     ++Instance;
188   return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
189 }
190
191 MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
192   return Symbols.lookup(Name);
193 }
194
195 MCSymbol *MCContext::LookupSymbol(const Twine &Name) const {
196   SmallString<128> NameSV;
197   Name.toVector(NameSV);
198   return LookupSymbol(NameSV.str());
199 }
200
201 //===----------------------------------------------------------------------===//
202 // Section Management
203 //===----------------------------------------------------------------------===//
204
205 const MCSectionMachO *MCContext::
206 getMachOSection(StringRef Segment, StringRef Section,
207                 unsigned TypeAndAttributes,
208                 unsigned Reserved2, SectionKind Kind) {
209
210   // We unique sections by their segment/section pair.  The returned section
211   // may not have the same flags as the requested section, if so this should be
212   // diagnosed by the client as an error.
213
214   // Form the name to look up.
215   SmallString<64> Name;
216   Name += Segment;
217   Name.push_back(',');
218   Name += Section;
219
220   // Do the lookup, if we have a hit, return it.
221   const MCSectionMachO *&Entry = MachOUniquingMap[Name.str()];
222   if (Entry) return Entry;
223
224   // Otherwise, return a new section.
225   return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
226                                             Reserved2, Kind);
227 }
228
229 const MCSectionELF *MCContext::
230 getELFSection(StringRef Section, unsigned Type, unsigned Flags,
231               SectionKind Kind) {
232   return getELFSection(Section, Type, Flags, Kind, 0, "");
233 }
234
235 void MCContext::renameELFSection(const MCSectionELF *Section, StringRef Name) {
236   StringRef GroupName;
237   if (const MCSymbol *Group = Section->getGroup())
238     GroupName = Group->getName();
239
240   ELFUniquingMap.erase(SectionGroupPair(Section->getSectionName(), GroupName));
241   auto I =
242       ELFUniquingMap.insert(std::make_pair(SectionGroupPair(Name, GroupName),
243                                            Section)).first;
244   const_cast<MCSectionELF*>(Section)->setSectionName(I->first.first);
245 }
246
247 const MCSectionELF *MCContext::
248 getELFSection(StringRef Section, unsigned Type, unsigned Flags,
249               SectionKind Kind, unsigned EntrySize, StringRef Group) {
250   // Do the lookup, if we have a hit, return it.
251   auto IterBool = ELFUniquingMap.insert(
252       std::make_pair(SectionGroupPair(Section, Group), (MCSectionELF *)0));
253   auto &Entry = *IterBool.first;
254   if (!IterBool.second) return Entry.second;
255
256   // Possibly refine the entry size first.
257   if (!EntrySize) {
258     EntrySize = MCSectionELF::DetermineEntrySize(Kind);
259   }
260
261   MCSymbol *GroupSym = NULL;
262   if (!Group.empty())
263     GroupSym = GetOrCreateSymbol(Group);
264
265   MCSectionELF *Result = new (*this) MCSectionELF(
266       Entry.first.first, Type, Flags, Kind, EntrySize, GroupSym);
267   Entry.second = Result;
268   return Result;
269 }
270
271 const MCSectionELF *MCContext::CreateELFGroupSection() {
272   MCSectionELF *Result =
273     new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0,
274                              SectionKind::getReadOnly(), 4, NULL);
275   return Result;
276 }
277
278 const MCSectionCOFF *
279 MCContext::getCOFFSection(StringRef Section, unsigned Characteristics,
280                           SectionKind Kind, StringRef COMDATSymName,
281                           int Selection, const MCSectionCOFF *Assoc) {
282   // Do the lookup, if we have a hit, return it.
283
284   SectionGroupPair P(Section, COMDATSymName);
285   auto IterBool = COFFUniquingMap.insert(std::make_pair(P, (MCSectionCOFF *)0));
286   auto Iter = IterBool.first;
287   if (!IterBool.second)
288     return Iter->second;
289
290   const MCSymbol *COMDATSymbol = NULL;
291   if (!COMDATSymName.empty())
292     COMDATSymbol = GetOrCreateSymbol(COMDATSymName);
293
294   MCSectionCOFF *Result =
295       new (*this) MCSectionCOFF(Iter->first.first, Characteristics,
296                                 COMDATSymbol, Selection, Assoc, Kind);
297
298   Iter->second = Result;
299   return Result;
300 }
301
302 const MCSectionCOFF *
303 MCContext::getCOFFSection(StringRef Section, unsigned Characteristics,
304                           SectionKind Kind) {
305   return getCOFFSection(Section, Characteristics, Kind, "", 0);
306 }
307
308 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) {
309   SectionGroupPair P(Section, "");
310   auto Iter = COFFUniquingMap.find(P);
311   if (Iter == COFFUniquingMap.end())
312     return 0;
313   return Iter->second;
314 }
315
316 //===----------------------------------------------------------------------===//
317 // Dwarf Management
318 //===----------------------------------------------------------------------===//
319
320 /// GetDwarfFile - takes a file name an number to place in the dwarf file and
321 /// directory tables.  If the file number has already been allocated it is an
322 /// error and zero is returned and the client reports the error, else the
323 /// allocated file number is returned.  The file numbers may be in any order.
324 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
325                                  unsigned FileNumber, unsigned CUID) {
326   MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID];
327   return Table.getFile(Directory, FileName, FileNumber);
328 }
329
330 /// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
331 /// currently is assigned and false otherwise.
332 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) {
333   const SmallVectorImpl<MCDwarfFile>& MCDwarfFiles = getMCDwarfFiles(CUID);
334   if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
335     return false;
336
337   return !MCDwarfFiles[FileNumber].Name.empty();
338 }
339
340 void MCContext::FatalError(SMLoc Loc, const Twine &Msg) {
341   // If we have a source manager and a location, use it. Otherwise just
342   // use the generic report_fatal_error().
343   if (!SrcMgr || Loc == SMLoc())
344     report_fatal_error(Msg, false);
345
346   // Use the source manager to print the message.
347   SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg);
348
349   // If we reached here, we are failing ungracefully. Run the interrupt handlers
350   // to make sure any special cleanups get done, in particular that we remove
351   // files registered with RemoveFileOnSignal.
352   sys::RunInterruptHandlers();
353   exit(1);
354 }