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

  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 508 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
510 if (Constant *C = ConstantExpr::getCompare(I.getPredicate(), CLHS, CRHS)) {
529 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
531 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
579 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
581 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 95 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
96 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
98 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
532 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
534 Constant *Ops[] = { CLHS, CRHS };
535 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
664 if (Constant *CLHS = dyn_cast<Constant>(Op0))
666 Constant *Ops[] = { CLHS, CRHS };
667 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
791 if (Constant *CLHS = dyn_cast<Constant>(Op0))
    [all...]
  /external/llvm/lib/Target/R600/
SIISelLowering.cpp     [all...]

Completed in 2275 milliseconds