summaryrefslogtreecommitdiffstats
path: root/tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java
diff options
context:
space:
mode:
authorStephen Kyle <stephenckyle@googlemail.com>2015-03-27 18:50:10 +0000
committerStephen Kyle <stephenckyle@googlemail.com>2015-04-02 13:01:27 +0100
commit1ec46bc71778dc1463e60c53f7126dcf6c913a44 (patch)
tree7d6651f8a3c9b43013123cafde86b7a3dfb06525 /tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java
parentc6e949a6d93fae2351fc59ed825657adee8185dc (diff)
downloadart-1ec46bc71778dc1463e60c53f7126dcf6c913a44.zip
art-1ec46bc71778dc1463e60c53f7126dcf6c913a44.tar.gz
art-1ec46bc71778dc1463e60c53f7126dcf6c913a44.tar.bz2
Update dexfuzz after optimizing default selection.
Now that the optimizing compiler is the default backend, the quick compiler must be explicitly selected as an argument. Change-Id: I5e6b8e6a79432118e0a91c9aea85bdd9cd7305dc
Diffstat (limited to 'tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java')
-rw-r--r--tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java b/tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java
index 9579b76..995cba2 100644
--- a/tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java
+++ b/tools/dexfuzz/src/dexfuzz/executors/X86_64QuickBackendExecutor.java
@@ -27,7 +27,7 @@ public class X86_64QuickBackendExecutor extends Executor {
@Override
public void execute(String programName) {
StringBuilder commandBuilder = new StringBuilder();
- commandBuilder.append("dalvikvm64 ");
+ commandBuilder.append("dalvikvm64 -Xcompiler-option --compiler-backend=Quick ");
commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" ");
commandBuilder.append(executeClass);
executionResult = executeCommandWithTimeout(commandBuilder.toString(), true);