In the current function call visitor, we use deepcopy to copy the function statements and visit them sequentially. If the statement internals are not modified, we can use shallow copy or copy.copy method which will improve the runtime for unrolling subroutines.
In the current function call visitor, we use
deepcopyto copy the function statements and visit them sequentially. If the statement internals are not modified, we can use shallow copy orcopy.copymethod which will improve the runtime for unrolling subroutines.