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
In the current flow of the JIT compilation, the simulation will be reverted back to the interpreter mode to deal with the translation of the virtual address to the physical address when reaching the memory operation (lw/sw) in the system simulation. This is going to have a significant impact to the performance due to the mode switching.
The one of the possible solutions is to implement the translation lookaside buffer (TLB). However, the situation mentioned above will still happen if the cache misses.
The text was updated successfully, but these errors were encountered:
jserv
changed the title
jit: improve the efficiency of MMU in the system simulation
jit: Improve the efficiency of MMU in the system simulation
Oct 28, 2024
jserv
changed the title
jit: Improve the efficiency of MMU in the system simulation
jit: Improve MMU efficiency in system simulation
Oct 28, 2024
In the current flow of the JIT compilation, the simulation will be reverted back to the interpreter mode to deal with the translation of the virtual address to the physical address when reaching the memory operation (
lw
/sw
) in the system simulation. This is going to have a significant impact to the performance due to the mode switching.The one of the possible solutions is to implement the translation lookaside buffer (TLB). However, the situation mentioned above will still happen if the cache misses.
The text was updated successfully, but these errors were encountered: