summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-04-05 19:19:35 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-04-05 19:19:35 +0000
commit86ff8847067916ba6569fe7229f2d67215f75ca5 (patch)
tree6e62a05e2350ac06a217967c51d7f5d944b5abe5
parent57bad062b4c3047075cc80b69987d5572e88db12 (diff)
parent90c27b08c73858880756fdb7fb69520d3c4cc5b1 (diff)
downloadextras-86ff8847067916ba6569fe7229f2d67215f75ca5.tar.gz
Merge "Add debug logging showing the llvm-objdump command" into main
-rw-r--r--simpleperf/scripts/simpleperf_utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/simpleperf/scripts/simpleperf_utils.py b/simpleperf/scripts/simpleperf_utils.py
index 90f94cf7..e536b1b5 100644
--- a/simpleperf/scripts/simpleperf_utils.py
+++ b/simpleperf/scripts/simpleperf_utils.py
@@ -844,6 +844,7 @@ class Objdump(object):
real_path]
if arch == 'arm' and 'llvm-objdump' in objdump_path:
args += ['--print-imm-hex']
+ logging.debug('disassembling: %s', ' '.join(args))
try:
subproc = subprocess.Popen(args, stdout=subprocess.PIPE)
(stdoutdata, _) = subproc.communicate()