summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-23 22:01:43 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-23 22:01:43 +0000
commitecc63f8687c4eb746b69336316685fe9b224adfb (patch)
tree5c007193c7d40c2fb192548c9e27828547f381e6 /lib
parent87ea1912ef06c0d85956cfc3d4b86a0a88490c3f (diff)
downloadllvm-ecc63f8687c4eb746b69336316685fe9b224adfb.tar.gz
llvm-ecc63f8687c4eb746b69336316685fe9b224adfb.tar.bz2
llvm-ecc63f8687c4eb746b69336316685fe9b224adfb.tar.xz
Start flushing out MCContext.
- Lives inside new library lib/MC (LLVMMC.a) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74013 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/MC/CMakeLists.txt3
-rw-r--r--lib/MC/MCContext.cpp77
-rw-r--r--lib/MC/Makefile15
-rw-r--r--lib/Makefile2
4 files changed, 96 insertions, 1 deletions
diff --git a/lib/MC/CMakeLists.txt b/lib/MC/CMakeLists.txt
new file mode 100644
index 0000000000..0d86cb4f1f
--- /dev/null
+++ b/lib/MC/CMakeLists.txt
@@ -0,0 +1,3 @@
+add_llvm_library(LLVMMC
+ MCContext.cpp
+ )
diff --git a/lib/MC/MCContext.cpp b/lib/MC/MCContext.cpp
new file mode 100644
index 0000000000..a730a07467
--- /dev/null
+++ b/lib/MC/MCContext.cpp
@@ -0,0 +1,77 @@
+//===- lib/MachineCode/MCContext.cpp - Machine Code Context ---------------===//
+//
+// 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"
+
+#include "llvm/MC/MCAtom.h"
+#include "llvm/MC/MCImm.h"
+#include "llvm/MC/MCSection.h"
+#include "llvm/MC/MCSymbol.h"
+using namespace llvm;
+
+MCContext::MCContext()
+{
+}
+
+MCContext::~MCContext() {
+}
+
+MCSection *MCContext::GetSection(const char *Name) {
+ MCSection *&Entry = Sections[Name];
+
+ if (!Entry)
+ Entry = new (this) MCSection(Name);
+
+ return Entry;
+}
+
+MCAtom *MCContext::CreateAtom(MCSection *Section) {
+ return new (this) MCAtom(Section);
+}
+
+MCSymbol *MCContext::CreateSymbol(MCAtom *Atom, const char *Name) {
+ assert(Name[0] != '\0' && "Normal symbols cannot be unnamed!");
+
+ // Create and bind the symbol, and ensure that names are unique.
+ MCSymbol *&Entry = Symbols[Name];
+ assert(!Entry && "Duplicate symbol definition!");
+ return Entry = new (this) MCSymbol(Atom, Name, false);
+}
+
+MCSymbol *MCContext::CreateTemporarySymbol(MCAtom *Atom, const char *Name) {
+ // If unnamed, just create a symbol.
+ if (Name[0] == '\0')
+ new (this) MCSymbol(Atom, "", true);
+
+ // Otherwise create as usual.
+ MCSymbol *&Entry = Symbols[Name];
+ assert(!Entry && "Duplicate symbol definition!");
+ return Entry = new (this) MCSymbol(Atom, Name, true);
+}
+
+MCSymbol *MCContext::LookupSymbol(const char *Name) const {
+ return Symbols.lookup(Name);
+}
+
+void MCContext::ClearSymbolValue(MCSymbol *Sym) {
+ SymbolValues.erase(Sym);
+}
+
+void MCContext::SetSymbolValue(MCSymbol *Sym, const MCImm &Value) {
+ SymbolValues[Sym] = Value;
+}
+
+const MCImm *MCContext::GetSymbolValue(MCSymbol *Sym) const {
+ DenseMap<MCSymbol*, MCImm>::iterator it = SymbolValues.find(Sym);
+
+ if (it == SymbolValues.end())
+ return 0;
+
+ return &it->second;
+}
diff --git a/lib/MC/Makefile b/lib/MC/Makefile
new file mode 100644
index 0000000000..314a5b1af2
--- /dev/null
+++ b/lib/MC/Makefile
@@ -0,0 +1,15 @@
+##===- lib/MC/Makefile -------------------------------------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../..
+LIBRARYNAME = LLVMMC
+BUILD_ARCHIVE := 1
+
+include $(LEVEL)/Makefile.common
+
diff --git a/lib/Makefile b/lib/Makefile
index 8dd67d9957..7199da52d4 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -9,7 +9,7 @@
LEVEL = ..
PARALLEL_DIRS = VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
- Target ExecutionEngine Debugger Linker CompilerDriver
+ Target ExecutionEngine Debugger Linker CompilerDriver MC
include $(LEVEL)/Makefile.common