On 04/11/2017 06:17 PM, Emilio G. Cota wrote:
+uint32_t HELPER(cross_page_check)(CPUARMState *env, target_ulong vaddr) +{ + return !!tb_from_jmp_cache(env, vaddr); +}
FWIW, helpers like this that are intended to be used by more than one target should go into tcg-runtime.[ch].
That said, I don't think this is the proper abstraction. More later... r~