2009-06-24 07:39:15 +08:00
|
|
|
//===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
|
2009-06-24 06:01:43 +08: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-12 06:56:10 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-06-24 06:01:43 +08:00
|
|
|
#include "llvm/MC/MCSection.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2009-10-20 06:49:00 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2009-06-24 06:01:43 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-03-12 06:53:35 +08:00
|
|
|
MCContext::MCContext(const MCAsmInfo &mai) : MAI(mai), NextUniqueID(0) {
|
2009-06-24 06:01:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
MCContext::~MCContext() {
|
2009-08-13 08:21:53 +08:00
|
|
|
// NOTE: The sections are all allocated out of a bump pointer allocator,
|
|
|
|
// we don't need to free them here.
|
2009-06-24 06:01:43 +08:00
|
|
|
}
|
|
|
|
|
2009-11-06 18:58:06 +08:00
|
|
|
MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
|
2010-03-10 09:29:27 +08:00
|
|
|
assert(!Name.empty() && "Normal symbols cannot be unnamed!");
|
2009-06-24 12:31:49 +08:00
|
|
|
MCSymbol *&Entry = Symbols[Name];
|
|
|
|
if (Entry) return Entry;
|
|
|
|
|
2009-06-25 01:00:42 +08:00
|
|
|
return Entry = new (*this) MCSymbol(Name, false);
|
2009-06-24 12:31:49 +08:00
|
|
|
}
|
|
|
|
|
2009-10-20 06:49:00 +08:00
|
|
|
MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
|
|
|
|
SmallString<128> NameSV;
|
|
|
|
Name.toVector(NameSV);
|
|
|
|
return GetOrCreateSymbol(NameSV.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-10 09:29:27 +08:00
|
|
|
MCSymbol *MCContext::GetOrCreateTemporarySymbol(StringRef Name) {
|
2010-03-12 06:56:10 +08:00
|
|
|
// If there is no name, create a new anonymous symbol.
|
|
|
|
if (Name.empty())
|
|
|
|
return GetOrCreateTemporarySymbol(Twine(MAI.getPrivateGlobalPrefix()) +
|
|
|
|
"tmp" + Twine(NextUniqueID++));
|
|
|
|
|
2009-06-24 06:01:43 +08:00
|
|
|
// Otherwise create as usual.
|
|
|
|
MCSymbol *&Entry = Symbols[Name];
|
2010-03-10 09:29:27 +08:00
|
|
|
if (Entry) return Entry;
|
2009-06-25 01:00:42 +08:00
|
|
|
return Entry = new (*this) MCSymbol(Name, true);
|
2009-06-24 06:01:43 +08:00
|
|
|
}
|
|
|
|
|
2010-03-10 09:29:27 +08:00
|
|
|
MCSymbol *MCContext::GetOrCreateTemporarySymbol(const Twine &Name) {
|
|
|
|
SmallString<128> NameSV;
|
|
|
|
Name.toVector(NameSV);
|
|
|
|
return GetOrCreateTemporarySymbol(NameSV.str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-06 18:58:06 +08:00
|
|
|
MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
|
2009-06-24 06:01:43 +08:00
|
|
|
return Symbols.lookup(Name);
|
|
|
|
}
|