Searched refs:VarX (Results 1 – 2 of 2) sorted by relevance
557 Value *VarX; ConstantInt *C1; in SimplifyDemandedUseBits() local558 if (match(I->getOperand(0), m_Shr(m_Value(VarX), m_ConstantInt(C1)))) { in SimplifyDemandedUseBits()812 Value *VarX = Shr->getOperand(0); in SimplifyShrShlDemandedBits() local813 Type *Ty = VarX->getType(); in SimplifyShrShlDemandedBits()842 return VarX; in SimplifyShrShlDemandedBits()849 Constant *Amt = ConstantInt::get(VarX->getType(), ShlAmt - ShrAmt); in SimplifyShrShlDemandedBits()850 New = BinaryOperator::CreateShl(VarX, Amt); in SimplifyShrShlDemandedBits()855 Constant *Amt = ConstantInt::get(VarX->getType(), ShrAmt - ShlAmt); in SimplifyShrShlDemandedBits()856 New = isLshr ? BinaryOperator::CreateLShr(VarX, Amt) : in SimplifyShrShlDemandedBits()857 BinaryOperator::CreateAShr(VarX, Amt); in SimplifyShrShlDemandedBits()
2593 if (VarDecl *VarX = dyn_cast<VarDecl>(X)) { in isSameEntity() local2595 return (VarX->getLinkageInternal() == VarY->getLinkageInternal()) && in isSameEntity()2596 VarX->getASTContext().hasSameType(VarX->getType(), VarY->getType()); in isSameEntity()