Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
DSsaConverter.java70 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { in updateSsaMethod() argument
72 placePhiFunctions(ssaMeth, localInfo, threshold); in updateSsaMethod()
73 new SsaRenamer(ssaMeth, threshold).run(); in updateSsaMethod()
287 LocalVariableInfo localInfo, int threshold) { in placePhiFunctions() argument
294 regCount = ssaMeth.getRegCount() - threshold; in placePhiFunctions()
320 if (rs != null && rs.getReg() - threshold >= 0) { in placePhiFunctions()
321 defsites[rs.getReg() - threshold].set(bi); in placePhiFunctions()
361 int tReg = reg + threshold; in placePhiFunctions()
DSsaRenamer.java75 private int threshold; field in SsaRenamer
110 threshold = 0; in SsaRenamer()
154 threshold = thresh; in SsaRenamer()
246 return ssaReg < threshold; in isBelowThresholdRegister()
540 threshold == 0) { in visitMoveInsn()
549 threshold == 0) { in visitMoveInsn()
/dalvik/tools/dmtracedump/
DTraceDump.c225 int threshold; member
1620 return (percentage < gOptions.threshold) ? 0 : 1; in checkThreshold()
2845 gOptions.threshold = atoi(optarg); in parseOptions()
2859 gOptions.threshold = -1; in main()
2867 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) { in main()
2868 gOptions.threshold = 20; in main()