Searched refs:CRHS (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp85 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1); local
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 };
870 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
871 Constant *Ops[] = { CLHS, CRHS };
912 if (Constant *CRHS
[all...]
H A DScalarEvolutionExpander.cpp156 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);
H A DValueTracking.cpp1165 if (ConstantInt *CRHS = dyn_cast<ConstantInt>(U->getOperand(1)))
1166 if (CRHS->isAllOnesValue()) {
/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp503 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); local
521 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
570 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); local
571 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1033 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();
1054 Value *NewAdd = Builder->CreateAdd(X, CRHS, LHS->getName());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2237 if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
2238 if (CRHS->isAllOnesValue()) {

Completed in 603 milliseconds