LLVM 18.0.0git
RISCVMCExpr.h
Go to the documentation of this file.
1//===-- RISCVMCExpr.h - RISC-V specific MC expression classes----*- C++ -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file describes RISC-V specific MCExprs, used for modifiers like
10// "%hi" or "%lo" etc.,
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVMCEXPR_H
15#define LLVM_LIB_TARGET_RISCV_MCTARGETDESC_RISCVMCEXPR_H
16
17#include "llvm/MC/MCExpr.h"
18
19namespace llvm {
20
21class StringRef;
22
23class RISCVMCExpr : public MCTargetExpr {
24public:
40 VK_RISCV_Invalid // Must be the last item
41 };
42
43private:
44 const MCExpr *Expr;
45 const VariantKind Kind;
46
47 int64_t evaluateAsInt64(int64_t Value) const;
48
49 explicit RISCVMCExpr(const MCExpr *Expr, VariantKind Kind)
50 : Expr(Expr), Kind(Kind) {}
51
52public:
53 static const RISCVMCExpr *create(const MCExpr *Expr, VariantKind Kind,
54 MCContext &Ctx);
55
56 VariantKind getKind() const { return Kind; }
57
58 const MCExpr *getSubExpr() const { return Expr; }
59
60 /// Get the corresponding PC-relative HI fixup that a VK_RISCV_PCREL_LO
61 /// points to, and optionally the fragment containing it.
62 ///
63 /// \returns nullptr if this isn't a VK_RISCV_PCREL_LO pointing to a
64 /// known PC-relative HI fixup.
65 const MCFixup *getPCRelHiFixup(const MCFragment **DFOut) const;
66
67 void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override;
68 bool evaluateAsRelocatableImpl(MCValue &Res, const MCAsmLayout *Layout,
69 const MCFixup *Fixup) const override;
70 void visitUsedExpr(MCStreamer &Streamer) const override;
73 }
74
75 void fixELFSymbolsInTLSFixups(MCAssembler &Asm) const override;
76
77 bool evaluateAsConstant(int64_t &Res) const;
78
79 static bool classof(const MCExpr *E) {
80 return E->getKind() == MCExpr::Target;
81 }
82
85};
86
87} // end namespace llvm.
88
89#endif
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
PowerPC TLS Dynamic Call Fixup
static const char * name
Definition: SMEABIPass.cpp:49
raw_pwrite_stream & OS
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
Encapsulates the layout of an assembly file at a particular point in time.
Definition: MCAsmLayout.h:28
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:35
@ Target
Target specific expression.
Definition: MCExpr.h:42
MCFragment * findAssociatedFragment() const
Find the "associated section" for this expression, which is currently defined as the absolute section...
Definition: MCExpr.cpp:1049
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
Definition: MCFixup.h:70
Streaming machine code generation interface.
Definition: MCStreamer.h:212
This is an extension point for target-specific MCExpr subclasses to implement.
Definition: MCExpr.h:648
This represents an "assembler immediate".
Definition: MCValue.h:36
VariantKind getKind() const
Definition: RISCVMCExpr.h:56
void fixELFSymbolsInTLSFixups(MCAssembler &Asm) const override
static const RISCVMCExpr * create(const MCExpr *Expr, VariantKind Kind, MCContext &Ctx)
Definition: RISCVMCExpr.cpp:31
void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override
Definition: RISCVMCExpr.cpp:36
const MCFixup * getPCRelHiFixup(const MCFragment **DFOut) const
Get the corresponding PC-relative HI fixup that a VK_RISCV_PCREL_LO points to, and optionally the fra...
Definition: RISCVMCExpr.cpp:50
void visitUsedExpr(MCStreamer &Streamer) const override
bool evaluateAsConstant(int64_t &Res) const
static bool classof(const MCExpr *E)
Definition: RISCVMCExpr.h:79
static StringRef getVariantKindName(VariantKind Kind)
const MCExpr * getSubExpr() const
Definition: RISCVMCExpr.h:58
MCFragment * findAssociatedFragment() const override
Definition: RISCVMCExpr.h:71
bool evaluateAsRelocatableImpl(MCValue &Res, const MCAsmLayout *Layout, const MCFixup *Fixup) const override
Definition: RISCVMCExpr.cpp:93
static VariantKind getVariantKindForName(StringRef name)
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
LLVM Value Representation.
Definition: Value.h:74
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition: raw_ostream.h:52
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18