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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp22 /// CheapToScalarize - Return true if the value is cheaper to scalarize than it
25 static bool CheapToScalarize(Value *V, bool isConstant) { function
50 (CheapToScalarize(BO->getOperand(0), isConstant) ||
51 CheapToScalarize(BO->getOperand(1), isConstant)))
55 (CheapToScalarize(CI->getOperand(0), isConstant) ||
56 CheapToScalarize(CI->getOperand(1), isConstant)))
132 !(isa<BinaryOperator>(PHIUser)) || !CheapToScalarize(PHIUser, true))
183 if (CheapToScalarize(C, false))
238 CheapToScalarize(BO, isa<ConstantInt>(EI.getOperand(1)))) {

Completed in 59 milliseconds