Daniel Dunbar | ba1da8a | 2009-06-23 23:39:15 +0000 | [diff] [blame] | 1 | //===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===// |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 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" |
Chris Lattner | 7c5b021 | 2009-10-19 22:49:00 +0000 | [diff] [blame] | 11 | #include "llvm/ADT/SmallString.h" |
| 12 | #include "llvm/ADT/Twine.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 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" |
Rafael Espindola | c85dca6 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ELF.h" |
Jim Grosbach | 82f4ce5 | 2012-01-26 23:20:11 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ErrorHandling.h" |
Eric Christopher | 6c58314 | 2012-12-18 00:31:01 +0000 | [diff] [blame] | 24 | #include "llvm/Support/MemoryBuffer.h" |
Jim Grosbach | 82f4ce5 | 2012-01-26 23:20:11 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Signals.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 26 | #include "llvm/Support/SourceMgr.h" |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 29 | typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy; |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 30 | typedef StringMap<const MCSectionELF*> ELFUniqueMapTy; |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 31 | typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy; |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 32 | |
| 33 | |
Evan Cheng | 0e6a052 | 2011-07-18 20:57:22 +0000 | [diff] [blame] | 34 | MCContext::MCContext(const MCAsmInfo &mai, const MCRegisterInfo &mri, |
Pedro Artigas | 873a1dd | 2012-12-06 22:12:44 +0000 | [diff] [blame] | 35 | const MCObjectFileInfo *mofi, const SourceMgr *mgr, |
Eric Christopher | d57a598 | 2012-12-18 00:42:26 +0000 | [diff] [blame] | 36 | bool DoAutoReset) : |
Jim Grosbach | 3662e5c | 2012-01-26 23:20:05 +0000 | [diff] [blame] | 37 | SrcMgr(mgr), MAI(mai), MRI(mri), MOFI(mofi), |
Eli Friedman | f4387d9 | 2011-04-18 05:02:31 +0000 | [diff] [blame] | 38 | Allocator(), Symbols(Allocator), UsedNames(Allocator), |
Chandler Carruth | 6c31d31 | 2012-12-17 21:32:42 +0000 | [diff] [blame] | 39 | NextUniqueID(0), |
| 40 | CompilationDir(llvm::sys::Path::GetCurrentDirectory().str()), |
Pedro Artigas | 5399d25 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 41 | CurrentDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0), |
| 42 | DwarfLocSeen(false), GenDwarfForAssembly(false), GenDwarfFileNumber(0), |
Manman Ren | 43213cf | 2013-02-05 21:52:47 +0000 | [diff] [blame] | 43 | AllowTemporaryLabels(true), DwarfCompileUnitID(0), AutoReset(DoAutoReset) { |
Pedro Artigas | 5399d25 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 44 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 45 | MachOUniquingMap = 0; |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 46 | ELFUniquingMap = 0; |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 47 | COFFUniquingMap = 0; |
Kevin Enderby | f187ac5 | 2010-06-28 21:45:58 +0000 | [diff] [blame] | 48 | |
| 49 | SecureLogFile = getenv("AS_SECURE_LOG_FILE"); |
| 50 | SecureLog = 0; |
| 51 | SecureLogUsed = false; |
Eric Christopher | 6c58314 | 2012-12-18 00:31:01 +0000 | [diff] [blame] | 52 | |
| 53 | if (SrcMgr && SrcMgr->getNumBuffers() > 0) |
| 54 | MainFileName = SrcMgr->getMemoryBuffer(0)->getBufferIdentifier(); |
| 55 | else |
| 56 | MainFileName = ""; |
Pedro Artigas | 873a1dd | 2012-12-06 22:12:44 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | MCContext::~MCContext() { |
| 60 | |
Pedro Artigas | 5399d25 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 61 | if (AutoReset) |
| 62 | reset(); |
Pedro Artigas | 873a1dd | 2012-12-06 22:12:44 +0000 | [diff] [blame] | 63 | |
| 64 | // NOTE: The symbols are all allocated out of a bump pointer allocator, |
| 65 | // we don't need to free them here. |
| 66 | |
| 67 | // If the stream for the .secure_log_unique directive was created free it. |
| 68 | delete (raw_ostream*)SecureLog; |
| 69 | } |
| 70 | |
| 71 | //===----------------------------------------------------------------------===// |
| 72 | // Module Lifetime Management |
| 73 | //===----------------------------------------------------------------------===// |
| 74 | |
Pedro Artigas | 5399d25 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 75 | void MCContext::reset() { |
Pedro Artigas | 873a1dd | 2012-12-06 22:12:44 +0000 | [diff] [blame] | 76 | UsedNames.clear(); |
| 77 | Symbols.clear(); |
| 78 | Allocator.Reset(); |
| 79 | Instances.clear(); |
Manman Ren | 3de61b4 | 2013-03-07 01:42:00 +0000 | [diff] [blame] | 80 | MCDwarfFilesCUMap.clear(); |
| 81 | MCDwarfDirsCUMap.clear(); |
Pedro Artigas | 873a1dd | 2012-12-06 22:12:44 +0000 | [diff] [blame] | 82 | MCGenDwarfLabelEntries.clear(); |
| 83 | DwarfDebugFlags = StringRef(); |
| 84 | MCLineSections.clear(); |
| 85 | MCLineSectionOrder.clear(); |
Pedro Artigas | 9e7924d | 2013-02-20 00:10:29 +0000 | [diff] [blame] | 86 | DwarfCompileUnitID = 0; |
| 87 | MCLineTableSymbols.clear(); |
Pedro Artigas | 873a1dd | 2012-12-06 22:12:44 +0000 | [diff] [blame] | 88 | CurrentDwarfLoc = MCDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 89 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 90 | // If we have the MachO uniquing map, free it. |
| 91 | delete (MachOUniqueMapTy*)MachOUniquingMap; |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 92 | delete (ELFUniqueMapTy*)ELFUniquingMap; |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 93 | delete (COFFUniqueMapTy*)COFFUniquingMap; |
Pedro Artigas | 873a1dd | 2012-12-06 22:12:44 +0000 | [diff] [blame] | 94 | MachOUniquingMap = 0; |
| 95 | ELFUniquingMap = 0; |
| 96 | COFFUniquingMap = 0; |
Pedro Artigas | 5399d25 | 2012-12-12 22:59:46 +0000 | [diff] [blame] | 97 | |
| 98 | NextUniqueID = 0; |
| 99 | AllowTemporaryLabels = true; |
| 100 | DwarfLocSeen = false; |
| 101 | GenDwarfForAssembly = false; |
| 102 | GenDwarfFileNumber = 0; |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 105 | //===----------------------------------------------------------------------===// |
| 106 | // Symbol Manipulation |
| 107 | //===----------------------------------------------------------------------===// |
| 108 | |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 109 | MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) { |
Chris Lattner | 00685bb | 2010-03-10 01:29:27 +0000 | [diff] [blame] | 110 | assert(!Name.empty() && "Normal symbols cannot be unnamed!"); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 111 | |
Chris Lattner | c28cc09 | 2010-03-15 06:15:35 +0000 | [diff] [blame] | 112 | // Do the lookup and get the entire StringMapEntry. We want access to the |
| 113 | // key if we are creating the entry. |
| 114 | StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name); |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 115 | MCSymbol *Sym = Entry.getValue(); |
| 116 | |
| 117 | if (Sym) |
| 118 | return Sym; |
| 119 | |
| 120 | Sym = CreateSymbol(Name); |
| 121 | Entry.setValue(Sym); |
| 122 | return Sym; |
| 123 | } |
| 124 | |
| 125 | MCSymbol *MCContext::CreateSymbol(StringRef Name) { |
Daniel Dunbar | c6cf43d | 2011-03-28 22:49:15 +0000 | [diff] [blame] | 126 | // Determine whether this is an assembler temporary or normal label, if used. |
| 127 | bool isTemporary = false; |
| 128 | if (AllowTemporaryLabels) |
| 129 | isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix()); |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 130 | |
| 131 | StringMapEntry<bool> *NameEntry = &UsedNames.GetOrCreateValue(Name); |
| 132 | if (NameEntry->getValue()) { |
| 133 | assert(isTemporary && "Cannot rename non temporary symbols"); |
Benjamin Kramer | c18214a | 2011-04-09 11:26:27 +0000 | [diff] [blame] | 134 | SmallString<128> NewName = Name; |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 135 | do { |
Benjamin Kramer | c18214a | 2011-04-09 11:26:27 +0000 | [diff] [blame] | 136 | NewName.resize(Name.size()); |
| 137 | raw_svector_ostream(NewName) << NextUniqueID++; |
| 138 | NameEntry = &UsedNames.GetOrCreateValue(NewName); |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 139 | } while (NameEntry->getValue()); |
| 140 | } |
| 141 | NameEntry->setValue(true); |
Chris Lattner | c69485e | 2009-06-24 04:31:49 +0000 | [diff] [blame] | 142 | |
Chris Lattner | c28cc09 | 2010-03-15 06:15:35 +0000 | [diff] [blame] | 143 | // Ok, the entry doesn't already exist. Have the MCSymbol object itself refer |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 144 | // to the copy of the string that is embedded in the UsedNames entry. |
| 145 | MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary); |
| 146 | |
| 147 | return Result; |
Chris Lattner | c69485e | 2009-06-24 04:31:49 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 150 | MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) { |
Chris Lattner | 7c5b021 | 2009-10-19 22:49:00 +0000 | [diff] [blame] | 151 | SmallString<128> NameSV; |
| 152 | Name.toVector(NameSV); |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 153 | return GetOrCreateSymbol(NameSV.str()); |
Chris Lattner | 7c5b021 | 2009-10-19 22:49:00 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Chris Lattner | 1d72a76 | 2010-03-14 08:23:30 +0000 | [diff] [blame] | 156 | MCSymbol *MCContext::CreateTempSymbol() { |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 157 | SmallString<128> NameSV; |
Benjamin Kramer | c18214a | 2011-04-09 11:26:27 +0000 | [diff] [blame] | 158 | raw_svector_ostream(NameSV) |
| 159 | << MAI.getPrivateGlobalPrefix() << "tmp" << NextUniqueID++; |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 160 | return CreateSymbol(NameSV); |
Chris Lattner | 1d72a76 | 2010-03-14 08:23:30 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 163 | unsigned MCContext::NextInstance(int64_t LocalLabelVal) { |
Benjamin Kramer | 47f9a49 | 2010-05-18 12:15:34 +0000 | [diff] [blame] | 164 | MCLabel *&Label = Instances[LocalLabelVal]; |
| 165 | if (!Label) |
| 166 | Label = new (*this) MCLabel(0); |
| 167 | return Label->incInstance(); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | unsigned MCContext::GetInstance(int64_t LocalLabelVal) { |
Benjamin Kramer | 47f9a49 | 2010-05-18 12:15:34 +0000 | [diff] [blame] | 171 | MCLabel *&Label = Instances[LocalLabelVal]; |
| 172 | if (!Label) |
| 173 | Label = new (*this) MCLabel(0); |
| 174 | return Label->getInstance(); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | MCSymbol *MCContext::CreateDirectionalLocalSymbol(int64_t LocalLabelVal) { |
| 178 | return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) + |
| 179 | Twine(LocalLabelVal) + |
| 180 | "\2" + |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 181 | Twine(NextInstance(LocalLabelVal))); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 182 | } |
| 183 | MCSymbol *MCContext::GetDirectionalLocalSymbol(int64_t LocalLabelVal, |
| 184 | int bORf) { |
| 185 | return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) + |
| 186 | Twine(LocalLabelVal) + |
| 187 | "\2" + |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 188 | Twine(GetInstance(LocalLabelVal) + bORf)); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Daniel Dunbar | 2928c83 | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 191 | MCSymbol *MCContext::LookupSymbol(StringRef Name) const { |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 192 | return Symbols.lookup(Name); |
| 193 | } |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 194 | |
Roman Divacky | f145c13 | 2012-09-18 17:10:37 +0000 | [diff] [blame] | 195 | MCSymbol *MCContext::LookupSymbol(const Twine &Name) const { |
| 196 | SmallString<128> NameSV; |
| 197 | Name.toVector(NameSV); |
| 198 | return LookupSymbol(NameSV.str()); |
| 199 | } |
| 200 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 201 | //===----------------------------------------------------------------------===// |
| 202 | // Section Management |
| 203 | //===----------------------------------------------------------------------===// |
| 204 | |
| 205 | const MCSectionMachO *MCContext:: |
| 206 | getMachOSection(StringRef Segment, StringRef Section, |
| 207 | unsigned TypeAndAttributes, |
| 208 | unsigned Reserved2, SectionKind Kind) { |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 209 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 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. |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 213 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 214 | // Create the map if it doesn't already exist. |
| 215 | if (MachOUniquingMap == 0) |
| 216 | MachOUniquingMap = new MachOUniqueMapTy(); |
| 217 | MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)MachOUniquingMap; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 218 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 219 | // Form the name to look up. |
| 220 | SmallString<64> Name; |
| 221 | Name += Segment; |
| 222 | Name.push_back(','); |
| 223 | Name += Section; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 224 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 225 | // Do the lookup, if we have a hit, return it. |
| 226 | const MCSectionMachO *&Entry = Map[Name.str()]; |
| 227 | if (Entry) return Entry; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 228 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 229 | // Otherwise, return a new section. |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 230 | return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes, |
| 231 | Reserved2, Kind); |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 232 | } |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 233 | |
Rafael Espindola | 4283f4b | 2010-11-10 19:05:07 +0000 | [diff] [blame] | 234 | const MCSectionELF *MCContext:: |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 235 | getELFSection(StringRef Section, unsigned Type, unsigned Flags, |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 236 | SectionKind Kind) { |
| 237 | return getELFSection(Section, Type, Flags, Kind, 0, ""); |
| 238 | } |
| 239 | |
| 240 | const MCSectionELF *MCContext:: |
| 241 | getELFSection(StringRef Section, unsigned Type, unsigned Flags, |
| 242 | SectionKind Kind, unsigned EntrySize, StringRef Group) { |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 243 | if (ELFUniquingMap == 0) |
| 244 | ELFUniquingMap = new ELFUniqueMapTy(); |
| 245 | ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)ELFUniquingMap; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 246 | |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 247 | // Do the lookup, if we have a hit, return it. |
| 248 | StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section); |
| 249 | if (Entry.getValue()) return Entry.getValue(); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 250 | |
Jan Wen Voung | 186e7a0 | 2010-09-30 05:59:22 +0000 | [diff] [blame] | 251 | // Possibly refine the entry size first. |
| 252 | if (!EntrySize) { |
| 253 | EntrySize = MCSectionELF::DetermineEntrySize(Kind); |
| 254 | } |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 255 | |
| 256 | MCSymbol *GroupSym = NULL; |
| 257 | if (!Group.empty()) |
| 258 | GroupSym = GetOrCreateSymbol(Group); |
| 259 | |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 260 | MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags, |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 261 | Kind, EntrySize, GroupSym); |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 262 | Entry.setValue(Result); |
| 263 | return Result; |
| 264 | } |
| 265 | |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 266 | const MCSectionELF *MCContext::CreateELFGroupSection() { |
| 267 | MCSectionELF *Result = |
Rafael Espindola | c85dca6 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 268 | new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0, |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 269 | SectionKind::getReadOnly(), 4, NULL); |
| 270 | return Result; |
| 271 | } |
| 272 | |
Chris Lattner | 6e5ce28 | 2010-05-07 21:49:09 +0000 | [diff] [blame] | 273 | const MCSection *MCContext::getCOFFSection(StringRef Section, |
| 274 | unsigned Characteristics, |
| 275 | int Selection, |
| 276 | SectionKind Kind) { |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 277 | if (COFFUniquingMap == 0) |
| 278 | COFFUniquingMap = new COFFUniqueMapTy(); |
| 279 | COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)COFFUniquingMap; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 280 | |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 281 | // Do the lookup, if we have a hit, return it. |
| 282 | StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section); |
| 283 | if (Entry.getValue()) return Entry.getValue(); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 284 | |
Chris Lattner | 6e5ce28 | 2010-05-07 21:49:09 +0000 | [diff] [blame] | 285 | MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(), |
| 286 | Characteristics, |
| 287 | Selection, Kind); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 288 | |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 289 | Entry.setValue(Result); |
| 290 | return Result; |
| 291 | } |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 292 | |
| 293 | //===----------------------------------------------------------------------===// |
| 294 | // Dwarf Management |
| 295 | //===----------------------------------------------------------------------===// |
| 296 | |
| 297 | /// GetDwarfFile - takes a file name an number to place in the dwarf file and |
| 298 | /// directory tables. If the file number has already been allocated it is an |
| 299 | /// error and zero is returned and the client reports the error, else the |
| 300 | /// allocated file number is returned. The file numbers may be in any order. |
Nick Lewycky | 44d798d | 2011-10-17 23:05:28 +0000 | [diff] [blame] | 301 | unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName, |
Manman Ren | 3de61b4 | 2013-03-07 01:42:00 +0000 | [diff] [blame] | 302 | unsigned FileNumber, unsigned CUID) { |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 303 | // TODO: a FileNumber of zero says to use the next available file number. |
| 304 | // Note: in GenericAsmParser::ParseDirectiveFile() FileNumber was checked |
| 305 | // to not be less than one. This needs to be change to be not less than zero. |
| 306 | |
Manman Ren | 9e999ad | 2013-03-12 20:17:00 +0000 | [diff] [blame] | 307 | SmallVectorImpl<MCDwarfFile *>& MCDwarfFiles = MCDwarfFilesCUMap[CUID]; |
| 308 | SmallVectorImpl<StringRef>& MCDwarfDirs = MCDwarfDirsCUMap[CUID]; |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 309 | // Make space for this FileNumber in the MCDwarfFiles vector if needed. |
| 310 | if (FileNumber >= MCDwarfFiles.size()) { |
| 311 | MCDwarfFiles.resize(FileNumber + 1); |
| 312 | } else { |
| 313 | MCDwarfFile *&ExistingFile = MCDwarfFiles[FileNumber]; |
| 314 | if (ExistingFile) |
| 315 | // It is an error to use see the same number more than once. |
| 316 | return 0; |
| 317 | } |
| 318 | |
| 319 | // Get the new MCDwarfFile slot for this FileNumber. |
| 320 | MCDwarfFile *&File = MCDwarfFiles[FileNumber]; |
| 321 | |
Nick Lewycky | 44d798d | 2011-10-17 23:05:28 +0000 | [diff] [blame] | 322 | if (Directory.empty()) { |
| 323 | // Separate the directory part from the basename of the FileName. |
NAKAMURA Takumi | 4c215c0 | 2012-07-03 03:59:29 +0000 | [diff] [blame] | 324 | StringRef tFileName = sys::path::filename(FileName); |
| 325 | if (!tFileName.empty()) { |
| 326 | Directory = sys::path::parent_path(FileName); |
| 327 | if (!Directory.empty()) |
NAKAMURA Takumi | a6f1453 | 2012-07-03 06:01:27 +0000 | [diff] [blame] | 328 | FileName = tFileName; |
Kevin Enderby | 064e48a | 2011-11-01 23:39:05 +0000 | [diff] [blame] | 329 | } |
Nick Lewycky | 44d798d | 2011-10-17 23:05:28 +0000 | [diff] [blame] | 330 | } |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 331 | |
| 332 | // Find or make a entry in the MCDwarfDirs vector for this Directory. |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 333 | // Capture directory name. |
Nick Lewycky | 44d798d | 2011-10-17 23:05:28 +0000 | [diff] [blame] | 334 | unsigned DirIndex; |
| 335 | if (Directory.empty()) { |
| 336 | // For FileNames with no directories a DirIndex of 0 is used. |
| 337 | DirIndex = 0; |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 338 | } else { |
Nick Lewycky | 18ad76b | 2011-10-12 20:20:48 +0000 | [diff] [blame] | 339 | DirIndex = 0; |
| 340 | for (unsigned End = MCDwarfDirs.size(); DirIndex < End; DirIndex++) { |
Benjamin Kramer | 3bce5ad | 2010-07-29 13:53:19 +0000 | [diff] [blame] | 341 | if (Directory == MCDwarfDirs[DirIndex]) |
Kevin Enderby | 232ab94 | 2010-08-31 22:55:11 +0000 | [diff] [blame] | 342 | break; |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 343 | } |
| 344 | if (DirIndex >= MCDwarfDirs.size()) { |
Benjamin Kramer | 3bce5ad | 2010-07-29 13:53:19 +0000 | [diff] [blame] | 345 | char *Buf = static_cast<char *>(Allocate(Directory.size())); |
| 346 | memcpy(Buf, Directory.data(), Directory.size()); |
| 347 | MCDwarfDirs.push_back(StringRef(Buf, Directory.size())); |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 348 | } |
Kevin Enderby | b07ce60 | 2010-08-09 22:52:14 +0000 | [diff] [blame] | 349 | // The DirIndex is one based, as DirIndex of 0 is used for FileNames with |
| 350 | // no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the |
Nick Lewycky | 44d798d | 2011-10-17 23:05:28 +0000 | [diff] [blame] | 351 | // directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames |
| 352 | // are stored at MCDwarfFiles[FileNumber].Name . |
Kevin Enderby | b07ce60 | 2010-08-09 22:52:14 +0000 | [diff] [blame] | 353 | DirIndex++; |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 354 | } |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 355 | |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 356 | // Now make the MCDwarfFile entry and place it in the slot in the MCDwarfFiles |
| 357 | // vector. |
Nick Lewycky | 44d798d | 2011-10-17 23:05:28 +0000 | [diff] [blame] | 358 | char *Buf = static_cast<char *>(Allocate(FileName.size())); |
| 359 | memcpy(Buf, FileName.data(), FileName.size()); |
| 360 | File = new (*this) MCDwarfFile(StringRef(Buf, FileName.size()), DirIndex); |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 361 | |
| 362 | // return the allocated FileNumber. |
| 363 | return FileNumber; |
| 364 | } |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 365 | |
Kevin Enderby | 3f55c24 | 2010-10-04 20:17:24 +0000 | [diff] [blame] | 366 | /// isValidDwarfFileNumber - takes a dwarf file number and returns true if it |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 367 | /// currently is assigned and false otherwise. |
Manman Ren | 3de61b4 | 2013-03-07 01:42:00 +0000 | [diff] [blame] | 368 | bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) { |
Manman Ren | 9e999ad | 2013-03-12 20:17:00 +0000 | [diff] [blame] | 369 | SmallVectorImpl<MCDwarfFile *>& MCDwarfFiles = MCDwarfFilesCUMap[CUID]; |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 370 | if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size()) |
| 371 | return false; |
| 372 | |
Kevin Enderby | 3f55c24 | 2010-10-04 20:17:24 +0000 | [diff] [blame] | 373 | return MCDwarfFiles[FileNumber] != 0; |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 374 | } |
Jim Grosbach | 82f4ce5 | 2012-01-26 23:20:11 +0000 | [diff] [blame] | 375 | |
| 376 | void MCContext::FatalError(SMLoc Loc, const Twine &Msg) { |
| 377 | // If we have a source manager and a location, use it. Otherwise just |
| 378 | // use the generic report_fatal_error(). |
| 379 | if (!SrcMgr || Loc == SMLoc()) |
| 380 | report_fatal_error(Msg); |
| 381 | |
| 382 | // Use the source manager to print the message. |
| 383 | SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg); |
| 384 | |
| 385 | // If we reached here, we are failing ungracefully. Run the interrupt handlers |
| 386 | // to make sure any special cleanups get done, in particular that we remove |
| 387 | // files registered with RemoveFileOnSignal. |
| 388 | sys::RunInterruptHandlers(); |
| 389 | exit(1); |
| 390 | } |