Currently, data in AbstractSparseBackwardDataFlowAnalysis is
considered to flow one-to-one, in order, from the operands of an op
implementing CallOpInterface to the arguments of the function it is
calling.
This understanding of the data flow is inaccurate. The operands of such
an op that forward to the function arguments are obtained using a
method provided by CallOpInterface called getArgOperands().
This commit fixes this bug by using getArgOperands() instead of
getOperands() to get the mapping from operands to function arguments
because not all operands necessarily forward to the function arguments
and even if they do, they don't necessarily have to be in the order in
which they appear in the op. The operands that don't get forwarded are
handled by the newly introduced visitCallOperand() function, which
works analogous to the visitBranchOperand() function.
This fix is also propagated to liveness analysis that earlier relied on
this incorrect implementation of the sparse backward dataflow analysis
framework and corrects some incorrect assumptions made in it.
Extra cleanup: Improved a comment and removed an unnecessary code line.
Signed-off-by: Srishti Srivastava <srishtisrivastava.ai@gmail.com>
I don't fully understand this condition. It reads as if the value is an operand and a block?