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 &&
594 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
596 Constant *Ops[] = { CLHS, CRHS };
597 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
734 if (Constant *CLHS = dyn_cast<Constant>(Op0))
736 Constant *Ops[] = { CLHS, CRHS };
737 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
    [all...]
ValueTracking.cpp 51 if (ConstantInt *CLHS = dyn_cast<ConstantInt>(Op0)) {
55 if (!CLHS->getValue().isNegative()) {
57 unsigned NLZ = (CLHS->getValue()+1).countLeadingZeros();
66 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 502 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
504 if (Constant *C = ConstantExpr::getCompare(I.getPredicate(), CLHS, CRHS)) {
523 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
525 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
573 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
575 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 220 milliseconds