Searched refs:threshold (Results 1 - 18 of 18) sorted by relevance
/dalvik/dx/src/com/android/dx/ssa/ |
H A D | SsaConverter.java | 66 * 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 D | SsaRenamer.java | 76 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 D | ArchVariant.c | 54 gDvmJit.threshold = 200;
|
/dalvik/vm/compiler/codegen/arm/armv5te-vfp/ |
H A D | ArchVariant.c | 54 gDvmJit.threshold = 200;
|
/dalvik/vm/compiler/codegen/arm/armv7-a/ |
H A D | ArchVariant.c | 49 gDvmJit.threshold = 40;
|
/dalvik/vm/compiler/codegen/arm/armv7-a-neon/ |
H A D | ArchVariant.c | 49 gDvmJit.threshold = 40;
|
/dalvik/vm/mterp/ |
H A D | Mterp.c | 83 glue->jitThreshold = gDvmJit.threshold;
|
/dalvik/vm/ |
H A D | Globals.h | 98 * 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 D | Init.c | 913 gDvmJit.threshold = atoi(argv[i] + 15);
|
/dalvik/vm/compiler/ |
H A D | Compiler.c | 393 memset(pJitProfTable, gDvmJit.threshold, JIT_PROF_SIZE);
|
/dalvik/vm/interp/ |
H A D | Jit.c | 477 hit, not_hit + hit, chains, gDvmJit.threshold, 1111 gDvmJit.threshold > 6) {
|
/dalvik/tools/dmtracedump/ |
H A D | TraceDump.c | 244 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 D | footer.S | 294 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
|
/dalvik/vm/mterp/out/ |
H A D | InterpAsm-armv4t.S | 10141 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
|
H A D | InterpAsm-armv5te-vfp.S | 9679 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
|
H A D | InterpAsm-armv5te.S | 10137 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
|
H A D | InterpAsm-armv7-a-neon.S | 9613 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
|
H A D | InterpAsm-armv7-a.S | 9613 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
|
Completed in 1511 milliseconds