27 : Kind(Kind), Ctx(Ctx) {
28 assert(
Args.size() >= 1 &&
"Needs a minimum of one expression.");
29 assert(Kind != AGVK_None &&
"Cannot construct AMDGPUMCExpr of kind none.");
36 RawArgs =
static_cast<const MCExpr **
>(
37 Ctx.allocate(
sizeof(
const MCExpr *) *
Args.size()));
42AMDGPUMCExpr::~AMDGPUMCExpr() { Ctx.deallocate(RawArgs); }
47 return new (Ctx) AMDGPUMCExpr(Kind, Args, Ctx);
51 assert(Index < Args.size() &&
"Indexing out of bounds AMDGPUMCExpr sub-expr");
69 OS <<
"totalnumvgprs(";
84 for (
const auto *It = Args.begin(); It != Args.end(); ++It) {
86 if ((It + 1) != Args.end())
97 return std::max(Arg1, Arg2);
105 std::initializer_list<std::reference_wrapper<uint64_t>> Vals) {
107 auto [Expr, ValRef] = Pair;
110 if (!Expr->evaluateAsRelocatable(MCVal, Asm) || !MCVal.
isAbsolute())
117bool AMDGPUMCExpr::evaluateExtraSGPRs(
MCValue &Res,
119 assert(Args.size() == 3 &&
120 "AMDGPUMCExpr Argument count incorrect for ExtraSGPRs");
121 const MCSubtargetInfo *STI = Ctx.getSubtargetInfo();
122 uint64_t VCCUsed = 0, FlatScrUsed = 0, XNACKUsed = 0;
128 STI, (
bool)VCCUsed, (
bool)FlatScrUsed, (
bool)XNACKUsed);
133bool AMDGPUMCExpr::evaluateTotalNumVGPR(
MCValue &Res,
135 assert(Args.size() == 2 &&
136 "AMDGPUMCExpr Argument count incorrect for TotalNumVGPRs");
137 const MCSubtargetInfo *STI = Ctx.getSubtargetInfo();
138 uint64_t NumAGPR = 0, NumVGPR = 0;
145 uint64_t TotalNum = Has90AInsts && NumAGPR ?
alignTo(NumVGPR, 4) + NumAGPR
146 : std::max(NumVGPR, NumAGPR);
152 assert(Args.size() == 2 &&
153 "AMDGPUMCExpr Argument count incorrect for AlignTo");
162bool AMDGPUMCExpr::evaluateOccupancy(
MCValue &Res,
164 assert(Args.size() == 7 &&
165 "AMDGPUMCExpr Argument count incorrect for Occupancy");
166 uint64_t InitOccupancy, MaxWaves, Granule, TargetTotalNumVGPRs, Generation,
170 Args.slice(0, 5), Asm,
171 {MaxWaves, Granule, TargetTotalNumVGPRs, Generation, InitOccupancy});
173 assert(
Success &&
"Arguments 1 to 5 for Occupancy should be known constants");
178 unsigned Occupancy = InitOccupancy;
180 Occupancy = std::min(
185 Occupancy = std::min(Occupancy,
187 NumVGPRs, Granule, MaxWaves, TargetTotalNumVGPRs));
195 switch (E->getKind()) {
214 auto *TE =
static_cast<const AMDGPUMCExpr *
>(E);
215 for (
const MCExpr *E : TE->getArgs())
226 std::optional<int64_t>
Total;
231 return evaluateExtraSGPRs(Res, Asm);
233 return evaluateAlignTo(Res, Asm);
235 return evaluateTotalNumVGPR(Res, Asm);
237 return evaluateOccupancy(Res, Asm);
240 return Args[0]->evaluateAsRelocatable(Res, Asm);
243 for (
const MCExpr *Arg : Args) {
245 if (!Arg->evaluateAsRelocatable(ArgRes, Asm) || !ArgRes.
isAbsolute())
248 if (!
Total.has_value())
258 for (
const MCExpr *Arg : Args)
263 for (
const MCExpr *Arg : Args) {
264 if (Arg->findAssociatedFragment())
265 return Arg->findAssociatedFragment();
275 const MCExpr *FlatScrUsed,
299 static constexpr unsigned BitWidth = 64;
317 static constexpr unsigned BitWidth = 64;
335 KBM[Expr] = LHSKnown & RHSKnown;
341 std::optional<bool> CompareRes =
KnownBits::eq(LHSKnown, RHSKnown);
346 std::optional<bool> CompareRes =
KnownBits::ne(LHSKnown, RHSKnown);
351 std::optional<bool> CompareRes =
KnownBits::sgt(LHSKnown, RHSKnown);
356 std::optional<bool> CompareRes =
KnownBits::sge(LHSKnown, RHSKnown);
361 std::optional<bool> CompareRes;
363 std::optional<bool> LHSBool =
365 std::optional<bool> RHSBool =
367 if (LHSBool && RHSBool)
368 CompareRes = *LHSBool && *RHSBool;
375 std::optional<bool> CompareRes =
381 std::optional<bool> CompareRes =
KnownBits::slt(LHSKnown, RHSKnown);
386 std::optional<bool> CompareRes =
KnownBits::sle(LHSKnown, RHSKnown);
397 KBM[Expr] = LHSKnown | RHSKnown;
412 KBM[Expr] = LHSKnown ^ RHSKnown;
419 static constexpr unsigned BitWidth = 64;
430 KBM[Expr] = std::move(KB);
441 KBM[Expr] = std::move(KB);
449 static constexpr unsigned BitWidth = 64;
463 KBM[Expr] = std::move(KB);
473 KBM[Expr] = std::move(KB);
496 static constexpr unsigned BitWidth = 64;
499 if (Expr->evaluateAsAbsolute(Val)) {
554 if (!KBM.
count(Expr))
557 auto ValueCheckKnownBits = [](
KnownBits &KB,
unsigned Value) ->
bool {
572 APInt ConstVal = KBM[Expr].getConstant();
577 if (Expr->evaluateAsAbsolute(EvalValue))
593 if (ValueCheckKnownBits(KBM[
RHS], 0))
599 if (ValueCheckKnownBits(KBM[
LHS], 0))
601 if (ValueCheckKnownBits(KBM[
RHS], 0))
606 if (ValueCheckKnownBits(KBM[
LHS], 1))
608 if (ValueCheckKnownBits(KBM[
RHS], 1))
615 if (ValueCheckKnownBits(KBM[
RHS], 0))
617 if (ValueCheckKnownBits(KBM[
LHS], 0))
622 if (ValueCheckKnownBits(KBM[
LHS], 0) || ValueCheckKnownBits(KBM[
RHS], 0))
629 if (NewLHS !=
LHS || NewRHS !=
RHS)
638 if (SubExpr != NewSubExpr)
670 if (Expr->evaluateAsAbsolute(Val)) {
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static bool isConstant(const MachineInstr &MI)
static void targetOpKnownBitsMapHelper(const MCExpr *Expr, KnownBitsMap &KBM, unsigned Depth)
static void unaryOpKnownBitsMapHelper(const MCExpr *Expr, KnownBitsMap &KBM, unsigned Depth)
static KnownBits fromOptionalToKnownBits(std::optional< bool > CompareResult)
static void binaryOpKnownBitsMapHelper(const MCExpr *Expr, KnownBitsMap &KBM, unsigned Depth)
static const MCExpr * tryFoldHelper(const MCExpr *Expr, KnownBitsMap &KBM, MCContext &Ctx)
static void knownBitsMapHelper(const MCExpr *Expr, KnownBitsMap &KBM, unsigned Depth=0)
static bool evaluateMCExprs(ArrayRef< const MCExpr * > Exprs, const MCAssembler *Asm, std::initializer_list< std::reference_wrapper< uint64_t > > Vals)
DenseMap< const MCExpr *, KnownBits > KnownBitsMap
AMDGPU target specific MCExpr operations.
ArrayRef< const MCExpr * > getArgs() const
MCFragment * findAssociatedFragment() const override
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
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...
const MCExpr * getSubExpr(size_t Index) const
void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override
VariantKind getKind() const
static bool isSymbolUsedInExpression(const MCSymbol *Sym, const MCExpr *E)
Class for arbitrary precision integers.
int64_t getSExtValue() const
Get sign extended value.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
This class is intended to be used as a base class for asm properties and features specific to the tar...
void printExpr(raw_ostream &, const MCExpr &) const
Binary assembler expressions.
const MCExpr * getLHS() const
Get the left-hand side expression of the binary operator.
const MCExpr * getRHS() const
Get the right-hand side expression of the binary operator.
Opcode getOpcode() const
Get the kind of this binary expression.
static LLVM_ABI const MCBinaryExpr * create(Opcode Op, const MCExpr *LHS, const MCExpr *RHS, MCContext &Ctx, SMLoc Loc=SMLoc())
@ AShr
Arithmetic shift right.
@ LShr
Logical shift right.
@ GTE
Signed greater than or equal comparison (result is either 0 or some target-specific non-zero value).
@ GT
Signed greater than comparison (result is either 0 or some target-specific non-zero value)
@ Xor
Bitwise exclusive or.
@ 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).
@ NE
Inequality comparison.
static LLVM_ABI const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Context object for machine code objects.
Base class for the full range of assembler expressions which are needed for parsing.
@ Unary
Unary expressions.
@ Constant
Constant expressions.
@ SymbolRef
References to labels and assigned expressions.
@ Target
Target specific expression.
@ Specifier
Expression with a relocation specifier.
@ Binary
Binary expressions.
LLVM_ABI bool evaluateAsAbsolute(int64_t &Res) const
Try to evaluate the expression to an absolute value.
Streaming machine code generation interface.
void visitUsedExpr(const MCExpr &Expr)
Represent a reference to a symbol from inside an expression.
const MCSymbol & getSymbol() const
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
bool isVariable() const
isVariable - Check if this is a variable symbol.
const MCExpr * getVariableValue() const
Get the expression of the variable symbol.
Unary assembler expressions.
Opcode getOpcode() const
Get the kind of this unary expression.
static LLVM_ABI const MCUnaryExpr * create(Opcode Op, const MCExpr *Expr, MCContext &Ctx, SMLoc Loc=SMLoc())
const MCExpr * getSubExpr() const
Get the child of this unary expression.
static MCValue get(const MCSymbol *SymA, const MCSymbol *SymB=nullptr, int64_t Val=0, uint32_t Specifier=0)
int64_t getConstant() const
bool isAbsolute() const
Is this an absolute (as opposed to relocatable) value.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
LLVM Value Representation.
This class implements an extremely fast bulk output stream that can only output to a stream.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char NumVGPRs[]
Key for Kernel::CodeProps::Metadata::mNumVGPRs.
constexpr char NumSGPRs[]
Key for Kernel::CodeProps::Metadata::mNumSGPRs.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
unsigned getNumWavesPerEUWithNumVGPRs(const MCSubtargetInfo *STI, unsigned NumVGPRs, unsigned DynamicVGPRBlockSize)
unsigned getNumExtraSGPRs(const MCSubtargetInfo *STI, bool VCCUsed, bool FlatScrUsed, bool XNACKUsed)
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs, unsigned MaxWaves, AMDGPUSubtarget::Generation Gen)
LLVM_READONLY bool isLitExpr(const MCExpr *Expr)
void printAMDGPUMCExpr(const MCExpr *Expr, raw_ostream &OS, const MCAsmInfo *MAI)
bool isGFX90A(const MCSubtargetInfo &STI)
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.
FunctionAddr VTableAddr Value
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
auto uninitialized_copy(R &&Src, IterTy Dst)
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
@ Success
The lock was released successfully.
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
static KnownBits makeConstant(const APInt &C)
Create known bits from a known constant.
static LLVM_ABI std::optional< bool > eq(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_EQ result.
void makeNonNegative()
Make this value non-negative.
static LLVM_ABI KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
static LLVM_ABI std::optional< bool > ne(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_NE result.
void makeNegative()
Make this value negative.
static LLVM_ABI std::optional< bool > sge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGE result.
static LLVM_ABI KnownBits umax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umax(LHS, RHS).
KnownBits zext(unsigned BitWidth) const
Return known bits for a zero extension of the value we're tracking.
bool isConstant() const
Returns true if we know the value of all bits.
static KnownBits add(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false, bool SelfAdd=false)
Compute knownbits resulting from addition of LHS and RHS.
static LLVM_ABI KnownBits lshr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for lshr(LHS, RHS).
static LLVM_ABI KnownBits srem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for srem(LHS, RHS).
static LLVM_ABI std::optional< bool > slt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLT result.
static LLVM_ABI KnownBits sdiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for sdiv(LHS, RHS).
static KnownBits sub(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false)
Compute knownbits resulting from subtraction of LHS and RHS.
static LLVM_ABI KnownBits mul(const KnownBits &LHS, const KnownBits &RHS, bool NoUndefSelfMultiply=false)
Compute known bits resulting from multiplying LHS and RHS.
static LLVM_ABI std::optional< bool > sle(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLE result.
static LLVM_ABI std::optional< bool > sgt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGT result.
static LLVM_ABI KnownBits shl(const KnownBits &LHS, const KnownBits &RHS, bool NUW=false, bool NSW=false, bool ShAmtNonZero=false)
Compute known bits for shl(LHS, RHS).
const APInt & getConstant() const
Returns the value when all bits have a known value.