diff options
author | 2015-01-13 21:21:31 +0000 | |
---|---|---|
committer | 2015-01-13 21:21:31 +0000 | |
commit | 866c03125a3fcd74c9fff04da87865f5eb1767d9 (patch) | |
tree | 497bafc21358961524a6ef9bb045d522b91d8d27 /tools/checker.py | |
parent | 07ab4ec97221d882322a1ce064557202150f44ea (diff) |
ART: dex2oat flag for HGraphVisualizer dump file
This patch adds a new '--dump-cfg=<file>' flag to dex2oat which
specifies the file that HGraphVisualizer will store its output into.
Until now the graph was dumped to 'art.cfg' in the current working
directory. To make Checker work with run-test, the output directory
needs to be customizable.
Change-Id: I4a940f7708b88deea5a0e51d13aed13e52199349
Diffstat (limited to 'tools/checker.py')
-rwxr-xr-x | tools/checker.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checker.py b/tools/checker.py index 406a311638..a7cde62fe8 100755 --- a/tools/checker.py +++ b/tools/checker.py @@ -713,7 +713,7 @@ def CompileTest(inputFile, tempFolder): classFolder = tempFolder + "/classes" dexFile = tempFolder + "/test.dex" oatFile = tempFolder + "/test.oat" - outputFile = tempFolder + "/art.cfg" + outputFile = tempFolder + "/test.cfg" os.makedirs(classFolder) # Build a DEX from the source file. We pass "--no-optimize" to dx to avoid @@ -723,7 +723,7 @@ def CompileTest(inputFile, tempFolder): # Run dex2oat and export the HGraph. The output is stored into ${PWD}/art.cfg. with cd(tempFolder): - check_call(["dex2oat", "-j1", "--dump-passes", "--compiler-backend=Optimizing", + check_call(["dex2oat", "-j1", "--dump-cfg=" + outputFile, "--compiler-backend=Optimizing", "--android-root=" + os.environ["ANDROID_HOST_OUT"], "--boot-image=" + os.environ["ANDROID_HOST_OUT"] + "/framework/core-optimizing.art", "--runtime-arg", "-Xnorelocate", "--dex-file=" + dexFile, "--oat-file=" + oatFile]) |