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"
|
2010-03-11 22:56:10 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-06-23 22:01:43 +00:00
|
|
|
#include "llvm/MC/MCSection.h"
|
|
|
|
#include "llvm/MC/MCSymbol.h"
|
2009-10-19 22:49:00 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/ADT/Twine.h"
|
2009-06-23 22:01:43 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-03-11 22:53:35 +00:00
|
|
|
MCContext::MCContext(const MCAsmInfo &mai) : MAI(mai), NextUniqueID(0) {
|
2009-06-23 22:01:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MCContext::~MCContext() {
|
2009-08-13 00:21:53 +00:00
|
|
|
// NOTE: The sections are all allocated out of a bump pointer allocator,
|
|
|
|
// we don't need to free them here.
|
2009-06-23 22:01:43 +00:00
|
|
|
}
|
|
|
|
|
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-03-15 06:15:35 +00:00
|
|
|
|
2010-03-30 18:10:53 +00:00
|
|
|
// Determine whether this is an assembler temporary or normal label.
|
|
|
|
bool isTemporary = Name.startswith(MAI.getPrivateGlobalPrefix());
|
|
|
|
|
2010-03-15 06:15:35 +00: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);
|
|
|
|
if (Entry.getValue()) return Entry.getValue();
|
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
|
|
|
|
// to the copy of the string that is embedded in the StringMapEntry.
|
|
|
|
MCSymbol *Result = new (*this) MCSymbol(Entry.getKey(), isTemporary);
|
|
|
|
Entry.setValue(Result);
|
|
|
|
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;
|
|
|
|
Name.toVector(NameSV);
|
2010-03-30 18:10:53 +00:00
|
|
|
return GetOrCreateSymbol(NameSV.str());
|
2009-10-19 22:49:00 +00:00
|
|
|
}
|
|
|
|
|
2010-03-14 08:23:30 +00:00
|
|
|
MCSymbol *MCContext::CreateTempSymbol() {
|
2010-03-30 18:10:53 +00:00
|
|
|
return GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix()) +
|
|
|
|
"tmp" + Twine(NextUniqueID++));
|
2010-03-10 01:29:27 +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);
|
|
|
|
}
|