mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +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
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
//===- 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 {
|
|
Invalid,
|
|
GOT,
|
|
GOTOFF,
|
|
GOTPCREL,
|
|
GOTTPOFF,
|
|
INDNTPOFF,
|
|
NTPOFF,
|
|
PLT,
|
|
TLSGD,
|
|
TPOFF
|
|
};
|
|
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
|