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

/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp505 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
507 if (Constant *C = ConstantExpr::getCompare(I.getPredicate(), CLHS, CRHS)) {
526 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset); local
528 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
576 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset); local
578 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
/external/llvm/lib/Analysis/
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 &&
522 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
524 Constant *Ops[] = { CLHS, CRHS };
525 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
659 if (Constant *CLHS = dyn_cast<Constant>(Op0))
661 Constant *Ops[] = { CLHS, CRHS };
662 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
781 if (Constant *CLHS
[all...]

Completed in 167 milliseconds