Replace llvm.frameallocate with llvm.frameescape
[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/MCStreamer.h"
22 #include "llvm/MC/MCSymbol.h"
23 #include "llvm/Support/ELF.h"
24 #include "llvm/Support/ErrorHandling.h"
25 #include "llvm/Support/FileSystem.h"
26 #include "llvm/Support/MemoryBuffer.h"
27 #include "llvm/Support/Signals.h"
28 #include "llvm/Support/SourceMgr.h"
29 #include <map>
30
31 using namespace llvm;
32
33 MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri,
34                      const MCObjectFileInfo *mofi, const SourceMgr *mgr,
35                      bool DoAutoReset)
36     : SrcMgr(mgr), MAI(mai), MRI(mri), MOFI(mofi), Allocator(),
37       Symbols(Allocator), UsedNames(Allocator), NextUniqueID(0),
38       CurrentDwarfLoc(0, 0, 0, DWARF2_FLAG_IS_STMT, 0, 0), DwarfLocSeen(false),
39       GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4),
40       AllowTemporaryLabels(true), DwarfCompileUnitID(0),
41       AutoReset(DoAutoReset) {
42
43   std::error_code EC = llvm::sys::fs::current_path(CompilationDir);
44   if (EC)
45     CompilationDir.clear();
46
47   SecureLogFile = getenv("AS_SECURE_LOG_FILE");
48   SecureLog = nullptr;
49   SecureLogUsed = false;
50
51   if (SrcMgr && SrcMgr->getNumBuffers())
52     MainFileName =
53         SrcMgr->getMemoryBuffer(SrcMgr->getMainFileID())->getBufferIdentifier();
54 }
55
56 MCContext::~MCContext() {
57
58   if (AutoReset)
59     reset();
60
61   // NOTE: The symbols are all allocated out of a bump pointer allocator,
62   // we don't need to free them here.
63
64   // If the stream for the .secure_log_unique directive was created free it.
65   delete (raw_ostream*)SecureLog;
66 }
67
68 //===----------------------------------------------------------------------===//
69 // Module Lifetime Management
70 //===----------------------------------------------------------------------===//
71
72 void MCContext::reset() {
73   UsedNames.clear();
74   Symbols.clear();
75   Allocator.Reset();
76   Instances.clear();
77   CompilationDir.clear();
78   MainFileName.clear();
79   MCDwarfLineTablesCUMap.clear();
80   SectionStartEndSyms.clear();
81   MCGenDwarfLabelEntries.clear();
82   DwarfDebugFlags = StringRef();
83   DwarfCompileUnitID = 0;
84   CurrentDwarfLoc = MCDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0);
85
86   MachOUniquingMap.clear();
87   ELFUniquingMap.clear();
88   COFFUniquingMap.clear();
89
90   NextUniqueID = 0;
91   AllowTemporaryLabels = true;
92   DwarfLocSeen = false;
93   GenDwarfForAssembly = false;
94   GenDwarfFileNumber = 0;
95 }
96
97 //===----------------------------------------------------------------------===//
98 // Symbol Manipulation
99 //===----------------------------------------------------------------------===//
100
101 MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
102   assert(!Name.empty() && "Normal symbols cannot be unnamed!");
103
104   MCSymbol *&Sym = Symbols[Name];
105
106   if (!Sym)
107     Sym = CreateSymbol(Name);
108
109   return Sym;
110 }
111
112 MCSymbol *MCContext::getOrCreateSectionSymbol(const MCSectionELF &Section) {
113   MCSymbol *&Sym = SectionSymbols[&Section];
114   if (Sym)
115     return Sym;
116
117   StringRef Name = Section.getSectionName();
118
119   MCSymbol *&OldSym = Symbols[Name];
120   if (OldSym && OldSym->isUndefined()) {
121     Sym = OldSym;
122     return OldSym;
123   }
124
125   auto NameIter = UsedNames.insert(std::make_pair(Name, true)).first;
126   Sym = new (*this) MCSymbol(NameIter->getKey(), /*isTemporary*/ false);
127
128   if (!OldSym)
129     OldSym = Sym;
130
131   return Sym;
132 }
133
134 MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName,
135                                                  unsigned Idx) {
136   return GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName +
137                            "$frame_escape_" + Twine(Idx));
138 }
139
140 MCSymbol *MCContext::CreateSymbol(StringRef Name) {
141   // Determine whether this is an assembler temporary or normal label, if used.
142   bool isTemporary = false;
143   if (AllowTemporaryLabels)
144     isTemporary = Name.startswith(MAI->getPrivateGlobalPrefix());
145
146   auto NameEntry = UsedNames.insert(std::make_pair(Name, true));
147   if (!NameEntry.second) {
148     assert(isTemporary && "Cannot rename non-temporary symbols");
149     SmallString<128> NewName = Name;
150     do {
151       NewName.resize(Name.size());
152       raw_svector_ostream(NewName) << NextUniqueID++;
153       NameEntry = UsedNames.insert(std::make_pair(NewName, true));
154     } while (!NameEntry.second);
155   }
156
157   // Ok, the entry doesn't already exist.  Have the MCSymbol object itself refer
158   // to the copy of the string that is embedded in the UsedNames entry.
159   MCSymbol *Result =
160       new (*this) MCSymbol(NameEntry.first->getKey(), isTemporary);
161
162   return Result;
163 }
164
165 MCSymbol *MCContext::createTempSymbol(const Twine &Name) {
166   SmallString<128> NameSV;
167   raw_svector_ostream(NameSV) << MAI->getPrivateGlobalPrefix() << Name;
168   return CreateSymbol(NameSV);
169 }
170
171 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
172   SmallString<128> NameSV;
173   return GetOrCreateSymbol(Name.toStringRef(NameSV));
174 }
175
176 MCSymbol *MCContext::CreateLinkerPrivateTempSymbol() {
177   SmallString<128> NameSV;
178   raw_svector_ostream(NameSV)
179     << MAI->getLinkerPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
180   return CreateSymbol(NameSV);
181 }
182
183 MCSymbol *MCContext::CreateTempSymbol() {
184   SmallString<128> NameSV;
185   raw_svector_ostream(NameSV)
186     << MAI->getPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
187   return CreateSymbol(NameSV);
188 }
189
190 unsigned MCContext::NextInstance(unsigned LocalLabelVal) {
191   MCLabel *&Label = Instances[LocalLabelVal];
192   if (!Label)
193     Label = new (*this) MCLabel(0);
194   return Label->incInstance();
195 }
196
197 unsigned MCContext::GetInstance(unsigned LocalLabelVal) {
198   MCLabel *&Label = Instances[LocalLabelVal];
199   if (!Label)
200     Label = new (*this) MCLabel(0);
201   return Label->getInstance();
202 }
203
204 MCSymbol *MCContext::getOrCreateDirectionalLocalSymbol(unsigned LocalLabelVal,
205                                                        unsigned Instance) {
206   MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)];
207   if (!Sym)
208     Sym = CreateTempSymbol();
209   return Sym;
210 }
211
212 MCSymbol *MCContext::CreateDirectionalLocalSymbol(unsigned LocalLabelVal) {
213   unsigned Instance = NextInstance(LocalLabelVal);
214   return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
215 }
216
217 MCSymbol *MCContext::GetDirectionalLocalSymbol(unsigned LocalLabelVal,
218                                                bool Before) {
219   unsigned Instance = GetInstance(LocalLabelVal);
220   if (!Before)
221     ++Instance;
222   return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
223 }
224
225 MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
226   return Symbols.lookup(Name);
227 }
228
229 MCSymbol *MCContext::LookupSymbol(const Twine &Name) const {
230   SmallString<128> NameSV;
231   Name.toVector(NameSV);
232   return LookupSymbol(NameSV.str());
233 }
234
235 //===----------------------------------------------------------------------===//
236 // Section Management
237 //===----------------------------------------------------------------------===//
238
239 const MCSectionMachO *MCContext::
240 getMachOSection(StringRef Segment, StringRef Section,
241                 unsigned TypeAndAttributes,
242                 unsigned Reserved2, SectionKind Kind) {
243
244   // We unique sections by their segment/section pair.  The returned section
245   // may not have the same flags as the requested section, if so this should be
246   // diagnosed by the client as an error.
247
248   // Form the name to look up.
249   SmallString<64> Name;
250   Name += Segment;
251   Name.push_back(',');
252   Name += Section;
253
254   // Do the lookup, if we have a hit, return it.
255   const MCSectionMachO *&Entry = MachOUniquingMap[Name.str()];
256   if (Entry) return Entry;
257
258   // Otherwise, return a new section.
259   return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
260                                             Reserved2, Kind);
261 }
262
263 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
264                                              unsigned Flags) {
265   return getELFSection(Section, Type, Flags, 0, "");
266 }
267
268 void MCContext::renameELFSection(const MCSectionELF *Section, StringRef Name) {
269   StringRef GroupName;
270   if (const MCSymbol *Group = Section->getGroup())
271     GroupName = Group->getName();
272
273   ELFUniquingMap.erase(SectionGroupPair(Section->getSectionName(), GroupName));
274   auto I =
275       ELFUniquingMap.insert(std::make_pair(SectionGroupPair(Name, GroupName),
276                                            Section)).first;
277   StringRef CachedName = I->first.first;
278   const_cast<MCSectionELF*>(Section)->setSectionName(CachedName);
279 }
280
281 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
282                                              unsigned Flags, unsigned EntrySize,
283                                              StringRef Group, bool Unique) {
284   // Do the lookup, if we have a hit, return it.
285   auto IterBool = ELFUniquingMap.insert(
286       std::make_pair(SectionGroupPair(Section, Group), nullptr));
287   auto &Entry = *IterBool.first;
288   if (!IterBool.second && !Unique)
289     return Entry.second;
290
291   MCSymbol *GroupSym = nullptr;
292   if (!Group.empty())
293     GroupSym = GetOrCreateSymbol(Group);
294
295   StringRef CachedName = Entry.first.first;
296
297   SectionKind Kind;
298   if (Flags & ELF::SHF_EXECINSTR)
299     Kind = SectionKind::getText();
300   else
301     Kind = SectionKind::getReadOnly();
302
303   MCSectionELF *Result = new (*this)
304       MCSectionELF(CachedName, Type, Flags, Kind, EntrySize, GroupSym, Unique);
305   if (!Unique)
306     Entry.second = Result;
307   return Result;
308 }
309
310 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
311                                              unsigned Flags, unsigned EntrySize,
312                                              StringRef Group) {
313   return getELFSection(Section, Type, Flags, EntrySize, Group, false);
314 }
315
316 const MCSectionELF *MCContext::CreateELFGroupSection() {
317   MCSectionELF *Result =
318       new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0,
319                                SectionKind::getReadOnly(), 4, nullptr, false);
320   return Result;
321 }
322
323 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section,
324                                                unsigned Characteristics,
325                                                SectionKind Kind,
326                                                StringRef COMDATSymName,
327                                                int Selection) {
328   // Do the lookup, if we have a hit, return it.
329
330   SectionGroupTriple T(Section, COMDATSymName, Selection);
331   auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr));
332   auto Iter = IterBool.first;
333   if (!IterBool.second)
334     return Iter->second;
335
336   MCSymbol *COMDATSymbol = nullptr;
337   if (!COMDATSymName.empty())
338     COMDATSymbol = GetOrCreateSymbol(COMDATSymName);
339
340   StringRef CachedName = std::get<0>(Iter->first);
341   MCSectionCOFF *Result = new (*this)
342       MCSectionCOFF(CachedName, Characteristics, COMDATSymbol, Selection, Kind);
343
344   Iter->second = Result;
345   return Result;
346 }
347
348 const MCSectionCOFF *
349 MCContext::getCOFFSection(StringRef Section, unsigned Characteristics,
350                           SectionKind Kind) {
351   return getCOFFSection(Section, Characteristics, Kind, "", 0);
352 }
353
354 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) {
355   SectionGroupTriple T(Section, "", 0);
356   auto Iter = COFFUniquingMap.find(T);
357   if (Iter == COFFUniquingMap.end())
358     return nullptr;
359   return Iter->second;
360 }
361
362 const MCSectionCOFF *
363 MCContext::getAssociativeCOFFSection(const MCSectionCOFF *Sec,
364                                      const MCSymbol *KeySym) {
365   // Return the normal section if we don't have to be associative.
366   if (!KeySym)
367     return Sec;
368
369   // Make an associative section with the same name and kind as the normal
370   // section.
371   unsigned Characteristics =
372       Sec->getCharacteristics() | COFF::IMAGE_SCN_LNK_COMDAT;
373   return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(),
374                         KeySym->getName(),
375                         COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE);
376 }
377
378 //===----------------------------------------------------------------------===//
379 // Dwarf Management
380 //===----------------------------------------------------------------------===//
381
382 /// GetDwarfFile - takes a file name an number to place in the dwarf file and
383 /// directory tables.  If the file number has already been allocated it is an
384 /// error and zero is returned and the client reports the error, else the
385 /// allocated file number is returned.  The file numbers may be in any order.
386 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
387                                  unsigned FileNumber, unsigned CUID) {
388   MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID];
389   return Table.getFile(Directory, FileName, FileNumber);
390 }
391
392 /// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
393 /// currently is assigned and false otherwise.
394 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) {
395   const SmallVectorImpl<MCDwarfFile>& MCDwarfFiles = getMCDwarfFiles(CUID);
396   if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
397     return false;
398
399   return !MCDwarfFiles[FileNumber].Name.empty();
400 }
401
402 /// finalizeDwarfSections - Emit end symbols for each non-empty code section.
403 /// Also remove empty sections from SectionStartEndSyms, to avoid generating
404 /// useless debug info for them.
405 void MCContext::finalizeDwarfSections(MCStreamer &MCOS) {
406   MCContext &context = MCOS.getContext();
407
408   auto sec = SectionStartEndSyms.begin();
409   while (sec != SectionStartEndSyms.end()) {
410     assert(sec->second.first && "Start symbol must be set by now");
411     MCOS.SwitchSection(sec->first);
412     if (MCOS.mayHaveInstructions()) {
413       MCSymbol *SectionEndSym = context.CreateTempSymbol();
414       MCOS.EmitLabel(SectionEndSym);
415       sec->second.second = SectionEndSym;
416       ++sec;
417     } else {
418       MapVector<const MCSection *, std::pair<MCSymbol *, MCSymbol *> >::iterator
419         to_erase = sec;
420       sec = SectionStartEndSyms.erase(to_erase);
421     }
422   }
423 }
424
425 void MCContext::FatalError(SMLoc Loc, const Twine &Msg) const {
426   // If we have a source manager and a location, use it. Otherwise just
427   // use the generic report_fatal_error().
428   if (!SrcMgr || Loc == SMLoc())
429     report_fatal_error(Msg, false);
430
431   // Use the source manager to print the message.
432   SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg);
433
434   // If we reached here, we are failing ungracefully. Run the interrupt handlers
435   // to make sure any special cleanups get done, in particular that we remove
436   // files registered with RemoveFileOnSignal.
437   sys::RunInterruptHandlers();
438   exit(1);
439 }