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

  /external/llvm/lib/Analysis/
InlineCost.cpp 494 if (Constant *CRHS = dyn_cast<Constant>(RHS))
495 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
511 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
512 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
561 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
562 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
    [all...]
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 };
760 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
761 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/Transforms/InstCombine/
InstCombineAddSub.cpp 241 if (ConstantInt *CRHS = dyn_cast<ConstantInt>(RHS)) {
244 return BinaryOperator::CreateSub(SubOne(CRHS), X);
249 CRHS->getValue() == (CRHS->getValue() & C2->getValue())) {
252 const APInt &AddRHSV = CRHS->getValue();
262 Value *NewAdd = Builder->CreateAdd(X, CRHS, LHS->getName());
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 608 milliseconds