LLVM 23.0.0git
AMDGPUMCExpr.h
Go to the documentation of this file.
1//===- AMDGPUMCExpr.h - AMDGPU 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#ifndef LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCEXPR_H
10#define LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCEXPR_H
11
12#include "llvm/ADT/ArrayRef.h"
13#include "llvm/MC/MCExpr.h"
14
15namespace llvm {
16
17class Function;
18
19enum class LitModifier { None, Lit, Lit64 };
20
21/// AMDGPU target specific MCExpr operations.
22///
23/// Takes in a minimum of 1 argument to be used with an operation. The supported
24/// operations are:
25/// - (bitwise) or
26/// - max
27/// - min
28///
29/// \note If the 'or'/'max'/'min' operations are provided only a single
30/// argument, the operation will act as a no-op and simply resolve as the
31/// provided argument.
32///
33class AMDGPUMCExpr : public MCTargetExpr {
34public:
48
49 // Relocation specifiers.
50 enum Specifier {
52 S_GOTPCREL, // symbol@gotpcrel
53 S_GOTPCREL32_LO, // symbol@gotpcrel32@lo
54 S_GOTPCREL32_HI, // symbol@gotpcrel32@hi
55 S_REL32_LO, // symbol@rel32@lo
56 S_REL32_HI, // symbol@rel32@hi
57 S_REL64, // symbol@rel64
58 S_ABS32_LO, // symbol@abs32@lo
59 S_ABS32_HI, // symbol@abs32@hi
60 S_ABS64, // symbol@abs64
61 };
62
63private:
64 VariantKind Kind;
65 MCContext &Ctx;
66 const MCExpr **RawArgs;
68
69 AMDGPUMCExpr(VariantKind Kind, ArrayRef<const MCExpr *> Args, MCContext &Ctx);
70 ~AMDGPUMCExpr() override;
71
72 bool evaluateExtraSGPRs(MCValue &Res, const MCAssembler *Asm) const;
73 bool evaluateTotalNumVGPR(MCValue &Res, const MCAssembler *Asm) const;
74 bool evaluateAlignTo(MCValue &Res, const MCAssembler *Asm) const;
75 bool evaluateOccupancy(MCValue &Res, const MCAssembler *Asm) const;
76 bool evaluateInstPrefSize(MCValue &Res, const MCAssembler *Asm) const;
77
78public:
79 static const AMDGPUMCExpr *
80 create(VariantKind Kind, ArrayRef<const MCExpr *> Args, MCContext &Ctx);
81
82 static const AMDGPUMCExpr *createOr(ArrayRef<const MCExpr *> Args,
83 MCContext &Ctx) {
84 return create(VariantKind::AGVK_Or, Args, Ctx);
85 }
86
87 static const AMDGPUMCExpr *createMax(ArrayRef<const MCExpr *> Args,
88 MCContext &Ctx) {
89 return create(VariantKind::AGVK_Max, Args, Ctx);
90 }
91 static const AMDGPUMCExpr *createMin(ArrayRef<const MCExpr *> Args,
92 MCContext &Ctx) {
93 return create(VariantKind::AGVK_Min, Args, Ctx);
94 }
95
96 static const AMDGPUMCExpr *createExtraSGPRs(const MCExpr *VCCUsed,
97 const MCExpr *FlatScrUsed,
98 bool XNACKUsed, MCContext &Ctx);
99
100 static const AMDGPUMCExpr *createTotalNumVGPR(const MCExpr *NumAGPR,
101 const MCExpr *NumVGPR,
102 MCContext &Ctx);
103
104 static const AMDGPUMCExpr *
107 }
108
109 /// Create an expression for instruction prefetch size computation:
110 /// min(divideCeil(CodeSizeBytes, CacheLineSize), (1 << FieldWidth) - 1)
111 /// FieldWidth and CacheLineSize are derived from the subtarget.
112 static const AMDGPUMCExpr *createInstPrefSize(const MCExpr *CodeSizeBytes,
113 MCContext &Ctx);
114
115 static const AMDGPUMCExpr *createLit(LitModifier Lit, int64_t Value,
116 MCContext &Ctx);
117
118 ArrayRef<const MCExpr *> getArgs() const { return Args; }
119 VariantKind getKind() const { return Kind; }
120 MCContext &getCtx() const { return Ctx; }
121 const MCExpr *getSubExpr(size_t Index) const;
122
123 void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override;
125 const MCAssembler *Asm) const override;
126 void visitUsedExpr(MCStreamer &Streamer) const override;
127 MCFragment *findAssociatedFragment() const override;
128
129 static bool classof(const MCExpr *E) {
130 return E->getKind() == MCExpr::Target;
131 }
132 static bool isSymbolUsedInExpression(const MCSymbol *Sym, const MCExpr *E);
133};
134
135namespace AMDGPU {
136// Tries to leverage KnownBits for MCExprs to reduce and limit any composed
137// MCExprs printing. E.g., for an expression such as
138// ((unevaluatable_sym | 1) & 1) won't evaluate due to unevaluatable_sym and
139// would verbosely print the full expression; however, KnownBits should deduce
140// the value to be 1. Particularly useful for AMDGPU metadata MCExprs.
141void printAMDGPUMCExpr(const MCExpr *Expr, raw_ostream &OS,
142 const MCAsmInfo *MAI);
143
144const MCExpr *foldAMDGPUMCExpr(const MCExpr *Expr, MCContext &Ctx);
145
147 return AMDGPUMCExpr::Specifier(SRE->getKind());
148}
149
150LLVM_READONLY bool isLitExpr(const MCExpr *Expr);
151
152LLVM_READONLY int64_t getLitValue(const MCExpr *Expr);
153
155
156} // end namespace AMDGPU
157} // end namespace llvm
158
159#endif // LLVM_LIB_TARGET_AMDGPU_MCTARGETDESC_AMDGPUMCEXPR_H
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define LLVM_READONLY
Definition Compiler.h:322
AMDGPU target specific MCExpr operations.
ArrayRef< const MCExpr * > getArgs() const
static const AMDGPUMCExpr * createMin(ArrayRef< const MCExpr * > Args, MCContext &Ctx)
MCFragment * findAssociatedFragment() const override
static const AMDGPUMCExpr * createInstPrefSize(const MCExpr *CodeSizeBytes, MCContext &Ctx)
Create an expression for instruction prefetch size computation: min(divideCeil(CodeSizeBytes,...
static const AMDGPUMCExpr * createMax(ArrayRef< const MCExpr * > Args, MCContext &Ctx)
void visitUsedExpr(MCStreamer &Streamer) const override
static const AMDGPUMCExpr * createTotalNumVGPR(const MCExpr *NumAGPR, const MCExpr *NumVGPR, MCContext &Ctx)
static const AMDGPUMCExpr * createLit(LitModifier Lit, int64_t Value, MCContext &Ctx)
static const AMDGPUMCExpr * create(VariantKind Kind, ArrayRef< const MCExpr * > Args, MCContext &Ctx)
bool evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm) const override
MCContext & getCtx() const
static const AMDGPUMCExpr * createExtraSGPRs(const MCExpr *VCCUsed, const MCExpr *FlatScrUsed, bool XNACKUsed, MCContext &Ctx)
Allow delayed MCExpr resolve of ExtraSGPRs (in case VCCUsed or FlatScrUsed are unresolvable but neede...
static const AMDGPUMCExpr * createAlignTo(const MCExpr *Value, const MCExpr *Align, MCContext &Ctx)
static const AMDGPUMCExpr * createOr(ArrayRef< const MCExpr * > Args, MCContext &Ctx)
const MCExpr * getSubExpr(size_t Index) const
void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override
static bool classof(const MCExpr *E)
VariantKind getKind() const
static bool isSymbolUsedInExpression(const MCSymbol *Sym, const MCExpr *E)
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition MCAsmInfo.h:66
Context object for machine code objects.
Definition MCContext.h:83
Base class for the full range of assembler expressions which are needed for parsing.
Definition MCExpr.h:34
@ Target
Target specific expression.
Definition MCExpr.h:46
Streaming machine code generation interface.
Definition MCStreamer.h:222
Represent a reference to a symbol from inside an expression.
Definition MCExpr.h:190
VariantKind getKind() const
Definition MCExpr.h:232
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition MCSymbol.h:42
LLVM Value Representation.
Definition Value.h:75
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
static AMDGPUMCExpr::Specifier getSpecifier(const MCSymbolRefExpr *SRE)
LLVM_READONLY bool isLitExpr(const MCExpr *Expr)
void printAMDGPUMCExpr(const MCExpr *Expr, raw_ostream &OS, const MCAsmInfo *MAI)
LLVM_READONLY AMDGPUMCExpr::VariantKind getExprKind(const MCExpr *Expr)
LLVM_READONLY int64_t getLitValue(const MCExpr *Expr)
const MCExpr * foldAMDGPUMCExpr(const MCExpr *Expr, MCContext &Ctx)
This is an optimization pass for GlobalISel generic memory operations.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39