Home
last modified time | relevance | path

Searched refs:VarX (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp1011 Value *VarX = Shr->getOperand(0); in simplifyShrShlDemandedBits() local
1012 Type *Ty = VarX->getType(); in simplifyShrShlDemandedBits()
1041 return VarX; in simplifyShrShlDemandedBits()
1048 Constant *Amt = ConstantInt::get(VarX->getType(), ShlAmt - ShrAmt); in simplifyShrShlDemandedBits()
1049 New = BinaryOperator::CreateShl(VarX, Amt); in simplifyShrShlDemandedBits()
1054 Constant *Amt = ConstantInt::get(VarX->getType(), ShrAmt - ShlAmt); in simplifyShrShlDemandedBits()
1055 New = isLshr ? BinaryOperator::CreateLShr(VarX, Amt) : in simplifyShrShlDemandedBits()
1056 BinaryOperator::CreateAShr(VarX, Amt); in simplifyShrShlDemandedBits()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLoopIdiomRecognize.cpp1462 static PHINode *getRecurrenceVar(Value *VarX, Instruction *DefX, in getRecurrenceVar() argument
1464 auto *PhiX = dyn_cast<PHINode>(VarX); in getRecurrenceVar()
1635 Value *VarX = nullptr; in detectShiftUntilZeroIdiom() local
1657 VarX = DefX->getOperand(0); in detectShiftUntilZeroIdiom()
1660 PHINode *PhiX = getRecurrenceVar(VarX, DefX, LoopEntry); in detectShiftUntilZeroIdiom()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderDecl.cpp3187 if (const auto *VarX = dyn_cast<VarDecl>(X)) { in isSameEntity() local
3189 if (VarX->getLinkageInternal() == VarY->getLinkageInternal()) { in isSameEntity()
3190 ASTContext &C = VarX->getASTContext(); in isSameEntity()
3191 if (C.hasSameType(VarX->getType(), VarY->getType())) in isSameEntity()
3199 const ArrayType *VarXTy = C.getAsArrayType(VarX->getType()); in isSameEntity()