2009-06-23 23:39:15 +00:00
|
|
|
//===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
|
2009-06-23 22:01:43 +00: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"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2010-03-11 22:56:10 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/MC/MCDwarf.h"
|
|
|
|
#include "llvm/MC/MCLabel.h"
|
2011-07-20 05:58:47 +00:00
|
|
|
#include "llvm/MC/MCObjectFileInfo.h"
|
2011-07-18 20:57:22 +00:00
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
2010-05-07 17:17:41 +00:00
|
|
|
#include "llvm/MC/MCSectionCOFF.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/MC/MCSectionELF.h"
|
|
|
|
#include "llvm/MC/MCSectionMachO.h"
|
2009-06-23 22:01:43 +00:00
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2011-01-23 04:28:49 +00:00
|
|
|
#include "llvm/Support/ELF.h"
|
2012-01-26 23:20:11 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2013-06-14 20:26:58 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2012-12-18 00:31:01 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2012-01-26 23:20:11 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2013-10-22 23:41:52 +00:00
|
|
|
#include <map>
|
|
|
|
|
2009-06-23 22:01:43 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2013-06-18 07:20:20 +00:00
|
|
|
MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri,
|
2012-12-06 22:12:44 +00:00
|
|
|
const MCObjectFileInfo *mofi, const SourceMgr *mgr,
|
2014-03-27 20:45:58 +00:00
|
|
|
bool DoAutoReset)
|
|
|
|
: SrcMgr(mgr), MAI(mai), MRI(mri), MOFI(mofi), Allocator(),
|
|
|
|
Symbols(Allocator), UsedNames(Allocator), NextUniqueID(0),
|
|
|
|
CurrentDwarfLoc(0, 0, 0, DWARF2_FLAG_IS_STMT, 0, 0), DwarfLocSeen(false),
|
2014-05-01 19:55:34 +00:00
|
|
|
GenDwarfForAssembly(false), GenDwarfFileNumber(0), DwarfVersion(4),
|
2014-03-27 20:45:58 +00:00
|
|
|
AllowTemporaryLabels(true), DwarfCompileUnitID(0),
|
|
|
|
AutoReset(DoAutoReset) {
|
2012-12-12 22:59:46 +00:00
|
|
|
|
2014-06-13 02:24:39 +00:00
|
|
|
std::error_code EC = llvm::sys::fs::current_path(CompilationDir);
|
2013-12-10 04:39:09 +00:00
|
|
|
if (EC)
|
|
|
|
CompilationDir.clear();
|
2013-06-14 20:26:58 +00:00
|
|
|
|
2010-06-28 21:45:58 +00:00
|
|
|
SecureLogFile = getenv("AS_SECURE_LOG_FILE");
|
2014-04-13 04:57:38 +00:00
|
|
|
SecureLog = nullptr;
|
2010-06-28 21:45:58 +00:00
|
|
|
SecureLogUsed = false;
|
2012-12-18 00:31:01 +00:00
|
|
|
|
2014-07-06 10:33:31 +00:00
|
|
|
if (SrcMgr && SrcMgr->getNumBuffers())
|
|
|
|
MainFileName =
|
|
|
|
SrcMgr->getMemoryBuffer(SrcMgr->getMainFileID())->getBufferIdentifier();
|
2009-06-23 22:01:43 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 02:00:13 +00:00
|
|
|
MCContext::~MCContext() {
|
2012-12-06 22:12:44 +00:00
|
|
|
|
2012-12-12 22:59:46 +00:00
|
|
|
if (AutoReset)
|
|
|
|
reset();
|
2012-12-06 22:12:44 +00:00
|
|
|
|
2012-12-06 02:00:13 +00:00
|
|
|
// NOTE: The symbols are all allocated out of a bump pointer allocator,
|
|
|
|
// we don't need to free them here.
|
2013-12-10 04:39:05 +00:00
|
|
|
|
2012-12-06 22:12:44 +00:00
|
|
|
// If the stream for the .secure_log_unique directive was created free it.
|
|
|
|
delete (raw_ostream*)SecureLog;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Module Lifetime Management
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-12 22:59:46 +00:00
|
|
|
void MCContext::reset() {
|
2012-12-06 22:12:44 +00:00
|
|
|
UsedNames.clear();
|
|
|
|
Symbols.clear();
|
|
|
|
Allocator.Reset();
|
|
|
|
Instances.clear();
|
2014-09-17 09:25:36 +00:00
|
|
|
CompilationDir.clear();
|
|
|
|
MainFileName.clear();
|
2014-03-13 21:59:51 +00:00
|
|
|
MCDwarfLineTablesCUMap.clear();
|
2014-09-17 09:25:36 +00:00
|
|
|
SectionStartEndSyms.clear();
|
2012-12-06 22:12:44 +00:00
|
|
|
MCGenDwarfLabelEntries.clear();
|
|
|
|
DwarfDebugFlags = StringRef();
|
2013-02-20 00:10:29 +00:00
|
|
|
DwarfCompileUnitID = 0;
|
2012-12-06 22:12:44 +00:00
|
|
|
CurrentDwarfLoc = MCDwarfLoc(0,0,0,DWARF2_FLAG_IS_STMT,0,0);
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2014-04-10 23:55:11 +00:00
|
|
|
MachOUniquingMap.clear();
|
|
|
|
ELFUniquingMap.clear();
|
|
|
|
COFFUniquingMap.clear();
|
2012-12-12 22:59:46 +00:00
|
|
|
|
|
|
|
NextUniqueID = 0;
|
|
|
|
AllowTemporaryLabels = true;
|
|
|
|
DwarfLocSeen = false;
|
|
|
|
GenDwarfForAssembly = false;
|
|
|
|
GenDwarfFileNumber = 0;
|
2009-06-23 22:01:43 +00:00
|
|
|
}
|
|
|
|
|
2010-04-08 20:30:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Symbol Manipulation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-03-30 18:10:53 +00:00
|
|
|
MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
|
2010-03-10 01:29:27 +00:00
|
|
|
assert(!Name.empty() && "Normal symbols cannot be unnamed!");
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2014-11-19 05:49:42 +00:00
|
|
|
MCSymbol *&Sym = Symbols[Name];
|
2010-12-01 20:46:11 +00:00
|
|
|
|
2014-11-19 05:49:42 +00:00
|
|
|
if (!Sym)
|
|
|
|
Sym = CreateSymbol(Name);
|
2010-12-01 20:46:11 +00:00
|
|
|
|
|
|
|
return Sym;
|
|
|
|
}
|
|
|
|
|
2014-10-17 01:48:58 +00:00
|
|
|
MCSymbol *MCContext::getOrCreateSectionSymbol(const MCSectionELF &Section) {
|
|
|
|
MCSymbol *&Sym = SectionSymbols[&Section];
|
|
|
|
if (Sym)
|
|
|
|
return Sym;
|
|
|
|
|
|
|
|
StringRef Name = Section.getSectionName();
|
|
|
|
|
2014-11-19 05:49:42 +00:00
|
|
|
MCSymbol *&OldSym = Symbols[Name];
|
2014-10-17 01:48:58 +00:00
|
|
|
if (OldSym && OldSym->isUndefined()) {
|
|
|
|
Sym = OldSym;
|
|
|
|
return OldSym;
|
|
|
|
}
|
|
|
|
|
2014-11-19 05:49:42 +00:00
|
|
|
auto NameIter = UsedNames.insert(std::make_pair(Name, true)).first;
|
|
|
|
Sym = new (*this) MCSymbol(NameIter->getKey(), /*isTemporary*/ false);
|
2014-10-17 01:48:58 +00:00
|
|
|
|
2014-11-19 05:49:42 +00:00
|
|
|
if (!OldSym)
|
|
|
|
OldSym = Sym;
|
2014-10-17 01:48:58 +00:00
|
|
|
|
|
|
|
return Sym;
|
|
|
|
}
|
|
|
|
|
2015-01-13 00:48:10 +00:00
|
|
|
MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName) {
|
|
|
|
return GetOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) +
|
|
|
|
"frameallocation_" + FuncName);
|
|
|
|
}
|
|
|
|
|
2010-12-01 20:46:11 +00:00
|
|
|
MCSymbol *MCContext::CreateSymbol(StringRef Name) {
|
2011-03-28 22:49:15 +00:00
|
|
|
// Determine whether this is an assembler temporary or normal label, if used.
|
|
|
|
bool isTemporary = false;
|
|
|
|
if (AllowTemporaryLabels)
|
2013-06-18 07:20:20 +00:00
|
|
|
isTemporary = Name.startswith(MAI->getPrivateGlobalPrefix());
|
2010-12-01 20:46:11 +00:00
|
|
|
|
2014-11-19 05:49:42 +00:00
|
|
|
auto NameEntry = UsedNames.insert(std::make_pair(Name, true));
|
|
|
|
if (!NameEntry.second) {
|
2013-12-05 05:44:44 +00:00
|
|
|
assert(isTemporary && "Cannot rename non-temporary symbols");
|
2011-04-09 11:26:27 +00:00
|
|
|
SmallString<128> NewName = Name;
|
2010-12-01 20:46:11 +00:00
|
|
|
do {
|
2011-04-09 11:26:27 +00:00
|
|
|
NewName.resize(Name.size());
|
|
|
|
raw_svector_ostream(NewName) << NextUniqueID++;
|
2014-11-19 05:49:42 +00:00
|
|
|
NameEntry = UsedNames.insert(std::make_pair(NewName, true));
|
|
|
|
} while (!NameEntry.second);
|
2010-12-01 20:46:11 +00:00
|
|
|
}
|
2009-06-24 04:31:49 +00:00
|
|
|
|
2010-03-15 06:15:35 +00:00
|
|
|
// Ok, the entry doesn't already exist. Have the MCSymbol object itself refer
|
2010-12-01 20:46:11 +00:00
|
|
|
// to the copy of the string that is embedded in the UsedNames entry.
|
2014-11-19 05:49:42 +00:00
|
|
|
MCSymbol *Result =
|
|
|
|
new (*this) MCSymbol(NameEntry.first->getKey(), isTemporary);
|
2010-12-01 20:46:11 +00:00
|
|
|
|
|
|
|
return Result;
|
2009-06-24 04:31:49 +00:00
|
|
|
}
|
|
|
|
|
2010-03-30 18:10:53 +00:00
|
|
|
MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
|
2009-10-19 22:49:00 +00:00
|
|
|
SmallString<128> NameSV;
|
2013-12-03 18:18:28 +00:00
|
|
|
return GetOrCreateSymbol(Name.toStringRef(NameSV));
|
2009-10-19 22:49:00 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 07:05:06 +00:00
|
|
|
MCSymbol *MCContext::CreateLinkerPrivateTempSymbol() {
|
2014-06-26 22:52:05 +00:00
|
|
|
SmallString<128> NameSV;
|
|
|
|
raw_svector_ostream(NameSV)
|
|
|
|
<< MAI->getLinkerPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
|
|
|
|
return CreateSymbol(NameSV);
|
2014-03-29 07:05:06 +00:00
|
|
|
}
|
|
|
|
|
2010-03-14 08:23:30 +00:00
|
|
|
MCSymbol *MCContext::CreateTempSymbol() {
|
2014-06-26 22:52:05 +00:00
|
|
|
SmallString<128> NameSV;
|
|
|
|
raw_svector_ostream(NameSV)
|
|
|
|
<< MAI->getPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
|
|
|
|
return CreateSymbol(NameSV);
|
2010-03-10 01:29:27 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 18:09:26 +00:00
|
|
|
unsigned MCContext::NextInstance(unsigned LocalLabelVal) {
|
2010-05-18 12:15:34 +00:00
|
|
|
MCLabel *&Label = Instances[LocalLabelVal];
|
|
|
|
if (!Label)
|
|
|
|
Label = new (*this) MCLabel(0);
|
|
|
|
return Label->incInstance();
|
2010-05-17 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 18:09:26 +00:00
|
|
|
unsigned MCContext::GetInstance(unsigned LocalLabelVal) {
|
2010-05-18 12:15:34 +00:00
|
|
|
MCLabel *&Label = Instances[LocalLabelVal];
|
|
|
|
if (!Label)
|
|
|
|
Label = new (*this) MCLabel(0);
|
|
|
|
return Label->getInstance();
|
2010-05-17 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
2014-03-13 18:09:26 +00:00
|
|
|
MCSymbol *MCContext::getOrCreateDirectionalLocalSymbol(unsigned LocalLabelVal,
|
|
|
|
unsigned Instance) {
|
|
|
|
MCSymbol *&Sym = LocalSymbols[std::make_pair(LocalLabelVal, Instance)];
|
|
|
|
if (!Sym)
|
|
|
|
Sym = CreateTempSymbol();
|
|
|
|
return Sym;
|
|
|
|
}
|
|
|
|
|
|
|
|
MCSymbol *MCContext::CreateDirectionalLocalSymbol(unsigned LocalLabelVal) {
|
|
|
|
unsigned Instance = NextInstance(LocalLabelVal);
|
|
|
|
return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
|
2010-05-17 23:08:19 +00:00
|
|
|
}
|
2014-03-13 18:09:26 +00:00
|
|
|
|
|
|
|
MCSymbol *MCContext::GetDirectionalLocalSymbol(unsigned LocalLabelVal,
|
|
|
|
bool Before) {
|
|
|
|
unsigned Instance = GetInstance(LocalLabelVal);
|
|
|
|
if (!Before)
|
|
|
|
++Instance;
|
|
|
|
return getOrCreateDirectionalLocalSymbol(LocalLabelVal, Instance);
|
2010-05-17 23:08:19 +00:00
|
|
|
}
|
|
|
|
|
2009-11-06 10:58:06 +00:00
|
|
|
MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
|
2009-06-23 22:01:43 +00:00
|
|
|
return Symbols.lookup(Name);
|
|
|
|
}
|
2010-04-08 20:30:37 +00:00
|
|
|
|
2012-09-18 17:10:37 +00:00
|
|
|
MCSymbol *MCContext::LookupSymbol(const Twine &Name) const {
|
|
|
|
SmallString<128> NameSV;
|
|
|
|
Name.toVector(NameSV);
|
|
|
|
return LookupSymbol(NameSV.str());
|
|
|
|
}
|
|
|
|
|
2010-04-08 20:30:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Section Management
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
const MCSectionMachO *MCContext::
|
|
|
|
getMachOSection(StringRef Segment, StringRef Section,
|
|
|
|
unsigned TypeAndAttributes,
|
|
|
|
unsigned Reserved2, SectionKind Kind) {
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2010-04-08 20:30:37 +00: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 04:16:08 +00:00
|
|
|
|
2010-04-08 20:30:37 +00:00
|
|
|
// Form the name to look up.
|
|
|
|
SmallString<64> Name;
|
|
|
|
Name += Segment;
|
|
|
|
Name.push_back(',');
|
|
|
|
Name += Section;
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2010-04-08 20:30:37 +00:00
|
|
|
// Do the lookup, if we have a hit, return it.
|
2014-04-10 23:55:11 +00:00
|
|
|
const MCSectionMachO *&Entry = MachOUniquingMap[Name.str()];
|
2010-04-08 20:30:37 +00:00
|
|
|
if (Entry) return Entry;
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2010-04-08 20:30:37 +00:00
|
|
|
// Otherwise, return a new section.
|
2010-04-08 21:26:26 +00:00
|
|
|
return Entry = new (*this) MCSectionMachO(Segment, Section, TypeAndAttributes,
|
|
|
|
Reserved2, Kind);
|
2010-04-08 20:30:37 +00:00
|
|
|
}
|
2010-04-08 21:26:26 +00:00
|
|
|
|
2010-11-10 19:05:07 +00:00
|
|
|
const MCSectionELF *MCContext::
|
2010-04-08 21:26:26 +00:00
|
|
|
getELFSection(StringRef Section, unsigned Type, unsigned Flags,
|
2010-11-11 18:13:52 +00:00
|
|
|
SectionKind Kind) {
|
|
|
|
return getELFSection(Section, Type, Flags, Kind, 0, "");
|
|
|
|
}
|
|
|
|
|
2014-04-10 21:53:53 +00:00
|
|
|
void MCContext::renameELFSection(const MCSectionELF *Section, StringRef Name) {
|
|
|
|
StringRef GroupName;
|
|
|
|
if (const MCSymbol *Group = Section->getGroup())
|
|
|
|
GroupName = Group->getName();
|
|
|
|
|
2014-04-10 23:55:11 +00:00
|
|
|
ELFUniquingMap.erase(SectionGroupPair(Section->getSectionName(), GroupName));
|
|
|
|
auto I =
|
|
|
|
ELFUniquingMap.insert(std::make_pair(SectionGroupPair(Name, GroupName),
|
|
|
|
Section)).first;
|
2014-04-11 22:49:14 +00:00
|
|
|
StringRef CachedName = I->first.first;
|
|
|
|
const_cast<MCSectionELF*>(Section)->setSectionName(CachedName);
|
2014-04-10 21:53:53 +00:00
|
|
|
}
|
|
|
|
|
2010-11-11 18:13:52 +00:00
|
|
|
const MCSectionELF *MCContext::
|
|
|
|
getELFSection(StringRef Section, unsigned Type, unsigned Flags,
|
|
|
|
SectionKind Kind, unsigned EntrySize, StringRef Group) {
|
2010-04-08 21:26:26 +00:00
|
|
|
// Do the lookup, if we have a hit, return it.
|
2014-04-10 23:55:11 +00:00
|
|
|
auto IterBool = ELFUniquingMap.insert(
|
2014-04-13 04:57:38 +00:00
|
|
|
std::make_pair(SectionGroupPair(Section, Group), nullptr));
|
2014-04-10 23:55:11 +00:00
|
|
|
auto &Entry = *IterBool.first;
|
|
|
|
if (!IterBool.second) return Entry.second;
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2010-09-30 05:59:22 +00:00
|
|
|
// Possibly refine the entry size first.
|
|
|
|
if (!EntrySize) {
|
|
|
|
EntrySize = MCSectionELF::DetermineEntrySize(Kind);
|
|
|
|
}
|
2010-11-11 18:13:52 +00:00
|
|
|
|
2014-04-13 04:57:38 +00:00
|
|
|
MCSymbol *GroupSym = nullptr;
|
2010-11-11 18:13:52 +00:00
|
|
|
if (!Group.empty())
|
|
|
|
GroupSym = GetOrCreateSymbol(Group);
|
|
|
|
|
2014-04-11 22:49:14 +00:00
|
|
|
StringRef CachedName = Entry.first.first;
|
|
|
|
MCSectionELF *Result = new (*this)
|
|
|
|
MCSectionELF(CachedName, Type, Flags, Kind, EntrySize, GroupSym);
|
2014-04-10 23:55:11 +00:00
|
|
|
Entry.second = Result;
|
2010-04-08 21:26:26 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2010-11-11 18:13:52 +00:00
|
|
|
const MCSectionELF *MCContext::CreateELFGroupSection() {
|
|
|
|
MCSectionELF *Result =
|
2011-01-23 04:28:49 +00:00
|
|
|
new (*this) MCSectionELF(".group", ELF::SHT_GROUP, 0,
|
2014-04-13 04:57:38 +00:00
|
|
|
SectionKind::getReadOnly(), 4, nullptr);
|
2010-11-11 18:13:52 +00:00
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2014-06-06 19:26:12 +00:00
|
|
|
const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section,
|
|
|
|
unsigned Characteristics,
|
|
|
|
SectionKind Kind,
|
|
|
|
StringRef COMDATSymName,
|
|
|
|
int Selection) {
|
2010-05-07 17:17:41 +00:00
|
|
|
// Do the lookup, if we have a hit, return it.
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2014-06-27 17:19:44 +00:00
|
|
|
SectionGroupTriple T(Section, COMDATSymName, Selection);
|
|
|
|
auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr));
|
2014-04-10 23:55:11 +00:00
|
|
|
auto Iter = IterBool.first;
|
|
|
|
if (!IterBool.second)
|
2013-11-19 19:52:52 +00:00
|
|
|
return Iter->second;
|
|
|
|
|
2014-07-14 22:57:27 +00:00
|
|
|
MCSymbol *COMDATSymbol = nullptr;
|
2013-11-19 19:52:52 +00:00
|
|
|
if (!COMDATSymName.empty())
|
|
|
|
COMDATSymbol = GetOrCreateSymbol(COMDATSymName);
|
|
|
|
|
2014-06-27 17:19:44 +00:00
|
|
|
StringRef CachedName = std::get<0>(Iter->first);
|
2014-06-06 19:26:12 +00:00
|
|
|
MCSectionCOFF *Result = new (*this)
|
|
|
|
MCSectionCOFF(CachedName, Characteristics, COMDATSymbol, Selection, Kind);
|
2010-11-26 04:16:08 +00:00
|
|
|
|
2013-11-19 19:52:52 +00:00
|
|
|
Iter->second = Result;
|
2010-05-07 17:17:41 +00:00
|
|
|
return Result;
|
|
|
|
}
|
2010-07-28 20:55:35 +00:00
|
|
|
|
2013-11-19 19:52:52 +00:00
|
|
|
const MCSectionCOFF *
|
|
|
|
MCContext::getCOFFSection(StringRef Section, unsigned Characteristics,
|
|
|
|
SectionKind Kind) {
|
|
|
|
return getCOFFSection(Section, Characteristics, Kind, "", 0);
|
|
|
|
}
|
|
|
|
|
2013-07-06 12:13:10 +00:00
|
|
|
const MCSectionCOFF *MCContext::getCOFFSection(StringRef Section) {
|
2014-06-27 17:19:44 +00:00
|
|
|
SectionGroupTriple T(Section, "", 0);
|
|
|
|
auto Iter = COFFUniquingMap.find(T);
|
2014-04-10 23:55:11 +00:00
|
|
|
if (Iter == COFFUniquingMap.end())
|
2014-04-13 04:57:38 +00:00
|
|
|
return nullptr;
|
2013-11-19 19:52:52 +00:00
|
|
|
return Iter->second;
|
2013-07-06 12:13:10 +00:00
|
|
|
}
|
|
|
|
|
2014-09-04 17:42:03 +00:00
|
|
|
const MCSectionCOFF *
|
|
|
|
MCContext::getAssociativeCOFFSection(const MCSectionCOFF *Sec,
|
|
|
|
const MCSymbol *KeySym) {
|
|
|
|
// Return the normal section if we don't have to be associative.
|
|
|
|
if (!KeySym)
|
|
|
|
return Sec;
|
|
|
|
|
|
|
|
// Make an associative section with the same name and kind as the normal
|
|
|
|
// section.
|
|
|
|
unsigned Characteristics =
|
|
|
|
Sec->getCharacteristics() | COFF::IMAGE_SCN_LNK_COMDAT;
|
|
|
|
return getCOFFSection(Sec->getSectionName(), Characteristics, Sec->getKind(),
|
|
|
|
KeySym->getName(),
|
|
|
|
COFF::IMAGE_COMDAT_SELECT_ASSOCIATIVE);
|
|
|
|
}
|
|
|
|
|
2010-07-28 20:55:35 +00: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-17 23:05:28 +00:00
|
|
|
unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
|
2013-03-07 01:42:00 +00:00
|
|
|
unsigned FileNumber, unsigned CUID) {
|
2014-03-13 21:59:51 +00:00
|
|
|
MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID];
|
2014-03-13 19:15:04 +00:00
|
|
|
return Table.getFile(Directory, FileName, FileNumber);
|
2010-07-28 20:55:35 +00:00
|
|
|
}
|
2010-08-24 20:32:42 +00:00
|
|
|
|
2010-10-04 20:17:24 +00:00
|
|
|
/// isValidDwarfFileNumber - takes a dwarf file number and returns true if it
|
2010-08-24 20:32:42 +00:00
|
|
|
/// currently is assigned and false otherwise.
|
2013-03-07 01:42:00 +00:00
|
|
|
bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) {
|
2014-03-13 18:55:04 +00:00
|
|
|
const SmallVectorImpl<MCDwarfFile>& MCDwarfFiles = getMCDwarfFiles(CUID);
|
2010-08-24 20:32:42 +00:00
|
|
|
if(FileNumber == 0 || FileNumber >= MCDwarfFiles.size())
|
|
|
|
return false;
|
|
|
|
|
2014-03-13 18:55:04 +00:00
|
|
|
return !MCDwarfFiles[FileNumber].Name.empty();
|
2010-08-24 20:32:42 +00:00
|
|
|
}
|
2012-01-26 23:20:11 +00:00
|
|
|
|
2014-06-19 15:52:37 +00:00
|
|
|
/// finalizeDwarfSections - Emit end symbols for each non-empty code section.
|
|
|
|
/// Also remove empty sections from SectionStartEndSyms, to avoid generating
|
|
|
|
/// useless debug info for them.
|
|
|
|
void MCContext::finalizeDwarfSections(MCStreamer &MCOS) {
|
|
|
|
MCContext &context = MCOS.getContext();
|
|
|
|
|
|
|
|
auto sec = SectionStartEndSyms.begin();
|
|
|
|
while (sec != SectionStartEndSyms.end()) {
|
|
|
|
assert(sec->second.first && "Start symbol must be set by now");
|
|
|
|
MCOS.SwitchSection(sec->first);
|
|
|
|
if (MCOS.mayHaveInstructions()) {
|
|
|
|
MCSymbol *SectionEndSym = context.CreateTempSymbol();
|
|
|
|
MCOS.EmitLabel(SectionEndSym);
|
|
|
|
sec->second.second = SectionEndSym;
|
|
|
|
++sec;
|
|
|
|
} else {
|
|
|
|
MapVector<const MCSection *, std::pair<MCSymbol *, MCSymbol *> >::iterator
|
|
|
|
to_erase = sec;
|
|
|
|
sec = SectionStartEndSyms.erase(to_erase);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-22 21:42:18 +00:00
|
|
|
void MCContext::FatalError(SMLoc Loc, const Twine &Msg) const {
|
2012-01-26 23:20:11 +00:00
|
|
|
// If we have a source manager and a location, use it. Otherwise just
|
|
|
|
// use the generic report_fatal_error().
|
|
|
|
if (!SrcMgr || Loc == SMLoc())
|
2014-03-14 22:41:58 +00:00
|
|
|
report_fatal_error(Msg, false);
|
2012-01-26 23:20:11 +00:00
|
|
|
|
|
|
|
// Use the source manager to print the message.
|
|
|
|
SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg);
|
|
|
|
|
|
|
|
// If we reached here, we are failing ungracefully. Run the interrupt handlers
|
|
|
|
// to make sure any special cleanups get done, in particular that we remove
|
|
|
|
// files registered with RemoveFileOnSignal.
|
|
|
|
sys::RunInterruptHandlers();
|
|
|
|
exit(1);
|
|
|
|
}
|