30 assert(
Args.size() >= 1 &&
"Needs a minimum of one expression.");
31 assert(Kind != AGVK_None &&
"Cannot construct AMDGPUMCExpr of kind none.");
38 RawArgs =
static_cast<const MCExpr **
>(
40 std::uninitialized_copy(
Args.begin(),
Args.end(), RawArgs);
44AMDGPUMCExpr::~AMDGPUMCExpr() { Ctx.
deallocate(RawArgs); }
53 assert(
Index < Args.size() &&
"Indexing out of bounds AMDGPUMCExpr sub-expr");
71 OS <<
"totalnumvgprs(";
80 for (
auto It = Args.begin(); It != Args.end(); ++It) {
81 (*It)->print(
OS, MAI,
false);
82 if ((It + 1) != Args.end())
93 return std::max(Arg1, Arg2);
101 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
111 "AMDGPUMCExpr Argument count incorrect for ExtraSGPRs");
113 uint64_t VCCUsed = 0, FlatScrUsed = 0, XNACKUsed = 0;
115 bool Success = TryGetMCExprValue(Args[2], XNACKUsed);
117 assert(
Success &&
"Arguments 3 for ExtraSGPRs should be a known constant");
118 if (!
Success || !TryGetMCExprValue(Args[0], VCCUsed) ||
119 !TryGetMCExprValue(Args[1], FlatScrUsed))
123 STI, (
bool)VCCUsed, (
bool)FlatScrUsed, (
bool)XNACKUsed);
130 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
139 "AMDGPUMCExpr Argument count incorrect for TotalNumVGPRs");
145 if (!TryGetMCExprValue(Args[0], NumAGPR) ||
146 !TryGetMCExprValue(Args[1], NumVGPR))
149 uint64_t TotalNum = Has90AInsts && NumAGPR ?
alignTo(NumVGPR, 4) + NumAGPR
150 : std::max(NumVGPR, NumAGPR);
157 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
167 "AMDGPUMCExpr Argument count incorrect for AlignTo");
169 if (!TryGetMCExprValue(Args[0],
Value) || !TryGetMCExprValue(Args[1],
Align))
178 auto TryGetMCExprValue = [&](
const MCExpr *Arg,
uint64_t &ConstantValue) {
187 "AMDGPUMCExpr Argument count incorrect for Occupancy");
188 uint64_t InitOccupancy, MaxWaves, Granule, TargetTotalNumVGPRs, Generation,
192 Success &= TryGetMCExprValue(Args[0], MaxWaves);
193 Success &= TryGetMCExprValue(Args[1], Granule);
194 Success &= TryGetMCExprValue(Args[2], TargetTotalNumVGPRs);
195 Success &= TryGetMCExprValue(Args[3], Generation);
196 Success &= TryGetMCExprValue(Args[4], InitOccupancy);
198 assert(
Success &&
"Arguments 1 to 5 for Occupancy should be known constants");
200 if (!
Success || !TryGetMCExprValue(Args[5], NumSGPRs) ||
201 !TryGetMCExprValue(Args[6], NumVGPRs))
204 unsigned Occupancy = InitOccupancy;
206 Occupancy = std::min(
211 Occupancy = std::min(Occupancy,
213 NumVGPRs, Granule, MaxWaves, TargetTotalNumVGPRs));
222 std::optional<int64_t>
Total;
227 return evaluateExtraSGPRs(Res, Asm,
Fixup);
229 return evaluateAlignTo(Res, Asm,
Fixup);
231 return evaluateTotalNumVGPR(Res, Asm,
Fixup);
233 return evaluateOccupancy(Res, Asm,
Fixup);
236 for (
const MCExpr *Arg : Args) {
241 if (!
Total.has_value())
251 for (
const MCExpr *Arg : Args)
256 for (
const MCExpr *Arg : Args) {
268 const MCExpr *FlatScrUsed,
298 auto CreateExpr = [&Ctx](
unsigned Value) {
303 {CreateExpr(MaxWaves), CreateExpr(Granule),
304 CreateExpr(TargetTotalNumVGPRs), CreateExpr(Generation),
305 CreateExpr(InitOcc), NumSGPRs, NumVGPRs},
310 static constexpr unsigned BitWidth = 64;
328 static constexpr unsigned BitWidth = 64;
346 KBM[Expr] = LHSKnown & RHSKnown;
352 std::optional<bool> CompareRes =
KnownBits::eq(LHSKnown, RHSKnown);
357 std::optional<bool> CompareRes =
KnownBits::ne(LHSKnown, RHSKnown);
362 std::optional<bool> CompareRes =
KnownBits::sgt(LHSKnown, RHSKnown);
367 std::optional<bool> CompareRes =
KnownBits::sge(LHSKnown, RHSKnown);
372 std::optional<bool> CompareRes;
374 std::optional<bool> LHSBool =
376 std::optional<bool> RHSBool =
378 if (LHSBool && RHSBool)
379 CompareRes = *LHSBool && *RHSBool;
386 std::optional<bool> CompareRes =
392 std::optional<bool> CompareRes =
KnownBits::slt(LHSKnown, RHSKnown);
397 std::optional<bool> CompareRes =
KnownBits::sle(LHSKnown, RHSKnown);
408 KBM[Expr] = LHSKnown | RHSKnown;
423 KBM[Expr] = LHSKnown ^ RHSKnown;
430 static constexpr unsigned BitWidth = 64;
431 const MCUnaryExpr *UExpr = cast<MCUnaryExpr>(Expr);
460 static constexpr unsigned BitWidth = 64;
505 static constexpr unsigned BitWidth = 64;
508 if (Expr->evaluateAsAbsolute(Val)) {
533 if (!
Sym.isVariable()) {
541 KBM[Expr] = KBM[
Sym.getVariableValue(
false)];
557 if (!KBM.
count(Expr))
560 auto ValueCheckKnownBits = [](
KnownBits &KB,
unsigned Value) ->
bool {
575 APInt ConstVal = KBM[Expr].getConstant();
580 if (Expr->evaluateAsAbsolute(EvalValue))
596 if (ValueCheckKnownBits(KBM[
RHS], 0))
602 if (ValueCheckKnownBits(KBM[
LHS], 0))
604 if (ValueCheckKnownBits(KBM[
RHS], 0))
609 if (ValueCheckKnownBits(KBM[
LHS], 1))
611 if (ValueCheckKnownBits(KBM[
RHS], 1))
618 if (ValueCheckKnownBits(KBM[
RHS], 0))
620 if (ValueCheckKnownBits(KBM[
LHS], 0))
625 if (ValueCheckKnownBits(KBM[
LHS], 0) || ValueCheckKnownBits(KBM[
RHS], 0))
632 if (NewLHS !=
LHS || NewRHS !=
RHS)
638 const MCUnaryExpr *UExpr = cast<MCUnaryExpr>(Expr);
641 if (SubExpr != NewSubExpr)
649 bool Changed =
false;
653 Changed |= Arg != NewArg;
673 if (Expr->evaluateAsAbsolute(Val)) {
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)
This file defines the BumpPtrAllocator interface.
AMD GCN specific subclass of TargetSubtarget.
PowerPC TLS Dynamic Call Fixup
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
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, 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)
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
bool evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm, const MCFixup *Fixup) const override
void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override
VariantKind getKind() const
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...
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 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 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.
bool evaluateAsAbsolute(int64_t &Res, const MCAssembler &Asm, const SectionAddrMap &Addrs) const
Try to evaluate the expression to an absolute value.
@ Unary
Unary expressions.
@ Constant
Constant expressions.
@ SymbolRef
References to labels and assigned expressions.
@ Target
Target specific expression.
@ Binary
Binary expressions.
bool evaluateAsRelocatable(MCValue &Res, const MCAssembler *Asm, const MCFixup *Fixup) const
Try to evaluate the expression to a relocatable value, i.e.
void print(raw_ostream &OS, const MCAsmInfo *MAI, bool InParens=false) const
MCFragment * findAssociatedFragment() const
Find the "associated section" for this expression, which is currently defined as the absolute section...
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
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 ...
Unary assembler expressions.
Opcode getOpcode() const
Get the kind of this unary expression.
static const MCUnaryExpr * create(Opcode Op, const MCExpr *Expr, MCContext &Ctx, SMLoc Loc=SMLoc())
const MCExpr * getSubExpr() const
Get the child of this unary expression.
This represents an "assembler immediate".
int64_t getConstant() const
static MCValue get(const MCSymbolRefExpr *SymA, const MCSymbolRefExpr *SymB=nullptr, int64_t Val=0, uint32_t RefKind=0)
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 getMaxWavesPerEU(const MCSubtargetInfo *STI)
unsigned getNumExtraSGPRs(const MCSubtargetInfo *STI, bool VCCUsed, bool FlatScrUsed, bool XNACKUsed)
unsigned getNumWavesPerEUWithNumVGPRs(const MCSubtargetInfo *STI, unsigned NumVGPRs)
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs, unsigned MaxWaves, AMDGPUSubtarget::Generation Gen)
unsigned getVGPRAllocGranule(const MCSubtargetInfo *STI, std::optional< bool > EnableWavefrontSize32)
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.
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 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 KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
static 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 std::optional< bool > sge(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGE result.
static 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 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 KnownBits srem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for srem(LHS, RHS).
static std::optional< bool > slt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLT result.
static 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 KnownBits mul(const KnownBits &LHS, const KnownBits &RHS, bool NoUndefSelfMultiply=false)
Compute known bits resulting from multiplying LHS and RHS.
static std::optional< bool > sle(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SLE result.
static std::optional< bool > sgt(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_SGT result.
static 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.