Home | History | Annotate | Download | only in ARM

Lines Matching defs:RegNo

3009   int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
3010 if (RegNo <= 0)
3016 // (regno / 2) + (regno % 2) + 1
3017 DefCycle = RegNo / 2 + 1;
3018 if (RegNo % 2)
3021 DefCycle = RegNo;
3035 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
3039 DefCycle = RegNo + 2;
3050 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
3051 if (RegNo <= 0)
3059 DefCycle = RegNo / 2;
3065 DefCycle = (RegNo / 2);
3068 if ((RegNo % 2) || DefAlign < 8)
3074 DefCycle = RegNo + 2;
3085 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
3086 if (RegNo <= 0)
3091 // (regno / 2) + (regno % 2) + 1
3092 UseCycle = RegNo / 2 + 1;
3093 if (RegNo % 2)
3096 UseCycle = RegNo;
3110 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
3114 UseCycle = RegNo + 2;
3125 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
3126 if (RegNo <= 0)
3131 UseCycle = RegNo / 2;
3137 UseCycle = (RegNo / 2);
3140 if ((RegNo % 2) || UseAlign < 8)