/art/tools/dexfuzz/src/dexfuzz/executors/ |
D | Arm64OptimizingBackendExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm64 -Xcompiler-option --compiler-backend=Optimizing "); in constructCommand() 34 commandBuilder.append("-Xno-dex-file-fallback "); in constructCommand() 36 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate "); in constructCommand() 38 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 39 commandBuilder.append(executeClass); in constructCommand() 40 return commandBuilder.toString(); in constructCommand()
|
D | ArmOptimizingBackendExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm32 -Xcompiler-option --compiler-backend=Optimizing "); in constructCommand() 34 commandBuilder.append("-Xno-dex-file-fallback "); in constructCommand() 36 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate "); in constructCommand() 38 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 39 commandBuilder.append(executeClass); in constructCommand() 40 return commandBuilder.toString(); in constructCommand()
|
D | Executor.java | 101 StringBuilder commandBuilder = new StringBuilder(); in verifyOnHost() local 102 commandBuilder.append("dex2oat "); in verifyOnHost() 104 commandBuilder.append("--instruction-set=").append(architecture.asString()); in verifyOnHost() 105 commandBuilder.append(" --instruction-set-features=default "); in verifyOnHost() 108 commandBuilder.append("--boot-image=").append(device.getAndroidProductOut()); in verifyOnHost() 110 commandBuilder.append("/data/art-test/core.art "); in verifyOnHost() 112 commandBuilder.append("/system/framework/boot.art "); in verifyOnHost() 115 commandBuilder.append("--oat-file=output.oat "); in verifyOnHost() 116 commandBuilder.append("--android-root=").append(device.getAndroidHostOut()).append(" "); in verifyOnHost() 117 commandBuilder.append("--dex-file=").append(programName).append(" "); in verifyOnHost() [all …]
|
D | X86OptimizingBackendExecutor.java | 31 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 32 commandBuilder.append("dalvikvm32 -Xcompiler-option --compiler-backend=Optimizing "); in constructCommand() 35 commandBuilder.append("-Xno-dex-file-fallback "); in constructCommand() 37 commandBuilder.append(device.getHostExecutionFlags()).append(" "); in constructCommand() 39 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 40 commandBuilder.append(executeClass); in constructCommand() 41 return commandBuilder.toString(); in constructCommand()
|
D | MipsOptimizingBackendExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm32 -Xcompiler-option --compiler-backend=Optimizing "); in constructCommand() 34 commandBuilder.append("-Xno-dex-file-fallback "); in constructCommand() 35 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 36 commandBuilder.append(executeClass); in constructCommand() 37 return commandBuilder.toString(); in constructCommand()
|
D | Mips64OptimizingBackendExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm64 -Xcompiler-option --compiler-backend=Optimizing "); in constructCommand() 34 commandBuilder.append("-Xno-dex-file-fallback "); in constructCommand() 35 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 36 commandBuilder.append(executeClass); in constructCommand() 37 return commandBuilder.toString(); in constructCommand()
|
D | X86_64OptimizingBackendExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm64 -Xcompiler-option --compiler-backend=Optimizing "); in constructCommand() 34 commandBuilder.append("-Xno-dex-file-fallback "); in constructCommand() 35 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 36 commandBuilder.append(executeClass); in constructCommand() 37 return commandBuilder.toString(); in constructCommand()
|
D | ArmInterpreterExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm32 -Xint "); in constructCommand() 33 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate "); in constructCommand() 35 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 36 commandBuilder.append(executeClass); in constructCommand() 37 return commandBuilder.toString(); in constructCommand()
|
D | Arm64InterpreterExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm64 -Xint "); in constructCommand() 33 commandBuilder.append("-Ximage:/data/art-test/core.art -Xnorelocate "); in constructCommand() 35 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 36 commandBuilder.append(executeClass); in constructCommand() 37 return commandBuilder.toString(); in constructCommand()
|
D | X86InterpreterExecutor.java | 31 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 32 commandBuilder.append("dalvikvm32 -Xint "); in constructCommand() 34 commandBuilder.append(device.getHostExecutionFlags()).append(" "); in constructCommand() 36 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 37 commandBuilder.append(executeClass); in constructCommand() 38 return commandBuilder.toString(); in constructCommand()
|
D | X86_64InterpreterExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm64 -Xint "); in constructCommand() 32 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 33 commandBuilder.append(executeClass); in constructCommand() 34 return commandBuilder.toString(); in constructCommand()
|
D | Mips64InterpreterExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm64 -Xint "); in constructCommand() 32 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 33 commandBuilder.append(executeClass); in constructCommand() 34 return commandBuilder.toString(); in constructCommand()
|
D | MipsInterpreterExecutor.java | 30 StringBuilder commandBuilder = new StringBuilder(); in constructCommand() local 31 commandBuilder.append("dalvikvm32 -Xint "); in constructCommand() 32 commandBuilder.append("-cp ").append(testLocation).append("/").append(programName).append(" "); in constructCommand() 33 commandBuilder.append(executeClass); in constructCommand() 34 return commandBuilder.toString(); in constructCommand()
|