HomeSort by relevance Sort by last modified time
    Searched defs:CLHS (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 502 if (Constant *CLHS = dyn_cast<Constant>(LHS))
504 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
519 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
521 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
569 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
571 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 85 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
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,
735 if (Constant *CLHS = dyn_cast<Constant>(Op0))
737 Constant *Ops[] = { CLHS, CRHS };
738 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
    [all...]

Completed in 29 milliseconds