diff options
| author | 2012-10-31 05:21:00 -0700 | |
|---|---|---|
| committer | 2012-10-31 05:21:00 -0700 | |
| commit | 663c09fc4b0f1cc2b9311d62840f55991cf7cf5d (patch) | |
| tree | e7c2d0501d7c7915b00c21ce845e057425f16c52 | |
| parent | 8df6e276ecae2ccf6027f4cf9d4c58a3d0b1bdfc (diff) | |
Special for monkey debugging (#2)
Restore some of the optimizations turned off by CL 245592 to see if there is any
monkey run differences. This CL should be eventually reverted.
Change-Id: I9990ba07c02ca5e0b4dfa4b1abfbecbe2cc1271c
| -rw-r--r-- | src/compiler/Frontend.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc index c5d5c21d43..ffeae4691c 100644 --- a/src/compiler/Frontend.cc +++ b/src/compiler/Frontend.cc @@ -858,14 +858,15 @@ if (PrettyMethod(method_idx, dex_file).find("void com.android.inputmethod.keyboa (1 << kLoadStoreElimination) | (1 << kLoadHoisting) | (1 << kSuppressLoads) | - (1 << kNullCheckElimination) | - (1 << kPromoteRegs) | + //(1 << kNullCheckElimination) | + //(1 << kPromoteRegs) | (1 << kTrackLiveTemps) | - (1 << kSkipLargeMethodOptimization) | - (1 << kSafeOptimizations) | + //(1 << kSkipLargeMethodOptimization) | + //(1 << kSafeOptimizations) | (1 << kBBOpt) | (1 << kMatch) | - (1 << kPromoteCompilerTemps)); + //(1 << kPromoteCompilerTemps) | + 0); } #endif |