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

/external/llvm/lib/Analysis/
H A DInlineCost.cpp493 if (Constant *CLHS = dyn_cast<Constant>(LHS))
495 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
510 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset); local
512 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
560 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset); local
562 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
H A DInstructionSimplify.cpp85 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1); local
86 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
88 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
594 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
596 Constant *Ops[] = { CLHS, CRHS };
597 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
759 if (Constant *CLHS = dyn_cast<Constant>(Op0))
761 Constant *Ops[] = { CLHS, CRHS };
762 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
893 if (Constant *CLHS
[all...]

Completed in 41 milliseconds