Home | History | Annotate | Download | only in IPO

Lines Matching refs:Res

342   /// be checked with the same way. If we get Res != 0 on some stage, return it.
416 if (int Res = cmpNumbers(L.getBitWidth(), R.getBitWidth()))
417 return Res;
424 if (int Res = cmpNumbers((uint64_t)&L.getSemantics(),
426 return Res;
432 if (int Res = cmpNumbers(L.size(), R.size()))
433 return Res;
442 if (int Res = cmpNumbers(L.getNumSlots(), R.getNumSlots()))
443 return Res;
513 if (int Res = cmpNumbers(AddrSpaceL, AddrSpaceR))
514 return Res;
536 if (int Res = cmpNumbers(L->getValueID(), R->getValueID()))
537 return Res;
556 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
557 return Res;
559 if (int Res = cmpConstants(cast<Constant>(LA->getOperand(i)),
561 return Res;
570 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
571 return Res;
573 if (int Res = cmpConstants(cast<Constant>(LS->getOperand(i)),
575 return Res;
584 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
585 return Res;
587 if (int Res = cmpConstants(cast<Constant>(LV->getOperand(i)),
589 return Res;
598 if (int Res = cmpNumbers(NumOperandsL, NumOperandsR))
599 return Res;
601 if (int Res = cmpConstants(cast<Constant>(LE->getOperand(i)),
603 return Res;
631 if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID()))
632 return Res;
668 if (int Res = cmpType(STyL->getElementType(i),
670 return Res;
684 if (int Res = cmpType(FTyL->getReturnType(), FTyR->getReturnType()))
685 return Res;
688 if (int Res = cmpType(FTyL->getParamType(i), FTyR->getParamType(i)))
689 return Res;
714 if (int Res = cmpNumbers(L->getOpcode(), R->getOpcode()))
715 return Res;
717 if (int Res = cmpNumbers(L->getNumOperands(), R->getNumOperands()))
718 return Res;
720 if (int Res = cmpType(L->getType(), R->getType()))
721 return Res;
723 if (int Res = cmpNumbers(L->getRawSubclassOptionalData(),
725 return Res;
730 if (int Res =
732 return Res;
737 if (int Res = cmpNumbers(LI->isVolatile(), cast<LoadInst>(R)->isVolatile()))
738 return Res;
739 if (int Res =
741 return Res;
742 if (int Res =
744 return Res;
745 if (int Res =
747 return Res;
752 if (int Res =
754 return Res;
755 if (int Res =
757 return Res;
758 if (int Res =
760 return Res;
766 if (int Res = cmpNumbers(CI->getCallingConv(),
768 return Res;
772 if (int Res = cmpNumbers(CI->getCallingConv(),
774 return Res;
780 if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
781 return Res;
783 if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
784 return Res;
790 if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
791 return Res;
793 if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
794 return Res;
798 if (int Res =
800 return Res;
805 if (int Res = cmpNumbers(CXI->isVolatile(),
807 return Res;
808 if (int Res = cmpNumbers(CXI->isWeak(),
810 return Res;
811 if (int Res = cmpNumbers(CXI->getSuccessOrdering(),
813 return Res;
814 if (int Res = cmpNumbers(CXI->getFailureOrdering(),
816 return Res;
821 if (int Res
823 return Res;
824 if (int Res = cmpNumbers(RMWI->isVolatile(),
826 return Res;
827 if (int Res = cmpNumbers(RMWI->getOrdering(),
829 return Res;
844 if (int Res = cmpNumbers(ASL, ASR))
845 return Res;
857 if (int Res = cmpNumbers((uint64_t)GEPL->getPointerOperand()->getType(),
859 return Res;
861 if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands()))
862 return Res;
865 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i)))
866 return Res;
923 if (int Res = cmpValues(InstL, InstR))
924 return Res;
935 if (int Res =
937 return Res;
938 if (int Res = cmpGEP(GEPL, GEPR))
939 return Res;
941 if (int Res = cmpOperation(InstL, InstR))
942 return Res;
948 if (int Res = cmpValues(OpL, OpR))
949 return Res;
950 if (int Res = cmpNumbers(OpL->getValueID(), OpR->getValueID()))
951 return Res;
953 if (int Res = cmpType(OpL->getType(), OpR->getType()))
954 return Res;
974 if (int Res = cmpAttrs(FnL->getAttributes(), FnR->getAttributes()))
975 return Res;
977 if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC()))
978 return Res;
981 if (int Res = cmpNumbers((uint64_t)FnL->getGC(), (uint64_t)FnR->getGC()))
982 return Res;
985 if (int Res = cmpNumbers(FnL->hasSection(), FnR->hasSection()))
986 return Res;
989 if (int Res = cmpStrings(FnL->getSection(), FnR->getSection()))
990 return Res;
993 if (int Res = cmpNumbers(FnL->isVarArg(), FnR->isVarArg()))
994 return Res;
998 if (int Res = cmpNumbers(FnL->getCallingConv(), FnR->getCallingConv()))
999 return Res;
1001 if (int Res = cmpType(FnL->getFunctionType(), FnR->getFunctionType()))
1002 return Res;
1032 if (int Res = cmpValues(BBL, BBR))
1033 return Res;
1035 if (int Res = compare(BBL, BBR))
1036 return Res;