Home | History | Annotate | Download | only in ARM

Lines Matching defs:RegNo

3155   int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
3156 if (RegNo <= 0)
3162 // (regno / 2) + (regno % 2) + 1
3163 DefCycle = RegNo / 2 + 1;
3164 if (RegNo % 2)
3167 DefCycle = RegNo;
3181 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
3185 DefCycle = RegNo + 2;
3196 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
3197 if (RegNo <= 0)
3205 DefCycle = RegNo / 2;
3211 DefCycle = (RegNo / 2);
3214 if ((RegNo % 2) || DefAlign < 8)
3220 DefCycle = RegNo + 2;
3231 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
3232 if (RegNo <= 0)
3237 // (regno / 2) + (regno % 2) + 1
3238 UseCycle = RegNo / 2 + 1;
3239 if (RegNo % 2)
3242 UseCycle = RegNo;
3256 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
3260 UseCycle = RegNo + 2;
3271 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
3272 if (RegNo <= 0)
3277 UseCycle = RegNo / 2;
3283 UseCycle = (RegNo / 2);
3286 if ((RegNo % 2) || UseAlign < 8)