Searched refs:threshold (Results 1 - 18 of 18) 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/vm/compiler/codegen/arm/armv5te/
H A DArchVariant.c54 gDvmJit.threshold = 200;
/dalvik/vm/compiler/codegen/arm/armv5te-vfp/
H A DArchVariant.c54 gDvmJit.threshold = 200;
/dalvik/vm/compiler/codegen/arm/armv7-a/
H A DArchVariant.c49 gDvmJit.threshold = 40;
/dalvik/vm/compiler/codegen/arm/armv7-a-neon/
H A DArchVariant.c49 gDvmJit.threshold = 40;
/dalvik/vm/mterp/
H A DMterp.c83 glue->jitThreshold = gDvmJit.threshold;
/dalvik/vm/
H A DGlobals.h98 * Lock profiling threshold value in milliseconds. Acquires that
99 * exceed threshold are logged. Acquires within the threshold are
100 * logged with a probability of $\frac{time}{threshold}$ . If the
101 * threshold is unset no additional logging occurs.
720 /* Array of profile threshold counters */
739 unsigned short threshold; member in struct:DvmJitGlobals
H A DInit.c913 gDvmJit.threshold = atoi(argv[i] + 15);
/dalvik/vm/compiler/
H A DCompiler.c393 memset(pJitProfTable, gDvmJit.threshold, JIT_PROF_SIZE);
/dalvik/vm/interp/
H A DJit.c477 hit, not_hit + hit, chains, gDvmJit.threshold,
1111 gDvmJit.threshold > 6) {
/dalvik/tools/dmtracedump/
H A DTraceDump.c244 int threshold; member in struct:Options
1689 /* check to make sure that the child method meets the threshold of the parent */
1695 return (percentage < gOptions.threshold) ? 0 : 1;
3528 fprintf(stderr, " -t threshold - Threshold percentage for including nodes in the graph\n");
3562 gOptions.threshold = atoi(optarg);
3577 gOptions.threshold = -1;
3585 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) {
3586 gOptions.threshold = 20;
/dalvik/vm/mterp/armv5te/
H A Dfooter.S294 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
/dalvik/vm/mterp/out/
H A DInterpAsm-armv4t.S10141 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-armv5te-vfp.S9679 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-armv5te.S10137 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-armv7-a-neon.S9613 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-armv7-a.S9613 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */

Completed in 1511 milliseconds