mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-08 19:06:39 +00:00
8fb2e233a0
backend to use X86MCTargetExpr, simplifying a bunch of code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95595 91177308-0d34-0410-b5e6-96231b3b80d8
49 lines
1.5 KiB
C++
49 lines
1.5 KiB
C++
//===- 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 Invalid: OS << "@<invalid>"; break;
|
|
case GOT: OS << "@GOT"; break;
|
|
case GOTOFF: OS << "@GOTOFF"; break;
|
|
case GOTPCREL: OS << "@GOTPCREL"; break;
|
|
case GOTTPOFF: OS << "@GOTTPOFF"; break;
|
|
case INDNTPOFF: OS << "@INDNTPOFF"; break;
|
|
case NTPOFF: OS << "@NTPOFF"; break;
|
|
case PLT: OS << "@PLT"; break;
|
|
case TLSGD: OS << "@TLSGD"; break;
|
|
case TPOFF: OS << "@TPOFF"; 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;
|
|
}
|