2009-06-24 01:39:15 +02:00
|
|
|
//===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
|
2009-06-24 00:01:43 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/MC/MCContext.h"
|
2010-03-11 23:56:10 +01:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2011-07-20 07:58:47 +02:00
|
|
|
#include "llvm/MC/MCObjectFileInfo.h"
|
2011-07-18 22:57:22 +02:00
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
2010-04-08 22:30:37 +02:00
|
|
|
#include "llvm/MC/MCSectionMachO.h"
|
2010-04-08 23:26:26 +02:00
|
|
|
#include "llvm/MC/MCSectionELF.h"
|
2010-05-07 19:17:41 +02:00
|
|
|
#include "llvm/MC/MCSectionCOFF.h"
|
2009-06-24 00:01:43 +02:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2010-05-18 01:08:19 +02:00
|
|
|
#include "llvm/MC/MCLabel.h"
|
2010-07-28 22:55:35 +02:00
|
|
|
#include "llvm/MC/MCDwarf.h"
|
2009-10-20 00:49:00 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2011-01-23 05:28:49 +01:00
|
|
|
#include "llvm/Support/ELF.h"
|
2009-06-24 00:01:43 +02:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
typedef StringMap<const MCSectionMachO*> MachOUniqueMapTy;
|
2010-04-08 23:26:26 +02:00
|
|
|
typedef StringMap<const MCSectionELF*> ELFUniqueMapTy;
|
2010-05-07 19:17:41 +02:00
|
|
|
typedef StringMap<const MCSectionCOFF*> COFFUniqueMapTy;
|
2010-04-08 22:30:37 +02:00
|
|
|
|
|
|
|
|
2011-07-18 22:57:22 +02:00
|
|
|
MCContext::MCContext(const MCAsmInfo &mai, const MCRegisterInfo &mri,
|
2011-07-20 21:50:42 +02:00
|
|
|
const MCObjectFileInfo *mofi) :
|
|
|
|
MAI(mai), MRI(mri), MOFI(mofi),
|
2011-04-18 07:02:31 +02:00
|
|
|
Allocator(), Symbols(Allocator), UsedNames(Allocator),
|
|
|
|
NextUniqueID(0),
|
2011-03-29 00:49:15 +02:00
|
|
|
CurrentDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0),
|
|
|
|
AllowTemporaryLabels(true) {
|
2010-04-08 22:30:37 +02:00
|
|
|
MachOUniquingMap = 0;
|
2010-04-08 23:26:26 +02:00
|
|
|
ELFUniquingMap = 0;
|
2010-05-07 19:17:41 +02:00
|
|
|
COFFUniquingMap = 0;
|
2010-06-28 23:45:58 +02:00
|
|
|
|
|
|
|
SecureLogFile = getenv("AS_SECURE_LOG_FILE");
|
|
|
|
SecureLog = 0;
|
|
|
|
SecureLogUsed = false;
|
2010-08-24 22:32:42 +02:00
|
|
|
|
|
|
|
DwarfLocSeen = false;
|
2011-11-01 23:27:22 +01:00
|
|
|
GenDwarfForAssembly = false;
|
|
|
|
GenDwarfFileNumber = 0;
|
2009-06-24 00:01:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MCContext::~MCContext() {
|
2010-04-08 22:30:37 +02:00
|
|
|
// NOTE: The symbols are all allocated out of a bump pointer allocator,
|
2009-08-13 02:21:53 +02:00
|
|
|
// we don't need to free them here.
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
// If we have the MachO uniquing map, free it.
|
|
|
|
delete (MachOUniqueMapTy*)MachOUniquingMap;
|
2010-04-08 23:26:26 +02:00
|
|
|
delete (ELFUniqueMapTy*)ELFUniquingMap;
|
2010-05-07 19:17:41 +02:00
|
|
|
delete (COFFUniqueMapTy*)COFFUniquingMap;
|
2010-06-28 23:45:58 +02:00
|
|
|
|
|
|
|
// If the stream for the .secure_log_unique directive was created free it.
|
|
|
|
delete (raw_ostream*)SecureLog;
|
2009-06-24 00:01:43 +02:00
|
|
|
}
|
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Symbol Manipulation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-30 20:10:53 +02:00
|
|
|
MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
|
2010-03-10 02:29:27 +01:00
|
|
|
assert(!Name.empty() && "Normal symbols cannot be unnamed!");
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-03-15 07:15:35 +01:00
|
|
|
// Do the lookup and get the entire StringMapEntry. We want access to the
|
|
|
|
// key if we are creating the entry.
|
|
|
|
StringMapEntry<MCSymbol*> &Entry = Symbols.GetOrCreateValue(Name);
|
2010-12-01 21:46:11 +01:00
|
|
|
MCSymbol *Sym = Entry.getValue();
|
|
|
|
|
|
|
|
if (Sym)
|
|
|
|
return Sym;
|
|
|
|
|
|
|
|
Sym = CreateSymbol(Name);
|
|
|
|
Entry.setValue(Sym);
|
|
|
|
return Sym;
|
|
|
|
}
|
|
|
|
|
|
|
|
MCSymbol *MCContext::CreateSymbol(StringRef Name) {
|
2011-03-29 00:49:15 +02:00
|
|
|
// Determine whether this is an assembler temporary or normal label, if used.
|
|
|
|
bool isTemporary = false;
|
|
|
|
if (AllowTemporaryLabels)
|
|
|
|
isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix());
|
2010-12-01 21:46:11 +01:00
|
|
|
|
|
|
|
StringMapEntry<bool> *NameEntry = &UsedNames.GetOrCreateValue(Name);
|
|
|
|
if (NameEntry->getValue()) {
|
|
|
|
assert(isTemporary && "Cannot rename non temporary symbols");
|
2011-04-09 13:26:27 +02:00
|
|
|
SmallString<128> NewName = Name;
|
2010-12-01 21:46:11 +01:00
|
|
|
do {
|
2011-04-09 13:26:27 +02:00
|
|
|
NewName.resize(Name.size());
|
|
|
|
raw_svector_ostream(NewName) << NextUniqueID++;
|
|
|
|
NameEntry = &UsedNames.GetOrCreateValue(NewName);
|
2010-12-01 21:46:11 +01:00
|
|
|
} while (NameEntry->getValue());
|
|
|
|
}
|
|
|
|
NameEntry->setValue(true);
|
2009-06-24 06:31:49 +02:00
|
|
|
|
2010-03-15 07:15:35 +01:00
|
|
|
// Ok, the entry doesn't already exist. Have the MCSymbol object itself refer
|
2010-12-01 21:46:11 +01:00
|
|
|
// to the copy of the string that is embedded in the UsedNames entry.
|
|
|
|
MCSymbol *Result = new (*this) MCSymbol(NameEntry->getKey(), isTemporary);
|
|
|
|
|
|
|
|
return Result;
|
2009-06-24 06:31:49 +02:00
|
|
|
}
|
|
|
|
|
2010-03-30 20:10:53 +02:00
|
|
|
MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
|
2009-10-20 00:49:00 +02:00
|
|
|
SmallString<128> NameSV;
|
|
|
|
Name.toVector(NameSV);
|
2010-03-30 20:10:53 +02:00
|
|
|
return GetOrCreateSymbol(NameSV.str());
|
2009-10-20 00:49:00 +02:00
|
|
|
}
|
|
|
|
|
2010-03-14 09:23:30 +01:00
|
|
|
MCSymbol *MCContext::CreateTempSymbol() {
|
2010-12-01 21:46:11 +01:00
|
|
|
SmallString<128> NameSV;
|
2011-04-09 13:26:27 +02:00
|
|
|
raw_svector_ostream(NameSV)
|
|
|
|
<< MAI.getPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
|
2010-12-01 21:46:11 +01:00
|
|
|
return CreateSymbol(NameSV);
|
2010-03-10 02:29:27 +01:00
|
|
|
}
|
|
|
|
|
2010-05-18 01:08:19 +02:00
|
|
|
unsigned MCContext::NextInstance(int64_t LocalLabelVal) {
|
2010-05-18 14:15:34 +02:00
|
|
|
MCLabel *&Label = Instances[LocalLabelVal];
|
|
|
|
if (!Label)
|
|
|
|
Label = new (*this) MCLabel(0);
|
|
|
|
return Label->incInstance();
|
2010-05-18 01:08:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned MCContext::GetInstance(int64_t LocalLabelVal) {
|
2010-05-18 14:15:34 +02:00
|
|
|
MCLabel *&Label = Instances[LocalLabelVal];
|
|
|
|
if (!Label)
|
|
|
|
Label = new (*this) MCLabel(0);
|
|
|
|
return Label->getInstance();
|
2010-05-18 01:08:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MCSymbol *MCContext::CreateDirectionalLocalSymbol(int64_t LocalLabelVal) {
|
|
|
|
return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
|
|
|
|
Twine(LocalLabelVal) +
|
|
|
|
"\2" +
|
2010-07-12 10:16:59 +02:00
|
|
|
Twine(NextInstance(LocalLabelVal)));
|
2010-05-18 01:08:19 +02:00
|
|
|
}
|
|
|
|
MCSymbol *MCContext::GetDirectionalLocalSymbol(int64_t LocalLabelVal,
|
|
|
|
int bORf) {
|
|
|
|
return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
|
|
|
|
Twine(LocalLabelVal) +
|
|
|
|
"\2" +
|
2010-07-12 10:16:59 +02:00
|
|
|
Twine(GetInstance(LocalLabelVal) + bORf));
|
2010-05-18 01:08:19 +02:00
|
|
|
}
|
|
|
|
|
2009-11-06 11:58:06 +01:00
|
|
|
MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
|
2009-06-24 00:01:43 +02:00
|
|
|
return Symbols.lookup(Name);
|
|
|
|
}
|
2010-04-08 22:30:37 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Section Management
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
const MCSectionMachO *MCContext::
|
|
|
|
getMachOSection(StringRef Segment, StringRef Section,
|
|
|
|
unsigned TypeAndAttributes,
|
|
|
|
unsigned Reserved2, SectionKind Kind) {
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
// We unique sections by their segment/section pair. The returned section
|
|
|
|
// may not have the same flags as the requested section, if so this should be
|
|
|
|
// diagnosed by the client as an error.
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
// Create the map if it doesn't already exist.
|
|
|
|
if (MachOUniquingMap == 0)
|
|
|
|
MachOUniquingMap = new MachOUniqueMapTy();
|
|
|
|
MachOUniqueMapTy &Map = *(MachOUniqueMapTy*)MachOUniquingMap;
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
// Form the name to look up.
|
|
|
|
SmallString<64> Name;
|
|
|
|
Name += Segment;
|
|
|
|
Name.push_back(',');
|
|
|
|
Name += Section;
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
// Do the lookup, if we have a hit, return it.
|
|
|
|
const MCSectionMachO *&Entry = Map[Name.str()];
|
|
|
|
if (Entry) return Entry;
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-04-08 22:30:37 +02:00
|
|
|
// Otherwise, return a new section.
|
2010-04-08 23:26:26 +02:00
|
|
|
return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
|
|
|
|
Reserved2, Kind);
|
2010-04-08 22:30:37 +02:00
|
|
|
}
|
2010-04-08 23:26:26 +02:00
|
|
|
|
2010-11-10 20:05:07 +01:00
|
|
|
const MCSectionELF *MCContext::
|
2010-04-08 23:26:26 +02:00
|
|
|
getELFSection(StringRef Section, unsigned Type, unsigned Flags,
|
2010-11-11 19:13:52 +01:00
|
|
|
SectionKind Kind) {
|
|
|
|
return getELFSection(Section, Type, Flags, Kind, 0, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
const MCSectionELF *MCContext::
|
|
|
|
getELFSection(StringRef Section, unsigned Type, unsigned Flags,
|
|
|
|
SectionKind Kind, unsigned EntrySize, StringRef Group) {
|
2010-04-08 23:26:26 +02:00
|
|
|
if (ELFUniquingMap == 0)
|
|
|
|
ELFUniquingMap = new ELFUniqueMapTy();
|
|
|
|
ELFUniqueMapTy &Map = *(ELFUniqueMapTy*)ELFUniquingMap;
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-04-08 23:26:26 +02:00
|
|
|
// Do the lookup, if we have a hit, return it.
|
|
|
|
StringMapEntry<const MCSectionELF*> &Entry = Map.GetOrCreateValue(Section);
|
|
|
|
if (Entry.getValue()) return Entry.getValue();
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-09-30 07:59:22 +02:00
|
|
|
// Possibly refine the entry size first.
|
|
|
|
if (!EntrySize) {
|
|
|
|
EntrySize = MCSectionELF::DetermineEntrySize(Kind);
|
|
|
|
}
|
2010-11-11 19:13:52 +01:00
|
|
|
|
|
|
|
MCSymbol *GroupSym = NULL;
|
|
|
|
if (!Group.empty())
|
|
|
|
GroupSym = GetOrCreateSymbol(Group);
|
|
|
|
|
2010-04-08 23:26:26 +02:00
|
|
|
MCSectionELF *Result = new (*this) MCSectionELF(Entry.getKey(), Type, Flags,
|
2010-11-11 19:13:52 +01:00
|
|
|
Kind, EntrySize, GroupSym);
|
2010-04-08 23:26:26 +02:00
|
|
|
Entry.setValue(Result);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2010-11-11 19:13:52 +01:00
|
|
|
const MCSectionELF *MCContext::CreateELFGroupSection() {
|
|
|
|
MCSectionELF *Result =
|
2011-01-23 05:28:49 +01:00
|
|
|
new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0,
|
2010-11-11 19:13:52 +01:00
|
|
|
SectionKind::getReadOnly(), 4, NULL);
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2010-05-07 23:49:09 +02:00
|
|
|
const MCSection *MCContext::getCOFFSection(StringRef Section,
|
|
|
|
unsigned Characteristics,
|
|
|
|
int Selection,
|
|
|
|
SectionKind Kind) {
|
2010-05-07 19:17:41 +02:00
|
|
|
if (COFFUniquingMap == 0)
|
|
|
|
COFFUniquingMap = new COFFUniqueMapTy();
|
|
|
|
COFFUniqueMapTy &Map = *(COFFUniqueMapTy*)COFFUniquingMap;
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-05-07 19:17:41 +02:00
|
|
|
// Do the lookup, if we have a hit, return it.
|
|
|
|
StringMapEntry<const MCSectionCOFF*> &Entry = Map.GetOrCreateValue(Section);
|
|
|
|
if (Entry.getValue()) return Entry.getValue();
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-05-07 23:49:09 +02:00
|
|
|
MCSectionCOFF *Result = new (*this) MCSectionCOFF(Entry.getKey(),
|
|
|
|
Characteristics,
|
|
|
|
Selection, Kind);
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-05-07 19:17:41 +02:00
|
|
|
Entry.setValue(Result);
|
|
|
|
return Result;
|
|
|
|
}
|
2010-07-28 22:55:35 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Dwarf Management
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// GetDwarfFile - takes a file name an number to place in the dwarf file and
|
|
|
|
/// directory tables. If the file number has already been allocated it is an
|
|
|
|
/// error and zero is returned and the client reports the error, else the
|
|
|
|
/// allocated file number is returned. The file numbers may be in any order.
|
2011-10-18 01:05:28 +02:00
|
|
|
unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
|
|
|
|
unsigned FileNumber) {
|
2010-07-28 22:55:35 +02:00
|
|
|
// TODO: a FileNumber of zero says to use the next available file number.
|
|
|
|
// Note: in GenericAsmParser::ParseDirectiveFile() FileNumber was checked
|
|
|
|
// to not be less than one. This needs to be change to be not less than zero.
|
|
|
|
|
|
|
|
// Make space for this FileNumber in the MCDwarfFiles vector if needed.
|
|
|
|
if (FileNumber >= MCDwarfFiles.size()) {
|
|
|
|
MCDwarfFiles.resize(FileNumber + 1);
|
|
|
|
} else {
|
|
|
|
MCDwarfFile *&ExistingFile = MCDwarfFiles[FileNumber];
|
|
|
|
if (ExistingFile)
|
|
|
|
// It is an error to use see the same number more than once.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the new MCDwarfFile slot for this FileNumber.
|
|
|
|
MCDwarfFile *&File = MCDwarfFiles[FileNumber];
|
|
|
|
|
2011-10-18 01:05:28 +02:00
|
|
|
if (Directory.empty()) {
|
|
|
|
// Separate the directory part from the basename of the FileName.
|
|
|
|
std::pair<StringRef, StringRef> Slash = FileName.rsplit('/');
|
|
|
|
Directory = Slash.second;
|
2011-11-02 00:39:05 +01:00
|
|
|
if (!Directory.empty()) {
|
|
|
|
Directory = Slash.first;
|
|
|
|
FileName = Slash.second;
|
|
|
|
}
|
2011-10-18 01:05:28 +02:00
|
|
|
}
|
2010-07-28 22:55:35 +02:00
|
|
|
|
|
|
|
// Find or make a entry in the MCDwarfDirs vector for this Directory.
|
|
|
|
// Capture directory name.
|
2011-10-18 01:05:28 +02:00
|
|
|
unsigned DirIndex;
|
|
|
|
if (Directory.empty()) {
|
|
|
|
// For FileNames with no directories a DirIndex of 0 is used.
|
|
|
|
DirIndex = 0;
|
2010-07-28 22:55:35 +02:00
|
|
|
} else {
|
2011-10-12 22:20:48 +02:00
|
|
|
DirIndex = 0;
|
|
|
|
for (unsigned End = MCDwarfDirs.size(); DirIndex < End; DirIndex++) {
|
2010-07-29 15:53:19 +02:00
|
|
|
if (Directory == MCDwarfDirs[DirIndex])
|
2010-09-01 00:55:11 +02:00
|
|
|
break;
|
2010-07-28 22:55:35 +02:00
|
|
|
}
|
|
|
|
if (DirIndex >= MCDwarfDirs.size()) {
|
2010-07-29 15:53:19 +02:00
|
|
|
char *Buf = static_cast<char *>(Allocate(Directory.size()));
|
|
|
|
memcpy(Buf, Directory.data(), Directory.size());
|
|
|
|
MCDwarfDirs.push_back(StringRef(Buf, Directory.size()));
|
2010-07-28 22:55:35 +02:00
|
|
|
}
|
2010-08-10 00:52:14 +02:00
|
|
|
// The DirIndex is one based, as DirIndex of 0 is used for FileNames with
|
|
|
|
// no directories. MCDwarfDirs[] is unlike MCDwarfFiles[] in that the
|
2011-10-18 01:05:28 +02:00
|
|
|
// directory names are stored at MCDwarfDirs[DirIndex-1] where FileNames
|
|
|
|
// are stored at MCDwarfFiles[FileNumber].Name .
|
2010-08-10 00:52:14 +02:00
|
|
|
DirIndex++;
|
2010-07-28 22:55:35 +02:00
|
|
|
}
|
2010-11-26 05:16:08 +01:00
|
|
|
|
2010-07-28 22:55:35 +02:00
|
|
|
// Now make the MCDwarfFile entry and place it in the slot in the MCDwarfFiles
|
|
|
|
// vector.
|
2011-10-18 01:05:28 +02:00
|
|
|
char *Buf = static_cast<char *>(Allocate(FileName.size()));
|
|
|
|
memcpy(Buf, FileName.data(), FileName.size());
|
|
|
|
File = new (*this) MCDwarfFile(StringRef(Buf, FileName.size()), DirIndex);
|
2010-07-28 22:55:35 +02:00
|
|
|
|
|
|
|
// return the allocated FileNumber.
|
|
|
|
return FileNumber;
|
|
|
|
}
|
2010-08-24 22:32:42 +02:00
|
|
|
|
2010-10-04 22:17:24 +02:00
|
|
|
/// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
|
2010-08-24 22:32:42 +02:00
|
|
|
/// currently is assigned and false otherwise.
|
2010-10-04 22:17:24 +02:00
|
|
|
bool MCContext::isValidDwarfFileNumber(unsigned FileNumber) {
|
2010-08-24 22:32:42 +02:00
|
|
|
if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
|
|
|
|
return false;
|
|
|
|
|
2010-10-04 22:17:24 +02:00
|
|
|
return MCDwarfFiles[FileNumber] != 0;
|
2010-08-24 22:32:42 +02:00
|
|
|
}
|