Handle safe mode in PackageManager.
PackageManager side of the change.
bug:37929796
Test: manual OTA with a safemode app.
(cherry picked from commit d093b203f5)
Change-Id: Icee7f7174d28bed79fc2cde4c174ee002d182832
This commit is contained in:
@@ -56,7 +56,9 @@ import static com.android.server.pm.InstructionSets.getAppDexInstructionSets;
|
||||
import static com.android.server.pm.InstructionSets.getDexCodeInstructionSets;
|
||||
|
||||
import static com.android.server.pm.PackageManagerService.WATCHDOG_TIMEOUT;
|
||||
import static com.android.server.pm.PackageManagerServiceCompilerMapping.getNonProfileGuidedCompilerFilter;
|
||||
|
||||
import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
|
||||
import static dalvik.system.DexFile.getSafeModeCompilerFilter;
|
||||
import static dalvik.system.DexFile.isProfileGuidedCompilerFilter;
|
||||
|
||||
/**
|
||||
@@ -381,13 +383,7 @@ public class PackageDexOptimizer {
|
||||
int flags = info.flags;
|
||||
boolean vmSafeMode = (flags & ApplicationInfo.FLAG_VM_SAFE_MODE) != 0;
|
||||
if (vmSafeMode) {
|
||||
// For the compilation, it doesn't really matter what we return here because installd
|
||||
// will replace the filter with 'quicken' anyway.
|
||||
// However, we return a non profile guided filter so that we simplify the logic of
|
||||
// merging profiles.
|
||||
// TODO(calin): safe mode path could be simplified if we pass 'quicken' from
|
||||
// here rather than letting installd decide on the filter.
|
||||
return getNonProfileGuidedCompilerFilter(targetCompilerFilter);
|
||||
return getSafeModeCompilerFilter(targetCompilerFilter);
|
||||
}
|
||||
|
||||
if (isProfileGuidedCompilerFilter(targetCompilerFilter) && isUsedByOtherApps) {
|
||||
|
||||
@@ -97,11 +97,12 @@ import static com.android.server.pm.InstructionSets.getPreferredInstructionSet;
|
||||
import static com.android.server.pm.InstructionSets.getPrimaryInstructionSet;
|
||||
import static com.android.server.pm.PackageManagerServiceCompilerMapping.getCompilerFilterForReason;
|
||||
import static com.android.server.pm.PackageManagerServiceCompilerMapping.getDefaultCompilerFilter;
|
||||
import static com.android.server.pm.PackageManagerServiceCompilerMapping.getNonProfileGuidedCompilerFilter;
|
||||
import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_FAILURE;
|
||||
import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_SUCCESS;
|
||||
import static com.android.server.pm.PermissionsState.PERMISSION_OPERATION_SUCCESS_GIDS_CHANGED;
|
||||
|
||||
import static dalvik.system.DexFile.getNonProfileGuidedCompilerFilter;
|
||||
|
||||
import android.Manifest;
|
||||
import android.annotation.NonNull;
|
||||
import android.annotation.Nullable;
|
||||
|
||||
@@ -111,11 +111,4 @@ public class PackageManagerServiceCompilerMapping {
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the non-profile-guided filter corresponding to the given filter.
|
||||
*/
|
||||
public static String getNonProfileGuidedCompilerFilter(String filter) {
|
||||
return DexFile.getNonProfileGuidedCompilerFilter(filter);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user