(row_format, fxn_dict2)
| 302 | def print_all_fxns(call_graph): |
| 303 | |
| 304 | def print_fxn(row_format, fxn_dict2): |
| 305 | unresolved = fxn_dict2['unresolved_calls'] |
| 306 | stack = str(fxn_dict2['wcs']) |
| 307 | if unresolved: |
| 308 | unresolved_str = '({})'.format(' ,'.join(unresolved)) |
| 309 | if stack != 'unbounded': |
| 310 | stack = "unbounded:" + stack |
| 311 | else: |
| 312 | unresolved_str = '' |
| 313 | |
| 314 | print(row_format.format(fxn_dict2['tu'], fxn_dict2['demangledName'], stack, unresolved_str)) |
| 315 | |
| 316 | def get_order(val): |
| 317 | if val == 'unbounded': |