Opens a new tab showing the HLIL hierarchy which includes classes which can easily be used with isinstance to match multiple types of IL instructions.
()
| 309 | |
| 310 | @staticmethod |
| 311 | def show_hlil_hierarchy(): |
| 312 | """ |
| 313 | Opens a new tab showing the HLIL hierarchy which includes classes which can |
| 314 | easily be used with isinstance to match multiple types of IL instructions. |
| 315 | """ |
| 316 | graph = flowgraph.FlowGraph() |
| 317 | nodes = {} |
| 318 | for instruction in ILInstruction.values(): |
| 319 | instruction.add_subgraph(graph, nodes) |
| 320 | show_graph_report("HLIL Class Hierarchy Graph", graph) |
| 321 | |
| 322 | @classmethod |
| 323 | def create( |
nothing calls this directly
no test coverage detected