Searched defs:CRHS (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp509 if (Constant *CRHS = dyn_cast<Constant>(RHS))
510 if (Constant *C = ConstantExpr::getCompare(I.getPredicate(), CLHS, CRHS)) {
530 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); local
531 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
580 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); local
581 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp95 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1); local
96 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
99 CRHS == LHS;
533 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
534 Constant *Ops[] = { CLHS, CRHS };
665 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
666 Constant *Ops[] = { CLHS, CRHS };
792 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
793 Constant *Ops[] = { CLHS, CRHS };
834 if (Constant *CRHS
[all...]
/external/llvm/lib/Target/R600/
H A DSIISelLowering.cpp1492 const ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(RHS.getOperand(1)); local
1493 if (!CLHS || !CRHS)
1499 uint32_t NewMask = (CLHS->getZExtValue() | CRHS->getZExtValue()) & MaxMask;
1592 const ConstantFPSDNode *CRHS = dyn_cast<ConstantFPSDNode>(RHS); local
1593 if (!CRHS)
1596 const APFloat &APF = CRHS->getValueAPF();

Completed in 111 milliseconds