Searched refs:VarX (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineSimplifyDemanded.cpp | 1268 Value *VarX = Shr->getOperand(0); in simplifyShrShlDemandedBits() local 1269 Type *Ty = VarX->getType(); in simplifyShrShlDemandedBits() 1298 return VarX; in simplifyShrShlDemandedBits() 1305 Constant *Amt = ConstantInt::get(VarX->getType(), ShlAmt - ShrAmt); in simplifyShrShlDemandedBits() 1306 New = BinaryOperator::CreateShl(VarX, Amt); in simplifyShrShlDemandedBits() 1311 Constant *Amt = ConstantInt::get(VarX->getType(), ShrAmt - ShlAmt); in simplifyShrShlDemandedBits() 1312 New = isLshr ? BinaryOperator::CreateLShr(VarX, Amt) : in simplifyShrShlDemandedBits() 1313 BinaryOperator::CreateAShr(VarX, Amt); in simplifyShrShlDemandedBits()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopIdiomRecognize.cpp | 1524 static PHINode *getRecurrenceVar(Value *VarX, Instruction *DefX, in getRecurrenceVar() argument 1526 auto *PhiX = dyn_cast<PHINode>(VarX); in getRecurrenceVar() 1695 Value *VarX = nullptr; in detectShiftUntilZeroIdiom() local 1717 VarX = DefX->getOperand(0); in detectShiftUntilZeroIdiom() 1720 PHINode *PhiX = getRecurrenceVar(VarX, DefX, LoopEntry); in detectShiftUntilZeroIdiom()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 6619 if (const auto *VarX = dyn_cast<VarDecl>(X)) { in isSameEntity() local 6621 if (VarX->getLinkageInternal() == VarY->getLinkageInternal()) { in isSameEntity() 6624 if (VarX->getType().isNull() || VarY->getType().isNull()) in isSameEntity() 6627 if (hasSameType(VarX->getType(), VarY->getType())) in isSameEntity() 6635 const ArrayType *VarXTy = getAsArrayType(VarX->getType()); in isSameEntity()
|