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

Method show_hlil_hierarchy

python/highlevelil.py:311–320  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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(

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