28    : Kind(Kind), Ctx(Ctx) {
 
   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 **
>(
 
   38      Ctx.allocate(
sizeof(
const MCExpr *) * 
Args.size()));
 
   43AMDGPUMCExpr::~AMDGPUMCExpr() { Ctx.deallocate(RawArgs); }
 
   48  return new (Ctx) AMDGPUMCExpr(Kind, Args, Ctx);
 
 
   52  assert(Index < Args.size() && 
"Indexing out of bounds AMDGPUMCExpr sub-expr");
 
 
   70    OS << 
"totalnumvgprs(";
 
   85  for (
const auto *It = Args.begin(); It != Args.end(); ++It) {
 
   87    if ((It + 1) != Args.end())
 
 
   98    return std::max(Arg1, Arg2);
 
 
  104bool AMDGPUMCExpr::evaluateExtraSGPRs(
MCValue &Res,
 
  106  auto TryGetMCExprValue = [&](
const MCExpr *Arg, uint64_t &ConstantValue) {
 
  115  assert(Args.size() == 3 &&
 
  116         "AMDGPUMCExpr Argument count incorrect for ExtraSGPRs");
 
  117  const MCSubtargetInfo *STI = Ctx.getSubtargetInfo();
 
  118  uint64_t VCCUsed = 0, FlatScrUsed = 0, XNACKUsed = 0;
 
  120  bool Success = TryGetMCExprValue(Args[2], XNACKUsed);
 
  122  assert(
Success && 
"Arguments 3 for ExtraSGPRs should be a known constant");
 
  123  if (!
Success || !TryGetMCExprValue(Args[0], VCCUsed) ||
 
  124      !TryGetMCExprValue(Args[1], FlatScrUsed))
 
  128      STI, (
bool)VCCUsed, (
bool)FlatScrUsed, (
bool)XNACKUsed);
 
  133bool AMDGPUMCExpr::evaluateTotalNumVGPR(
MCValue &Res,
 
  135  auto TryGetMCExprValue = [&](
const MCExpr *Arg, uint64_t &ConstantValue) {
 
  143  assert(Args.size() == 2 &&
 
  144         "AMDGPUMCExpr Argument count incorrect for TotalNumVGPRs");
 
  145  const MCSubtargetInfo *STI = Ctx.getSubtargetInfo();
 
  146  uint64_t NumAGPR = 0, NumVGPR = 0;
 
  150  if (!TryGetMCExprValue(Args[0], NumAGPR) ||
 
  151      !TryGetMCExprValue(Args[1], NumVGPR))
 
  154  uint64_t TotalNum = Has90AInsts && NumAGPR ? 
alignTo(NumVGPR, 4) + NumAGPR
 
  155                                             : std::max(NumVGPR, NumAGPR);
 
  161  auto TryGetMCExprValue = [&](
const MCExpr *Arg, uint64_t &ConstantValue) {
 
  170  assert(Args.size() == 2 &&
 
  171         "AMDGPUMCExpr Argument count incorrect for AlignTo");
 
  173  if (!TryGetMCExprValue(Args[0], 
Value) || !TryGetMCExprValue(Args[1], Align))
 
  180bool AMDGPUMCExpr::evaluateOccupancy(
MCValue &Res,
 
  182  auto TryGetMCExprValue = [&](
const MCExpr *Arg, uint64_t &ConstantValue) {
 
  190  assert(Args.size() == 7 &&
 
  191         "AMDGPUMCExpr Argument count incorrect for Occupancy");
 
  192  uint64_t InitOccupancy, MaxWaves, Granule, TargetTotalNumVGPRs, Generation,
 
  196  Success &= TryGetMCExprValue(Args[0], MaxWaves);
 
  197  Success &= TryGetMCExprValue(Args[1], Granule);
 
  198  Success &= TryGetMCExprValue(Args[2], TargetTotalNumVGPRs);
 
  199  Success &= TryGetMCExprValue(Args[3], Generation);
 
  200  Success &= TryGetMCExprValue(Args[4], InitOccupancy);
 
  202  assert(
Success && 
"Arguments 1 to 5 for Occupancy should be known constants");
 
  204  if (!
Success || !TryGetMCExprValue(Args[5], NumSGPRs) ||
 
  205      !TryGetMCExprValue(Args[6], NumVGPRs))
 
  208  unsigned Occupancy = InitOccupancy;
 
  210    Occupancy = std::min(
 
  215    Occupancy = std::min(Occupancy,
 
  217                             NumVGPRs, Granule, MaxWaves, TargetTotalNumVGPRs));
 
  225  switch (E->getKind()) {
 
  244    auto *TE = 
static_cast<const AMDGPUMCExpr *
>(E);
 
  245    for (
const MCExpr *E : TE->getArgs())
 
 
  256  std::optional<int64_t> 
Total;
 
  261    return evaluateExtraSGPRs(Res, Asm);
 
  263    return evaluateAlignTo(Res, Asm);
 
  265    return evaluateTotalNumVGPR(Res, Asm);
 
  267    return evaluateOccupancy(Res, Asm);
 
  270    return Args[0]->evaluateAsRelocatable(Res, Asm);
 
  273  for (
const MCExpr *Arg : Args) {
 
  278    if (!
Total.has_value())
 
 
  288  for (
const MCExpr *Arg : Args)
 
 
  293  for (
const MCExpr *Arg : Args) {
 
 
  305                                                   const MCExpr *FlatScrUsed,
 
 
  326    unsigned InitOcc, 
const MCExpr *NumSGPRs, 
const MCExpr *NumVGPRs,
 
  333  auto CreateExpr = [&Ctx](
unsigned Value) {
 
  338                {CreateExpr(MaxWaves), CreateExpr(Granule),
 
  339                 CreateExpr(TargetTotalNumVGPRs), CreateExpr(Generation),
 
  340                 CreateExpr(InitOcc), NumSGPRs, NumVGPRs},
 
 
  353  static constexpr unsigned BitWidth = 64;
 
 
  371  static constexpr unsigned BitWidth = 64;
 
  389    KBM[Expr] = LHSKnown & RHSKnown;
 
  395    std::optional<bool> CompareRes = 
KnownBits::eq(LHSKnown, RHSKnown);
 
  400    std::optional<bool> CompareRes = 
KnownBits::ne(LHSKnown, RHSKnown);
 
  405    std::optional<bool> CompareRes = 
KnownBits::sgt(LHSKnown, RHSKnown);
 
  410    std::optional<bool> CompareRes = 
KnownBits::sge(LHSKnown, RHSKnown);
 
  415    std::optional<bool> CompareRes;
 
  417    std::optional<bool> LHSBool =
 
  419    std::optional<bool> RHSBool =
 
  421    if (LHSBool && RHSBool)
 
  422      CompareRes = *LHSBool && *RHSBool;
 
  429    std::optional<bool> CompareRes =
 
  435    std::optional<bool> CompareRes = 
KnownBits::slt(LHSKnown, RHSKnown);
 
  440    std::optional<bool> CompareRes = 
KnownBits::sle(LHSKnown, RHSKnown);
 
  451    KBM[Expr] = LHSKnown | RHSKnown;
 
  466    KBM[Expr] = LHSKnown ^ RHSKnown;
 
 
  473  static constexpr unsigned BitWidth = 64;
 
 
  503  static constexpr unsigned BitWidth = 64;
 
 
  550  static constexpr unsigned BitWidth = 64;
 
  553  if (Expr->evaluateAsAbsolute(Val)) {
 
 
  608  if (!KBM.
count(Expr))
 
  611  auto ValueCheckKnownBits = [](
KnownBits &KB, 
unsigned Value) -> 
bool {
 
  626      APInt ConstVal = KBM[Expr].getConstant();
 
  631    if (Expr->evaluateAsAbsolute(EvalValue))
 
  647      if (ValueCheckKnownBits(KBM[
RHS], 0))
 
  653      if (ValueCheckKnownBits(KBM[
LHS], 0))
 
  655      if (ValueCheckKnownBits(KBM[
RHS], 0))
 
  660      if (ValueCheckKnownBits(KBM[
LHS], 1))
 
  662      if (ValueCheckKnownBits(KBM[
RHS], 1))
 
  669      if (ValueCheckKnownBits(KBM[
RHS], 0))
 
  671      if (ValueCheckKnownBits(KBM[
LHS], 0))
 
  676      if (ValueCheckKnownBits(KBM[
LHS], 0) || ValueCheckKnownBits(KBM[
RHS], 0))
 
  683    if (NewLHS != 
LHS || NewRHS != 
RHS)
 
  692    if (SubExpr != NewSubExpr)
 
 
  724  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)
DenseMap< const MCExpr *, KnownBits > KnownBitsMap
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 * 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.
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.
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.
MCExpr(ExprKind Kind, SMLoc Loc, unsigned SubclassData=0)
@ 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)
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 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)
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
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)
@ Success
The lock was released successfully.
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
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 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.