Home | History | Annotate | Download | only in Analysis

Lines Matching refs:RA

479           const Argument *RA = cast<Argument>(RV);
480 unsigned LArgNo = LA->getArgNo(), RArgNo = RA->getArgNo();
514 const APInt &RA = RC->getValue()->getValue();
515 unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
518 return LA.ult(RA) ? -1 : 1;
523 const SCEVAddRecExpr *RA = cast<SCEVAddRecExpr>(RHS);
526 const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
535 unsigned LNumOps = LA->getNumOperands(), RNumOps = RA->getNumOperands();
541 long X = compare(LA->getOperand(i), RA->getOperand(i));
3835 const SCEV *RA = getSCEV(U->getOperand(2));
3837 const SCEV *RDiff = getMinusSCEV(RA, RS);
3841 RDiff = getMinusSCEV(RA, LS);
3858 const SCEV *RA = getSCEV(U->getOperand(2));
3860 const SCEV *RDiff = getMinusSCEV(RA, RS);
3864 RDiff = getMinusSCEV(RA, LS);
3877 const SCEV *RA = getSCEV(U->getOperand(2));
3879 const SCEV *RDiff = getMinusSCEV(RA, One);
3892 const SCEV *RA = getSCEV(U->getOperand(2));
3894 const SCEV *RDiff = getMinusSCEV(RA, LS);
5471 const APInt &RA = RC->getValue()->getValue();
5478 if ((RA - 1).isMinValue()) {
5480 RHS = getConstant(RA - 1);
5484 if (RA.isMaxValue()) {
5489 if (RA.isMinValue()) goto trivially_true;
5492 RHS = getConstant(RA - 1);
5496 if ((RA + 1).isMaxValue()) {
5498 RHS = getConstant(RA + 1);
5502 if (RA.isMinValue()) {
5507 if (RA.isMaxValue()) goto trivially_true;
5510 RHS = getConstant(RA + 1);
5514 if ((RA - 1).isMinSignedValue()) {
5516 RHS = getConstant(RA - 1);
5520 if (RA.isMaxSignedValue()) {
5525 if (RA.isMinSignedValue()) goto trivially_true;
5528 RHS = getConstant(RA - 1);
5532 if ((RA + 1).isMaxSignedValue()) {
5534 RHS = getConstant(RA + 1);
5538 if (RA.isMinSignedValue()) {
5543 if (RA.isMaxSignedValue()) goto trivially_true;
5546 RHS = getConstant(RA + 1);
5550 if (RA.isMinValue()) {
5555 if ((RA + 1).isMaxValue()) {
5557 RHS = getConstant(RA + 1);
5561 if (RA.isMaxValue()) goto trivially_false;
5564 if (RA.isMaxValue()) {
5569 if ((RA - 1).isMinValue()) {
5571 RHS = getConstant(RA - 1);
5575 if (RA.isMinValue()) goto trivially_false;
5578 if (RA.isMinSignedValue()) {
5583 if ((RA + 1).isMaxSignedValue()) {
5585 RHS = getConstant(RA + 1);
5589 if (RA.isMaxSignedValue()) goto trivially_false;
5592 if (RA.isMaxSignedValue()) {
5597 if ((RA - 1).isMinSignedValue()) {
5599 RHS = getConstant(RA - 1);
5603 if (RA.isMinSignedValue()) goto trivially_false;