blob: 7c687135fc6d966527b413e2a1f010fe98936e4c [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"
Rafael Espindola89b93722010-12-10 07:39:47 +000018#include "llvm/Target/TargetAsmInfo.h"
Chris Lattner7c5b0212009-10-19 22:49:00 +000019#include "llvm/ADT/SmallString.h"
20#include "llvm/ADT/Twine.h"
Rafael Espindolac85dca62011-01-23 04:28:49 +000021#include "llvm/Support/ELF.h"
Daniel Dunbarecc63f82009-06-23 22:01:43 +000022using namespace llvm;
23
Chris Lattnerf0559e42010-04-08 20:30:37 +000024typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
Chris Lattner74aae472010-04-08 21:26:26 +000025typedef StringMap<const MCSectionELF*> ELFUniqueMapTy;
Chris Lattnereb40a0f2010-05-07 17:17:41 +000026typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy;
Chris Lattnerf0559e42010-04-08 20:30:37 +000027
28
Rafael Espindola89b93722010-12-10 07:39:47 +000029MCContext::MCContext(const MCAsmInfo &mai, const TargetAsmInfo *tai) :
30 MAI(mai), TAI(tai), NextUniqueID(0),
Daniel Dunbarc6cf43d2011-03-28 22:49:15 +000031 CurrentDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0),
32 AllowTemporaryLabels(true) {
Chris Lattnerf0559e42010-04-08 20:30:37 +000033 MachOUniquingMap = 0;
Chris Lattner74aae472010-04-08 21:26:26 +000034 ELFUniquingMap = 0;
Chris Lattnereb40a0f2010-05-07 17:17:41 +000035 COFFUniquingMap = 0;
Kevin Enderbyf187ac52010-06-28 21:45:58 +000036
37 SecureLogFile = getenv("AS_SECURE_LOG_FILE");
38 SecureLog = 0;
39 SecureLogUsed = false;
Kevin Enderbyc1840b32010-08-24 20:32:42 +000040
41 DwarfLocSeen = false;
Daniel Dunbarecc63f82009-06-23 22:01:43 +000042}
43
44MCContext::~MCContext() {
Chris Lattnerf0559e42010-04-08 20:30:37 +000045 // NOTE: The symbols are all allocated out of a bump pointer allocator,
Chris Lattnerc9d31522009-08-13 00:21:53 +000046 // we don't need to free them here.
Michael J. Spencer326990f2010-11-26 04:16:08 +000047
Chris Lattnerf0559e42010-04-08 20:30:37 +000048 // If we have the MachO uniquing map, free it.
49 delete (MachOUniqueMapTy*)MachOUniquingMap;
Chris Lattner74aae472010-04-08 21:26:26 +000050 delete (ELFUniqueMapTy*)ELFUniquingMap;
Chris Lattnereb40a0f2010-05-07 17:17:41 +000051 delete (COFFUniqueMapTy*)COFFUniquingMap;
Kevin Enderbyf187ac52010-06-28 21:45:58 +000052
53 // If the stream for the .secure_log_unique directive was created free it.
54 delete (raw_ostream*)SecureLog;
Rafael Espindola89b93722010-12-10 07:39:47 +000055
56 delete TAI;
Daniel Dunbarecc63f82009-06-23 22:01:43 +000057}
58
Chris Lattnerf0559e42010-04-08 20:30:37 +000059//===----------------------------------------------------------------------===//
60// Symbol Manipulation
61//===----------------------------------------------------------------------===//
62
Chris Lattner9b97a732010-03-30 18:10:53 +000063MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
Chris Lattner00685bb2010-03-10 01:29:27 +000064 assert(!Name.empty() && "Normal symbols cannot be unnamed!");
Michael J. Spencer326990f2010-11-26 04:16:08 +000065
Chris Lattnerc28cc092010-03-15 06:15:35 +000066 // Do the lookup and get the entire StringMapEntry. We want access to the
67 // key if we are creating the entry.
68 StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
Rafael Espindola9f447242010-12-01 20:46:11 +000069 MCSymbol *Sym = Entry.getValue();
70
71 if (Sym)
72 return Sym;
73
74 Sym = CreateSymbol(Name);
75 Entry.setValue(Sym);
76 return Sym;
77}
78
79MCSymbol *MCContext::CreateSymbol(StringRef Name) {
Daniel Dunbarc6cf43d2011-03-28 22:49:15 +000080 // Determine whether this is an assembler temporary or normal label, if used.
81 bool isTemporary = false;
82 if (AllowTemporaryLabels)
83 isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix());
Rafael Espindola9f447242010-12-01 20:46:11 +000084
85 StringMapEntry<bool> *NameEntry = &UsedNames.GetOrCreateValue(Name);
86 if (NameEntry->getValue()) {
87 assert(isTemporary && "Cannot rename non temporary symbols");
88 SmallString<128> NewName;
89 do {
90 Twine T = Name + Twine(NextUniqueID++);
91 T.toVector(NewName);
92 StringRef foo = NewName;
93 NameEntry = &UsedNames.GetOrCreateValue(foo);
94 } while (NameEntry->getValue());
95 }
96 NameEntry->setValue(true);
Chris Lattnerc69485e2009-06-24 04:31:49 +000097
Chris Lattnerc28cc092010-03-15 06:15:35 +000098 // Ok, the entry doesn't already exist. Have the MCSymbol object itself refer
Rafael Espindola9f447242010-12-01 20:46:11 +000099 // to the copy of the string that is embedded in the UsedNames entry.
100 MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary);
101
102 return Result;
Chris Lattnerc69485e2009-06-24 04:31:49 +0000103}
104
Chris Lattner9b97a732010-03-30 18:10:53 +0000105MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
Chris Lattner7c5b0212009-10-19 22:49:00 +0000106 SmallString<128> NameSV;
107 Name.toVector(NameSV);
Chris Lattner9b97a732010-03-30 18:10:53 +0000108 return GetOrCreateSymbol(NameSV.str());
Chris Lattner7c5b0212009-10-19 22:49:00 +0000109}
110
Chris Lattner1d72a762010-03-14 08:23:30 +0000111MCSymbol *MCContext::CreateTempSymbol() {
Rafael Espindola9f447242010-12-01 20:46:11 +0000112 SmallString<128> NameSV;
113 Twine Name = Twine(MAI.getPrivateGlobalPrefix()) + "tmp" +
114 Twine(NextUniqueID++);
115 Name.toVector(NameSV);
116 return CreateSymbol(NameSV);
Chris Lattner1d72a762010-03-14 08:23:30 +0000117}
118
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000119unsigned MCContext::NextInstance(int64_t LocalLabelVal) {
Benjamin Kramer47f9a492010-05-18 12:15:34 +0000120 MCLabel *&Label = Instances[LocalLabelVal];
121 if (!Label)
122 Label = new (*this) MCLabel(0);
123 return Label->incInstance();
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000124}
125
126unsigned MCContext::GetInstance(int64_t LocalLabelVal) {
Benjamin Kramer47f9a492010-05-18 12:15:34 +0000127 MCLabel *&Label = Instances[LocalLabelVal];
128 if (!Label)
129 Label = new (*this) MCLabel(0);
130 return Label->getInstance();
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000131}
132
133MCSymbol *MCContext::CreateDirectionalLocalSymbol(int64_t LocalLabelVal) {
134 return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
135 Twine(LocalLabelVal) +
136 "\2" +
Duncan Sands34727662010-07-12 08:16:59 +0000137 Twine(NextInstance(LocalLabelVal)));
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000138}
139MCSymbol *MCContext::GetDirectionalLocalSymbol(int64_t LocalLabelVal,
140 int bORf) {
141 return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
142 Twine(LocalLabelVal) +
143 "\2" +
Duncan Sands34727662010-07-12 08:16:59 +0000144 Twine(GetInstance(LocalLabelVal) + bORf));
Kevin Enderbyebe7fcd2010-05-17 23:08:19 +0000145}
146
Daniel Dunbar2928c832009-11-06 10:58:06 +0000147MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
Daniel Dunbarecc63f82009-06-23 22:01:43 +0000148 return Symbols.lookup(Name);
149}
Chris Lattnerf0559e42010-04-08 20:30:37 +0000150
151//===----------------------------------------------------------------------===//
152// Section Management
153//===----------------------------------------------------------------------===//
154
155const MCSectionMachO *MCContext::
156getMachOSection(StringRef Segment, StringRef Section,
157 unsigned TypeAndAttributes,
158 unsigned Reserved2, SectionKind Kind) {
Michael J. Spencer326990f2010-11-26 04:16:08 +0000159
Chris Lattnerf0559e42010-04-08 20:30:37 +0000160 // We unique sections by their segment/section pair. The returned section
161 // may not have the same flags as the requested section, if so this should be
162 // diagnosed by the client as an error.
Michael J. Spencer326990f2010-11-26 04:16:08 +0000163
Chris Lattnerf0559e42010-04-08 20:30:37 +0000164 // Create the map if it doesn't already exist.
165 if (MachOUniquingMap == 0)
166 MachOUniquingMap = new MachOUniqueMapTy();
167 MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)MachOUniquingMap;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000168
Chris Lattnerf0559e42010-04-08 20:30:37 +0000169 // Form the name to look up.
170 SmallString<64> Name;
171 Name += Segment;
172 Name.push_back(',');
173 Name += Section;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000174
Chris Lattnerf0559e42010-04-08 20:30:37 +0000175 // Do the lookup, if we have a hit, return it.
176 const MCSectionMachO *&Entry = Map[Name.str()];
177 if (Entry) return Entry;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000178
Chris Lattnerf0559e42010-04-08 20:30:37 +0000179 // Otherwise, return a new section.
Chris Lattner74aae472010-04-08 21:26:26 +0000180 return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
181 Reserved2, Kind);
Chris Lattnerf0559e42010-04-08 20:30:37 +0000182}
Chris Lattner74aae472010-04-08 21:26:26 +0000183
Rafael Espindola4283f4b2010-11-10 19:05:07 +0000184const MCSectionELF *MCContext::
Chris Lattner74aae472010-04-08 21:26:26 +0000185getELFSection(StringRef Section, unsigned Type, unsigned Flags,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000186 SectionKind Kind) {
187 return getELFSection(Section, Type, Flags, Kind, 0, "");
188}
189
190const MCSectionELF *MCContext::
191getELFSection(StringRef Section, unsigned Type, unsigned Flags,
192 SectionKind Kind, unsigned EntrySize, StringRef Group) {
Chris Lattner74aae472010-04-08 21:26:26 +0000193 if (ELFUniquingMap == 0)
194 ELFUniquingMap = new ELFUniqueMapTy();
195 ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)ELFUniquingMap;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000196
Chris Lattner74aae472010-04-08 21:26:26 +0000197 // Do the lookup, if we have a hit, return it.
198 StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section);
199 if (Entry.getValue()) return Entry.getValue();
Michael J. Spencer326990f2010-11-26 04:16:08 +0000200
Jan Wen Voung186e7a02010-09-30 05:59:22 +0000201 // Possibly refine the entry size first.
202 if (!EntrySize) {
203 EntrySize = MCSectionELF::DetermineEntrySize(Kind);
204 }
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000205
206 MCSymbol *GroupSym = NULL;
207 if (!Group.empty())
208 GroupSym = GetOrCreateSymbol(Group);
209
Chris Lattner74aae472010-04-08 21:26:26 +0000210 MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000211 Kind, EntrySize, GroupSym);
Chris Lattner74aae472010-04-08 21:26:26 +0000212 Entry.setValue(Result);
213 return Result;
214}
215
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000216const MCSectionELF *MCContext::CreateELFGroupSection() {
217 MCSectionELF *Result =
Rafael Espindolac85dca62011-01-23 04:28:49 +0000218 new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0,
Rafael Espindola2ff9e832010-11-11 18:13:52 +0000219 SectionKind::getReadOnly(), 4, NULL);
220 return Result;
221}
222
Chris Lattner6e5ce282010-05-07 21:49:09 +0000223const MCSection *MCContext::getCOFFSection(StringRef Section,
224 unsigned Characteristics,
225 int Selection,
226 SectionKind Kind) {
Chris Lattnereb40a0f2010-05-07 17:17:41 +0000227 if (COFFUniquingMap == 0)
228 COFFUniquingMap = new COFFUniqueMapTy();
229 COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)COFFUniquingMap;
Michael J. Spencer326990f2010-11-26 04:16:08 +0000230
Chris Lattnereb40a0f2010-05-07 17:17:41 +0000231 // Do the lookup, if we have a hit, return it.
232 StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section);
233 if (Entry.getValue()) return Entry.getValue();
Michael J. Spencer326990f2010-11-26 04:16:08 +0000234
Chris Lattner6e5ce282010-05-07 21:49:09 +0000235 MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(),
236 Characteristics,
237 Selection, Kind);
Michael J. Spencer326990f2010-11-26 04:16:08 +0000238
Chris Lattnereb40a0f2010-05-07 17:17:41 +0000239 Entry.setValue(Result);
240 return Result;
241}
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000242
243//===----------------------------------------------------------------------===//
244// Dwarf Management
245//===----------------------------------------------------------------------===//
246
247/// GetDwarfFile - takes a file name an number to place in the dwarf file and
248/// directory tables. If the file number has already been allocated it is an
249/// error and zero is returned and the client reports the error, else the
250/// allocated file number is returned. The file numbers may be in any order.
251unsigned MCContext::GetDwarfFile(StringRef FileName, unsigned FileNumber) {
252 // TODO: a FileNumber of zero says to use the next available file number.
253 // Note: in GenericAsmParser::ParseDirectiveFile() FileNumber was checked
254 // to not be less than one. This needs to be change to be not less than zero.
255
256 // Make space for this FileNumber in the MCDwarfFiles vector if needed.
257 if (FileNumber >= MCDwarfFiles.size()) {
258 MCDwarfFiles.resize(FileNumber + 1);
259 } else {
260 MCDwarfFile *&ExistingFile = MCDwarfFiles[FileNumber];
261 if (ExistingFile)
262 // It is an error to use see the same number more than once.
263 return 0;
264 }
265
266 // Get the new MCDwarfFile slot for this FileNumber.
267 MCDwarfFile *&File = MCDwarfFiles[FileNumber];
268
269 // Separate the directory part from the basename of the FileName.
270 std::pair<StringRef, StringRef> Slash = FileName.rsplit('/');
271
272 // Find or make a entry in the MCDwarfDirs vector for this Directory.
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000273 StringRef Name;
274 unsigned DirIndex;
275 // Capture directory name.
276 if (Slash.second.empty()) {
277 Name = Slash.first;
278 DirIndex = 0; // For FileNames with no directories a DirIndex of 0 is used.
279 } else {
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000280 StringRef Directory = Slash.first;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000281 Name = Slash.second;
Kevin Enderbyb07ce602010-08-09 22:52:14 +0000282 for (DirIndex = 0; DirIndex < MCDwarfDirs.size(); DirIndex++) {
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000283 if (Directory == MCDwarfDirs[DirIndex])
Kevin Enderby232ab942010-08-31 22:55:11 +0000284 break;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000285 }
286 if (DirIndex >= MCDwarfDirs.size()) {
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000287 char *Buf = static_cast<char *>(Allocate(Directory.size()));
288 memcpy(Buf, Directory.data(), Directory.size());
289 MCDwarfDirs.push_back(StringRef(Buf, Directory.size()));
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000290 }
Kevin Enderbyb07ce602010-08-09 22:52:14 +0000291 // The DirIndex is one based, as DirIndex of 0 is used for FileNames with
292 // no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the
293 // directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames are
294 // stored at MCDwarfFiles[FileNumber].Name .
295 DirIndex++;
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000296 }
Michael J. Spencer326990f2010-11-26 04:16:08 +0000297
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000298 // Now make the MCDwarfFile entry and place it in the slot in the MCDwarfFiles
299 // vector.
Benjamin Kramer3bce5ad2010-07-29 13:53:19 +0000300 char *Buf = static_cast<char *>(Allocate(Name.size()));
301 memcpy(Buf, Name.data(), Name.size());
302 File = new (*this) MCDwarfFile(StringRef(Buf, Name.size()), DirIndex);
Kevin Enderby7cbf73a2010-07-28 20:55:35 +0000303
304 // return the allocated FileNumber.
305 return FileNumber;
306}
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000307
Kevin Enderby3f55c242010-10-04 20:17:24 +0000308/// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000309/// currently is assigned and false otherwise.
Kevin Enderby3f55c242010-10-04 20:17:24 +0000310bool MCContext::isValidDwarfFileNumber(unsigned FileNumber) {
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000311 if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
312 return false;
313
Kevin Enderby3f55c242010-10-04 20:17:24 +0000314 return MCDwarfFiles[FileNumber] != 0;
Kevin Enderbyc1840b32010-08-24 20:32:42 +0000315}