29 assert(
Args.size() >= 1 &&
"Needs a minimum of one expression.");
30 assert(Kind != AGVK_None &&
"Cannot construct AMDGPUMCExpr of kind none.");
37 RawArgs =
static_cast<const MCExpr **
>(
43AMDGPUMCExpr::~AMDGPUMCExpr() { Ctx.
deallocate(RawArgs); }
52 assert(Index < Args.size() &&
"Indexing out of bounds AMDGPUMCExpr sub-expr");
70 OS <<
"totalnumvgprs(";
79 for (
const auto *It = Args.begin(); It != Args.end(); ++It) {
81 if ((It + 1) != Args.end())
92 return std::max(Arg1, Arg2);
98bool AMDGPUMCExpr::evaluateExtraSGPRs(
MCValue &Res,
100 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
110 "AMDGPUMCExpr Argument count incorrect for ExtraSGPRs");
112 uint64_t VCCUsed = 0, FlatScrUsed = 0, XNACKUsed = 0;
114 bool Success = TryGetMCExprValue(Args[2], XNACKUsed);
116 assert(
Success &&
"Arguments 3 for ExtraSGPRs should be a known constant");
117 if (!
Success || !TryGetMCExprValue(Args[0], VCCUsed) ||
118 !TryGetMCExprValue(Args[1], FlatScrUsed))
122 STI, (
bool)VCCUsed, (
bool)FlatScrUsed, (
bool)XNACKUsed);
127bool AMDGPUMCExpr::evaluateTotalNumVGPR(
MCValue &Res,
129 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
138 "AMDGPUMCExpr Argument count incorrect for TotalNumVGPRs");
144 if (!TryGetMCExprValue(Args[0], NumAGPR) ||
145 !TryGetMCExprValue(Args[1], NumVGPR))
148 uint64_t TotalNum = Has90AInsts && NumAGPR ?
alignTo(NumVGPR, 4) + NumAGPR
149 : std::max(NumVGPR, NumAGPR);
155 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
165 "AMDGPUMCExpr Argument count incorrect for AlignTo");
167 if (!TryGetMCExprValue(Args[0],
Value) || !TryGetMCExprValue(Args[1],
Align))
174bool AMDGPUMCExpr::evaluateOccupancy(
MCValue &Res,
176 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
185 "AMDGPUMCExpr Argument count incorrect for Occupancy");
186 uint64_t InitOccupancy, MaxWaves, Granule, TargetTotalNumVGPRs, Generation,
190 Success &= TryGetMCExprValue(Args[0], MaxWaves);
191 Success &= TryGetMCExprValue(Args[1], Granule);
192 Success &= TryGetMCExprValue(Args[2], TargetTotalNumVGPRs);
193 Success &= TryGetMCExprValue(Args[3], Generation);
194 Success &= TryGetMCExprValue(Args[4], InitOccupancy);
196 assert(
Success &&
"Arguments 1 to 5 for Occupancy should be known constants");
198 if (!
Success || !TryGetMCExprValue(Args[5], NumSGPRs) ||
199 !TryGetMCExprValue(Args[6], NumVGPRs))
202 unsigned Occupancy = InitOccupancy;
204 Occupancy = std::min(
209 Occupancy = std::min(Occupancy,
211 NumVGPRs, Granule, MaxWaves, TargetTotalNumVGPRs));
239 for (
const MCExpr *E : TE->getArgs())
250 std::optional<int64_t>
Total;
255 return evaluateExtraSGPRs(Res, Asm);
257 return evaluateAlignTo(Res, Asm);
259 return evaluateTotalNumVGPR(Res, Asm);
261 return evaluateOccupancy(Res, Asm);
264 for (
const MCExpr *Arg : Args) {
269 if (!
Total.has_value())
279 for (
const MCExpr *Arg : Args)
284 for (
const MCExpr *Arg : Args) {
296 const MCExpr *FlatScrUsed,
317 unsigned InitOcc,
const MCExpr *NumSGPRs,
const MCExpr *NumVGPRs,
324 auto CreateExpr = [&Ctx](
unsigned Value) {
329 {CreateExpr(MaxWaves), CreateExpr(Granule),
330 CreateExpr(TargetTotalNumVGPRs), CreateExpr(Generation),
331 CreateExpr(InitOcc), NumSGPRs, NumVGPRs},
336 static constexpr unsigned BitWidth = 64;
354 static constexpr unsigned BitWidth = 64;
372 KBM[Expr] = LHSKnown & RHSKnown;
378 std::optional<bool> CompareRes =
KnownBits::eq(LHSKnown, RHSKnown);
383 std::optional<bool> CompareRes =
KnownBits::ne(LHSKnown, RHSKnown);
388 std::optional<bool> CompareRes =
KnownBits::sgt(LHSKnown, RHSKnown);
393 std::optional<bool> CompareRes =
KnownBits::sge(LHSKnown, RHSKnown);
398 std::optional<bool> CompareRes;
400 std::optional<bool> LHSBool =
402 std::optional<bool> RHSBool =
404 if (LHSBool && RHSBool)
405 CompareRes = *LHSBool && *RHSBool;
412 std::optional<bool> CompareRes =
418 std::optional<bool> CompareRes =
KnownBits::slt(LHSKnown, RHSKnown);
423 std::optional<bool> CompareRes =
KnownBits::sle(LHSKnown, RHSKnown);
434 KBM[Expr] = LHSKnown | RHSKnown;
449 KBM[Expr] = LHSKnown ^ RHSKnown;
456 static constexpr unsigned BitWidth = 64;
457 const MCUnaryExpr *UExpr = cast<MCUnaryExpr>(Expr);
486 static constexpr unsigned BitWidth = 64;
531 static constexpr unsigned BitWidth = 64;
534 if (Expr->evaluateAsAbsolute(Val)) {
559 if (!
Sym.isVariable()) {
566 const MCExpr *SymVal =
Sym.getVariableValue();
589 if (!KBM.
count(Expr))
592 auto ValueCheckKnownBits = [](
KnownBits &KB,
unsigned Value) ->
bool {
607 APInt ConstVal = KBM[Expr].getConstant();
612 if (Expr->evaluateAsAbsolute(EvalValue))
628 if (ValueCheckKnownBits(KBM[
RHS], 0))
634 if (ValueCheckKnownBits(KBM[
LHS], 0))
636 if (ValueCheckKnownBits(KBM[
RHS], 0))
641 if (ValueCheckKnownBits(KBM[
LHS], 1))
643 if (ValueCheckKnownBits(KBM[
RHS], 1))
650 if (ValueCheckKnownBits(KBM[
RHS], 0))
652 if (ValueCheckKnownBits(KBM[
LHS], 0))
657 if (ValueCheckKnownBits(KBM[
LHS], 0) || ValueCheckKnownBits(KBM[
RHS], 0))
664 if (NewLHS !=
LHS || NewRHS !=
RHS)
670 const MCUnaryExpr *UExpr = cast<MCUnaryExpr>(Expr);
673 if (SubExpr != NewSubExpr)
681 bool Changed =
false;
685 Changed |= Arg != NewArg;
705 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)
AMD GCN specific subclass of TargetSubtarget.
AMDGPU target specific MCExpr operations.
ArrayRef< const MCExpr * > getArgs() const
MCFragment * findAssociatedFragment() const override
void visitUsedExpr(MCStreamer &Streamer) const override
static const AMDGPUMCExpr * createOccupancy(unsigned InitOcc, const MCExpr *NumSGPRs, const MCExpr *NumVGPRs, unsigned DynamicVGPRBlockSize, const GCNSubtarget &STM, MCContext &Ctx)
Mimics GCNSubtarget::computeOccupancy for MCExpr.
static const AMDGPUMCExpr * createTotalNumVGPR(const MCExpr *NumAGPR, const MCExpr *NumVGPR, 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.
Generation getGeneration() const
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.
void * allocate(unsigned Size, unsigned Align=8)
void deallocate(void *Ptr)
const MCSubtargetInfo * getSubtargetInfo() const
Base class for the full range of assembler expressions which are needed for parsing.
LLVM_ABI bool evaluateAsRelocatable(MCValue &Res, const MCAssembler *Asm) const
Try to evaluate the expression to a relocatable value, i.e.
@ 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.
LLVM_ABI MCFragment * findAssociatedFragment() const
Find the "associated section" for this expression, which is currently defined as the absolute section...
Streaming machine code generation interface.
void visitUsedExpr(const MCExpr &Expr)
Generic base class for all target subtargets.
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 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 getTotalNumVGPRs(const MCSubtargetInfo *STI)
unsigned getNumWavesPerEUWithNumVGPRs(const MCSubtargetInfo *STI, unsigned NumVGPRs, unsigned DynamicVGPRBlockSize)
unsigned getMaxWavesPerEU(const MCSubtargetInfo *STI)
unsigned getNumExtraSGPRs(const MCSubtargetInfo *STI, bool VCCUsed, bool FlatScrUsed, bool XNACKUsed)
unsigned getVGPRAllocGranule(const MCSubtargetInfo *STI, unsigned DynamicVGPRBlockSize, std::optional< bool > EnableWavefrontSize32)
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs, unsigned MaxWaves, AMDGPUSubtarget::Generation Gen)
void printAMDGPUMCExpr(const MCExpr *Expr, raw_ostream &OS, const MCAsmInfo *MAI)
bool isGFX90A(const MCSubtargetInfo &STI)
const MCExpr * foldAMDGPUMCExpr(const MCExpr *Expr, MCContext &Ctx)
This is an optimization pass for GlobalISel generic memory operations.
auto uninitialized_copy(R &&Src, IterTy Dst)
@ Success
The lock was released successfully.
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
constexpr unsigned BitWidth
This struct is a compact representation of a valid (non-zero power of two) alignment.
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 LLVM_ABI KnownBits lshr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for lshr(LHS, RHS).
static KnownBits add(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false)
Compute knownbits resulting from addition of LHS and 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.