diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-08 22:09:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-08 22:09:08 +0000 |
commit | b6b2164e2819457d99126afb79cf42e69aeb4ad3 (patch) | |
tree | 03121a39ca7f8e960d7cfff4dec3dfd2162761ff /llvm/lib/Target/X86 | |
parent | 54d88f175947dab7143129a0274c0a7b1b7035b2 (diff) | |
download | bcm5719-llvm-b6b2164e2819457d99126afb79cf42e69aeb4ad3.tar.gz bcm5719-llvm-b6b2164e2819457d99126afb79cf42e69aeb4ad3.zip |
add an x86 implementation of MCTargetExpr for
representing @GOT and friends. Use it for
personality references as a first use.
llvm-svn: 95588
Diffstat (limited to 'llvm/lib/Target/X86')
-rw-r--r-- | llvm/lib/Target/X86/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/lib/Target/X86/X86MCTargetExpr.cpp | 43 | ||||
-rw-r--r-- | llvm/lib/Target/X86/X86MCTargetExpr.h | 42 | ||||
-rw-r--r-- | llvm/lib/Target/X86/X86TargetObjectFile.cpp | 6 |
4 files changed, 89 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/CMakeLists.txt b/llvm/lib/Target/X86/CMakeLists.txt index 8f4ff1701ed..61f26a73933 100644 --- a/llvm/lib/Target/X86/CMakeLists.txt +++ b/llvm/lib/Target/X86/CMakeLists.txt @@ -26,6 +26,7 @@ set(sources X86JITInfo.cpp X86MCAsmInfo.cpp X86MCCodeEmitter.cpp + X86MCTargetExpr.cpp X86RegisterInfo.cpp X86Subtarget.cpp X86TargetMachine.cpp diff --git a/llvm/lib/Target/X86/X86MCTargetExpr.cpp b/llvm/lib/Target/X86/X86MCTargetExpr.cpp new file mode 100644 index 00000000000..1b0d75a0b5a --- /dev/null +++ b/llvm/lib/Target/X86/X86MCTargetExpr.cpp @@ -0,0 +1,43 @@ +//===- X86MCTargetExpr.cpp - X86 Target Specific MCExpr Implementation ----===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "X86MCTargetExpr.h" +#include "llvm/MC/MCContext.h" +#include "llvm/MC/MCSymbol.h" +#include "llvm/MC/MCValue.h" +#include "llvm/Support/raw_ostream.h" +using namespace llvm; + +X86MCTargetExpr *X86MCTargetExpr::Create(const MCSymbol *Sym, VariantKind K, + MCContext &Ctx) { + return new (Ctx) X86MCTargetExpr(Sym, K); +} + +void X86MCTargetExpr::PrintImpl(raw_ostream &OS) const { + OS << *Sym; + + switch (Kind) { + case GOT: OS << "@GOT"; break; + case PLT: OS << "@PLT"; break; + case GOTPCREL: OS << "@GOTPCREL"; break; + } +} + +bool X86MCTargetExpr::EvaluateAsRelocatableImpl(MCValue &Res) const { + // FIXME: I don't know if this is right, it followed MCSymbolRefExpr. + + // Evaluate recursively if this is a variable. + if (Sym->isVariable()) + return Sym->getValue()->EvaluateAsRelocatable(Res); + + Res = MCValue::get(Sym, 0, 0); + return true; +} + +X86MCTargetExpr *foo(MCExpr *A) { return (X86MCTargetExpr*)A; }
\ No newline at end of file diff --git a/llvm/lib/Target/X86/X86MCTargetExpr.h b/llvm/lib/Target/X86/X86MCTargetExpr.h new file mode 100644 index 00000000000..b6d22bb690c --- /dev/null +++ b/llvm/lib/Target/X86/X86MCTargetExpr.h @@ -0,0 +1,42 @@ +//===- X86MCTargetExpr.h - X86 Target Specific MCExpr -----------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#ifndef X86_MCTARGETEXPR_H +#define X86_MCTARGETEXPR_H + +#include "llvm/MC/MCExpr.h" + +namespace llvm { + +/// X86MCTargetExpr - This class represents symbol variants, like foo@GOT. +class X86MCTargetExpr : public MCTargetExpr { +public: + enum VariantKind { + GOT, + PLT, + GOTPCREL + }; +private: + /// Sym - The symbol being referenced. + const MCSymbol * const Sym; + /// Kind - The modifier. + const VariantKind Kind; + + X86MCTargetExpr(const MCSymbol *S, VariantKind K) : Sym(S), Kind(K) {} +public: + static X86MCTargetExpr *Create(const MCSymbol *Sym, VariantKind K, + MCContext &Ctx); + + void PrintImpl(raw_ostream &OS) const; + bool EvaluateAsRelocatableImpl(MCValue &Res) const; +}; + +} // end namespace llvm + +#endif diff --git a/llvm/lib/Target/X86/X86TargetObjectFile.cpp b/llvm/lib/Target/X86/X86TargetObjectFile.cpp index a8faafd4b58..9b7d5d23881 100644 --- a/llvm/lib/Target/X86/X86TargetObjectFile.cpp +++ b/llvm/lib/Target/X86/X86TargetObjectFile.cpp @@ -8,9 +8,9 @@ //===----------------------------------------------------------------------===// #include "X86TargetObjectFile.h" +#include "X86MCTargetExpr.h" #include "llvm/CodeGen/MachineModuleInfoImpls.h" #include "llvm/MC/MCContext.h" -#include "llvm/MC/MCExpr.h" #include "llvm/Target/Mangler.h" #include "llvm/ADT/SmallString.h" using namespace llvm; @@ -57,9 +57,9 @@ getSymbolForDwarfGlobalReference(const GlobalValue *GV, Mangler *Mang, SmallString<128> Name; Mang->getNameWithPrefix(Name, GV, false); - Name += "@GOTPCREL"; + const MCSymbol *Sym = getContext().CreateSymbol(Name); const MCExpr *Res = - MCSymbolRefExpr::Create(Name.str(), getContext()); + X86MCTargetExpr::Create(Sym, X86MCTargetExpr::GOTPCREL, getContext()); const MCExpr *Four = MCConstantExpr::Create(4, getContext()); return MCBinaryExpr::CreateAdd(Res, Four, getContext()); } |