1 //====- VEMCExpr.h - VE 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 VE-specific MCExprs, used for modifiers like
10 // "%hi" or "%lo" etc.,
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_VE_MCTARGETDESC_VEMCEXPR_H
15 #define LLVM_LIB_TARGET_VE_MCTARGETDESC_VEMCEXPR_H
17 #include "VEFixupKinds.h"
18 #include "llvm/MC/MCExpr.h"
23 class VEMCExpr
: public MCTargetExpr
{
45 const VariantKind Kind
;
48 explicit VEMCExpr(VariantKind Kind
, const MCExpr
*Expr
)
49 : Kind(Kind
), Expr(Expr
) {}
52 /// @name Construction
55 static const VEMCExpr
*create(VariantKind Kind
, const MCExpr
*Expr
,
61 /// getOpcode - Get the kind of this expression.
62 VariantKind
getKind() const { return Kind
; }
64 /// getSubExpr - Get the child of this expression.
65 const MCExpr
*getSubExpr() const { return Expr
; }
67 /// getFixupKind - Get the fixup kind of this expression.
68 VE::Fixups
getFixupKind() const { return getFixupKind(Kind
); }
71 void printImpl(raw_ostream
&OS
, const MCAsmInfo
*MAI
) const override
;
72 bool evaluateAsRelocatableImpl(MCValue
&Res
, const MCAssembler
*Asm
,
73 const MCFixup
*Fixup
) const override
;
74 void visitUsedExpr(MCStreamer
&Streamer
) const override
;
75 MCFragment
*findAssociatedFragment() const override
{
76 return getSubExpr()->findAssociatedFragment();
79 void fixELFSymbolsInTLSFixups(MCAssembler
&Asm
) const override
;
81 static bool classof(const MCExpr
*E
) {
82 return E
->getKind() == MCExpr::Target
;
85 static VariantKind
parseVariantKind(StringRef name
);
86 static bool printVariantKind(raw_ostream
&OS
, VariantKind Kind
);
87 static void printVariantKindSuffix(raw_ostream
&OS
, VariantKind Kind
);
88 static VE::Fixups
getFixupKind(VariantKind Kind
);