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
Augment the trace analysis tool to collect statistics on instructions that can be directly rewritten into C-extension instructions.
Those that can be rewritten to C-extension instructions need to satisfy additional constraints such as:
the immediate or address offset is small, or
one of the registers is the zero register (x0), the ABI link register (x1), or the ABI stack pointer (x2), or
the destination register and the first source register are identical, or
the registers used are the 8 most popular ones
Report the percentage of instructions (for each regular instruction) that can be rewritten to C-extension instructions (i.e., 40% of add can be rewritten to C-extension add
The text was updated successfully, but these errors were encountered:
Migrated from riscv-collab/v8#284:
Augment the trace analysis tool to collect statistics on instructions that can be directly rewritten into C-extension instructions.
Those that can be rewritten to C-extension instructions need to satisfy additional constraints such as:
Report the percentage of instructions (for each regular instruction) that can be rewritten to C-extension instructions (i.e., 40% of
add
can be rewritten to C-extension addThe text was updated successfully, but these errors were encountered: