Home | History | Annotate | Download | only in ARM

Lines Matching defs:RegNo

1911   int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
1912 if (RegNo <= 0)
1918 // (regno / 2) + (regno % 2) + 1
1919 DefCycle = RegNo / 2 + 1;
1920 if (RegNo % 2)
1923 DefCycle = RegNo;
1937 if ((isSLoad && (RegNo % 2)) || DefAlign < 8)
1941 DefCycle = RegNo + 2;
1952 int RegNo = (int)(DefIdx+1) - DefMCID.getNumOperands() + 1;
1953 if (RegNo <= 0)
1961 DefCycle = RegNo / 2;
1967 DefCycle = (RegNo / 2);
1970 if ((RegNo % 2) || DefAlign < 8)
1976 DefCycle = RegNo + 2;
1987 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
1988 if (RegNo <= 0)
1993 // (regno / 2) + (regno % 2) + 1
1994 UseCycle = RegNo / 2 + 1;
1995 if (RegNo % 2)
1998 UseCycle = RegNo;
2012 if ((isSStore && (RegNo % 2)) || UseAlign < 8)
2016 UseCycle = RegNo + 2;
2027 int RegNo = (int)(UseIdx+1) - UseMCID.getNumOperands() + 1;
2028 if (RegNo <= 0)
2033 UseCycle = RegNo / 2;
2039 UseCycle = (RegNo / 2);
2042 if ((RegNo % 2) || UseAlign < 8)