Simulate LD and SD by the read/write operations that these instructions perform. Each memory operation is for 1 byte, so LD and SD do 8 each to read/write 64 bits.
Since in Jolt the instruction fetching is not done through memory access, I added a new method called fetch_u32 used for instruction fetching which is not traced.
Simulate LD and SD by the read/write operations that these instructions perform. Each memory operation is for 1 byte, so LD and SD do 8 each to read/write 64 bits. Since in Jolt the instruction fetching is not done through memory access, I added a new method called
fetch_u32
used for instruction fetching which is not traced.