Searched refs:threshold (Results 1 - 21 of 21) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
H A DSsaConverter.java65 * registers above a certain threshold number.
68 * @param threshold registers below this number are unchanged
70 public static void updateSsaMethod(SsaMethod ssaMeth, int threshold) { argument
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]
286 placePhiFunctions(SsaMethod ssaMeth, LocalVariableInfo localInfo, int threshold) argument
[all...]
H A DSsaRenamer.java75 private int threshold; field in class:SsaRenamer
110 threshold = 0;
146 * Constructs an instance of the renamer with threshold set
154 threshold = thresh;
238 * Returns true if this SSA register is below the specified threshold.
240 * for registers above a certain threshold.
243 * @return {@code true} if its register number is below the threshold
246 return ssaReg < threshold;
540 threshold == 0) {
549 threshold
[all...]
/dalvik/vm/compiler/codegen/arm/armv5te/
H A DArchVariant.cpp55 if (gDvmJit.threshold == 0) {
56 gDvmJit.threshold = 200;
/dalvik/vm/compiler/codegen/arm/armv5te-vfp/
H A DArchVariant.cpp55 if (gDvmJit.threshold == 0) {
56 gDvmJit.threshold = 200;
/dalvik/vm/compiler/codegen/arm/armv7-a/
H A DArchVariant.cpp50 if (gDvmJit.threshold == 0) {
51 gDvmJit.threshold = 40;
/dalvik/vm/compiler/codegen/arm/armv7-a-neon/
H A DArchVariant.cpp50 if (gDvmJit.threshold == 0) {
51 gDvmJit.threshold = 40;
/dalvik/vm/compiler/codegen/mips/mips/
H A DArchVariant.cpp55 if (gDvmJit.threshold == 0) {
56 gDvmJit.threshold = 200;
/dalvik/vm/
H A DGlobals.h116 * Lock profiling threshold value in milliseconds. Acquires that
117 * exceed threshold are logged. Acquires within the threshold are
118 * logged with a probability of $\frac{time}{threshold}$ . If the
119 * threshold is unset no additional logging occurs.
792 /* Array of compilation trigger threshold counters */
814 unsigned short threshold; member in struct:DvmJitGlobals
H A DInit.cpp1123 gDvmJit.threshold = atoi(argv[i] + 15);
/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/interp/
H A DJit.cpp493 hit, not_hit + hit, chains, gDvmJit.threshold,
1218 gDvmJit.threshold > 6) {
1500 thread->jitThreshold = gDvmJit.threshold;
H A DInterp.cpp1573 if (thread->jitThreshold != gDvmJit.threshold) {
1575 (int)thread->jitThreshold,(int)gDvmJit.threshold,
/dalvik/vm/compiler/
H A DCompiler.cpp455 memset(pJitProfTable, gDvmJit.threshold, JIT_PROF_SIZE);
/dalvik/vm/compiler/codegen/x86/
H A DCodegenInterface.cpp67 if (gDvmJit.threshold == 0) {
68 gDvmJit.threshold = 255;
/dalvik/vm/mterp/mips/
H A Dfooter.S333 GOTO_OPCODE(t0) # if not threshold, fallthrough otherwise
/dalvik/vm/mterp/armv5te/
H A Dfooter.S330 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
/dalvik/vm/mterp/out/
H A DInterpAsm-armv5te-vfp.S15974 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-armv7-a-neon.S15911 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-armv7-a.S15911 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-armv5te.S16432 GOTO_OPCODE_IFNE(ip) @ if not threshold, fallthrough otherwise */
H A DInterpAsm-mips.S11335 GOTO_OPCODE(t0) # if not threshold, fallthrough otherwise

Completed in 318 milliseconds