HomeSort by relevance Sort by last modified time
    Searched refs:CRHS (Results 1 - 6 of 6) 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)
89 CRHS == LHS;
595 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
596 Constant *Ops[] = { CLHS, CRHS };
736 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
737 Constant *Ops[] = { CLHS, CRHS };
    [all...]
ScalarEvolutionExpander.cpp 156 if (Constant *CRHS = dyn_cast<Constant>(RHS))
157 return ConstantExpr::get(Opcode, CLHS, CRHS);
529 if (Constant *CRHS = dyn_cast<Constant>(Idx))
530 return ConstantExpr::getGetElementPtr(CLHS, CRHS);
    [all...]
ValueTracking.cpp     [all...]
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 503 if (Constant *CRHS = dyn_cast<Constant>(RHS))
504 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
520 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
521 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
570 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
571 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 1033 if (ConstantInt *CRHS = dyn_cast<ConstantInt>(RHS)) {
1036 return BinaryOperator::CreateSub(SubOne(CRHS), X);
1041 CRHS->getValue() == (CRHS->getValue() & C2->getValue())) {
1044 const APInt &AddRHSV = CRHS->getValue();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 86 milliseconds