MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / show_llil_hierarchy

Method show_llil_hierarchy

python/lowlevelil.py:494–503  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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(

Callers

nothing calls this directly

Calls 4

show_graph_reportFunction · 0.85
FlowGraphMethod · 0.80
add_subgraphMethod · 0.80
valuesMethod · 0.45

Tested by

no test coverage detected