1 //===-- RISCVMCExpr.h - RISCV specific MC expression classes ----*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file describes RISCV-specific MCExprs, used for modifiers like
10 // "%hi" or "%lo" etc.,
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVMCEXPR_H
15 #define LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVMCEXPR_H
17 #include "llvm/MC/MCExpr.h"
23 class RISCVMCExpr
: public MCTargetExpr
{
44 const VariantKind Kind
;
46 int64_t evaluateAsInt64(int64_t Value
) const;
48 bool evaluatePCRelLo(MCValue
&Res
, const MCAsmLayout
*Layout
,
49 const MCFixup
*Fixup
) const;
51 explicit RISCVMCExpr(const MCExpr
*Expr
, VariantKind Kind
)
52 : Expr(Expr
), Kind(Kind
) {}
55 static const RISCVMCExpr
*create(const MCExpr
*Expr
, VariantKind Kind
,
58 VariantKind
getKind() const { return Kind
; }
60 const MCExpr
*getSubExpr() const { return Expr
; }
62 /// Get the corresponding PC-relative HI fixup that a VK_RISCV_PCREL_LO
65 /// \returns nullptr if this isn't a VK_RISCV_PCREL_LO pointing to a
66 /// known PC-relative HI fixup.
67 const MCFixup
*getPCRelHiFixup() const;
69 void printImpl(raw_ostream
&OS
, const MCAsmInfo
*MAI
) const override
;
70 bool evaluateAsRelocatableImpl(MCValue
&Res
, const MCAsmLayout
*Layout
,
71 const MCFixup
*Fixup
) const override
;
72 void visitUsedExpr(MCStreamer
&Streamer
) const override
;
73 MCFragment
*findAssociatedFragment() const override
{
74 return getSubExpr()->findAssociatedFragment();
77 void fixELFSymbolsInTLSFixups(MCAssembler
&Asm
) const override
;
79 bool evaluateAsConstant(int64_t &Res
) const;
81 static bool classof(const MCExpr
*E
) {
82 return E
->getKind() == MCExpr::Target
;
85 static bool classof(const RISCVMCExpr
*) { return true; }
87 static VariantKind
getVariantKindForName(StringRef name
);
88 static StringRef
getVariantKindName(VariantKind Kind
);
91 } // end namespace llvm.