]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/MC/MCContext.cpp
Update LLVM to r98164.
[FreeBSD/FreeBSD.git] / lib / MC / MCContext.cpp
1 //===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
2 //
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"
11 #include "llvm/MC/MCSection.h"
12 #include "llvm/MC/MCSymbol.h"
13 #include "llvm/MC/MCValue.h"
14 #include "llvm/ADT/SmallString.h"
15 #include "llvm/ADT/Twine.h"
16 using namespace llvm;
17
18 MCContext::MCContext() {
19 }
20
21 MCContext::~MCContext() {
22   // NOTE: The sections are all allocated out of a bump pointer allocator,
23   // we don't need to free them here.
24 }
25
26 MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
27   assert(!Name.empty() && "Normal symbols cannot be unnamed!");
28   MCSymbol *&Entry = Symbols[Name];
29   if (Entry) return Entry;
30
31   return Entry = new (*this) MCSymbol(Name, false);
32 }
33
34 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
35   SmallString<128> NameSV;
36   Name.toVector(NameSV);
37   return GetOrCreateSymbol(NameSV.str());
38 }
39
40
41 MCSymbol *MCContext::GetOrCreateTemporarySymbol(StringRef Name) {
42   // If unnamed, just create a symbol.
43   if (Name.empty())
44     new (*this) MCSymbol("", true);
45     
46   // Otherwise create as usual.
47   MCSymbol *&Entry = Symbols[Name];
48   if (Entry) return Entry;
49   return Entry = new (*this) MCSymbol(Name, true);
50 }
51
52 MCSymbol *MCContext::GetOrCreateTemporarySymbol(const Twine &Name) {
53   SmallString<128> NameSV;
54   Name.toVector(NameSV);
55   return GetOrCreateTemporarySymbol(NameSV.str());
56 }
57
58
59 MCSymbol *MCContext::LookupSymbol(StringRef Name) const {
60   return Symbols.lookup(Name);
61 }