From: notaz Date: Wed, 29 Jan 2025 00:18:50 +0000 (+0200) Subject: lightning: apply patch from libretro/pcsx_rearmed#868 X-Git-Tag: r25l~5 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56096d32fa33138f2320d85006f55bb4bebe3c55;p=pcsx_rearmed.git lightning: apply patch from libretro/pcsx_rearmed#868 Just to stop people reporting bugs. Can be reverted later and properly synced with upstream lightrec when it gets the fix. libretro/pcsx_rearmed#868 libretro/pcsx_rearmed#873 --- diff --git a/deps/lightning/lib/jit_x86-cpu.c b/deps/lightning/lib/jit_x86-cpu.c index 6957adf3..618500dc 100644 --- a/deps/lightning/lib/jit_x86-cpu.c +++ b/deps/lightning/lib/jit_x86-cpu.c @@ -864,16 +864,23 @@ static void _vaarg_d(jit_state_t*, jit_int32_t, jit_int32_t, jit_bool_t); # define patch_at(instr, label) _patch_at(_jit, instr, label) static void _patch_at(jit_state_t*, jit_word_t, jit_word_t); # if !defined(HAVE_FFSL) -# if __X32 +# if __WORDSIZE == 32 # define ffsl(i) __builtin_ffs(i) # else -# define ffsl(l) __builtin_ffsl(l) +# define ffsl(l) __builtin_ffsll(l) # endif # endif +# if __WORDSIZE == 32 +# define popcntl(x) __builtin_popcount(x) +# define ctzl(x) __builtin_ctz(x) +# else +# define popcntl(x) __builtin_popcountll(x) +# define ctzl(x) __builtin_ctzll(x) +# endif # define jit_cmov_p() jit_cpu.cmov -# define is_low_mask(im) (((im) & 1) ? (__builtin_popcountl((im) + 1) <= 1) : 0) -# define is_high_mask(im) ((im) ? (__builtin_popcountl((im) + (1 << __builtin_ctzl(im))) == 0) : 0) -# define unmasked_bits_count(im) (__WORDSIZE - __builtin_popcountl(im)) +# define is_low_mask(im) (((im) & 1) ? (popcntl((im) + 1) <= 1) : 0) +# define is_high_mask(im) ((im) ? (popcntl((im) + (1 << ctzl(im))) == 0) : 0) +# define unmasked_bits_count(im) (__WORDSIZE - popcntl(im)) #endif #if CODE