Home | History | Annotate | Download | only in ssa

Lines Matching refs:threshold

65      * registers above a certain threshold number.
68 * @param threshold registers below this number are unchanged
70 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) {
72 placePhiFunctions(ssaMeth, localInfo, threshold);
73 new SsaRenamer(ssaMeth, threshold).run();
284 * @param threshold registers below this number are ignored
287 LocalVariableInfo localInfo, int threshold) {
294 regCount = ssaMeth.getRegCount() - threshold;
320 if (rs != null && rs.getReg() - threshold >= 0) {
321 defsites[rs.getReg() - threshold].set(bi);
361 int tReg = reg + threshold;