[WinEH] Generate .xdata for catch handlers
[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),
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   NextID.clear();
91   AllowTemporaryLabels = true;
92   DwarfLocSeen = false;
93   GenDwarfForAssembly = false;
94   GenDwarfFileNumber = 0;
95 }
96
97 //===----------------------------------------------------------------------===//
98 // Symbol Manipulation
99 //===----------------------------------------------------------------------===//
100
101 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
102   SmallString<128> NameSV;
103   StringRef NameRef = Name.toStringRef(NameSV);
104
105   assert(!NameRef.empty() && "Normal symbols cannot be unnamed!");
106
107   MCSymbol *&Sym = Symbols[NameRef];
108   if (!Sym)
109     Sym = CreateSymbol(NameRef, false);
110
111   return Sym;
112 }
113
114 MCSymbol *MCContext::getOrCreateSectionSymbol(const MCSectionELF &Section) {
115   MCSymbol *&Sym = SectionSymbols[&Section];
116   if (Sym)
117     return Sym;
118
119   StringRef Name = Section.getSectionName();
120
121   MCSymbol *&OldSym = Symbols[Name];
122   if (OldSym && OldSym->isUndefined()) {
123     Sym = OldSym;
124     return OldSym;
125   }
126
127   auto NameIter = UsedNames.insert(std::make_pair(Name, true)).first;
128   Sym = new (*this) MCSymbol(NameIter->getKey(), /*isTemporary*/ false);
129
130   if (!OldSym)
131     OldSym = Sym;
132
133   return Sym;
134 }
135
136 MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName,
137                                                  unsigned Idx) {
138   return GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName +
139                            "$frame_escape_" + Twine(Idx));
140 }
141
142 MCSymbol *MCContext::getOrCreateParentFrameOffsetSymbol(StringRef FuncName) {
143   return GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName +
144                            "$parent_frame_offset");
145 }
146
147 MCSymbol *MCContext::CreateSymbol(StringRef Name, bool AlwaysAddSuffix) {
148   // Determine whether this is an assembler temporary or normal label, if used.
149   bool IsTemporary = false;
150   if (AllowTemporaryLabels)
151     IsTemporary = Name.startswith(MAI->getPrivateGlobalPrefix());
152
153   SmallString<128> NewName = Name;
154   bool AddSuffix = AlwaysAddSuffix;
155   unsigned &NextUniqueID = NextID[Name];
156   for (;;) {
157     if (AddSuffix) {
158       NewName.resize(Name.size());
159       raw_svector_ostream(NewName) << NextUniqueID++;
160     }
161     auto NameEntry = UsedNames.insert(std::make_pair(NewName, true));
162     if (NameEntry.second) {
163       // Ok, we found a name. Have the MCSymbol object itself refer to the copy
164       // of the string that is embedded in the UsedNames entry.
165       MCSymbol *Result =
166           new (*this) MCSymbol(NameEntry.first->getKey(), IsTemporary);
167       return Result;
168     }
169     assert(IsTemporary && "Cannot rename non-temporary symbols");
170     AddSuffix = true;
171   }
172   llvm_unreachable("Infinite loop");
173 }
174
175 MCSymbol *MCContext::createTempSymbol(const Twine &Name, bool AlwaysAddSuffix) {
176   SmallString<128> NameSV;
177   raw_svector_ostream(NameSV) << MAI->getPrivateGlobalPrefix() << Name;
178   return CreateSymbol(NameSV, AlwaysAddSuffix);
179 }
180
181 MCSymbol *MCContext::CreateLinkerPrivateTempSymbol() {
182   SmallString<128> NameSV;
183   raw_svector_ostream(NameSV) << MAI->getLinkerPrivateGlobalPrefix() << "tmp";
184   return CreateSymbol(NameSV, true);
185 }
186
187 MCSymbol *MCContext::CreateTempSymbol() {
188   return createTempSymbol("tmp", true);
189 }
190
191 unsigned MCContext::NextInstance(unsigned LocalLabelVal) {
192   MCLabel *&Label = Instances[LocalLabelVal];
193   if (!Label)
194     Label = new (*this) MCLabel(0);
195   return Label->incInstance();
196 }
197
198 unsigned MCContext::GetInstance(unsigned LocalLabelVal) {
199   MCLabel *&Label = Instances[LocalLabelVal];
200   if (!Label)
201     Label = new (*this) MCLabel(0);
202   return Label->getInstance();
203 }
204
205 MCSymbol *MCContext::getOrCreateDirectionalLocalSymbol(unsigned LocalLabelVal,
206                                                        unsigned Instance) {
207   MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)];
208   if (!Sym)
209     Sym = CreateTempSymbol();
210   return Sym;
211 }
212
213 MCSymbol *MCContext::CreateDirectionalLocalSymbol(unsigned LocalLabelVal) {
214   unsigned Instance = NextInstance(LocalLabelVal);
215   return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
216 }
217
218 MCSymbol *MCContext::GetDirectionalLocalSymbol(unsigned LocalLabelVal,
219                                                bool Before) {
220   unsigned Instance = GetInstance(LocalLabelVal);
221   if (!Before)
222     ++Instance;
223   return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
224 }
225
226 MCSymbol *MCContext::LookupSymbol(const Twine &Name) const {
227   SmallString<128> NameSV;
228   StringRef NameRef = Name.toStringRef(NameSV);
229   return Symbols.lookup(NameRef);
230 }
231
232 //===----------------------------------------------------------------------===//
233 // Section Management
234 //===----------------------------------------------------------------------===//
235
236 const MCSectionMachO *
237 MCContext::getMachOSection(StringRef Segment, StringRef Section,
238                            unsigned TypeAndAttributes, unsigned Reserved2,
239                            SectionKind Kind, const char *BeginSymName) {
240
241   // We unique sections by their segment/section pair.  The returned section
242   // may not have the same flags as the requested section, if so this should be
243   // diagnosed by the client as an error.
244
245   // Form the name to look up.
246   SmallString<64> Name;
247   Name += Segment;
248   Name.push_back(',');
249   Name += Section;
250
251   // Do the lookup, if we have a hit, return it.
252   const MCSectionMachO *&Entry = MachOUniquingMap[Name];
253   if (Entry)
254     return Entry;
255
256   MCSymbol *Begin = nullptr;
257   if (BeginSymName)
258     Begin = createTempSymbol(BeginSymName, false);
259
260   // Otherwise, return a new section.
261   return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
262                                             Reserved2, Kind, Begin);
263 }
264
265 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
266                                              unsigned Flags,
267                                              const char *BeginSymName) {
268   return getELFSection(Section, Type, Flags, 0, "", BeginSymName);
269 }
270
271 void MCContext::renameELFSection(const MCSectionELF *Section, StringRef Name) {
272   StringRef GroupName;
273   if (const MCSymbol *Group = Section->getGroup())
274     GroupName = Group->getName();
275
276   ELFUniquingMap.erase(ELFSectionKey{Section->getSectionName(), GroupName});
277   auto I = ELFUniquingMap.insert(std::make_pair(ELFSectionKey{Name, GroupName},
278                                                 Section)).first;
279   StringRef CachedName = I->first.SectionName;
280   const_cast<MCSectionELF*>(Section)->setSectionName(CachedName);
281 }
282
283 const MCSectionELF *
284 MCContext::createELFRelSection(StringRef Name, unsigned Type, unsigned Flags,
285                                unsigned EntrySize, const MCSymbol *Group) {
286   StringMap<bool>::iterator I;
287   bool Inserted;
288   std::tie(I, Inserted) = ELFRelSecNames.insert(std::make_pair(Name, true));
289
290   return new (*this)
291       MCSectionELF(I->getKey(), Type, Flags, SectionKind::getReadOnly(),
292                    EntrySize, Group, true, nullptr);
293 }
294
295 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
296                                              unsigned Flags, unsigned EntrySize,
297                                              StringRef Group, bool Unique,
298                                              const char *BeginSymName) {
299   MCSymbol *GroupSym = nullptr;
300   if (!Group.empty()) {
301     GroupSym = GetOrCreateSymbol(Group);
302     Group = GroupSym->getName();
303   }
304
305   // Do the lookup, if we have a hit, return it.
306   auto IterBool = ELFUniquingMap.insert(
307       std::make_pair(ELFSectionKey{Section, Group}, nullptr));
308   auto &Entry = *IterBool.first;
309   if (!IterBool.second && !Unique)
310     return Entry.second;
311
312   StringRef CachedName = Entry.first.SectionName;
313
314   SectionKind Kind;
315   if (Flags & ELF::SHF_EXECINSTR)
316     Kind = SectionKind::getText();
317   else
318     Kind = SectionKind::getReadOnly();
319
320   MCSymbol *Begin = nullptr;
321   if (BeginSymName)
322     Begin = createTempSymbol(BeginSymName, false);
323
324   MCSectionELF *Result = new (*this) MCSectionELF(
325       CachedName, Type, Flags, Kind, EntrySize, GroupSym, Unique, Begin);
326   if (!Unique)
327     Entry.second = Result;
328   return Result;
329 }
330
331 const MCSectionELF *MCContext::getELFSection(StringRef Section, unsigned Type,
332                                              unsigned Flags, unsigned EntrySize,
333                                              StringRef Group,
334                                              const char *BeginSymName) {
335   return getELFSection(Section, Type, Flags, EntrySize, Group, false,
336                        BeginSymName);
337 }
338
339 const MCSectionELF *MCContext::CreateELFGroupSection() {
340   MCSectionELF *Result = new (*this)
341       MCSectionELF(".group", ELF::SHT_GROUP, 0, SectionKind::getReadOnly(), 4,
342                    nullptr, false, nullptr);
343   return Result;
344 }
345
346 const MCSectionCOFF *
347 MCContext::getCOFFSection(StringRef Section, unsigned Characteristics,
348                           SectionKind Kind, StringRef COMDATSymName,
349                           int Selection, const char *BeginSymName) {
350   MCSymbol *COMDATSymbol = nullptr;
351   if (!COMDATSymName.empty()) {
352     COMDATSymbol = GetOrCreateSymbol(COMDATSymName);
353     COMDATSymName = COMDATSymbol->getName();
354   }
355
356   // Do the lookup, if we have a hit, return it.
357   COFFSectionKey T{Section, COMDATSymName, Selection};
358   auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr));
359   auto Iter = IterBool.first;
360   if (!IterBool.second)
361     return Iter->second;
362
363   MCSymbol *Begin = nullptr;
364   if (BeginSymName)
365     Begin = createTempSymbol(BeginSymName, false);
366
367   StringRef CachedName = Iter->first.SectionName;
368   MCSectionCOFF *Result = new (*this) MCSectionCOFF(
369       CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin);
370
371   Iter->second = Result;
372   return Result;
373 }
374
375 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section,
376                                                unsigned Characteristics,
377                                                SectionKind Kind,
378                                                const char *BeginSymName) {
379   return getCOFFSection(Section, Characteristics, Kind, "", 0, BeginSymName);
380 }
381
382 const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) {
383   COFFSectionKey T{Section, "", 0};
384   auto Iter = COFFUniquingMap.find(T);
385   if (Iter == COFFUniquingMap.end())
386     return nullptr;
387   return Iter->second;
388 }
389
390 const MCSectionCOFF *
391 MCContext::getAssociativeCOFFSection(const MCSectionCOFF *Sec,
392                                      const MCSymbol *KeySym) {
393   // Return the normal section if we don't have to be associative.
394   if (!KeySym)
395     return Sec;
396
397   // Make an associative section with the same name and kind as the normal
398   // section.
399   unsigned Characteristics =
400       Sec->getCharacteristics() | COFF::IMAGE_SCN_LNK_COMDAT;
401   return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(),
402                         KeySym->getName(),
403                         COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE);
404 }
405
406 //===----------------------------------------------------------------------===//
407 // Dwarf Management
408 //===----------------------------------------------------------------------===//
409
410 /// GetDwarfFile - takes a file name an number to place in the dwarf file and
411 /// directory tables.  If the file number has already been allocated it is an
412 /// error and zero is returned and the client reports the error, else the
413 /// allocated file number is returned.  The file numbers may be in any order.
414 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
415                                  unsigned FileNumber, unsigned CUID) {
416   MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID];
417   return Table.getFile(Directory, FileName, FileNumber);
418 }
419
420 /// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
421 /// currently is assigned and false otherwise.
422 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) {
423   const SmallVectorImpl<MCDwarfFile>& MCDwarfFiles = getMCDwarfFiles(CUID);
424   if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
425     return false;
426
427   return !MCDwarfFiles[FileNumber].Name.empty();
428 }
429
430 /// finalizeDwarfSections - Emit end symbols for each non-empty code section.
431 /// Also remove empty sections from SectionStartEndSyms, to avoid generating
432 /// useless debug info for them.
433 void MCContext::finalizeDwarfSections(MCStreamer &MCOS) {
434   MCContext &context = MCOS.getContext();
435
436   auto sec = SectionStartEndSyms.begin();
437   while (sec != SectionStartEndSyms.end()) {
438     assert(sec->second.first && "Start symbol must be set by now");
439     MCOS.SwitchSection(sec->first);
440     if (MCOS.mayHaveInstructions()) {
441       MCSymbol *SectionEndSym = context.CreateTempSymbol();
442       MCOS.EmitLabel(SectionEndSym);
443       sec->second.second = SectionEndSym;
444       ++sec;
445     } else {
446       MapVector<const MCSection *, std::pair<MCSymbol *, MCSymbol *> >::iterator
447         to_erase = sec;
448       sec = SectionStartEndSyms.erase(to_erase);
449     }
450   }
451 }
452
453 void MCContext::FatalError(SMLoc Loc, const Twine &Msg) const {
454   // If we have a source manager and a location, use it. Otherwise just
455   // use the generic report_fatal_error().
456   if (!SrcMgr || Loc == SMLoc())
457     report_fatal_error(Msg, false);
458
459   // Use the source manager to print the message.
460   SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg);
461
462   // If we reached here, we are failing ungracefully. Run the interrupt handlers
463   // to make sure any special cleanups get done, in particular that we remove
464   // files registered with RemoveFileOnSignal.
465   sys::RunInterruptHandlers();
466   exit(1);
467 }