1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
#!/usr/bin/env python3
# blockifyasm ----- Split disassembly into basic blocks ---------*- python -*-
#
# This source file is part of the Swift.org open source project
#
# Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
# Licensed under Apache License v2.0 with Runtime Library Exception
#
# See https://swift.org/LICENSE.txt for license information
# See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
#
# ----------------------------------------------------------------------------
#
# Splits a disassembled function from lldb into basic blocks.
#
# Useful to show the control flow graph of a disassembled function.
# The control flow graph can the be viewed with the viewcfg utility:
#
# (lldb) disassemble
# <copy-paste output to file.s>
# $ blockifyasm < file.s | viewcfg
#
# ----------------------------------------------------------------------------
import re
import sys
from collections import defaultdict
def help():
print(
"""\
Usage:
blockifyasm [-<n>] < file
-<n>: only match <n> significant digits of relative branch addresses
"""
)
def main():
addr_len = 16
if len(sys.argv) >= 2:
m = re.match("^-([0-9]+)$", sys.argv[1])
if m:
addr_len = int(m.group(1))
else:
help()
return
lines = []
block_starts = {}
branch_re1 = re.compile(r"^\s[-\s>]*0x.*:\s.* 0x([0-9a-f]+)\s*;\s*<[+-]")
branch_re2 = re.compile(r"^\s[-\s>]*0x.*:\s+tb.* 0x([0-9a-f]+)\s*(;.*)?")
inst_re = re.compile(r"^\s[-\s>]*0x([0-9a-f]+)[\s<>0-9+-]*:\s+([a-z0-9.]+)\s")
non_fall_through_insts = ["b", "ret", "brk", "jmp", "retq", "ud2"]
def get_branch_addr(line):
bm = branch_re1.match(line)
if bm:
return bm.group(1)[-addr_len:]
bm = branch_re2.match(line)
if bm:
return bm.group(1)[-addr_len:]
return None
def print_function():
if not lines:
return
predecessors = defaultdict(list)
block_num = -1
next_is_block = True
prev_is_fallthrough = False
# Collect predecessors for all blocks
for line in lines:
m = inst_re.match(line)
assert m, "non instruction line in function"
addr = m.group(1)[-addr_len:]
inst = m.group(2)
if next_is_block or addr in block_starts:
if prev_is_fallthrough:
predecessors[addr].append(block_num)
block_num += 1
block_starts[addr] = block_num
next_is_block = False
prev_is_fallthrough = True
br_addr = get_branch_addr(line)
if br_addr:
next_is_block = True
predecessors[br_addr].append(block_num)
prev_is_fallthrough = inst not in non_fall_through_insts
# Print the function with basic block labels
print("{")
for line in lines:
m = inst_re.match(line)
if m:
addr = m.group(1)[-addr_len:]
if addr in block_starts:
blockstr = "bb" + str(block_starts[addr]) + ":"
if predecessors[addr]:
print(
blockstr + " " * (55 - len(blockstr)) + "; preds = ", end=""
)
print(
", ".join("bb" + str(pred) for pred in predecessors[addr])
)
else:
print(blockstr)
br_addr = get_branch_addr(line)
if br_addr and block_starts[br_addr] >= 0:
line = re.sub(r";\s<[+-].*", "; bb" + str(block_starts[br_addr]), line)
print(line, end="")
print("}")
# Read disassembly code from stdin
for line in sys.stdin:
# let the line with the instruction pointer begin with a space
line = re.sub("^-> ", " ->", line)
if inst_re.match(line):
lines.append(line)
br_addr = get_branch_addr(line)
if br_addr:
if len(br_addr) < addr_len:
addr_len = len(br_addr)
block_starts[br_addr] = -1
else:
print_function()
lines = []
block_starts = {}
print(line, end="")
print_function()
if __name__ == "__main__":
main()
|