From 663c09fc4b0f1cc2b9311d62840f55991cf7cf5d Mon Sep 17 00:00:00 2001 From: buzbee Date: Wed, 31 Oct 2012 05:21:00 -0700 Subject: 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 --- src/compiler/Frontend.cc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/compiler/Frontend.cc') 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 -- cgit v1.2.3-59-g8ed1b