blob: a1bc9d8b6f5742db9f96fed860feae8cfc2d5e6f [file] [log] [blame]
Daniel Dunbarba1da8a2009-06-23 23:39:15 +00001//===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
Daniel Dunbarecc63f82009-06-23 22:01:43 +00002//
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 Lattner1a5c28f2010-03-11 22:56:10 +000011#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerf0559e42010-04-08 20:30:37 +000012#include "llvm/MC/MCSectionMachO.h"
Chris Lattner74aae472010-04-08 21:26:26 +000013#include "llvm/MC/MCSectionELF.h"
Chris Lattnereb40a0f2010-05-07 17:17:41 +000014#include "llvm/MC/MCSectionCOFF.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000015#include "llvm/MC/MCSymbol.h"
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +000016#include "llvm/MC/MCLabel.h"
Kevin Enderby7cbf73a2010-07-28 20:55:35 +000017#include "llvm/MC/MCDwarf.h"
Chris Lattner7c5b0212009-10-19 22:49:00 +000018#include "llvm/ADT/SmallString.h"
19#include "llvm/ADT/Twine.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000020using namespace llvm;
21
Chris Lattnerf0559e42010-04-08 20:30:37 +000022typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
Chris Lattner74aae472010-04-08 21:26:26 +000023typedef StringMap<const MCSectionELF*> ELFUniqueMapTy;
Chris Lattnereb40a0f2010-05-07 17:17:41 +000024typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy;
Chris Lattnerf0559e42010-04-08 20:30:37 +000025
26
Kevin Enderbyc1840b32010-08-24 20:32:42 +000027MCContext::MCContext(const MCAsmInfo &mai) : MAI(mai), NextUniqueID(0),
Rafael Espindolaaf6b58082010-11-16 21:20:32 +000028 CurrentDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0) {
Chris Lattnerf0559e42010-04-08 20:30:37 +000029 MachOUniquingMap = 0;
Chris Lattner74aae472010-04-08 21:26:26 +000030 ELFUniquingMap = 0;
Chris Lattnereb40a0f2010-05-07 17:17:41 +000031 COFFUniquingMap = 0;
Kevin Enderbyf187ac52010-06-28 21:45:58 +000032
33 SecureLogFile = getenv("AS_SECURE_LOG_FILE");
34 SecureLog = 0;
35 SecureLogUsed = false;
Kevin Enderbyc1840b32010-08-24 20:32:42 +000036
37 DwarfLocSeen = false;
Daniel Dunbarecc63f82009-06-23 22:01:43 +000038}
39
40MCContext::~MCContext() {
Chris Lattnerf0559e42010-04-08 20:30:37 +000041 // NOTE: The symbols are all allocated out of a bump pointer allocator,
Chris Lattnerc9d31522009-08-13 00:21:53 +000042 // we don't need to free them here.
Michael J. Spencer326990f2010-11-26 04:16:08 +000043
Chris Lattnerf0559e42010-04-08 20:30:37 +000044 // If we have the MachO uniquing map, free it.
45 delete (MachOUniqueMapTy*)MachOUniquingMap;
Chris Lattner74aae472010-04-08 21:26:26 +000046 delete (ELFUniqueMapTy*)ELFUniquingMap;
Chris Lattnereb40a0f2010-05-07 17:17:41 +000047 delete (COFFUniqueMapTy*)COFFUniquingMap;
Kevin Enderbyf187ac52010-06-28 21:45:58 +000048
49 // If the stream for the .secure_log_unique directive was created free it.
50 delete (raw_ostream*)SecureLog;
Daniel Dunbarecc63f82009-06-23 22:01:43 +000051}
52
Chris Lattnerf0559e42010-04-08 20:30:37 +000053//===----------------------------------------------------------------------===//
54// Symbol Manipulation
55//===----------------------------------------------------------------------===//
56
Chris Lattner9b97a732010-03-30 18:10:53 +000057MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
Chris Lattner00685bb2010-03-10 01:29:27 +000058 assert(!Name.empty() && "Normal symbols cannot be unnamed!");
Michael J. Spencer326990f2010-11-26 04:16:08 +000059
Chris Lattnerc28cc092010-03-15 06:15:35 +000060 // Do the lookup and get the entire StringMapEntry. We want access to the
61 // key if we are creating the entry.
62 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
Rafael Espindola9f447242010-12-01 20:46:11 +000063 MCSymbol *Sym = Entry.getValue();
64
65 if (Sym)
66 return Sym;
67
68 Sym = CreateSymbol(Name);
69 Entry.setValue(Sym);
70 return Sym;
71}
72
73MCSymbol *MCContext::CreateSymbol(StringRef Name) {
74 // Determine whether this is an assembler temporary or normal label.
75 bool isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix());
76
77 StringMapEntry<bool> *NameEntry = &UsedNames.GetOrCreateValue(Name);
78 if (NameEntry->getValue()) {
79 assert(isTemporary && "Cannot rename non temporary symbols");
80 SmallString<128> NewName;
81 do {
82 Twine T = Name + Twine(NextUniqueID++);
83 T.toVector(NewName);
84 StringRef foo = NewName;
85 NameEntry = &UsedNames.GetOrCreateValue(foo);
86 } while (NameEntry->getValue());
87 }
88 NameEntry->setValue(true);
Chris Lattnerc69485e2009-06-24 04:31:49 +000089
Chris Lattnerc28cc092010-03-15 06:15:35 +000090 // Ok, the entry doesn't already exist. Have the MCSymbol object itself refer
Rafael Espindola9f447242010-12-01 20:46:11 +000091 // to the copy of the string that is embedded in the UsedNames entry.
92 MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary);
93
94 return Result;
Chris Lattnerc69485e2009-06-24 04:31:49 +000095}
96
Chris Lattner9b97a732010-03-30 18:10:53 +000097MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
Chris Lattner7c5b0212009-10-19 22:49:00 +000098 SmallString<128> NameSV;
99 Name.toVector(NameSV);
Chris Lattner9b97a732010-03-30 18:10:53 +0000100 return GetOrCreateSymbol(NameSV.str());
Chris Lattner7c5b0212009-10-19 22:49:00 +0000101}
102
Chris Lattner1d72a762010-03-14 08:23:30 +0000103MCSymbol *MCContext::CreateTempSymbol() {
Rafael Espindola9f447242010-12-01 20:46:11 +0000104 SmallString<128> NameSV;
105 Twine Name = Twine(MAI.getPrivateGlobalPrefix()) + "tmp" +
106 Twine(NextUniqueID++);
107 Name.toVector(NameSV);
108 return CreateSymbol(NameSV);
Chris Lattner1d72a762010-03-14 08:23:30 +0000109}
110
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000111unsigned MCContext::NextInstance(int64_t LocalLabelVal) {
Benjamin Kramer47f9a492010-05-18 12:15:34 +0000112 MCLabel *&Label = Instances[LocalLabelVal];
113 if (!Label)
114 Label = new (*this) MCLabel(0);
115 return Label->incInstance();
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000116}
117
118unsigned MCContext::GetInstance(int64_t LocalLabelVal) {
Benjamin Kramer47f9a492010-05-18 12:15:34 +0000119 MCLabel *&Label = Instances[LocalLabelVal];
120 if (!Label)
121 Label = new (*this) MCLabel(0);
122 return Label->getInstance();
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000123}
124
125MCSymbol *MCContext::CreateDirectionalLocalSymbol(int64_t LocalLabelVal) {
126 return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
127 Twine(LocalLabelVal) +
128 "\2" +
Duncan Sands34727662010-07-12 08:16:59 +0000129 Twine(NextInstance(LocalLabelVal)));
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000130}
131MCSymbol *MCContext::GetDirectionalLocalSymbol(int64_t LocalLabelVal,
132 int bORf) {
133 return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
134 Twine(LocalLabelVal) +
135 "\2" +
Duncan Sands34727662010-07-12 08:16:59 +0000136 Twine(GetInstance(LocalLabelVal) + bORf));
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000137}
138
Daniel Dunbar2928c832009-11-06 10:58:06 +0000139MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
Daniel Dunbarecc63f82009-06-23 22:01:43 +0000140 return Symbols.lookup(Name);
141}
Chris Lattnerf0559e42010-04-08 20:30:37 +0000142
143//===----------------------------------------------------------------------===//
144// Section Management
145//===----------------------------------------------------------------------===//
146
147const MCSectionMachO *MCContext::
148getMachOSection(StringRef Segment, StringRef Section,
149 unsigned TypeAndAttributes,
150 unsigned Reserved2, SectionKind Kind) {
Michael J. Spencer326990f2010-11-26 04:16:08 +0000151
Chris Lattnerf0559e42010-04-08 20:30:37 +0000152 // We unique sections by their segment/section pair. The returned section
153 // may not have the same flags as the requested section, if so this should be
154 // diagnosed by the client as an error.
Michael J. Spencer326990f2010-11-26 04:16:08 +0000155
Chris Lattnerf0559e42010-04-08 20:30:37 +0000156 // Create the map if it doesn't already exist.
157 if (MachOUniquingMap == 0)
158 MachOUniquingMap = new MachOUniqueMapTy();
159 MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)MachOUniquingMap;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000160
Chris Lattnerf0559e42010-04-08 20:30:37 +0000161 // Form the name to look up.
162 SmallString<64> Name;
163 Name += Segment;
164 Name.push_back(',');
165 Name += Section;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000166
Chris Lattnerf0559e42010-04-08 20:30:37 +0000167 // Do the lookup, if we have a hit, return it.
168 const MCSectionMachO *&Entry = Map[Name.str()];
169 if (Entry) return Entry;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000170
Chris Lattnerf0559e42010-04-08 20:30:37 +0000171 // Otherwise, return a new section.
Chris Lattner74aae472010-04-08 21:26:26 +0000172 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
173 Reserved2, Kind);
Chris Lattnerf0559e42010-04-08 20:30:37 +0000174}
Chris Lattner74aae472010-04-08 21:26:26 +0000175
Rafael Espindola4283f4b2010-11-10 19:05:07 +0000176const MCSectionELF *MCContext::
Chris Lattner74aae472010-04-08 21:26:26 +0000177getELFSection(StringRef Section, unsigned Type, unsigned Flags,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000178 SectionKind Kind) {
179 return getELFSection(Section, Type, Flags, Kind, 0, "");
180}
181
182const MCSectionELF *MCContext::
183getELFSection(StringRef Section, unsigned Type, unsigned Flags,
184 SectionKind Kind, unsigned EntrySize, StringRef Group) {
Chris Lattner74aae472010-04-08 21:26:26 +0000185 if (ELFUniquingMap == 0)
186 ELFUniquingMap = new ELFUniqueMapTy();
187 ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)ELFUniquingMap;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000188
Chris Lattner74aae472010-04-08 21:26:26 +0000189 // Do the lookup, if we have a hit, return it.
190 StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section);
191 if (Entry.getValue()) return Entry.getValue();
Michael J. Spencer326990f2010-11-26 04:16:08 +0000192
Jan Wen Voung186e7a02010-09-30 05:59:22 +0000193 // Possibly refine the entry size first.
194 if (!EntrySize) {
195 EntrySize = MCSectionELF::DetermineEntrySize(Kind);
196 }
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000197
198 MCSymbol *GroupSym = NULL;
199 if (!Group.empty())
200 GroupSym = GetOrCreateSymbol(Group);
201
Chris Lattner74aae472010-04-08 21:26:26 +0000202 MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000203 Kind, EntrySize, GroupSym);
Chris Lattner74aae472010-04-08 21:26:26 +0000204 Entry.setValue(Result);
205 return Result;
206}
207
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000208const MCSectionELF *MCContext::CreateELFGroupSection() {
209 MCSectionELF *Result =
210 new (*this) MCSectionELF(".group", MCSectionELF::SHT_GROUP, 0,
211 SectionKind::getReadOnly(), 4, NULL);
212 return Result;
213}
214
Chris Lattner6e5ce282010-05-07 21:49:09 +0000215const MCSection *MCContext::getCOFFSection(StringRef Section,
216 unsigned Characteristics,
217 int Selection,
218 SectionKind Kind) {
Chris Lattnereb40a0f2010-05-07 17:17:41 +0000219 if (COFFUniquingMap == 0)
220 COFFUniquingMap = new COFFUniqueMapTy();
221 COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)COFFUniquingMap;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000222
Chris Lattnereb40a0f2010-05-07 17:17:41 +0000223 // Do the lookup, if we have a hit, return it.
224 StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section);
225 if (Entry.getValue()) return Entry.getValue();
Michael J. Spencer326990f2010-11-26 04:16:08 +0000226
Chris Lattner6e5ce282010-05-07 21:49:09 +0000227 MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(),
228 Characteristics,
229 Selection, Kind);
Michael J. Spencer326990f2010-11-26 04:16:08 +0000230
Chris Lattnereb40a0f2010-05-07 17:17:41 +0000231 Entry.setValue(Result);
232 return Result;
233}
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000234
235//===----------------------------------------------------------------------===//
236// Dwarf Management
237//===----------------------------------------------------------------------===//
238
239/// GetDwarfFile - takes a file name an number to place in the dwarf file and
240/// directory tables. If the file number has already been allocated it is an
241/// error and zero is returned and the client reports the error, else the
242/// allocated file number is returned. The file numbers may be in any order.
243unsigned MCContext::GetDwarfFile(StringRef FileName, unsigned FileNumber) {
244 // TODO: a FileNumber of zero says to use the next available file number.
245 // Note: in GenericAsmParser::ParseDirectiveFile() FileNumber was checked
246 // to not be less than one. This needs to be change to be not less than zero.
247
248 // Make space for this FileNumber in the MCDwarfFiles vector if needed.
249 if (FileNumber >= MCDwarfFiles.size()) {
250 MCDwarfFiles.resize(FileNumber + 1);
251 } else {
252 MCDwarfFile *&ExistingFile = MCDwarfFiles[FileNumber];
253 if (ExistingFile)
254 // It is an error to use see the same number more than once.
255 return 0;
256 }
257
258 // Get the new MCDwarfFile slot for this FileNumber.
259 MCDwarfFile *&File = MCDwarfFiles[FileNumber];
260
261 // Separate the directory part from the basename of the FileName.
262 std::pair<StringRef, StringRef> Slash = FileName.rsplit('/');
263
264 // Find or make a entry in the MCDwarfDirs vector for this Directory.
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000265 StringRef Name;
266 unsigned DirIndex;
267 // Capture directory name.
268 if (Slash.second.empty()) {
269 Name = Slash.first;
270 DirIndex = 0; // For FileNames with no directories a DirIndex of 0 is used.
271 } else {
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000272 StringRef Directory = Slash.first;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000273 Name = Slash.second;
Kevin Enderbyb07ce602010-08-09 22:52:14 +0000274 for (DirIndex = 0; DirIndex < MCDwarfDirs.size(); DirIndex++) {
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000275 if (Directory == MCDwarfDirs[DirIndex])
Kevin Enderby232ab942010-08-31 22:55:11 +0000276 break;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000277 }
278 if (DirIndex >= MCDwarfDirs.size()) {
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000279 char *Buf = static_cast<char *>(Allocate(Directory.size()));
280 memcpy(Buf, Directory.data(), Directory.size());
281 MCDwarfDirs.push_back(StringRef(Buf, Directory.size()));
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000282 }
Kevin Enderbyb07ce602010-08-09 22:52:14 +0000283 // The DirIndex is one based, as DirIndex of 0 is used for FileNames with
284 // no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the
285 // directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames are
286 // stored at MCDwarfFiles[FileNumber].Name .
287 DirIndex++;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000288 }
Michael J. Spencer326990f2010-11-26 04:16:08 +0000289
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000290 // Now make the MCDwarfFile entry and place it in the slot in the MCDwarfFiles
291 // vector.
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000292 char *Buf = static_cast<char *>(Allocate(Name.size()));
293 memcpy(Buf, Name.data(), Name.size());
294 File = new (*this) MCDwarfFile(StringRef(Buf, Name.size()), DirIndex);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000295
296 // return the allocated FileNumber.
297 return FileNumber;
298}
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000299
Kevin Enderby3f55c242010-10-04 20:17:24 +0000300/// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000301/// currently is assigned and false otherwise.
Kevin Enderby3f55c242010-10-04 20:17:24 +0000302bool MCContext::isValidDwarfFileNumber(unsigned FileNumber) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000303 if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
304 return false;
305
Kevin Enderby3f55c242010-10-04 20:17:24 +0000306 return MCDwarfFiles[FileNumber] != 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000307}