Var.backward_df()
Returns a list of all previous instructions/arguments of the current point in the data flow graph.
Last updated
Returns a list of all previous instructions/arguments of the current point in the data flow graph.
Last updated
backward_df() -> List[Point]
The function works similarly to ; the main difference is that in case of Instruction.backward_df() the function will return backward dataflow point for every point in the instruction, while Var.backward_df() returns only those connected with the current Var.
Like all other dataflow (DF) functions, it returns a list/set of Points, which can be instructions or "points" in the code, such as arguments, variables, etc.