This PR cleans up a little auxiliary column code generator for the stack overflow table.
Specifically:
Moved some functions inline when the body of a function contains just a single function call.
Used OverflowTableRow::to_value() method to compute aux request/responses.
Removed OverflowTable.update_trace field since it is no longer needed.
We can further simplify the OverflowTable struct by not tracking all overflow table rows and instead tracking only current ones. But I didn't do this in this PR.
This PR cleans up a little auxiliary column code generator for the stack overflow table.
Specifically:
OverflowTableRow::to_value()
method to compute aux request/responses.OverflowTable.update_trace
field since it is no longer needed.We can further simplify the
OverflowTable
struct by not tracking all overflow table rows and instead tracking only current ones. But I didn't do this in this PR.