Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp1416 static PHINode *getRecurrenceVar(Value *VarX, Instruction *DefX, in getRecurrenceVar() argument
1418 auto *PhiX = dyn_cast<PHINode>(VarX); in getRecurrenceVar()
1589 Value *VarX = nullptr; in detectShiftUntilZeroIdiom() local
1611 VarX = DefX->getOperand(0); in detectShiftUntilZeroIdiom()
1614 PHINode *PhiX = getRecurrenceVar(VarX, DefX, LoopEntry); in detectShiftUntilZeroIdiom()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp3169 if (const auto *VarX = dyn_cast<VarDecl>(X)) { in isSameEntity() local
3171 if (VarX->getLinkageInternal() == VarY->getLinkageInternal()) { in isSameEntity()
3172 ASTContext &C = VarX->getASTContext(); in isSameEntity()
3173 if (C.hasSameType(VarX->getType(), VarY->getType())) in isSameEntity()
3181 const ArrayType *VarXTy = C.getAsArrayType(VarX->getType()); in isSameEntity()