Commit f870f2dc authored by jeffhao's avatar jeffhao Committed by Xavier Ducrohet
Browse files

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 266f45ff)

Change-Id: I5fe4c55d84a91101a4f89f590117aa6dc0bfc0f2
parent d454d96b
......@@ -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" +
......
......@@ -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;
}
}
......
......@@ -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.
*/
......
......@@ -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);
......
......@@ -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!");
}
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment