Searched defs:threshold (Results 1 - 4 of 4) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
H A DSsaConverter.java66 * registers above a certain threshold number.
69 * @param threshold registers below this number are unchanged
71 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { argument
73 placePhiFunctions(ssaMeth, localInfo, threshold);
74 new SsaRenamer(ssaMeth, threshold).run();
285 * @param threshold registers below this number are ignored
288 LocalVariableInfo localInfo, int threshold) {
295 regCount = ssaMeth.getRegCount() - threshold;
321 if (rs != null && rs.getReg() - threshold >= 0) {
322 defsites[rs.getReg() - threshold]
287 placePhiFunctions(SsaMethod ssaMeth, LocalVariableInfo localInfo, int threshold) argument
[all...]
H A DSsaRenamer.java76 private int threshold; field in class:SsaRenamer
111 threshold = 0;
147 * Constructs an instance of the renamer with threshold set
155 threshold = thresh;
239 * Returns true if this SSA register is below the specified threshold.
241 * for registers above a certain threshold.
244 * @return {@code true} if its register number is below the threshold
247 return ssaReg < threshold;
541 threshold == 0) {
550 threshold
[all...]
/dalvik/tools/dmtracedump/
H A DTraceDump.c225 int threshold; member in struct:Options
1614 /* check to make sure that the child method meets the threshold of the parent */
1620 return (percentage < gOptions.threshold) ? 0 : 1;
2814 fprintf(stderr, " -t threshold - Threshold percentage for including nodes in the graph\n");
2845 gOptions.threshold = atoi(optarg);
2859 gOptions.threshold = -1;
2867 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) {
2868 gOptions.threshold = 20;
/dalvik/vm/
H A DGlobals.h115 * Lock profiling threshold value in milliseconds. Acquires that
116 * exceed threshold are logged. Acquires within the threshold are
117 * logged with a probability of $\frac{time}{threshold}$ . If the
118 * threshold is unset no additional logging occurs.
787 /* Array of compilation trigger threshold counters */
809 unsigned short threshold; member in struct:DvmJitGlobals

Completed in 1647 milliseconds