Opens a new tab showing the LLIL hierarchy which includes classes which can easily be used with isinstance to match multiple types of IL instructions.
()
| 492 | |
| 493 | @staticmethod |
| 494 | def show_llil_hierarchy(): |
| 495 | """ |
| 496 | Opens a new tab showing the LLIL hierarchy which includes classes which can |
| 497 | easily be used with isinstance to match multiple types of IL instructions. |
| 498 | """ |
| 499 | graph = flowgraph.FlowGraph() |
| 500 | nodes = {} |
| 501 | for instruction in ILInstruction.values(): |
| 502 | instruction.add_subgraph(graph, nodes) |
| 503 | show_graph_report("LLIL Class Hierarchy Graph", graph) |
| 504 | |
| 505 | @classmethod |
| 506 | def create( |
nothing calls this directly
no test coverage detected