Home | History | Annotate | Download | only in ARM

Lines Matching full:regno

2787   int RegNo
2788 if (RegNo <= 0)
2794 // (regno / 2) + (regno % 2) + 1
2795 DefCycle = RegNo / 2 + 1;
2796 if (RegNo % 2)
2799 DefCycle = RegNo;
2813 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
2817 DefCycle = RegNo + 2;
2828 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
2829 if (RegNo <= 0)
2837 DefCycle = RegNo / 2;
2843 DefCycle = (RegNo / 2);
2846 if ((RegNo % 2) || DefAlign < 8)
2852 DefCycle = RegNo + 2;
2863 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
2864 if (RegNo <= 0)
2869 // (regno / 2) + (regno % 2) + 1
2870 UseCycle = RegNo / 2 + 1;
2871 if (RegNo % 2)
2874 UseCycle = RegNo;
2888 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2892 UseCycle = RegNo + 2;
2903 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
2904 if (RegNo <= 0)
2909 UseCycle = RegNo / 2;
2915 UseCycle = (RegNo / 2);
2918 if ((RegNo % 2) || UseAlign < 8)