aboutsummaryrefslogtreecommitdiff
path: root/dx
diff options
context:
space:
mode:
authorjeffhao <jeffhao@google.com>2012-10-15 17:04:46 -0700
committerXavier Ducrohet <xav@android.com>2012-11-09 13:23:16 -0800
commitf870f2dce9300c8dec620613371f08e5c234245b (patch)
tree152f4e6a2a5321b923fb5a502b6d62bbdd515e42 /dx
parentd454d96bf19438d2fc4301714abf55f7fecd0001 (diff)
Add dx option to always generate const-string/jumbo.do not merge.
This allows large dex files with many strings to be merged properly. (cherry picked from commit 266f45ff7da18022faf5f77df76c69f8cdad313f) Change-Id: I5fe4c55d84a91101a4f89f590117aa6dc0bfc0f2
Diffstat (limited to 'dx')
-rw-r--r--dx/src/com/android/dx/command/Main.java2
-rw-r--r--dx/src/com/android/dx/command/dexer/Main.java7
-rw-r--r--dx/src/com/android/dx/dex/DexOptions.java3
-rw-r--r--dx/src/com/android/dx/dex/code/OutputFinisher.java9
-rw-r--r--dx/src/com/android/dx/merge/InstructionTransformer.java20
5 files changed, 32 insertions, 9 deletions
diff --git a/dx/src/com/android/dx/command/Main.java b/dx/src/com/android/dx/command/Main.java
index 10a117929..6540e353b 100644
--- a/dx/src/com/android/dx/command/Main.java
+++ b/dx/src/com/android/dx/command/Main.java
@@ -33,7 +33,7 @@ public class Main {
"[--dump-width=<n>]\n" +
" [--dump-method=<name>[*]] [--verbose-dump] [--no-files] " +
"[--core-library]\n" +
- " [--num-threads=<n>]\n" +
+ " [--num-threads=<n>] [--incremental] [--force-jumbo]\n" +
" [<file>.class | <file>.{zip,jar,apk} | <directory>] ...\n" +
" Convert a set of classfiles into a dex file, optionally " +
"embedded in a\n" +
diff --git a/dx/src/com/android/dx/command/dexer/Main.java b/dx/src/com/android/dx/command/dexer/Main.java
index 80ddbd0a2..87f152afb 100644
--- a/dx/src/com/android/dx/command/dexer/Main.java
+++ b/dx/src/com/android/dx/command/dexer/Main.java
@@ -934,6 +934,10 @@ public class Main {
/** whether to merge with the output dex file if it exists. */
public boolean incremental = false;
+ /** whether to force generation of const-string/jumbo for all indexes,
+ * to allow merges between dex files with many strings. */
+ public boolean forceJumbo = false;
+
/** {@code non-null} after {@link #parse}; file name arguments */
public String[] fileNames;
@@ -1140,6 +1144,8 @@ public class Main {
numThreads = Integer.parseInt(parser.getLastValue());
} else if (parser.isArg("--incremental")) {
incremental = true;
+ } else if (parser.isArg("--force-jumbo")) {
+ forceJumbo = true;
} else {
System.err.println("unknown option: " + parser.getCurrent());
throw new UsageException();
@@ -1180,6 +1186,7 @@ public class Main {
dexOptions = new DexOptions();
dexOptions.targetApiLevel = targetApiLevel;
+ dexOptions.forceJumbo = forceJumbo;
}
}
diff --git a/dx/src/com/android/dx/dex/DexOptions.java b/dx/src/com/android/dx/dex/DexOptions.java
index 03573844e..0a0745192 100644
--- a/dx/src/com/android/dx/dex/DexOptions.java
+++ b/dx/src/com/android/dx/dex/DexOptions.java
@@ -23,6 +23,9 @@ public class DexOptions {
/** target API level */
public int targetApiLevel = DexFormat.API_NO_EXTENDED_OPCODES;
+ /** force generation of jumbo opcodes */
+ public boolean forceJumbo = false;
+
/**
* Gets the dex file magic number corresponding to this instance.
*/
diff --git a/dx/src/com/android/dx/dex/code/OutputFinisher.java b/dx/src/com/android/dx/dex/code/OutputFinisher.java
index 3602de8f9..c9387fab6 100644
--- a/dx/src/com/android/dx/dex/code/OutputFinisher.java
+++ b/dx/src/com/android/dx/dex/code/OutputFinisher.java
@@ -504,7 +504,14 @@ public final class OutputFinisher {
while (guess != null) {
if (guess.getFormat().isCompatible(insn)) {
- break;
+ /*
+ * Don't break out for const_string to generate jumbo version
+ * when option is enabled.
+ */
+ if (!dexOptions.forceJumbo ||
+ guess.getOpcode() != Opcodes.CONST_STRING) {
+ break;
+ }
}
guess = Dops.getNextOrNull(guess, dexOptions);
diff --git a/dx/src/com/android/dx/merge/InstructionTransformer.java b/dx/src/com/android/dx/merge/InstructionTransformer.java
index 62c3a49f3..6051e17d8 100644
--- a/dx/src/com/android/dx/merge/InstructionTransformer.java
+++ b/dx/src/com/android/dx/merge/InstructionTransformer.java
@@ -17,6 +17,7 @@
package com.android.dx.merge;
import com.android.dx.io.CodeReader;
+import com.android.dx.io.Opcodes;
import com.android.dx.io.instructions.DecodedInstruction;
import com.android.dx.io.instructions.ShortArrayCodeOutput;
import com.android.dx.util.DexException;
@@ -66,7 +67,8 @@ final class InstructionTransformer {
public void visit(DecodedInstruction[] all, DecodedInstruction one) {
int stringId = one.getIndex();
int mappedId = indexMap.adjustString(stringId);
- jumboCheck(stringId, mappedId);
+ boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
+ jumboCheck(isJumbo, mappedId);
mappedInstructions[mappedAt++] = one.withIndex(mappedId);
}
}
@@ -75,7 +77,8 @@ final class InstructionTransformer {
public void visit(DecodedInstruction[] all, DecodedInstruction one) {
int fieldId = one.getIndex();
int mappedId = indexMap.adjustField(fieldId);
- jumboCheck(fieldId, mappedId);
+ boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
+ jumboCheck(isJumbo, mappedId);
mappedInstructions[mappedAt++] = one.withIndex(mappedId);
}
}
@@ -84,7 +87,8 @@ final class InstructionTransformer {
public void visit(DecodedInstruction[] all, DecodedInstruction one) {
int typeId = one.getIndex();
int mappedId = indexMap.adjustType(typeId);
- jumboCheck(typeId, mappedId);
+ boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
+ jumboCheck(isJumbo, mappedId);
mappedInstructions[mappedAt++] = one.withIndex(mappedId);
}
}
@@ -93,14 +97,16 @@ final class InstructionTransformer {
public void visit(DecodedInstruction[] all, DecodedInstruction one) {
int methodId = one.getIndex();
int mappedId = indexMap.adjustMethod(methodId);
- jumboCheck(methodId, mappedId);
+ boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
+ jumboCheck(isJumbo, mappedId);
mappedInstructions[mappedAt++] = one.withIndex(mappedId);
}
}
- private static void jumboCheck(int oldIndex, int newIndex) {
- if ((oldIndex <= 0xffff) && (newIndex > 0xffff)) {
- throw new DexException("Cannot handle conversion to jumbo index!");
+ private static void jumboCheck(boolean isJumbo, int newIndex) {
+ if (!isJumbo && (newIndex > 0xffff)) {
+ throw new DexException("Cannot merge new index " + newIndex +
+ " into a non-jumbo instruction!");
}
}
}