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 | 1a5c28f | 2010-03-11 22:56:10 +0000 | [diff] [blame] | 11 | #include "llvm/MC/MCAsmInfo.h" |
Evan Cheng | 0e6a052 | 2011-07-18 20:57:22 +0000 | [diff] [blame] | 12 | #include "llvm/MC/MCRegisterInfo.h" |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 13 | #include "llvm/MC/MCSectionMachO.h" |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 14 | #include "llvm/MC/MCSectionELF.h" |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 15 | #include "llvm/MC/MCSectionCOFF.h" |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCSymbol.h" |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 17 | #include "llvm/MC/MCLabel.h" |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCDwarf.h" |
Rafael Espindola | 89b9372 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetAsmInfo.h" |
Chris Lattner | 7c5b021 | 2009-10-19 22:49:00 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallString.h" |
| 21 | #include "llvm/ADT/Twine.h" |
Rafael Espindola | c85dca6 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ELF.h" |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 23 | using namespace llvm; |
| 24 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 25 | typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy; |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 26 | typedef StringMap<const MCSectionELF*> ELFUniqueMapTy; |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 27 | typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy; |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 28 | |
| 29 | |
Evan Cheng | 0e6a052 | 2011-07-18 20:57:22 +0000 | [diff] [blame] | 30 | MCContext::MCContext(const MCAsmInfo &mai, const MCRegisterInfo &mri, |
| 31 | const TargetAsmInfo *tai) : |
| 32 | MAI(mai), MRI(mri), TAI(tai), |
Eli Friedman | f4387d9 | 2011-04-18 05:02:31 +0000 | [diff] [blame] | 33 | Allocator(), Symbols(Allocator), UsedNames(Allocator), |
| 34 | NextUniqueID(0), |
Daniel Dunbar | c6cf43d | 2011-03-28 22:49:15 +0000 | [diff] [blame] | 35 | CurrentDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0), |
| 36 | AllowTemporaryLabels(true) { |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 37 | MachOUniquingMap = 0; |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 38 | ELFUniquingMap = 0; |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 39 | COFFUniquingMap = 0; |
Kevin Enderby | f187ac5 | 2010-06-28 21:45:58 +0000 | [diff] [blame] | 40 | |
| 41 | SecureLogFile = getenv("AS_SECURE_LOG_FILE"); |
| 42 | SecureLog = 0; |
| 43 | SecureLogUsed = false; |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 44 | |
| 45 | DwarfLocSeen = false; |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | MCContext::~MCContext() { |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 49 | // NOTE: The symbols are all allocated out of a bump pointer allocator, |
Chris Lattner | c9d3152 | 2009-08-13 00:21:53 +0000 | [diff] [blame] | 50 | // we don't need to free them here. |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 51 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 52 | // If we have the MachO uniquing map, free it. |
| 53 | delete (MachOUniqueMapTy*)MachOUniquingMap; |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 54 | delete (ELFUniqueMapTy*)ELFUniquingMap; |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 55 | delete (COFFUniqueMapTy*)COFFUniquingMap; |
Kevin Enderby | f187ac5 | 2010-06-28 21:45:58 +0000 | [diff] [blame] | 56 | |
| 57 | // If the stream for the .secure_log_unique directive was created free it. |
| 58 | delete (raw_ostream*)SecureLog; |
Rafael Espindola | 89b9372 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 59 | |
| 60 | delete TAI; |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 63 | //===----------------------------------------------------------------------===// |
| 64 | // Symbol Manipulation |
| 65 | //===----------------------------------------------------------------------===// |
| 66 | |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 67 | MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) { |
Chris Lattner | 00685bb | 2010-03-10 01:29:27 +0000 | [diff] [blame] | 68 | assert(!Name.empty() && "Normal symbols cannot be unnamed!"); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 69 | |
Chris Lattner | c28cc09 | 2010-03-15 06:15:35 +0000 | [diff] [blame] | 70 | // Do the lookup and get the entire StringMapEntry. We want access to the |
| 71 | // key if we are creating the entry. |
| 72 | StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name); |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 73 | MCSymbol *Sym = Entry.getValue(); |
| 74 | |
| 75 | if (Sym) |
| 76 | return Sym; |
| 77 | |
| 78 | Sym = CreateSymbol(Name); |
| 79 | Entry.setValue(Sym); |
| 80 | return Sym; |
| 81 | } |
| 82 | |
| 83 | MCSymbol *MCContext::CreateSymbol(StringRef Name) { |
Daniel Dunbar | c6cf43d | 2011-03-28 22:49:15 +0000 | [diff] [blame] | 84 | // Determine whether this is an assembler temporary or normal label, if used. |
| 85 | bool isTemporary = false; |
| 86 | if (AllowTemporaryLabels) |
| 87 | isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix()); |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 88 | |
| 89 | StringMapEntry<bool> *NameEntry = &UsedNames.GetOrCreateValue(Name); |
| 90 | if (NameEntry->getValue()) { |
| 91 | assert(isTemporary && "Cannot rename non temporary symbols"); |
Benjamin Kramer | c18214a | 2011-04-09 11:26:27 +0000 | [diff] [blame] | 92 | SmallString<128> NewName = Name; |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 93 | do { |
Benjamin Kramer | c18214a | 2011-04-09 11:26:27 +0000 | [diff] [blame] | 94 | NewName.resize(Name.size()); |
| 95 | raw_svector_ostream(NewName) << NextUniqueID++; |
| 96 | NameEntry = &UsedNames.GetOrCreateValue(NewName); |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 97 | } while (NameEntry->getValue()); |
| 98 | } |
| 99 | NameEntry->setValue(true); |
Chris Lattner | c69485e | 2009-06-24 04:31:49 +0000 | [diff] [blame] | 100 | |
Chris Lattner | c28cc09 | 2010-03-15 06:15:35 +0000 | [diff] [blame] | 101 | // 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] | 102 | // to the copy of the string that is embedded in the UsedNames entry. |
| 103 | MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary); |
| 104 | |
| 105 | return Result; |
Chris Lattner | c69485e | 2009-06-24 04:31:49 +0000 | [diff] [blame] | 106 | } |
| 107 | |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 108 | MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) { |
Chris Lattner | 7c5b021 | 2009-10-19 22:49:00 +0000 | [diff] [blame] | 109 | SmallString<128> NameSV; |
| 110 | Name.toVector(NameSV); |
Chris Lattner | 9b97a73 | 2010-03-30 18:10:53 +0000 | [diff] [blame] | 111 | return GetOrCreateSymbol(NameSV.str()); |
Chris Lattner | 7c5b021 | 2009-10-19 22:49:00 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Chris Lattner | 1d72a76 | 2010-03-14 08:23:30 +0000 | [diff] [blame] | 114 | MCSymbol *MCContext::CreateTempSymbol() { |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 115 | SmallString<128> NameSV; |
Benjamin Kramer | c18214a | 2011-04-09 11:26:27 +0000 | [diff] [blame] | 116 | raw_svector_ostream(NameSV) |
| 117 | << MAI.getPrivateGlobalPrefix() << "tmp" << NextUniqueID++; |
Rafael Espindola | 9f44724 | 2010-12-01 20:46:11 +0000 | [diff] [blame] | 118 | return CreateSymbol(NameSV); |
Chris Lattner | 1d72a76 | 2010-03-14 08:23:30 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 121 | unsigned MCContext::NextInstance(int64_t LocalLabelVal) { |
Benjamin Kramer | 47f9a49 | 2010-05-18 12:15:34 +0000 | [diff] [blame] | 122 | MCLabel *&Label = Instances[LocalLabelVal]; |
| 123 | if (!Label) |
| 124 | Label = new (*this) MCLabel(0); |
| 125 | return Label->incInstance(); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | unsigned MCContext::GetInstance(int64_t LocalLabelVal) { |
Benjamin Kramer | 47f9a49 | 2010-05-18 12:15:34 +0000 | [diff] [blame] | 129 | MCLabel *&Label = Instances[LocalLabelVal]; |
| 130 | if (!Label) |
| 131 | Label = new (*this) MCLabel(0); |
| 132 | return Label->getInstance(); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | MCSymbol *MCContext::CreateDirectionalLocalSymbol(int64_t LocalLabelVal) { |
| 136 | return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) + |
| 137 | Twine(LocalLabelVal) + |
| 138 | "\2" + |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 139 | Twine(NextInstance(LocalLabelVal))); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 140 | } |
| 141 | MCSymbol *MCContext::GetDirectionalLocalSymbol(int64_t LocalLabelVal, |
| 142 | int bORf) { |
| 143 | return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) + |
| 144 | Twine(LocalLabelVal) + |
| 145 | "\2" + |
Duncan Sands | 3472766 | 2010-07-12 08:16:59 +0000 | [diff] [blame] | 146 | Twine(GetInstance(LocalLabelVal) + bORf)); |
Kevin Enderby | ebe7fcd | 2010-05-17 23:08:19 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Daniel Dunbar | 2928c83 | 2009-11-06 10:58:06 +0000 | [diff] [blame] | 149 | MCSymbol *MCContext::LookupSymbol(StringRef Name) const { |
Daniel Dunbar | ecc63f8 | 2009-06-23 22:01:43 +0000 | [diff] [blame] | 150 | return Symbols.lookup(Name); |
| 151 | } |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 152 | |
| 153 | //===----------------------------------------------------------------------===// |
| 154 | // Section Management |
| 155 | //===----------------------------------------------------------------------===// |
| 156 | |
| 157 | const MCSectionMachO *MCContext:: |
| 158 | getMachOSection(StringRef Segment, StringRef Section, |
| 159 | unsigned TypeAndAttributes, |
| 160 | unsigned Reserved2, SectionKind Kind) { |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 161 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 162 | // We unique sections by their segment/section pair. The returned section |
| 163 | // may not have the same flags as the requested section, if so this should be |
| 164 | // diagnosed by the client as an error. |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 165 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 166 | // Create the map if it doesn't already exist. |
| 167 | if (MachOUniquingMap == 0) |
| 168 | MachOUniquingMap = new MachOUniqueMapTy(); |
| 169 | MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)MachOUniquingMap; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 170 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 171 | // Form the name to look up. |
| 172 | SmallString<64> Name; |
| 173 | Name += Segment; |
| 174 | Name.push_back(','); |
| 175 | Name += Section; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 176 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 177 | // Do the lookup, if we have a hit, return it. |
| 178 | const MCSectionMachO *&Entry = Map[Name.str()]; |
| 179 | if (Entry) return Entry; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 180 | |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 181 | // Otherwise, return a new section. |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 182 | return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes, |
| 183 | Reserved2, Kind); |
Chris Lattner | f0559e4 | 2010-04-08 20:30:37 +0000 | [diff] [blame] | 184 | } |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 185 | |
Rafael Espindola | 4283f4b | 2010-11-10 19:05:07 +0000 | [diff] [blame] | 186 | const MCSectionELF *MCContext:: |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 187 | getELFSection(StringRef Section, unsigned Type, unsigned Flags, |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 188 | SectionKind Kind) { |
| 189 | return getELFSection(Section, Type, Flags, Kind, 0, ""); |
| 190 | } |
| 191 | |
| 192 | const MCSectionELF *MCContext:: |
| 193 | getELFSection(StringRef Section, unsigned Type, unsigned Flags, |
| 194 | SectionKind Kind, unsigned EntrySize, StringRef Group) { |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 195 | if (ELFUniquingMap == 0) |
| 196 | ELFUniquingMap = new ELFUniqueMapTy(); |
| 197 | ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)ELFUniquingMap; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 198 | |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 199 | // Do the lookup, if we have a hit, return it. |
| 200 | StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section); |
| 201 | if (Entry.getValue()) return Entry.getValue(); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 202 | |
Jan Wen Voung | 186e7a0 | 2010-09-30 05:59:22 +0000 | [diff] [blame] | 203 | // Possibly refine the entry size first. |
| 204 | if (!EntrySize) { |
| 205 | EntrySize = MCSectionELF::DetermineEntrySize(Kind); |
| 206 | } |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 207 | |
| 208 | MCSymbol *GroupSym = NULL; |
| 209 | if (!Group.empty()) |
| 210 | GroupSym = GetOrCreateSymbol(Group); |
| 211 | |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 212 | MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags, |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 213 | Kind, EntrySize, GroupSym); |
Chris Lattner | 74aae47 | 2010-04-08 21:26:26 +0000 | [diff] [blame] | 214 | Entry.setValue(Result); |
| 215 | return Result; |
| 216 | } |
| 217 | |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 218 | const MCSectionELF *MCContext::CreateELFGroupSection() { |
| 219 | MCSectionELF *Result = |
Rafael Espindola | c85dca6 | 2011-01-23 04:28:49 +0000 | [diff] [blame] | 220 | new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0, |
Rafael Espindola | 2ff9e83 | 2010-11-11 18:13:52 +0000 | [diff] [blame] | 221 | SectionKind::getReadOnly(), 4, NULL); |
| 222 | return Result; |
| 223 | } |
| 224 | |
Chris Lattner | 6e5ce28 | 2010-05-07 21:49:09 +0000 | [diff] [blame] | 225 | const MCSection *MCContext::getCOFFSection(StringRef Section, |
| 226 | unsigned Characteristics, |
| 227 | int Selection, |
| 228 | SectionKind Kind) { |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 229 | if (COFFUniquingMap == 0) |
| 230 | COFFUniquingMap = new COFFUniqueMapTy(); |
| 231 | COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)COFFUniquingMap; |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 232 | |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 233 | // Do the lookup, if we have a hit, return it. |
| 234 | StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section); |
| 235 | if (Entry.getValue()) return Entry.getValue(); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 236 | |
Chris Lattner | 6e5ce28 | 2010-05-07 21:49:09 +0000 | [diff] [blame] | 237 | MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(), |
| 238 | Characteristics, |
| 239 | Selection, Kind); |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 240 | |
Chris Lattner | eb40a0f | 2010-05-07 17:17:41 +0000 | [diff] [blame] | 241 | Entry.setValue(Result); |
| 242 | return Result; |
| 243 | } |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 244 | |
| 245 | //===----------------------------------------------------------------------===// |
| 246 | // Dwarf Management |
| 247 | //===----------------------------------------------------------------------===// |
| 248 | |
| 249 | /// GetDwarfFile - takes a file name an number to place in the dwarf file and |
| 250 | /// directory tables. If the file number has already been allocated it is an |
| 251 | /// error and zero is returned and the client reports the error, else the |
| 252 | /// allocated file number is returned. The file numbers may be in any order. |
| 253 | unsigned MCContext::GetDwarfFile(StringRef FileName, unsigned FileNumber) { |
| 254 | // TODO: a FileNumber of zero says to use the next available file number. |
| 255 | // Note: in GenericAsmParser::ParseDirectiveFile() FileNumber was checked |
| 256 | // to not be less than one. This needs to be change to be not less than zero. |
| 257 | |
| 258 | // Make space for this FileNumber in the MCDwarfFiles vector if needed. |
| 259 | if (FileNumber >= MCDwarfFiles.size()) { |
| 260 | MCDwarfFiles.resize(FileNumber + 1); |
| 261 | } else { |
| 262 | MCDwarfFile *&ExistingFile = MCDwarfFiles[FileNumber]; |
| 263 | if (ExistingFile) |
| 264 | // It is an error to use see the same number more than once. |
| 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | // Get the new MCDwarfFile slot for this FileNumber. |
| 269 | MCDwarfFile *&File = MCDwarfFiles[FileNumber]; |
| 270 | |
| 271 | // Separate the directory part from the basename of the FileName. |
| 272 | std::pair<StringRef, StringRef> Slash = FileName.rsplit('/'); |
| 273 | |
| 274 | // Find or make a entry in the MCDwarfDirs vector for this Directory. |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 275 | StringRef Name; |
| 276 | unsigned DirIndex; |
| 277 | // Capture directory name. |
| 278 | if (Slash.second.empty()) { |
| 279 | Name = Slash.first; |
| 280 | DirIndex = 0; // For FileNames with no directories a DirIndex of 0 is used. |
| 281 | } else { |
Benjamin Kramer | 3bce5ad | 2010-07-29 13:53:19 +0000 | [diff] [blame] | 282 | StringRef Directory = Slash.first; |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 283 | Name = Slash.second; |
Kevin Enderby | b07ce60 | 2010-08-09 22:52:14 +0000 | [diff] [blame] | 284 | for (DirIndex = 0; DirIndex < MCDwarfDirs.size(); DirIndex++) { |
Benjamin Kramer | 3bce5ad | 2010-07-29 13:53:19 +0000 | [diff] [blame] | 285 | if (Directory == MCDwarfDirs[DirIndex]) |
Kevin Enderby | 232ab94 | 2010-08-31 22:55:11 +0000 | [diff] [blame] | 286 | break; |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 287 | } |
| 288 | if (DirIndex >= MCDwarfDirs.size()) { |
Benjamin Kramer | 3bce5ad | 2010-07-29 13:53:19 +0000 | [diff] [blame] | 289 | char *Buf = static_cast<char *>(Allocate(Directory.size())); |
| 290 | memcpy(Buf, Directory.data(), Directory.size()); |
| 291 | MCDwarfDirs.push_back(StringRef(Buf, Directory.size())); |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 292 | } |
Kevin Enderby | b07ce60 | 2010-08-09 22:52:14 +0000 | [diff] [blame] | 293 | // The DirIndex is one based, as DirIndex of 0 is used for FileNames with |
| 294 | // no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the |
| 295 | // directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames are |
| 296 | // stored at MCDwarfFiles[FileNumber].Name . |
| 297 | DirIndex++; |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 298 | } |
Michael J. Spencer | 326990f | 2010-11-26 04:16:08 +0000 | [diff] [blame] | 299 | |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 300 | // Now make the MCDwarfFile entry and place it in the slot in the MCDwarfFiles |
| 301 | // vector. |
Benjamin Kramer | 3bce5ad | 2010-07-29 13:53:19 +0000 | [diff] [blame] | 302 | char *Buf = static_cast<char *>(Allocate(Name.size())); |
| 303 | memcpy(Buf, Name.data(), Name.size()); |
| 304 | File = new (*this) MCDwarfFile(StringRef(Buf, Name.size()), DirIndex); |
Kevin Enderby | 7cbf73a | 2010-07-28 20:55:35 +0000 | [diff] [blame] | 305 | |
| 306 | // return the allocated FileNumber. |
| 307 | return FileNumber; |
| 308 | } |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 309 | |
Kevin Enderby | 3f55c24 | 2010-10-04 20:17:24 +0000 | [diff] [blame] | 310 | /// isValidDwarfFileNumber - takes a dwarf file number and returns true if it |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 311 | /// currently is assigned and false otherwise. |
Kevin Enderby | 3f55c24 | 2010-10-04 20:17:24 +0000 | [diff] [blame] | 312 | bool MCContext::isValidDwarfFileNumber(unsigned FileNumber) { |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 313 | if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size()) |
| 314 | return false; |
| 315 | |
Kevin Enderby | 3f55c24 | 2010-10-04 20:17:24 +0000 | [diff] [blame] | 316 | return MCDwarfFiles[FileNumber] != 0; |
Kevin Enderby | c1840b3 | 2010-08-24 20:32:42 +0000 | [diff] [blame] | 317 | } |