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

/external/llvm/lib/Analysis/
H A DInlineCost.cpp554 if (Constant *CRHS = dyn_cast<Constant>(RHS))
555 if (Constant *C = ConstantExpr::getCompare(I.getPredicate(), CLHS, CRHS)) {
575 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); local
576 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
621 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset); local
622 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
H A DInstructionSimplify.cpp96 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1); local
97 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
100 CRHS == LHS;
532 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
533 Constant *Ops[] = { CLHS, CRHS };
664 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
665 Constant *Ops[] = { CLHS, CRHS };
791 if (Constant *CRHS = dyn_cast<Constant>(Op1)) {
792 Constant *Ops[] = { CLHS, CRHS };
833 if (Constant *CRHS
[all...]
H A DValueTracking.cpp2267 if (const auto *CRHS = dyn_cast<Constant>(U->getOperand(1)))
2268 if (CRHS->isAllOnesValue()) {
4154 const APInt *CLHS, *CRHS; local
4155 if (MatchNUWAddsToSameValue(LHS, RHS, X, CLHS, CRHS))
4156 return CLHS->ule(*CRHS);
/external/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp1868 const ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(RHS.getOperand(1)); local
1869 if (!CLHS || !CRHS)
1875 uint32_t NewMask = (CLHS->getZExtValue() | CRHS->getZExtValue()) & MaxMask;
1969 const ConstantFPSDNode *CRHS = dyn_cast<ConstantFPSDNode>(RHS); local
1970 if (!CRHS)
1973 const APFloat &APF = CRHS->getValueAPF();

Completed in 117 milliseconds