angr.analyses.decompiler.dephication.graph_dephication¶
- class angr.analyses.decompiler.dephication.graph_dephication.GraphDephication¶
Bases:
DephicationBaseGraphDephication removes phi expressions from an AIL graph, essentially transforms a partial-SSA form of AIL graph to a normal AIL graph.
- __init__(func, ail_graph, vvar_to_vvar_mapping=None, rewrite=False, variable_kb=None, variable_map=None)¶
- Parameters:
func (
Function|str) – The subject of the analysis: a function, or a single basic blockail_graph – The AIL graph to transform.
rewrite (bool)
variable_kb (KnowledgeBase | None)
variable_map (VariableMap | None)