VarValue.backward_df_recursive()
Returns the list of all previous points of the current point in the current data flow graph and outside of that.
Query Example
from glider import *
def query():
instructions = Instructions().exec(1, 187)
for instruction in instructions:
components = instruction.get_components()
for component in components:
points = component.backward_df_recursive()
print(points)
for backward_df in points:
print(backward_df.source_code())
return instructionsOutput Example


Last updated