You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implemented a default Reload. It will simply reload all the same values as Commit had saved.
This version conservatively reloads everything which is probably ok for garbage collected systems where objects may move.
We should consider some enhancements at some point.
- option to reload some or all of the elements via selective reload to ensure you don't refetch from memory if not needed.
- option to take into account stack size changes before reload. This is be useful in VMs where the virtual machine changes the stack with pops of arguments , and pushed results. In that case, you would adjust the stack for pops, and the reload the number of new elements pushed by the VM.
Test for VirtualMachineOperandStack reload which uses the operand stack, passes stack elements which are modfied in an external C call, then ensures those modified values are correct when returned and reloaded.
Signed-off-by: John Duimovich <jduimovich@gmail.com>
0 commit comments