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

  /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 &&
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 = dyn_cast<Constant>(Op0))
    [all...]
ValueTracking.cpp 53 if (ConstantInt *CLHS = dyn_cast<ConstantInt>(Op0)) {
57 if (!CLHS->getValue().isNegative()) {
59 unsigned NLZ = (CLHS->getValue()+1).countLeadingZeros();
68 unsigned NLZ2 = CLHS->getValue().countLeadingZeros();
    [all...]
ScalarEvolutionExpander.cpp 155 if (Constant *CLHS = dyn_cast<Constant>(LHS))
157 return ConstantExpr::get(Opcode, CLHS, CRHS);
527 if (Constant *CLHS = dyn_cast<Constant>(V))
529 return ConstantExpr::getGetElementPtr(CLHS, CRHS);
    [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 505 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);
528 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
576 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
578 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 95 milliseconds