2009-08-31 10:06:59 +02:00
|
|
|
//===- MCExpr.h - Assembly Level Expressions --------------------*- C++ -*-===//
|
2009-06-29 22:40:36 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
#ifndef LLVM_MC_MCEXPR_H
|
|
|
|
#define LLVM_MC_MCEXPR_H
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2010-12-07 01:27:36 +01:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2009-06-29 22:40:36 +02:00
|
|
|
#include "llvm/Support/Casting.h"
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2009-06-29 22:40:36 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
2010-03-11 03:28:59 +01:00
|
|
|
class MCAsmLayout;
|
2010-12-03 01:55:40 +01:00
|
|
|
class MCAssembler;
|
2009-06-29 22:40:36 +02:00
|
|
|
class MCContext;
|
2011-04-29 20:00:03 +02:00
|
|
|
class MCSection;
|
2010-12-07 01:27:36 +01:00
|
|
|
class MCSectionData;
|
2009-06-29 22:40:36 +02:00
|
|
|
class MCSymbol;
|
2009-06-30 03:49:52 +02:00
|
|
|
class MCValue;
|
2009-08-31 10:07:33 +02:00
|
|
|
class raw_ostream;
|
2009-09-16 03:26:31 +02:00
|
|
|
class StringRef;
|
2010-12-07 01:27:36 +01:00
|
|
|
typedef DenseMap<const MCSectionData*, uint64_t> SectionAddrMap;
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
/// MCExpr - Base class for the full range of assembler expressions which are
|
2009-08-31 10:07:22 +02:00
|
|
|
/// needed for parsing.
|
2009-08-31 10:06:59 +02:00
|
|
|
class MCExpr {
|
2009-06-29 22:40:36 +02:00
|
|
|
public:
|
2009-08-31 10:06:59 +02:00
|
|
|
enum ExprKind {
|
2009-07-01 17:14:50 +02:00
|
|
|
Binary, ///< Binary expressions.
|
|
|
|
Constant, ///< Constant expressions.
|
|
|
|
SymbolRef, ///< References to labels and assigned expressions.
|
2010-02-08 20:41:07 +01:00
|
|
|
Unary, ///< Unary expressions.
|
|
|
|
Target ///< Target specific expression.
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
2009-08-31 10:07:22 +02:00
|
|
|
|
2009-06-29 22:40:36 +02:00
|
|
|
private:
|
2009-08-31 10:06:59 +02:00
|
|
|
ExprKind Kind;
|
2009-08-31 10:07:22 +02:00
|
|
|
|
|
|
|
MCExpr(const MCExpr&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const MCExpr&); // DO NOT IMPLEMENT
|
|
|
|
|
2010-12-18 04:57:21 +01:00
|
|
|
bool EvaluateAsAbsolute(int64_t &Res, const MCAssembler *Asm,
|
|
|
|
const MCAsmLayout *Layout,
|
2010-12-07 01:27:36 +01:00
|
|
|
const SectionAddrMap *Addrs) const;
|
2009-06-29 22:40:36 +02:00
|
|
|
protected:
|
2010-02-09 01:29:29 +01:00
|
|
|
explicit MCExpr(ExprKind _Kind) : Kind(_Kind) {}
|
2009-08-31 10:07:22 +02:00
|
|
|
|
2010-12-18 04:57:21 +01:00
|
|
|
bool EvaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm,
|
|
|
|
const MCAsmLayout *Layout,
|
2010-12-07 01:27:36 +01:00
|
|
|
const SectionAddrMap *Addrs,
|
2010-10-16 20:23:53 +02:00
|
|
|
bool InSet) const;
|
2009-06-29 22:40:36 +02:00
|
|
|
public:
|
2009-08-31 10:07:22 +02:00
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
ExprKind getKind() const { return Kind; }
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:33 +02:00
|
|
|
/// @}
|
|
|
|
/// @name Utility Methods
|
|
|
|
/// @{
|
|
|
|
|
2010-01-18 01:37:40 +01:00
|
|
|
void print(raw_ostream &OS) const;
|
2009-08-31 10:07:33 +02:00
|
|
|
void dump() const;
|
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// @}
|
|
|
|
/// @name Expression Evaluation
|
|
|
|
/// @{
|
|
|
|
|
2009-06-29 22:40:36 +02:00
|
|
|
/// EvaluateAsAbsolute - Try to evaluate the expression to an absolute value.
|
|
|
|
///
|
2009-06-30 03:49:52 +02:00
|
|
|
/// @param Res - The absolute value, if evaluation succeeds.
|
2010-03-11 03:28:59 +01:00
|
|
|
/// @param Layout - The assembler layout object to use for evaluating symbol
|
|
|
|
/// values. If not given, then only non-symbolic expressions will be
|
|
|
|
/// evaluated.
|
2009-06-29 22:40:36 +02:00
|
|
|
/// @result - True on success.
|
2010-12-18 04:57:21 +01:00
|
|
|
bool EvaluateAsAbsolute(int64_t &Res) const;
|
|
|
|
bool EvaluateAsAbsolute(int64_t &Res, const MCAssembler &Asm) const;
|
|
|
|
bool EvaluateAsAbsolute(int64_t &Res, const MCAsmLayout &Layout) const;
|
2010-12-07 01:27:36 +01:00
|
|
|
bool EvaluateAsAbsolute(int64_t &Res, const MCAsmLayout &Layout,
|
2010-12-18 04:57:21 +01:00
|
|
|
const SectionAddrMap &Addrs) const;
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-06-30 03:49:52 +02:00
|
|
|
/// EvaluateAsRelocatable - Try to evaluate the expression to a relocatable
|
2009-07-01 17:14:50 +02:00
|
|
|
/// value, i.e. an expression of the fixed form (a - b + constant).
|
2009-06-30 03:49:52 +02:00
|
|
|
///
|
|
|
|
/// @param Res - The relocatable value, if evaluation succeeds.
|
2010-03-11 03:28:59 +01:00
|
|
|
/// @param Layout - The assembler layout object to use for evaluating values.
|
2009-06-30 03:49:52 +02:00
|
|
|
/// @result - True on success.
|
2010-12-22 17:11:57 +01:00
|
|
|
bool EvaluateAsRelocatable(MCValue &Res, const MCAsmLayout &Layout) const;
|
2009-06-30 03:49:52 +02:00
|
|
|
|
2011-04-29 20:00:03 +02:00
|
|
|
/// FindAssociatedSection - Find the "associated section" for this expression,
|
|
|
|
/// which is currently defined as the absolute section for constants, or
|
|
|
|
/// otherwise the section associated with the first defined symbol in the
|
|
|
|
/// expression.
|
|
|
|
const MCSection *FindAssociatedSection() const;
|
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// @}
|
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
static bool classof(const MCExpr *) { return true; }
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
2010-03-12 22:00:45 +01:00
|
|
|
|
2010-01-18 01:37:40 +01:00
|
|
|
inline raw_ostream &operator<<(raw_ostream &OS, const MCExpr &E) {
|
|
|
|
E.print(OS);
|
|
|
|
return OS;
|
|
|
|
}
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
//// MCConstantExpr - Represent a constant integer expression.
|
|
|
|
class MCConstantExpr : public MCExpr {
|
2009-06-29 22:40:36 +02:00
|
|
|
int64_t Value;
|
|
|
|
|
2010-02-09 01:29:29 +01:00
|
|
|
explicit MCConstantExpr(int64_t _Value)
|
2009-08-31 10:06:59 +02:00
|
|
|
: MCExpr(MCExpr::Constant), Value(_Value) {}
|
2009-08-31 10:07:22 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// @name Construction
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
2009-06-29 22:40:36 +02:00
|
|
|
int64_t getValue() const { return Value; }
|
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
static bool classof(const MCExpr *E) {
|
|
|
|
return E->getKind() == MCExpr::Constant;
|
2009-06-29 22:40:36 +02:00
|
|
|
}
|
2009-08-31 10:06:59 +02:00
|
|
|
static bool classof(const MCConstantExpr *) { return true; }
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
/// MCSymbolRefExpr - Represent a reference to a symbol from inside an
|
2009-07-01 17:14:50 +02:00
|
|
|
/// expression.
|
|
|
|
///
|
|
|
|
/// A symbol reference in an expression may be a use of a label, a use of an
|
|
|
|
/// assembler variable (defined constant), or constitute an implicit definition
|
|
|
|
/// of the symbol as external.
|
2009-08-31 10:06:59 +02:00
|
|
|
class MCSymbolRefExpr : public MCExpr {
|
2010-03-16 00:51:06 +01:00
|
|
|
public:
|
|
|
|
enum VariantKind {
|
|
|
|
VK_None,
|
|
|
|
VK_Invalid,
|
|
|
|
|
|
|
|
VK_GOT,
|
|
|
|
VK_GOTOFF,
|
|
|
|
VK_GOTPCREL,
|
|
|
|
VK_GOTTPOFF,
|
|
|
|
VK_INDNTPOFF,
|
|
|
|
VK_NTPOFF,
|
2010-10-28 16:22:44 +02:00
|
|
|
VK_GOTNTPOFF,
|
2010-03-16 00:51:06 +01:00
|
|
|
VK_PLT,
|
|
|
|
VK_TLSGD,
|
2010-10-28 17:02:40 +02:00
|
|
|
VK_TLSLD,
|
2010-10-28 16:37:09 +02:00
|
|
|
VK_TLSLDM,
|
2010-05-12 07:16:34 +02:00
|
|
|
VK_TPOFF,
|
2010-10-28 16:48:59 +02:00
|
|
|
VK_DTPOFF,
|
2010-11-14 23:22:59 +01:00
|
|
|
VK_TLVP, // Mach-O thread local variable relocation
|
2012-02-11 18:26:53 +01:00
|
|
|
VK_SECREL,
|
2010-11-10 04:26:07 +01:00
|
|
|
// FIXME: We'd really like to use the generic Kinds listed above for these.
|
|
|
|
VK_ARM_PLT, // ARM-style PLT references. i.e., (PLT) instead of @PLT
|
|
|
|
VK_ARM_TLSGD, // ditto for TLSGD, GOT, GOTOFF, TPOFF and GOTTPOFF
|
|
|
|
VK_ARM_GOT,
|
|
|
|
VK_ARM_GOTOFF,
|
|
|
|
VK_ARM_TPOFF,
|
|
|
|
VK_ARM_GOTTPOFF,
|
2012-01-26 10:25:43 +01:00
|
|
|
VK_ARM_TARGET1,
|
2011-02-04 00:17:44 +01:00
|
|
|
|
2010-11-15 03:46:57 +01:00
|
|
|
VK_PPC_TOC,
|
2011-06-09 22:25:38 +02:00
|
|
|
VK_PPC_DARWIN_HA16, // ha16(symbol)
|
|
|
|
VK_PPC_DARWIN_LO16, // lo16(symbol)
|
|
|
|
VK_PPC_GAS_HA16, // symbol@ha
|
2011-10-25 20:13:20 +02:00
|
|
|
VK_PPC_GAS_LO16, // symbol@l
|
|
|
|
|
|
|
|
VK_Mips_GPREL,
|
|
|
|
VK_Mips_GOT_CALL,
|
2011-12-07 01:28:57 +01:00
|
|
|
VK_Mips_GOT16,
|
2011-10-25 20:13:20 +02:00
|
|
|
VK_Mips_GOT,
|
|
|
|
VK_Mips_ABS_HI,
|
|
|
|
VK_Mips_ABS_LO,
|
|
|
|
VK_Mips_TLSGD,
|
2011-12-14 19:26:41 +01:00
|
|
|
VK_Mips_TLSLDM,
|
|
|
|
VK_Mips_DTPREL_HI,
|
|
|
|
VK_Mips_DTPREL_LO,
|
2011-10-25 20:13:20 +02:00
|
|
|
VK_Mips_GOTTPREL,
|
|
|
|
VK_Mips_TPREL_HI,
|
|
|
|
VK_Mips_TPREL_LO,
|
|
|
|
VK_Mips_GPOFF_HI,
|
|
|
|
VK_Mips_GPOFF_LO,
|
|
|
|
VK_Mips_GOT_DISP,
|
|
|
|
VK_Mips_GOT_PAGE,
|
|
|
|
VK_Mips_GOT_OFST
|
2010-03-16 00:51:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// The symbol being referenced.
|
2009-08-31 10:07:22 +02:00
|
|
|
const MCSymbol *Symbol;
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2010-03-16 00:51:06 +01:00
|
|
|
/// The symbol reference modifier.
|
|
|
|
const VariantKind Kind;
|
|
|
|
|
|
|
|
explicit MCSymbolRefExpr(const MCSymbol *_Symbol, VariantKind _Kind)
|
2012-01-07 04:13:18 +01:00
|
|
|
: MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind) {
|
|
|
|
assert(Symbol);
|
|
|
|
}
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
public:
|
|
|
|
/// @name Construction
|
|
|
|
/// @{
|
|
|
|
|
2010-03-16 00:51:06 +01:00
|
|
|
static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) {
|
|
|
|
return MCSymbolRefExpr::Create(Symbol, VK_None, Ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, VariantKind Kind,
|
|
|
|
MCContext &Ctx);
|
|
|
|
static const MCSymbolRefExpr *Create(StringRef Name, VariantKind Kind,
|
|
|
|
MCContext &Ctx);
|
2011-02-04 00:17:44 +01:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// @}
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
const MCSymbol &getSymbol() const { return *Symbol; }
|
|
|
|
|
2010-03-16 00:51:06 +01:00
|
|
|
VariantKind getKind() const { return Kind; }
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
/// @name Static Utility Functions
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
static StringRef getVariantKindName(VariantKind Kind);
|
|
|
|
|
|
|
|
static VariantKind getVariantKindForName(StringRef Name);
|
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
static bool classof(const MCExpr *E) {
|
|
|
|
return E->getKind() == MCExpr::SymbolRef;
|
2009-06-29 22:40:36 +02:00
|
|
|
}
|
2009-08-31 10:06:59 +02:00
|
|
|
static bool classof(const MCSymbolRefExpr *) { return true; }
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
/// MCUnaryExpr - Unary assembler expressions.
|
|
|
|
class MCUnaryExpr : public MCExpr {
|
2009-06-29 22:40:36 +02:00
|
|
|
public:
|
|
|
|
enum Opcode {
|
2009-07-01 17:14:50 +02:00
|
|
|
LNot, ///< Logical negation.
|
|
|
|
Minus, ///< Unary minus.
|
|
|
|
Not, ///< Bitwise negation.
|
|
|
|
Plus ///< Unary plus.
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
Opcode Op;
|
2009-08-31 10:07:22 +02:00
|
|
|
const MCExpr *Expr;
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
MCUnaryExpr(Opcode _Op, const MCExpr *_Expr)
|
2009-08-31 10:06:59 +02:00
|
|
|
: MCExpr(MCExpr::Unary), Op(_Op), Expr(_Expr) {}
|
2009-08-31 10:07:22 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// @name Construction
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
|
|
|
|
MCContext &Ctx);
|
|
|
|
static const MCUnaryExpr *CreateLNot(const MCExpr *Expr, MCContext &Ctx) {
|
|
|
|
return Create(LNot, Expr, Ctx);
|
|
|
|
}
|
|
|
|
static const MCUnaryExpr *CreateMinus(const MCExpr *Expr, MCContext &Ctx) {
|
|
|
|
return Create(Minus, Expr, Ctx);
|
|
|
|
}
|
|
|
|
static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) {
|
|
|
|
return Create(Not, Expr, Ctx);
|
2009-06-29 22:40:36 +02:00
|
|
|
}
|
2009-08-31 10:07:22 +02:00
|
|
|
static const MCUnaryExpr *CreatePlus(const MCExpr *Expr, MCContext &Ctx) {
|
|
|
|
return Create(Plus, Expr, Ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// getOpcode - Get the kind of this unary expression.
|
2009-06-29 22:40:36 +02:00
|
|
|
Opcode getOpcode() const { return Op; }
|
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// getSubExpr - Get the child of this unary expression.
|
|
|
|
const MCExpr *getSubExpr() const { return Expr; }
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
static bool classof(const MCExpr *E) {
|
|
|
|
return E->getKind() == MCExpr::Unary;
|
2009-06-29 22:40:36 +02:00
|
|
|
}
|
2009-08-31 10:06:59 +02:00
|
|
|
static bool classof(const MCUnaryExpr *) { return true; }
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
|
|
|
|
2009-08-31 10:06:59 +02:00
|
|
|
/// MCBinaryExpr - Binary assembler expressions.
|
|
|
|
class MCBinaryExpr : public MCExpr {
|
2009-06-29 22:40:36 +02:00
|
|
|
public:
|
|
|
|
enum Opcode {
|
2009-07-01 17:14:50 +02:00
|
|
|
Add, ///< Addition.
|
|
|
|
And, ///< Bitwise and.
|
2010-02-09 00:58:47 +01:00
|
|
|
Div, ///< Signed division.
|
2009-07-01 17:14:50 +02:00
|
|
|
EQ, ///< Equality comparison.
|
2010-02-09 00:58:47 +01:00
|
|
|
GT, ///< Signed greater than comparison (result is either 0 or some
|
|
|
|
///< target-specific non-zero value)
|
|
|
|
GTE, ///< Signed greater than or equal comparison (result is either 0 or
|
|
|
|
///< some target-specific non-zero value).
|
2009-07-01 17:14:50 +02:00
|
|
|
LAnd, ///< Logical and.
|
|
|
|
LOr, ///< Logical or.
|
2010-02-09 00:58:47 +01:00
|
|
|
LT, ///< Signed less than comparison (result is either 0 or
|
|
|
|
///< some target-specific non-zero value).
|
|
|
|
LTE, ///< Signed less than or equal comparison (result is either 0 or
|
|
|
|
///< some target-specific non-zero value).
|
|
|
|
Mod, ///< Signed remainder.
|
2009-07-01 17:14:50 +02:00
|
|
|
Mul, ///< Multiplication.
|
|
|
|
NE, ///< Inequality comparison.
|
|
|
|
Or, ///< Bitwise or.
|
2010-02-09 00:58:47 +01:00
|
|
|
Shl, ///< Shift left.
|
|
|
|
Shr, ///< Shift right (arithmetic or logical, depending on target)
|
2009-07-01 17:14:50 +02:00
|
|
|
Sub, ///< Subtraction.
|
|
|
|
Xor ///< Bitwise exclusive or.
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
Opcode Op;
|
2009-08-31 10:07:22 +02:00
|
|
|
const MCExpr *LHS, *RHS;
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
MCBinaryExpr(Opcode _Op, const MCExpr *_LHS, const MCExpr *_RHS)
|
2009-08-31 10:06:59 +02:00
|
|
|
: MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {}
|
2009-08-31 10:07:22 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// @name Construction
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
static const MCBinaryExpr *Create(Opcode Op, const MCExpr *LHS,
|
|
|
|
const MCExpr *RHS, MCContext &Ctx);
|
|
|
|
static const MCBinaryExpr *CreateAdd(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Add, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(And, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateDiv(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Div, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateEQ(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(EQ, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateGT(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(GT, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateGTE(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(GTE, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateLAnd(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(LAnd, LHS, RHS, Ctx);
|
2009-06-29 22:40:36 +02:00
|
|
|
}
|
2009-08-31 10:07:22 +02:00
|
|
|
static const MCBinaryExpr *CreateLOr(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(LOr, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateLT(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(LT, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateLTE(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(LTE, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateMod(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Mod, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateMul(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Mul, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateNE(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(NE, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateOr(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Or, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Shl, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateShr(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Shr, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateSub(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Sub, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
static const MCBinaryExpr *CreateXor(const MCExpr *LHS, const MCExpr *RHS,
|
|
|
|
MCContext &Ctx) {
|
|
|
|
return Create(Xor, LHS, RHS, Ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
/// getOpcode - Get the kind of this binary expression.
|
2009-06-29 22:40:36 +02:00
|
|
|
Opcode getOpcode() const { return Op; }
|
|
|
|
|
2009-07-01 17:14:50 +02:00
|
|
|
/// getLHS - Get the left-hand side expression of the binary operator.
|
2009-08-31 10:07:22 +02:00
|
|
|
const MCExpr *getLHS() const { return LHS; }
|
2009-07-01 17:14:50 +02:00
|
|
|
|
|
|
|
/// getRHS - Get the right-hand side expression of the binary operator.
|
2009-08-31 10:07:22 +02:00
|
|
|
const MCExpr *getRHS() const { return RHS; }
|
|
|
|
|
|
|
|
/// @}
|
2009-06-29 22:40:36 +02:00
|
|
|
|
2009-08-31 10:07:22 +02:00
|
|
|
static bool classof(const MCExpr *E) {
|
|
|
|
return E->getKind() == MCExpr::Binary;
|
2009-06-29 22:40:36 +02:00
|
|
|
}
|
2009-08-31 10:06:59 +02:00
|
|
|
static bool classof(const MCBinaryExpr *) { return true; }
|
2009-06-29 22:40:36 +02:00
|
|
|
};
|
|
|
|
|
2010-02-08 20:41:07 +01:00
|
|
|
/// MCTargetExpr - This is an extension point for target-specific MCExpr
|
|
|
|
/// subclasses to implement.
|
|
|
|
///
|
|
|
|
/// NOTE: All subclasses are required to have trivial destructors because
|
|
|
|
/// MCExprs are bump pointer allocated and not destructed.
|
|
|
|
class MCTargetExpr : public MCExpr {
|
2010-02-08 23:07:36 +01:00
|
|
|
virtual void Anchor();
|
2010-02-08 20:41:07 +01:00
|
|
|
protected:
|
|
|
|
MCTargetExpr() : MCExpr(Target) {}
|
2010-02-10 22:37:31 +01:00
|
|
|
virtual ~MCTargetExpr() {}
|
2010-02-08 20:41:07 +01:00
|
|
|
public:
|
2010-03-12 22:00:45 +01:00
|
|
|
|
2010-02-08 20:41:07 +01:00
|
|
|
virtual void PrintImpl(raw_ostream &OS) const = 0;
|
2010-03-11 03:28:59 +01:00
|
|
|
virtual bool EvaluateAsRelocatableImpl(MCValue &Res,
|
2010-03-12 22:00:45 +01:00
|
|
|
const MCAsmLayout *Layout) const = 0;
|
2011-01-13 08:58:56 +01:00
|
|
|
virtual void AddValueSymbols(MCAssembler *) const = 0;
|
2011-04-29 20:00:03 +02:00
|
|
|
virtual const MCSection *FindAssociatedSection() const = 0;
|
2010-02-08 20:41:07 +01:00
|
|
|
|
|
|
|
static bool classof(const MCExpr *E) {
|
|
|
|
return E->getKind() == MCExpr::Target;
|
|
|
|
}
|
|
|
|
static bool classof(const MCTargetExpr *) { return true; }
|
|
|
|
};
|
|
|
|
|
2009-06-29 22:40:36 +02:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|