summaryrefslogtreecommitdiffstats
path: root/dexopt
diff options
context:
space:
mode:
authorAndy McFadden <fadden@android.com>2010-09-30 14:02:54 -0700
committerAndy McFadden <fadden@android.com>2010-09-30 15:15:32 -0700
commitd8b5f50d0c6c9a0ce157e89df4ee1e8eb8b334c3 (patch)
tree6eeec1d0e2739d802fc5f3b8455bb403a240f57e /dexopt
parentf45b6cbed6ce7cb6a38746b5abe0213263106a71 (diff)
downloadandroid_dalvik-d8b5f50d0c6c9a0ce157e89df4ee1e8eb8b334c3.tar.gz
android_dalvik-d8b5f50d0c6c9a0ce157e89df4ee1e8eb8b334c3.tar.bz2
android_dalvik-d8b5f50d0c6c9a0ce157e89df4ee1e8eb8b334c3.zip
Correct dexopt for uniprocessors.
The SMP flag was defaulting to "true" for dexopt, even on uniprocessors. With this change the VM now has three choices: dexopt for SMP, dexopt for uniprocessor, or dexopt for current system. The last is used for just-in-time dexopt (used by -eng and -userdebug builds on bootstrap DEX files) and installd dexopt (used for apps on all builds). The dexopt used by the build system during -user builds will either be explicitly SMP or explicitly uniprocessor, since "current system" has no meaning when you're cross-dexopting. Also, unified the dexopt control flags into a single enum. (cherry-pick from dalvik-dev) Change-Id: Id1d9c548ca8567585a28ef9ee911cc2ac6b116dd
Diffstat (limited to 'dexopt')
-rw-r--r--dexopt/OptMain.c23
1 files changed, 14 insertions, 9 deletions
diff --git a/dexopt/OptMain.c b/dexopt/OptMain.c
index fbb794790..b8e58893f 100644
--- a/dexopt/OptMain.c
+++ b/dexopt/OptMain.c
@@ -160,9 +160,13 @@ static int extractAndProcessZip(int zipFd, int cacheFd,
dexoptFlags |= DEXOPT_GEN_REGISTER_MAPS;
}
- opc = strstr(dexoptFlagStr, "u=y"); /* uniprocessor target */
+ opc = strstr(dexoptFlagStr, "u="); /* uniprocessor target */
if (opc != NULL) {
- dexoptFlags |= DEXOPT_UNIPROCESSOR;
+ switch (*(opc+2)) {
+ case 'y': dexoptFlags |= DEXOPT_UNIPROCESSOR; break;
+ case 'n': dexoptFlags |= DEXOPT_SMP; break;
+ default: break;
+ }
}
}
@@ -350,6 +354,13 @@ static int preopt(int argc, char* const argv[])
const char* outName = argv[3];
const char* dexoptFlags = argv[4];
+ if (strstr(dexoptFlags, "u=y") == NULL &&
+ strstr(dexoptFlags, "u=n") == NULL)
+ {
+ fprintf(stderr, "Either 'u=y' or 'u=n' must be specified\n");
+ goto bail;
+ }
+
zipFd = open(zipName, O_RDONLY);
if (zipFd < 0) {
perror(argv[0]);
@@ -483,7 +494,6 @@ static int fromDex(int argc, char* const argv[])
bool onlyOptVerifiedDex = false;
DexClassVerifyMode verifyMode;
DexOptimizerMode dexOptMode;
- int dexoptFlags = 0;
/* ugh -- upgrade these to a bit field if they get any more complex */
if ((flags & DEXOPT_VERIFY_ENABLED) != 0) {
@@ -502,13 +512,8 @@ static int fromDex(int argc, char* const argv[])
} else {
dexOptMode = OPTIMIZE_MODE_NONE;
}
- if ((flags & DEXOPT_GEN_REGISTER_MAP) != 0) {
- dexoptFlags |= DEXOPT_GEN_REGISTER_MAPS;
- }
- if (dvmPrepForDexOpt(bootClassPath, dexOptMode, verifyMode,
- dexoptFlags) != 0)
- {
+ if (dvmPrepForDexOpt(bootClassPath, dexOptMode, verifyMode, flags) != 0) {
LOGE("VM init failed\n");
goto bail;
}