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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp182 Value *Op1C = Op1; local
187 Op1C = Op0;
190 Value *Neg = dyn_castNegVal(Op1C);
192 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
200 if (Op1BO == Op1C)
212 if (Op1BO == Op1C)
260 if (Constant *Op1C = dyn_cast<Constant>(Op1)) {
261 if (ConstantFP *Op1F = dyn_cast<ConstantFP>(Op1C)) {
266 } else if (ConstantDataVector *Op1V = dyn_cast<ConstantDataVector>(Op1C)) {
562 if (ConstantFP *Op1C
[all...]
H A DInstCombineAndOrXor.cpp1207 if (CastInst *Op1C = dyn_cast<CastInst>(Op1)) {
1209 if (Op0C->getOpcode() == Op1C->getOpcode() && // same cast kind ?
1210 SrcTy == Op1C->getOperand(0)->getType() &&
1212 Value *Op0COp = Op0C->getOperand(0), *Op1COp = Op1C->getOperand(0);
1216 ShouldOptimizeCast(Op1C->getOpcode(), Op1COp, I.getType())) {
1978 CastInst *Op1C = dyn_cast<CastInst>(Op1); local
1979 if (Op1C && Op0C->getOpcode() == Op1C->getOpcode()) {// same cast kind ?
1981 if (SrcTy == Op1C->getOperand(0)->getType() &&
1983 Value *Op0COp = Op0C->getOperand(0), *Op1COp = Op1C
[all...]

Completed in 68 milliseconds