Lines Matching +full:- +full:replace
7 # dissect.py [-h] -- <qemu executable> [<qemu executable options>] \
10 # [-h] - Print the script arguments help message.
13 # dissect.py -- qemu-arm coulomb_double-arm
43 the callgrind_annotate output when ran using --tree=caller
52 line = -1
55 callgrind_data[i].split()[-1] == "[???]":
58 if line == -1:
66 usage='dissect.py [-h] -- '
92 "--tool=callgrind",
93 "--callgrind-out-file=" + data_path]
98 sys.exit(callgrind.stderr.decode("utf-8"))
103 ["callgrind_annotate", data_path, "--tree=caller"],
107 sys.exit(callgrind_annotate.stderr.decode("utf-8"))
120 total_instructions = int(total_instructions.replace(',', ''))
128 JIT_self_instructions = int(JIT_self_instructions.replace(',', ''))
131 # It's the line above the first JIT call when running with --tree=caller
132 JIT_total_instructions_line_number = JIT_self_instructions_line_number-1
137 JIT_total_instructions = int(JIT_total_instructions.replace(',', ''))
140 helpers_instructions = JIT_total_instructions-JIT_self_instructions
141 code_generation_instructions = total_instructions-JIT_total_instructions