70511100f0d161e51cb4a7bd939d5af6d6486abe
[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::getMachOSection(StringRef Segment,
240                                                  StringRef Section,
241                                                  unsigned TypeAndAttributes,
242                                                  unsigned Reserved2,
243                                                  SectionKind Kind) {
244
245   // We unique sections by their segment/section pair.  The returned section
246   // may not have the same flags as the requested section, if so this should be
247   // diagnosed by the client as an error.
248
249   // Form the name to look up.
250   SmallString<64> Name;
251   Name += Segment;
252   Name.push_back(',');
253   Name += Section;
254
255   // Do the lookup, if we have a hit, return it.
256   const MCSectionMachO *&Entry = MachOUniquingMap[Name.str()];
257   if (Entry)
258     return Entry;
259
260   // Otherwise, return a new section.
261   return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
262                                             Reserved2, Kind);
263 }
264
265 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
266                                              unsigned Flags) {
267   return getELFSection(Section, Type, Flags, 0, "");
268 }
269
270 void MCContext::renameELFSection(const MCSectionELF *Section, StringRef Name) {
271   StringRef GroupName;
272   if (const MCSymbol *Group = Section->getGroup())
273     GroupName = Group->getName();
274
275   ELFUniquingMap.erase(SectionGroupPair(Section->getSectionName(), GroupName));
276   auto I =
277       ELFUniquingMap.insert(std::make_pair(SectionGroupPair(Name, GroupName),
278                                            Section)).first;
279   StringRef CachedName = I->first.first;
280   const_cast<MCSectionELF*>(Section)->setSectionName(CachedName);
281 }
282
283 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
284                                              unsigned Flags, unsigned EntrySize,
285                                              StringRef Group, bool Unique) {
286   // Do the lookup, if we have a hit, return it.
287   auto IterBool = ELFUniquingMap.insert(
288       std::make_pair(SectionGroupPair(Section, Group), nullptr));
289   auto &Entry = *IterBool.first;
290   if (!IterBool.second && !Unique)
291     return Entry.second;
292
293   MCSymbol *GroupSym = nullptr;
294   if (!Group.empty())
295     GroupSym = GetOrCreateSymbol(Group);
296
297   StringRef CachedName = Entry.first.first;
298
299   SectionKind Kind;
300   if (Flags & ELF::SHF_EXECINSTR)
301     Kind = SectionKind::getText();
302   else
303     Kind = SectionKind::getReadOnly();
304
305   MCSectionELF *Result = new (*this)
306       MCSectionELF(CachedName, Type, Flags, Kind, EntrySize, GroupSym, Unique);
307   if (!Unique)
308     Entry.second = Result;
309   return Result;
310 }
311
312 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
313                                              unsigned Flags, unsigned EntrySize,
314                                              StringRef Group) {
315   return getELFSection(Section, Type, Flags, EntrySize, Group, false);
316 }
317
318 const MCSectionELF *MCContext::CreateELFGroupSection() {
319   MCSectionELF *Result =
320       new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0,
321                                SectionKind::getReadOnly(), 4, nullptr, false);
322   return Result;
323 }
324
325 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section,
326                                                unsigned Characteristics,
327                                                SectionKind Kind,
328                                                StringRef COMDATSymName,
329                                                int Selection) {
330   // Do the lookup, if we have a hit, return it.
331
332   SectionGroupTriple T(Section, COMDATSymName, Selection);
333   auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr));
334   auto Iter = IterBool.first;
335   if (!IterBool.second)
336     return Iter->second;
337
338   MCSymbol *COMDATSymbol = nullptr;
339   if (!COMDATSymName.empty())
340     COMDATSymbol = GetOrCreateSymbol(COMDATSymName);
341
342   StringRef CachedName = std::get<0>(Iter->first);
343   MCSectionCOFF *Result = new (*this)
344       MCSectionCOFF(CachedName, Characteristics, COMDATSymbol, Selection, Kind);
345
346   Iter->second = Result;
347   return Result;
348 }
349
350 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section,
351                                                unsigned Characteristics,
352                                                SectionKind Kind) {
353   return getCOFFSection(Section, Characteristics, Kind, "", 0);
354 }
355
356 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) {
357   SectionGroupTriple T(Section, "", 0);
358   auto Iter = COFFUniquingMap.find(T);
359   if (Iter == COFFUniquingMap.end())
360     return nullptr;
361   return Iter->second;
362 }
363
364 const MCSectionCOFF *
365 MCContext::getAssociativeCOFFSection(const MCSectionCOFF *Sec,
366                                      const MCSymbol *KeySym) {
367   // Return the normal section if we don't have to be associative.
368   if (!KeySym)
369     return Sec;
370
371   // Make an associative section with the same name and kind as the normal
372   // section.
373   unsigned Characteristics =
374       Sec->getCharacteristics() | COFF::IMAGE_SCN_LNK_COMDAT;
375   return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(),
376                         KeySym->getName(),
377                         COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE);
378 }
379
380 //===----------------------------------------------------------------------===//
381 // Dwarf Management
382 //===----------------------------------------------------------------------===//
383
384 /// GetDwarfFile - takes a file name an number to place in the dwarf file and
385 /// directory tables.  If the file number has already been allocated it is an
386 /// error and zero is returned and the client reports the error, else the
387 /// allocated file number is returned.  The file numbers may be in any order.
388 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
389                                  unsigned FileNumber, unsigned CUID) {
390   MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID];
391   return Table.getFile(Directory, FileName, FileNumber);
392 }
393
394 /// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
395 /// currently is assigned and false otherwise.
396 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) {
397   const SmallVectorImpl<MCDwarfFile>& MCDwarfFiles = getMCDwarfFiles(CUID);
398   if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
399     return false;
400
401   return !MCDwarfFiles[FileNumber].Name.empty();
402 }
403
404 /// finalizeDwarfSections - Emit end symbols for each non-empty code section.
405 /// Also remove empty sections from SectionStartEndSyms, to avoid generating
406 /// useless debug info for them.
407 void MCContext::finalizeDwarfSections(MCStreamer &MCOS) {
408   MCContext &context = MCOS.getContext();
409
410   auto sec = SectionStartEndSyms.begin();
411   while (sec != SectionStartEndSyms.end()) {
412     assert(sec->second.first && "Start symbol must be set by now");
413     MCOS.SwitchSection(sec->first);
414     if (MCOS.mayHaveInstructions()) {
415       MCSymbol *SectionEndSym = context.CreateTempSymbol();
416       MCOS.EmitLabel(SectionEndSym);
417       sec->second.second = SectionEndSym;
418       ++sec;
419     } else {
420       MapVector<const MCSection *, std::pair<MCSymbol *, MCSymbol *> >::iterator
421         to_erase = sec;
422       sec = SectionStartEndSyms.erase(to_erase);
423     }
424   }
425 }
426
427 void MCContext::FatalError(SMLoc Loc, const Twine &Msg) const {
428   // If we have a source manager and a location, use it. Otherwise just
429   // use the generic report_fatal_error().
430   if (!SrcMgr || Loc == SMLoc())
431     report_fatal_error(Msg, false);
432
433   // Use the source manager to print the message.
434   SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg);
435
436   // If we reached here, we are failing ungracefully. Run the interrupt handlers
437   // to make sure any special cleanups get done, in particular that we remove
438   // files registered with RemoveFileOnSignal.
439   sys::RunInterruptHandlers();
440   exit(1);
441 }