Merge "Avoid profile guided compilation for vmSafeMode" am: a817838e8b

am: 7554be1e36

Change-Id: I4d34ab801e08034c7d54818cc0f313efa88edf69
This commit is contained in:
Mathieu Chartier
2016-09-06 22:38:18 +00:00
committed by android-build-merger

View File

@@ -176,6 +176,16 @@ class PackageDexOptimizer {
isProfileGuidedFilter = false; isProfileGuidedFilter = false;
} }
// Disable profile guided compilation for vmSafeMode.
final boolean vmSafeMode = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_VM_SAFE_MODE)
!= 0;
final boolean debuggable = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_DEBUGGABLE)
!= 0;
if (vmSafeMode) {
targetCompilerFilter = getNonProfileGuidedCompilerFilter(targetCompilerFilter);
isProfileGuidedFilter = false;
}
// If we're asked to take profile updates into account, check now. // If we're asked to take profile updates into account, check now.
boolean newProfile = false; boolean newProfile = false;
if (checkProfiles && isProfileGuidedFilter) { if (checkProfiles && isProfileGuidedFilter) {
@@ -187,9 +197,6 @@ class PackageDexOptimizer {
} }
} }
final boolean vmSafeMode = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
final boolean debuggable = (pkg.applicationInfo.flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
boolean performedDexOpt = false; boolean performedDexOpt = false;
boolean successfulDexOpt = true; boolean successfulDexOpt = true;