Instruction.backward_df()
Returns a list of all previous instructions/arguments/variables of the current point in the data flow graph.
Query Example
from glider import *
def query():
# Fetch an instruction
instructions = Instructions().with_callee_name('verify').exec(1)
for points in instructions[0].backward_df():
print(points.source_code())
# Return the list of previous instructions of the current instruction
return instructionsOutput Example


Last updated