Searched defs:VarX (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp641 Value *VarX; ConstantInt *C1; local
642 if (match(I->getOperand(0), m_Shr(m_Value(VarX), m_ConstantInt(C1)))) {
896 Value *VarX = Shr->getOperand(0);
897 Type *Ty = VarX->getType();
926 return VarX;
933 Constant *Amt = ConstantInt::get(VarX->getType(), ShlAmt - ShrAmt);
934 New = BinaryOperator::CreateShl(VarX, Amt);
939 Constant *Amt = ConstantInt::get(VarX->getType(), ShrAmt - ShlAmt);
940 New = isLshr ? BinaryOperator::CreateLShr(VarX, Amt) :
941 BinaryOperator::CreateAShr(VarX, Am
[all...]

Completed in 86 milliseconds