Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp557 Value *VarX; ConstantInt *C1; in SimplifyDemandedUseBits() local
558 if (match(I->getOperand(0), m_Shr(m_Value(VarX), m_ConstantInt(C1)))) { in SimplifyDemandedUseBits()
812 Value *VarX = Shr->getOperand(0); in SimplifyShrShlDemandedBits() local
813 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()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp2593 if (VarDecl *VarX = dyn_cast<VarDecl>(X)) { in isSameEntity() local
2595 return (VarX->getLinkageInternal() == VarY->getLinkageInternal()) && in isSameEntity()
2596 VarX->getASTContext().hasSameType(VarX->getType(), VarY->getType()); in isSameEntity()