Re: [PATCH] accel/tcg: Un-inline translator_is_same_page()

2024-12-19 Thread Philippe Mathieu-Daudé
On 18/12/24 16:41, Philippe Mathieu-Daudé wrote: Remove the single target-specific definition used in "exec/translator.h" (TARGET_PAGE_MASK) by un-inlining is_same_page(). Rename the method as translator_is_same_page() and improve its documentation. Use it in translator_use_goto_tb(). Signed-off

Re: [PATCH] accel/tcg: Un-inline translator_is_same_page()

2024-12-18 Thread Richard Henderson
On 12/18/24 09:41, Philippe Mathieu-Daudé wrote: Remove the single target-specific definition used in "exec/translator.h" (TARGET_PAGE_MASK) by un-inlining is_same_page(). Rename the method as translator_is_same_page() and improve its documentation. Use it in translator_use_goto_tb(). Signed-off

[PATCH] accel/tcg: Un-inline translator_is_same_page()

2024-12-18 Thread Philippe Mathieu-Daudé
Remove the single target-specific definition used in "exec/translator.h" (TARGET_PAGE_MASK) by un-inlining is_same_page(). Rename the method as translator_is_same_page() and improve its documentation. Use it in translator_use_goto_tb(). Signed-off-by: Philippe Mathieu-Daudé --- Richard, I'll merg