JIT compiler update
This commit is contained in:
parent
4851890ede
commit
b67d568201
|
@ -452,9 +452,10 @@ EXTRA_DIST += \
|
||||||
src/sljit/sljitNativePPC_32.c \
|
src/sljit/sljitNativePPC_32.c \
|
||||||
src/sljit/sljitNativePPC_64.c \
|
src/sljit/sljitNativePPC_64.c \
|
||||||
src/sljit/sljitNativePPC_common.c \
|
src/sljit/sljitNativePPC_common.c \
|
||||||
|
src/sljit/sljitNativeRISCV_32.c \
|
||||||
|
src/sljit/sljitNativeRISCV_64.c \
|
||||||
|
src/sljit/sljitNativeRISCV_common.c \
|
||||||
src/sljit/sljitNativeS390X.c \
|
src/sljit/sljitNativeS390X.c \
|
||||||
src/sljit/sljitNativeSPARC_32.c \
|
|
||||||
src/sljit/sljitNativeSPARC_common.c \
|
|
||||||
src/sljit/sljitNativeX86_32.c \
|
src/sljit/sljitNativeX86_32.c \
|
||||||
src/sljit/sljitNativeX86_64.c \
|
src/sljit/sljitNativeX86_64.c \
|
||||||
src/sljit/sljitNativeX86_common.c \
|
src/sljit/sljitNativeX86_common.c \
|
||||||
|
|
|
@ -53,7 +53,8 @@ extern "C" {
|
||||||
/* #define SLJIT_CONFIG_PPC_64 1 */
|
/* #define SLJIT_CONFIG_PPC_64 1 */
|
||||||
/* #define SLJIT_CONFIG_MIPS_32 1 */
|
/* #define SLJIT_CONFIG_MIPS_32 1 */
|
||||||
/* #define SLJIT_CONFIG_MIPS_64 1 */
|
/* #define SLJIT_CONFIG_MIPS_64 1 */
|
||||||
/* #define SLJIT_CONFIG_SPARC_32 1 */
|
/* #define SLJIT_CONFIG_RISCV_32 1 */
|
||||||
|
/* #define SLJIT_CONFIG_RISCV_64 1 */
|
||||||
/* #define SLJIT_CONFIG_S390X 1 */
|
/* #define SLJIT_CONFIG_S390X 1 */
|
||||||
|
|
||||||
/* #define SLJIT_CONFIG_AUTO 1 */
|
/* #define SLJIT_CONFIG_AUTO 1 */
|
||||||
|
@ -127,17 +128,6 @@ extern "C" {
|
||||||
|
|
||||||
#endif /* !SLJIT_EXECUTABLE_ALLOCATOR */
|
#endif /* !SLJIT_EXECUTABLE_ALLOCATOR */
|
||||||
|
|
||||||
/* Force cdecl calling convention even if a better calling
|
|
||||||
convention (e.g. fastcall) is supported by the C compiler.
|
|
||||||
If this option is disabled (this is the default), functions
|
|
||||||
called from JIT should be defined with SLJIT_FUNC attribute.
|
|
||||||
Standard C functions can still be called by using the
|
|
||||||
SLJIT_CALL_CDECL jump type. */
|
|
||||||
#ifndef SLJIT_USE_CDECL_CALLING_CONVENTION
|
|
||||||
/* Disabled by default */
|
|
||||||
#define SLJIT_USE_CDECL_CALLING_CONVENTION 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Return with error when an invalid argument is passed. */
|
/* Return with error when an invalid argument is passed. */
|
||||||
#ifndef SLJIT_ARGUMENT_CHECKS
|
#ifndef SLJIT_ARGUMENT_CHECKS
|
||||||
/* Disabled by default */
|
/* Disabled by default */
|
||||||
|
|
|
@ -59,7 +59,8 @@ extern "C" {
|
||||||
SLJIT_64BIT_ARCHITECTURE : 64 bit architecture
|
SLJIT_64BIT_ARCHITECTURE : 64 bit architecture
|
||||||
SLJIT_LITTLE_ENDIAN : little endian architecture
|
SLJIT_LITTLE_ENDIAN : little endian architecture
|
||||||
SLJIT_BIG_ENDIAN : big endian architecture
|
SLJIT_BIG_ENDIAN : big endian architecture
|
||||||
SLJIT_UNALIGNED : allows unaligned memory accesses for non-fpu operations (only!)
|
SLJIT_UNALIGNED : unaligned memory accesses for non-fpu operations are supported
|
||||||
|
SLJIT_FPU_UNALIGNED : unaligned memory accesses for fpu operations are supported
|
||||||
SLJIT_INDIRECT_CALL : see SLJIT_FUNC_ADDR() for more information
|
SLJIT_INDIRECT_CALL : see SLJIT_FUNC_ADDR() for more information
|
||||||
|
|
||||||
Constants:
|
Constants:
|
||||||
|
@ -98,7 +99,8 @@ extern "C" {
|
||||||
+ (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
|
+ (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
|
||||||
+ (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
|
+ (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
|
||||||
+ (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
|
+ (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
|
||||||
+ (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) \
|
+ (defined SLJIT_CONFIG_RISCV_32 && SLJIT_CONFIG_RISCV_32) \
|
||||||
|
+ (defined SLJIT_CONFIG_RISCV_64 && SLJIT_CONFIG_RISCV_64) \
|
||||||
+ (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X) \
|
+ (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X) \
|
||||||
+ (defined SLJIT_CONFIG_AUTO && SLJIT_CONFIG_AUTO) \
|
+ (defined SLJIT_CONFIG_AUTO && SLJIT_CONFIG_AUTO) \
|
||||||
+ (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED) >= 2
|
+ (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED) >= 2
|
||||||
|
@ -115,7 +117,8 @@ extern "C" {
|
||||||
&& !(defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
|
&& !(defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
|
||||||
&& !(defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
|
&& !(defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
|
||||||
&& !(defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
|
&& !(defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
|
||||||
&& !(defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) \
|
&& !(defined SLJIT_CONFIG_RISCV_32 && SLJIT_CONFIG_RISCV_32) \
|
||||||
|
&& !(defined SLJIT_CONFIG_RISCV_64 && SLJIT_CONFIG_RISCV_64) \
|
||||||
&& !(defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X) \
|
&& !(defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X) \
|
||||||
&& !(defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED) \
|
&& !(defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED) \
|
||||||
&& !(defined SLJIT_CONFIG_AUTO && SLJIT_CONFIG_AUTO)
|
&& !(defined SLJIT_CONFIG_AUTO && SLJIT_CONFIG_AUTO)
|
||||||
|
@ -156,8 +159,10 @@ extern "C" {
|
||||||
#define SLJIT_CONFIG_MIPS_32 1
|
#define SLJIT_CONFIG_MIPS_32 1
|
||||||
#elif defined(__mips64)
|
#elif defined(__mips64)
|
||||||
#define SLJIT_CONFIG_MIPS_64 1
|
#define SLJIT_CONFIG_MIPS_64 1
|
||||||
#elif (defined(__sparc__) || defined(__sparc)) && !defined(_LP64)
|
#elif defined (__riscv_xlen) && (__riscv_xlen == 32)
|
||||||
#define SLJIT_CONFIG_SPARC_32 1
|
#define SLJIT_CONFIG_RISCV_32 1
|
||||||
|
#elif defined (__riscv_xlen) && (__riscv_xlen == 64)
|
||||||
|
#define SLJIT_CONFIG_RISCV_64 1
|
||||||
#elif defined(__s390x__)
|
#elif defined(__s390x__)
|
||||||
#define SLJIT_CONFIG_S390X 1
|
#define SLJIT_CONFIG_S390X 1
|
||||||
#else
|
#else
|
||||||
|
@ -205,8 +210,8 @@ extern "C" {
|
||||||
#define SLJIT_CONFIG_PPC 1
|
#define SLJIT_CONFIG_PPC 1
|
||||||
#elif (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) || (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
|
#elif (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) || (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
|
||||||
#define SLJIT_CONFIG_MIPS 1
|
#define SLJIT_CONFIG_MIPS 1
|
||||||
#elif (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) || (defined SLJIT_CONFIG_SPARC_64 && SLJIT_CONFIG_SPARC_64)
|
#elif (defined SLJIT_CONFIG_RISCV_32 && SLJIT_CONFIG_RISCV_32) || (defined SLJIT_CONFIG_RISCV_64 && SLJIT_CONFIG_RISCV_64)
|
||||||
#define SLJIT_CONFIG_SPARC 1
|
#define SLJIT_CONFIG_RISCV 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/***********************************************************/
|
/***********************************************************/
|
||||||
|
@ -330,8 +335,14 @@ extern "C" {
|
||||||
* older versions are known to abort in some targets
|
* older versions are known to abort in some targets
|
||||||
* https://github.com/PhilipHazel/pcre2/issues/92
|
* https://github.com/PhilipHazel/pcre2/issues/92
|
||||||
*
|
*
|
||||||
* beware APPLE is known to have removed the code in iOS so
|
* beware some vendors (ex: Microsoft, Apple) are known to have
|
||||||
* it will need to be excempted or result in broken builds
|
* removed the code to support this builtin even if the call for
|
||||||
|
* __has_builtin reports it is available.
|
||||||
|
*
|
||||||
|
* make sure linking doesn't fail because __clear_cache() is
|
||||||
|
* missing before changing it or add an exception so that the
|
||||||
|
* system provided method that should be defined below is used
|
||||||
|
* instead.
|
||||||
*/
|
*/
|
||||||
#if (!defined SLJIT_CACHE_FLUSH && defined __has_builtin)
|
#if (!defined SLJIT_CACHE_FLUSH && defined __has_builtin)
|
||||||
#if __has_builtin(__builtin___clear_cache) && !defined(__clang__)
|
#if __has_builtin(__builtin___clear_cache) && !defined(__clang__)
|
||||||
|
@ -339,9 +350,9 @@ extern "C" {
|
||||||
/*
|
/*
|
||||||
* https://gcc.gnu.org/bugzilla//show_bug.cgi?id=91248
|
* https://gcc.gnu.org/bugzilla//show_bug.cgi?id=91248
|
||||||
* https://gcc.gnu.org/bugzilla//show_bug.cgi?id=93811
|
* https://gcc.gnu.org/bugzilla//show_bug.cgi?id=93811
|
||||||
* gcc's clear_cache builtin for power and sparc are broken
|
* gcc's clear_cache builtin for power is broken
|
||||||
*/
|
*/
|
||||||
#if !defined(SLJIT_CONFIG_PPC) && !defined(SLJIT_CONFIG_SPARC_32)
|
#if !defined(SLJIT_CONFIG_PPC)
|
||||||
#define SLJIT_CACHE_FLUSH(from, to) \
|
#define SLJIT_CACHE_FLUSH(from, to) \
|
||||||
__builtin___clear_cache((char*)(from), (char*)(to))
|
__builtin___clear_cache((char*)(from), (char*)(to))
|
||||||
#endif
|
#endif
|
||||||
|
@ -373,12 +384,10 @@ extern "C" {
|
||||||
ppc_cache_flush((from), (to))
|
ppc_cache_flush((from), (to))
|
||||||
#define SLJIT_CACHE_FLUSH_OWN_IMPL 1
|
#define SLJIT_CACHE_FLUSH_OWN_IMPL 1
|
||||||
|
|
||||||
#elif (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
|
#elif defined(_WIN32)
|
||||||
|
|
||||||
/* The __clear_cache() implementation of GCC is a dummy function on Sparc. */
|
|
||||||
#define SLJIT_CACHE_FLUSH(from, to) \
|
#define SLJIT_CACHE_FLUSH(from, to) \
|
||||||
sparc_cache_flush((from), (to))
|
FlushInstructionCache(GetCurrentProcess(), (void*)(from), (char*)(to) - (char*)(from))
|
||||||
#define SLJIT_CACHE_FLUSH_OWN_IMPL 1
|
|
||||||
|
|
||||||
#elif (defined(__GNUC__) && (__GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) || defined(__clang__)
|
#elif (defined(__GNUC__) && (__GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) || defined(__clang__)
|
||||||
|
|
||||||
|
@ -392,11 +401,6 @@ extern "C" {
|
||||||
#define SLJIT_CACHE_FLUSH(from, to) \
|
#define SLJIT_CACHE_FLUSH(from, to) \
|
||||||
cacheflush((long)(from), (long)(to), 0)
|
cacheflush((long)(from), (long)(to), 0)
|
||||||
|
|
||||||
#elif defined _WIN32
|
|
||||||
|
|
||||||
#define SLJIT_CACHE_FLUSH(from, to) \
|
|
||||||
FlushInstructionCache(GetCurrentProcess(), (void*)(from), (char*)(to) - (char*)(from))
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
/* Call __ARM_NR_cacheflush on ARM-Linux or the corresponding MIPS syscall. */
|
/* Call __ARM_NR_cacheflush on ARM-Linux or the corresponding MIPS syscall. */
|
||||||
|
@ -435,6 +439,7 @@ typedef long int sljit_sw;
|
||||||
&& !(defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
|
&& !(defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
|
||||||
&& !(defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
|
&& !(defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
|
||||||
&& !(defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
|
&& !(defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64) \
|
||||||
|
&& !(defined SLJIT_CONFIG_RISCV_64 && SLJIT_CONFIG_RISCV_64) \
|
||||||
&& !(defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
&& !(defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
||||||
#define SLJIT_32BIT_ARCHITECTURE 1
|
#define SLJIT_32BIT_ARCHITECTURE 1
|
||||||
#define SLJIT_WORD_SHIFT 2
|
#define SLJIT_WORD_SHIFT 2
|
||||||
|
@ -495,8 +500,7 @@ typedef double sljit_f64;
|
||||||
#if !defined(SLJIT_BIG_ENDIAN) && !defined(SLJIT_LITTLE_ENDIAN)
|
#if !defined(SLJIT_BIG_ENDIAN) && !defined(SLJIT_LITTLE_ENDIAN)
|
||||||
|
|
||||||
/* These macros are mostly useful for the applications. */
|
/* These macros are mostly useful for the applications. */
|
||||||
#if (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) \
|
#if (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
|
||||||
|| (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
|
||||||
|
|
||||||
#ifdef __LITTLE_ENDIAN__
|
#ifdef __LITTLE_ENDIAN__
|
||||||
#define SLJIT_LITTLE_ENDIAN 1
|
#define SLJIT_LITTLE_ENDIAN 1
|
||||||
|
@ -504,8 +508,7 @@ typedef double sljit_f64;
|
||||||
#define SLJIT_BIG_ENDIAN 1
|
#define SLJIT_BIG_ENDIAN 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) \
|
#elif (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
|
||||||
|| (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
|
|
||||||
|
|
||||||
#ifdef __MIPSEL__
|
#ifdef __MIPSEL__
|
||||||
#define SLJIT_LITTLE_ENDIAN 1
|
#define SLJIT_LITTLE_ENDIAN 1
|
||||||
|
@ -532,8 +535,7 @@ typedef double sljit_f64;
|
||||||
|
|
||||||
#endif /* !SLJIT_MIPS_REV */
|
#endif /* !SLJIT_MIPS_REV */
|
||||||
|
|
||||||
#elif (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) \
|
#elif (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
||||||
|| (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
|
||||||
|
|
||||||
#define SLJIT_BIG_ENDIAN 1
|
#define SLJIT_BIG_ENDIAN 1
|
||||||
|
|
||||||
|
@ -554,19 +556,30 @@ typedef double sljit_f64;
|
||||||
|
|
||||||
#ifndef SLJIT_UNALIGNED
|
#ifndef SLJIT_UNALIGNED
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32) \
|
#if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86) \
|
||||||
|| (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64) \
|
|
||||||
|| (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7) \
|
|| (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7) \
|
||||||
|| (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2) \
|
|| (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2) \
|
||||||
|| (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
|
|| (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
|
||||||
|| (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) \
|
|| (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC) \
|
||||||
|| (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64) \
|
|| (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV) \
|
||||||
|| (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
|| (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
||||||
#define SLJIT_UNALIGNED 1
|
#define SLJIT_UNALIGNED 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* !SLJIT_UNALIGNED */
|
#endif /* !SLJIT_UNALIGNED */
|
||||||
|
|
||||||
|
#ifndef SLJIT_FPU_UNALIGNED
|
||||||
|
|
||||||
|
#if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86) \
|
||||||
|
|| (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
|
||||||
|
|| (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC) \
|
||||||
|
|| (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV) \
|
||||||
|
|| (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
||||||
|
#define SLJIT_FPU_UNALIGNED 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* !SLJIT_FPU_UNALIGNED */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
|
#if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
|
||||||
/* Auto detect SSE2 support using CPUID.
|
/* Auto detect SSE2 support using CPUID.
|
||||||
On 64 bit x86 cpus, sse2 must be present. */
|
On 64 bit x86 cpus, sse2 must be present. */
|
||||||
|
@ -578,38 +591,7 @@ typedef double sljit_f64;
|
||||||
/*****************************************************************************************/
|
/*****************************************************************************************/
|
||||||
|
|
||||||
#ifndef SLJIT_FUNC
|
#ifndef SLJIT_FUNC
|
||||||
|
|
||||||
#if (defined SLJIT_USE_CDECL_CALLING_CONVENTION && SLJIT_USE_CDECL_CALLING_CONVENTION) \
|
|
||||||
|| !(defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
|
|
||||||
|
|
||||||
#define SLJIT_FUNC
|
#define SLJIT_FUNC
|
||||||
|
|
||||||
#elif defined(__GNUC__) && !defined(__APPLE__)
|
|
||||||
|
|
||||||
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
|
|
||||||
#define SLJIT_FUNC __attribute__ ((fastcall))
|
|
||||||
#define SLJIT_X86_32_FASTCALL 1
|
|
||||||
#else
|
|
||||||
#define SLJIT_FUNC
|
|
||||||
#endif /* gcc >= 3.4 */
|
|
||||||
|
|
||||||
#elif defined(_MSC_VER)
|
|
||||||
|
|
||||||
#define SLJIT_FUNC __fastcall
|
|
||||||
#define SLJIT_X86_32_FASTCALL 1
|
|
||||||
|
|
||||||
#elif defined(__BORLANDC__)
|
|
||||||
|
|
||||||
#define SLJIT_FUNC __msfastcall
|
|
||||||
#define SLJIT_X86_32_FASTCALL 1
|
|
||||||
|
|
||||||
#else /* Unknown compiler. */
|
|
||||||
|
|
||||||
/* The cdecl calling convention is usually the x86 default. */
|
|
||||||
#define SLJIT_FUNC
|
|
||||||
|
|
||||||
#endif /* SLJIT_USE_CDECL_CALLING_CONVENTION */
|
|
||||||
|
|
||||||
#endif /* !SLJIT_FUNC */
|
#endif /* !SLJIT_FUNC */
|
||||||
|
|
||||||
#ifndef SLJIT_INDIRECT_CALL
|
#ifndef SLJIT_INDIRECT_CALL
|
||||||
|
@ -624,11 +606,7 @@ typedef double sljit_f64;
|
||||||
/* The offset which needs to be substracted from the return address to
|
/* The offset which needs to be substracted from the return address to
|
||||||
determine the next executed instruction after return. */
|
determine the next executed instruction after return. */
|
||||||
#ifndef SLJIT_RETURN_ADDRESS_OFFSET
|
#ifndef SLJIT_RETURN_ADDRESS_OFFSET
|
||||||
#if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
|
|
||||||
#define SLJIT_RETURN_ADDRESS_OFFSET 8
|
|
||||||
#else
|
|
||||||
#define SLJIT_RETURN_ADDRESS_OFFSET 0
|
#define SLJIT_RETURN_ADDRESS_OFFSET 0
|
||||||
#endif
|
|
||||||
#endif /* SLJIT_RETURN_ADDRESS_OFFSET */
|
#endif /* SLJIT_RETURN_ADDRESS_OFFSET */
|
||||||
|
|
||||||
/***************************************************/
|
/***************************************************/
|
||||||
|
@ -740,17 +718,13 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_sw sljit_exec_offset(void* ptr);
|
||||||
#define SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS 8
|
#define SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS 8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#elif (defined SLJIT_CONFIG_SPARC && SLJIT_CONFIG_SPARC)
|
#elif (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV)
|
||||||
|
|
||||||
#define SLJIT_NUMBER_OF_REGISTERS 18
|
#define SLJIT_NUMBER_OF_REGISTERS 23
|
||||||
#define SLJIT_NUMBER_OF_SAVED_REGISTERS 14
|
#define SLJIT_NUMBER_OF_SAVED_REGISTERS 12
|
||||||
#define SLJIT_NUMBER_OF_FLOAT_REGISTERS 14
|
#define SLJIT_LOCALS_OFFSET_BASE 0
|
||||||
#define SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS 0
|
#define SLJIT_NUMBER_OF_FLOAT_REGISTERS 30
|
||||||
#if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
|
#define SLJIT_NUMBER_OF_SAVED_FLOAT_REGISTERS 12
|
||||||
/* saved registers (16), return struct pointer (1), space for 6 argument words (1),
|
|
||||||
4th double arg (2), double alignment (1). */
|
|
||||||
#define SLJIT_LOCALS_OFFSET_BASE ((16 + 1 + 6 + 2 + 1) * (sljit_s32)sizeof(sljit_sw))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#elif (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
#elif (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
||||||
|
|
||||||
|
@ -806,7 +780,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_sw sljit_exec_offset(void* ptr);
|
||||||
#if (defined SLJIT_CONFIG_ARM && SLJIT_CONFIG_ARM) \
|
#if (defined SLJIT_CONFIG_ARM && SLJIT_CONFIG_ARM) \
|
||||||
|| (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC) \
|
|| (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC) \
|
||||||
|| (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) \
|
|| (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) \
|
||||||
|| (defined SLJIT_CONFIG_SPARC && SLJIT_CONFIG_SPARC) \
|
|| (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV) \
|
||||||
|| (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
|| (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
||||||
#define SLJIT_HAS_STATUS_FLAGS_STATE 1
|
#define SLJIT_HAS_STATUS_FLAGS_STATE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -133,6 +133,9 @@
|
||||||
#define SLJIT_ARG_MASK 0x7
|
#define SLJIT_ARG_MASK 0x7
|
||||||
#define SLJIT_ARG_FULL_MASK (SLJIT_ARG_MASK | SLJIT_ARG_TYPE_SCRATCH_REG)
|
#define SLJIT_ARG_FULL_MASK (SLJIT_ARG_MASK | SLJIT_ARG_TYPE_SCRATCH_REG)
|
||||||
|
|
||||||
|
/* Mask for sljit_emit_enter. */
|
||||||
|
#define SLJIT_KEPT_SAVEDS_COUNT(options) ((options) & 0x3)
|
||||||
|
|
||||||
/* Jump flags. */
|
/* Jump flags. */
|
||||||
#define JUMP_LABEL 0x1
|
#define JUMP_LABEL 0x1
|
||||||
#define JUMP_ADDR 0x2
|
#define JUMP_ADDR 0x2
|
||||||
|
@ -145,16 +148,16 @@
|
||||||
# define PATCH_MD 0x10
|
# define PATCH_MD 0x10
|
||||||
#endif
|
#endif
|
||||||
# define TYPE_SHIFT 13
|
# define TYPE_SHIFT 13
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_X86 */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) || (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7)
|
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) || (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7)
|
||||||
# define IS_BL 0x4
|
# define IS_BL 0x4
|
||||||
# define PATCH_B 0x8
|
# define PATCH_B 0x8
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_ARM_V5 || SLJIT_CONFIG_ARM_V7 */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
|
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
|
||||||
# define CPOOL_SIZE 512
|
# define CPOOL_SIZE 512
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_ARM_V5 */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2)
|
#if (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2)
|
||||||
# define IS_COND 0x04
|
# define IS_COND 0x04
|
||||||
|
@ -172,7 +175,7 @@
|
||||||
/* BL + imm24 */
|
/* BL + imm24 */
|
||||||
# define PATCH_BL 0x60
|
# define PATCH_BL 0x60
|
||||||
/* 0xf00 cc code for branches */
|
/* 0xf00 cc code for branches */
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_ARM_THUMB2 */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64)
|
#if (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64)
|
||||||
# define IS_COND 0x004
|
# define IS_COND 0x004
|
||||||
|
@ -182,7 +185,7 @@
|
||||||
# define PATCH_COND 0x040
|
# define PATCH_COND 0x040
|
||||||
# define PATCH_ABS48 0x080
|
# define PATCH_ABS48 0x080
|
||||||
# define PATCH_ABS64 0x100
|
# define PATCH_ABS64 0x100
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_ARM_64 */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
|
#if (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
|
||||||
# define IS_COND 0x004
|
# define IS_COND 0x004
|
||||||
|
@ -192,9 +195,9 @@
|
||||||
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
||||||
# define PATCH_ABS32 0x040
|
# define PATCH_ABS32 0x040
|
||||||
# define PATCH_ABS48 0x080
|
# define PATCH_ABS48 0x080
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_PPC_64 */
|
||||||
# define REMOVE_COND 0x100
|
# define REMOVE_COND 0x100
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_PPC */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
|
#if (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
|
||||||
# define IS_MOVABLE 0x004
|
# define IS_MOVABLE 0x004
|
||||||
|
@ -212,7 +215,7 @@
|
||||||
#if (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
|
#if (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
|
||||||
# define PATCH_ABS32 0x400
|
# define PATCH_ABS32 0x400
|
||||||
# define PATCH_ABS48 0x800
|
# define PATCH_ABS48 0x800
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_MIPS_64 */
|
||||||
|
|
||||||
/* instruction types */
|
/* instruction types */
|
||||||
# define MOVABLE_INS 0
|
# define MOVABLE_INS 0
|
||||||
|
@ -221,28 +224,24 @@
|
||||||
# define UNMOVABLE_INS 32
|
# define UNMOVABLE_INS 32
|
||||||
/* FPU status register */
|
/* FPU status register */
|
||||||
# define FCSR_FCC 33
|
# define FCSR_FCC 33
|
||||||
#endif
|
#endif /* SLJIT_CONFIG_MIPS */
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
|
#if (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV)
|
||||||
# define IS_MOVABLE 0x04
|
# define IS_COND 0x004
|
||||||
# define IS_COND 0x08
|
# define IS_CALL 0x008
|
||||||
# define IS_CALL 0x10
|
|
||||||
|
|
||||||
# define PATCH_B 0x20
|
# define PATCH_B 0x010
|
||||||
# define PATCH_CALL 0x40
|
# define PATCH_J 0x020
|
||||||
|
|
||||||
/* instruction types */
|
#if (defined SLJIT_CONFIG_RISCV_64 && SLJIT_CONFIG_RISCV_64)
|
||||||
# define MOVABLE_INS 0
|
# define PATCH_REL32 0x040
|
||||||
/* 1 - 31 last destination register */
|
# define PATCH_ABS32 0x080
|
||||||
/* no destination (i.e: store) */
|
# define PATCH_ABS44 0x100
|
||||||
# define UNMOVABLE_INS 32
|
# define PATCH_ABS52 0x200
|
||||||
|
#else /* !SLJIT_CONFIG_RISCV_64 */
|
||||||
# define DST_INS_MASK 0xff
|
# define PATCH_REL32 0x0
|
||||||
|
#endif /* SLJIT_CONFIG_RISCV_64 */
|
||||||
/* ICC_SET is the same as SET_FLAGS. */
|
#endif /* SLJIT_CONFIG_RISCV */
|
||||||
# define ICC_IS_SET (1 << 23)
|
|
||||||
# define FCC_IS_SET (1 << 24)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Stack management. */
|
/* Stack management. */
|
||||||
|
|
||||||
|
@ -385,7 +384,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_compiler* sljit_create_compiler(void *allo
|
||||||
invalid_integer_types);
|
invalid_integer_types);
|
||||||
SLJIT_COMPILE_ASSERT(SLJIT_REWRITABLE_JUMP != SLJIT_32,
|
SLJIT_COMPILE_ASSERT(SLJIT_REWRITABLE_JUMP != SLJIT_32,
|
||||||
rewritable_jump_and_single_op_must_not_be_the_same);
|
rewritable_jump_and_single_op_must_not_be_the_same);
|
||||||
SLJIT_COMPILE_ASSERT(!(SLJIT_EQUAL & 0x1) && !(SLJIT_LESS & 0x1) && !(SLJIT_EQUAL_F64 & 0x1) && !(SLJIT_JUMP & 0x1),
|
SLJIT_COMPILE_ASSERT(!(SLJIT_EQUAL & 0x1) && !(SLJIT_LESS & 0x1) && !(SLJIT_F_EQUAL & 0x1) && !(SLJIT_JUMP & 0x1),
|
||||||
conditional_flags_must_be_even_numbers);
|
conditional_flags_must_be_even_numbers);
|
||||||
|
|
||||||
/* Only the non-zero members must be set. */
|
/* Only the non-zero members must be set. */
|
||||||
|
@ -437,10 +436,6 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_compiler* sljit_create_compiler(void *allo
|
||||||
compiler->delay_slot = UNMOVABLE_INS;
|
compiler->delay_slot = UNMOVABLE_INS;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
|
|
||||||
compiler->delay_slot = UNMOVABLE_INS;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
|
||||||
|| (defined SLJIT_DEBUG && SLJIT_DEBUG)
|
|| (defined SLJIT_DEBUG && SLJIT_DEBUG)
|
||||||
compiler->last_flags = 0;
|
compiler->last_flags = 0;
|
||||||
|
@ -822,6 +817,9 @@ static sljit_s32 function_check_src_mem(struct sljit_compiler *compiler, sljit_s
|
||||||
if (!(p & SLJIT_MEM))
|
if (!(p & SLJIT_MEM))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
if (p == SLJIT_MEM1(SLJIT_SP))
|
||||||
|
return (i >= 0 && i < compiler->logical_local_size);
|
||||||
|
|
||||||
if (!(!(p & REG_MASK) || FUNCTION_CHECK_IS_REG(p & REG_MASK)))
|
if (!(!(p & REG_MASK) || FUNCTION_CHECK_IS_REG(p & REG_MASK)))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
@ -859,9 +857,6 @@ static sljit_s32 function_check_src(struct sljit_compiler *compiler, sljit_s32 p
|
||||||
if (p == SLJIT_IMM)
|
if (p == SLJIT_IMM)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
if (p == SLJIT_MEM1(SLJIT_SP))
|
|
||||||
return (i >= 0 && i < compiler->logical_local_size);
|
|
||||||
|
|
||||||
return function_check_src_mem(compiler, p, i);
|
return function_check_src_mem(compiler, p, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -876,9 +871,6 @@ static sljit_s32 function_check_dst(struct sljit_compiler *compiler, sljit_s32 p
|
||||||
if (FUNCTION_CHECK_IS_REG(p))
|
if (FUNCTION_CHECK_IS_REG(p))
|
||||||
return (i == 0);
|
return (i == 0);
|
||||||
|
|
||||||
if (p == SLJIT_MEM1(SLJIT_SP))
|
|
||||||
return (i >= 0 && i < compiler->logical_local_size);
|
|
||||||
|
|
||||||
return function_check_src_mem(compiler, p, i);
|
return function_check_src_mem(compiler, p, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -893,9 +885,6 @@ static sljit_s32 function_fcheck(struct sljit_compiler *compiler, sljit_s32 p, s
|
||||||
if (FUNCTION_CHECK_IS_FREG(p))
|
if (FUNCTION_CHECK_IS_FREG(p))
|
||||||
return (i == 0);
|
return (i == 0);
|
||||||
|
|
||||||
if (p == SLJIT_MEM1(SLJIT_SP))
|
|
||||||
return (i >= 0 && i < compiler->logical_local_size);
|
|
||||||
|
|
||||||
return function_check_src_mem(compiler, p, i);
|
return function_check_src_mem(compiler, p, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -913,7 +902,11 @@ SLJIT_API_FUNC_ATTRIBUTE void sljit_compiler_verbose(struct sljit_compiler *comp
|
||||||
|
|
||||||
#if (defined SLJIT_64BIT_ARCHITECTURE && SLJIT_64BIT_ARCHITECTURE)
|
#if (defined SLJIT_64BIT_ARCHITECTURE && SLJIT_64BIT_ARCHITECTURE)
|
||||||
#ifdef _WIN64
|
#ifdef _WIN64
|
||||||
|
#ifdef __GNUC__
|
||||||
|
# define SLJIT_PRINT_D "ll"
|
||||||
|
#else
|
||||||
# define SLJIT_PRINT_D "I64"
|
# define SLJIT_PRINT_D "I64"
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
# define SLJIT_PRINT_D "l"
|
# define SLJIT_PRINT_D "l"
|
||||||
#endif
|
#endif
|
||||||
|
@ -1020,10 +1013,6 @@ static const char* fop2_names[] = {
|
||||||
"add", "sub", "mul", "div"
|
"add", "sub", "mul", "div"
|
||||||
};
|
};
|
||||||
|
|
||||||
#define JUMP_POSTFIX(type) \
|
|
||||||
((type & 0xff) <= SLJIT_NOT_OVERFLOW ? ((type & SLJIT_32) ? "32" : "") \
|
|
||||||
: ((type & 0xff) <= SLJIT_ORDERED_F64 ? ((type & SLJIT_32) ? ".f32" : ".f64") : ""))
|
|
||||||
|
|
||||||
static const char* jump_names[] = {
|
static const char* jump_names[] = {
|
||||||
"equal", "not_equal",
|
"equal", "not_equal",
|
||||||
"less", "greater_equal",
|
"less", "greater_equal",
|
||||||
|
@ -1032,12 +1021,18 @@ static const char* jump_names[] = {
|
||||||
"sig_greater", "sig_less_equal",
|
"sig_greater", "sig_less_equal",
|
||||||
"overflow", "not_overflow",
|
"overflow", "not_overflow",
|
||||||
"carry", "",
|
"carry", "",
|
||||||
"equal", "not_equal",
|
"f_equal", "f_not_equal",
|
||||||
"less", "greater_equal",
|
"f_less", "f_greater_equal",
|
||||||
"greater", "less_equal",
|
"f_greater", "f_less_equal",
|
||||||
"unordered", "ordered",
|
"unordered", "ordered",
|
||||||
|
"ordered_equal", "unordered_or_not_equal",
|
||||||
|
"ordered_less", "unordered_or_greater_equal",
|
||||||
|
"ordered_greater", "unordered_or_less_equal",
|
||||||
|
"unordered_or_equal", "ordered_not_equal",
|
||||||
|
"unordered_or_less", "ordered_greater_equal",
|
||||||
|
"unordered_or_greater", "ordered_less_equal",
|
||||||
"jump", "fast_call",
|
"jump", "fast_call",
|
||||||
"call", "call.cdecl"
|
"call", "call_reg_arg"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char* call_arg_names[] = {
|
static const char* call_arg_names[] = {
|
||||||
|
@ -1053,6 +1048,8 @@ static const char* call_arg_names[] = {
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
|
||||||
|| (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
|| (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
|
|
||||||
|
#define SLJIT_SKIP_CHECKS(compiler) (compiler)->skip_checks = 1
|
||||||
|
|
||||||
static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_generate_code(struct sljit_compiler *compiler)
|
static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_generate_code(struct sljit_compiler *compiler)
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
|
@ -1080,7 +1077,12 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_enter(struct sljit_compil
|
||||||
SLJIT_UNUSED_ARG(compiler);
|
SLJIT_UNUSED_ARG(compiler);
|
||||||
|
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(!(options & ~SLJIT_ENTER_CDECL));
|
if (options & SLJIT_ENTER_REG_ARG) {
|
||||||
|
CHECK_ARGUMENT(!(options & ~(0x3 | SLJIT_ENTER_REG_ARG)));
|
||||||
|
} else {
|
||||||
|
CHECK_ARGUMENT(options == 0);
|
||||||
|
}
|
||||||
|
CHECK_ARGUMENT(SLJIT_KEPT_SAVEDS_COUNT(options) <= 3 && SLJIT_KEPT_SAVEDS_COUNT(options) <= saveds);
|
||||||
CHECK_ARGUMENT(scratches >= 0 && scratches <= SLJIT_NUMBER_OF_REGISTERS);
|
CHECK_ARGUMENT(scratches >= 0 && scratches <= SLJIT_NUMBER_OF_REGISTERS);
|
||||||
CHECK_ARGUMENT(saveds >= 0 && saveds <= SLJIT_NUMBER_OF_SAVED_REGISTERS);
|
CHECK_ARGUMENT(saveds >= 0 && saveds <= SLJIT_NUMBER_OF_SAVED_REGISTERS);
|
||||||
CHECK_ARGUMENT(scratches + saveds <= SLJIT_NUMBER_OF_REGISTERS);
|
CHECK_ARGUMENT(scratches + saveds <= SLJIT_NUMBER_OF_REGISTERS);
|
||||||
|
@ -1089,7 +1091,7 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_enter(struct sljit_compil
|
||||||
CHECK_ARGUMENT(fscratches + fsaveds <= SLJIT_NUMBER_OF_FLOAT_REGISTERS);
|
CHECK_ARGUMENT(fscratches + fsaveds <= SLJIT_NUMBER_OF_FLOAT_REGISTERS);
|
||||||
CHECK_ARGUMENT(local_size >= 0 && local_size <= SLJIT_MAX_LOCAL_SIZE);
|
CHECK_ARGUMENT(local_size >= 0 && local_size <= SLJIT_MAX_LOCAL_SIZE);
|
||||||
CHECK_ARGUMENT((arg_types & SLJIT_ARG_FULL_MASK) < SLJIT_ARG_TYPE_F64);
|
CHECK_ARGUMENT((arg_types & SLJIT_ARG_FULL_MASK) < SLJIT_ARG_TYPE_F64);
|
||||||
CHECK_ARGUMENT(function_check_arguments(arg_types, scratches, saveds, fscratches));
|
CHECK_ARGUMENT(function_check_arguments(arg_types, scratches, (options & SLJIT_ENTER_REG_ARG) ? 0 : saveds, fscratches));
|
||||||
|
|
||||||
compiler->last_flags = 0;
|
compiler->last_flags = 0;
|
||||||
#endif
|
#endif
|
||||||
|
@ -1109,8 +1111,16 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_enter(struct sljit_compil
|
||||||
} while (arg_types);
|
} while (arg_types);
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(compiler->verbose, "],%s scratches:%d, saveds:%d, fscratches:%d, fsaveds:%d, local_size:%d\n",
|
fprintf(compiler->verbose, "],");
|
||||||
(options & SLJIT_ENTER_CDECL) ? " enter:cdecl," : "",
|
|
||||||
|
if (options & SLJIT_ENTER_REG_ARG) {
|
||||||
|
fprintf(compiler->verbose, " enter:reg_arg,");
|
||||||
|
|
||||||
|
if (SLJIT_KEPT_SAVEDS_COUNT(options) > 0)
|
||||||
|
fprintf(compiler->verbose, " keep:%d,", SLJIT_KEPT_SAVEDS_COUNT(options));
|
||||||
|
}
|
||||||
|
|
||||||
|
fprintf(compiler->verbose, "scratches:%d, saveds:%d, fscratches:%d, fsaveds:%d, local_size:%d\n",
|
||||||
scratches, saveds, fscratches, fsaveds, local_size);
|
scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -1124,7 +1134,12 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_set_context(struct sljit_compi
|
||||||
SLJIT_UNUSED_ARG(compiler);
|
SLJIT_UNUSED_ARG(compiler);
|
||||||
|
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(!(options & ~SLJIT_ENTER_CDECL));
|
if (options & SLJIT_ENTER_REG_ARG) {
|
||||||
|
CHECK_ARGUMENT(!(options & ~(0x3 | SLJIT_ENTER_REG_ARG)));
|
||||||
|
} else {
|
||||||
|
CHECK_ARGUMENT(options == 0);
|
||||||
|
}
|
||||||
|
CHECK_ARGUMENT(SLJIT_KEPT_SAVEDS_COUNT(options) <= 3 && SLJIT_KEPT_SAVEDS_COUNT(options) <= saveds);
|
||||||
CHECK_ARGUMENT(scratches >= 0 && scratches <= SLJIT_NUMBER_OF_REGISTERS);
|
CHECK_ARGUMENT(scratches >= 0 && scratches <= SLJIT_NUMBER_OF_REGISTERS);
|
||||||
CHECK_ARGUMENT(saveds >= 0 && saveds <= SLJIT_NUMBER_OF_SAVED_REGISTERS);
|
CHECK_ARGUMENT(saveds >= 0 && saveds <= SLJIT_NUMBER_OF_SAVED_REGISTERS);
|
||||||
CHECK_ARGUMENT(scratches + saveds <= SLJIT_NUMBER_OF_REGISTERS);
|
CHECK_ARGUMENT(scratches + saveds <= SLJIT_NUMBER_OF_REGISTERS);
|
||||||
|
@ -1133,7 +1148,7 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_set_context(struct sljit_compi
|
||||||
CHECK_ARGUMENT(fscratches + fsaveds <= SLJIT_NUMBER_OF_FLOAT_REGISTERS);
|
CHECK_ARGUMENT(fscratches + fsaveds <= SLJIT_NUMBER_OF_FLOAT_REGISTERS);
|
||||||
CHECK_ARGUMENT(local_size >= 0 && local_size <= SLJIT_MAX_LOCAL_SIZE);
|
CHECK_ARGUMENT(local_size >= 0 && local_size <= SLJIT_MAX_LOCAL_SIZE);
|
||||||
CHECK_ARGUMENT((arg_types & SLJIT_ARG_FULL_MASK) < SLJIT_ARG_TYPE_F64);
|
CHECK_ARGUMENT((arg_types & SLJIT_ARG_FULL_MASK) < SLJIT_ARG_TYPE_F64);
|
||||||
CHECK_ARGUMENT(function_check_arguments(arg_types, scratches, saveds, fscratches));
|
CHECK_ARGUMENT(function_check_arguments(arg_types, scratches, (options & SLJIT_ENTER_REG_ARG) ? 0 : saveds, fscratches));
|
||||||
|
|
||||||
compiler->last_flags = 0;
|
compiler->last_flags = 0;
|
||||||
#endif
|
#endif
|
||||||
|
@ -1153,8 +1168,16 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_set_context(struct sljit_compi
|
||||||
} while (arg_types);
|
} while (arg_types);
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(compiler->verbose, "],%s scratches:%d, saveds:%d, fscratches:%d, fsaveds:%d, local_size:%d\n",
|
fprintf(compiler->verbose, "],");
|
||||||
(options & SLJIT_ENTER_CDECL) ? " enter:cdecl," : "",
|
|
||||||
|
if (options & SLJIT_ENTER_REG_ARG) {
|
||||||
|
fprintf(compiler->verbose, " enter:reg_arg,");
|
||||||
|
|
||||||
|
if (SLJIT_KEPT_SAVEDS_COUNT(options) > 0)
|
||||||
|
fprintf(compiler->verbose, " keep:%d,", SLJIT_KEPT_SAVEDS_COUNT(options));
|
||||||
|
}
|
||||||
|
|
||||||
|
fprintf(compiler->verbose, " scratches:%d, saveds:%d, fscratches:%d, fsaveds:%d, local_size:%d\n",
|
||||||
scratches, saveds, fscratches, fsaveds, local_size);
|
scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -1510,7 +1533,7 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_cmp(struct sljit_com
|
||||||
sljit_s32 src2, sljit_sw src2w)
|
sljit_s32 src2, sljit_sw src2w)
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
compiler->last_flags = GET_FLAG_TYPE(op) | (op & (SLJIT_32 | SLJIT_SET_Z));
|
compiler->last_flags = GET_FLAG_TYPE(op) | (op & SLJIT_32);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (SLJIT_UNLIKELY(compiler->skip_checks)) {
|
if (SLJIT_UNLIKELY(compiler->skip_checks)) {
|
||||||
|
@ -1523,7 +1546,7 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_cmp(struct sljit_com
|
||||||
CHECK_ARGUMENT(GET_OPCODE(op) == SLJIT_CMP_F64);
|
CHECK_ARGUMENT(GET_OPCODE(op) == SLJIT_CMP_F64);
|
||||||
CHECK_ARGUMENT(!(op & SLJIT_SET_Z));
|
CHECK_ARGUMENT(!(op & SLJIT_SET_Z));
|
||||||
CHECK_ARGUMENT((op & VARIABLE_FLAG_MASK)
|
CHECK_ARGUMENT((op & VARIABLE_FLAG_MASK)
|
||||||
|| (GET_FLAG_TYPE(op) >= SLJIT_EQUAL_F64 && GET_FLAG_TYPE(op) <= SLJIT_ORDERED_F64));
|
|| (GET_FLAG_TYPE(op) >= SLJIT_F_EQUAL && GET_FLAG_TYPE(op) <= SLJIT_ORDERED_LESS_EQUAL));
|
||||||
FUNCTION_FCHECK(src1, src1w);
|
FUNCTION_FCHECK(src1, src1w);
|
||||||
FUNCTION_FCHECK(src2, src2w);
|
FUNCTION_FCHECK(src2, src2w);
|
||||||
#endif
|
#endif
|
||||||
|
@ -1531,7 +1554,7 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_cmp(struct sljit_com
|
||||||
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
||||||
fprintf(compiler->verbose, " %s%s", fop1_names[SLJIT_CMP_F64 - SLJIT_FOP1_BASE], (op & SLJIT_32) ? ".f32" : ".f64");
|
fprintf(compiler->verbose, " %s%s", fop1_names[SLJIT_CMP_F64 - SLJIT_FOP1_BASE], (op & SLJIT_32) ? ".f32" : ".f64");
|
||||||
if (op & VARIABLE_FLAG_MASK) {
|
if (op & VARIABLE_FLAG_MASK) {
|
||||||
fprintf(compiler->verbose, ".%s_f", jump_names[GET_FLAG_TYPE(op)]);
|
fprintf(compiler->verbose, ".%s", jump_names[GET_FLAG_TYPE(op)]);
|
||||||
}
|
}
|
||||||
fprintf(compiler->verbose, " ");
|
fprintf(compiler->verbose, " ");
|
||||||
sljit_verbose_fparam(compiler, src1, src1w);
|
sljit_verbose_fparam(compiler, src1, src1w);
|
||||||
|
@ -1650,6 +1673,17 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_label(struct sljit_compil
|
||||||
CHECK_RETURN_OK;
|
CHECK_RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
|
#if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86) \
|
||||||
|
|| (defined SLJIT_CONFIG_ARM && SLJIT_CONFIG_ARM)
|
||||||
|
#define CHECK_UNORDERED(type, last_flags) \
|
||||||
|
((((type) & 0xff) == SLJIT_UNORDERED || ((type) & 0xff) == SLJIT_ORDERED) && \
|
||||||
|
((last_flags) & 0xff) >= SLJIT_UNORDERED && ((last_flags) & 0xff) <= SLJIT_ORDERED_LESS_EQUAL)
|
||||||
|
#else
|
||||||
|
#define CHECK_UNORDERED(type, last_flags) 0
|
||||||
|
#endif
|
||||||
|
#endif /* SLJIT_ARGUMENT_CHECKS */
|
||||||
|
|
||||||
static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
|
static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
{
|
{
|
||||||
if (SLJIT_UNLIKELY(compiler->skip_checks)) {
|
if (SLJIT_UNLIKELY(compiler->skip_checks)) {
|
||||||
|
@ -1658,9 +1692,8 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_jump(struct sljit_compile
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_32)));
|
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP)));
|
||||||
CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_FAST_CALL);
|
CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_FAST_CALL);
|
||||||
CHECK_ARGUMENT((type & 0xff) < SLJIT_JUMP || !(type & SLJIT_32));
|
|
||||||
|
|
||||||
if ((type & 0xff) < SLJIT_JUMP) {
|
if ((type & 0xff) < SLJIT_JUMP) {
|
||||||
if ((type & 0xff) <= SLJIT_NOT_ZERO)
|
if ((type & 0xff) <= SLJIT_NOT_ZERO)
|
||||||
|
@ -1670,13 +1703,14 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_jump(struct sljit_compile
|
||||||
compiler->last_flags = 0;
|
compiler->last_flags = 0;
|
||||||
} else
|
} else
|
||||||
CHECK_ARGUMENT((type & 0xff) == (compiler->last_flags & 0xff)
|
CHECK_ARGUMENT((type & 0xff) == (compiler->last_flags & 0xff)
|
||||||
|| ((type & 0xff) == SLJIT_NOT_OVERFLOW && (compiler->last_flags & 0xff) == SLJIT_OVERFLOW));
|
|| ((type & 0xff) == SLJIT_NOT_OVERFLOW && (compiler->last_flags & 0xff) == SLJIT_OVERFLOW)
|
||||||
|
|| CHECK_UNORDERED(type, compiler->last_flags));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
if (SLJIT_UNLIKELY(!!compiler->verbose))
|
if (SLJIT_UNLIKELY(!!compiler->verbose))
|
||||||
fprintf(compiler->verbose, " jump%s %s%s\n", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r",
|
fprintf(compiler->verbose, " jump%s %s\n", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r",
|
||||||
jump_names[type & 0xff], JUMP_POSTFIX(type));
|
jump_names[type & 0xff]);
|
||||||
#endif
|
#endif
|
||||||
CHECK_RETURN_OK;
|
CHECK_RETURN_OK;
|
||||||
}
|
}
|
||||||
|
@ -1686,11 +1720,17 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_call(struct sljit_compile
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_CALL_RETURN)));
|
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_CALL_RETURN)));
|
||||||
CHECK_ARGUMENT((type & 0xff) == SLJIT_CALL || (type & 0xff) == SLJIT_CALL_CDECL);
|
CHECK_ARGUMENT((type & 0xff) >= SLJIT_CALL && (type & 0xff) <= SLJIT_CALL_REG_ARG);
|
||||||
CHECK_ARGUMENT(function_check_arguments(arg_types, compiler->scratches, -1, compiler->fscratches));
|
CHECK_ARGUMENT(function_check_arguments(arg_types, compiler->scratches, -1, compiler->fscratches));
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN) {
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
CHECK_ARGUMENT((arg_types & SLJIT_ARG_MASK) == compiler->last_return);
|
CHECK_ARGUMENT((arg_types & SLJIT_ARG_MASK) == compiler->last_return);
|
||||||
|
|
||||||
|
if (compiler->options & SLJIT_ENTER_REG_ARG) {
|
||||||
|
CHECK_ARGUMENT((type & 0xff) == SLJIT_CALL_REG_ARG);
|
||||||
|
} else {
|
||||||
|
CHECK_ARGUMENT((type & 0xff) != SLJIT_CALL_REG_ARG);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
|
@ -1729,8 +1769,8 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_cmp(struct sljit_compiler
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
||||||
fprintf(compiler->verbose, " cmp%s %s%s, ", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r",
|
fprintf(compiler->verbose, " cmp%s%s %s, ", (type & SLJIT_32) ? "32" : "",
|
||||||
jump_names[type & 0xff], (type & SLJIT_32) ? "32" : "");
|
!(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r", jump_names[type & 0xff]);
|
||||||
sljit_verbose_param(compiler, src1, src1w);
|
sljit_verbose_param(compiler, src1, src1w);
|
||||||
fprintf(compiler->verbose, ", ");
|
fprintf(compiler->verbose, ", ");
|
||||||
sljit_verbose_param(compiler, src2, src2w);
|
sljit_verbose_param(compiler, src2, src2w);
|
||||||
|
@ -1747,15 +1787,16 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fcmp(struct sljit_compile
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(sljit_has_cpu_feature(SLJIT_HAS_FPU));
|
CHECK_ARGUMENT(sljit_has_cpu_feature(SLJIT_HAS_FPU));
|
||||||
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_32)));
|
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_32)));
|
||||||
CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL_F64 && (type & 0xff) <= SLJIT_ORDERED_F64);
|
CHECK_ARGUMENT((type & 0xff) >= SLJIT_F_EQUAL && (type & 0xff) <= SLJIT_ORDERED_LESS_EQUAL
|
||||||
|
&& ((type & 0xff) <= SLJIT_ORDERED || sljit_cmp_info(type & 0xff)));
|
||||||
FUNCTION_FCHECK(src1, src1w);
|
FUNCTION_FCHECK(src1, src1w);
|
||||||
FUNCTION_FCHECK(src2, src2w);
|
FUNCTION_FCHECK(src2, src2w);
|
||||||
compiler->last_flags = 0;
|
compiler->last_flags = 0;
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
||||||
fprintf(compiler->verbose, " fcmp%s %s%s, ", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r",
|
fprintf(compiler->verbose, " fcmp%s%s %s, ", (type & SLJIT_32) ? ".f32" : ".f64",
|
||||||
jump_names[type & 0xff], (type & SLJIT_32) ? ".f32" : ".f64");
|
!(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r", jump_names[type & 0xff]);
|
||||||
sljit_verbose_fparam(compiler, src1, src1w);
|
sljit_verbose_fparam(compiler, src1, src1w);
|
||||||
fprintf(compiler->verbose, ", ");
|
fprintf(compiler->verbose, ", ");
|
||||||
sljit_verbose_fparam(compiler, src2, src2w);
|
sljit_verbose_fparam(compiler, src2, src2w);
|
||||||
|
@ -1793,12 +1834,18 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_icall(struct sljit_compil
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_CALL_RETURN)));
|
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_CALL_RETURN)));
|
||||||
CHECK_ARGUMENT((type & 0xff) == SLJIT_CALL || (type & 0xff) == SLJIT_CALL_CDECL);
|
CHECK_ARGUMENT((type & 0xff) >= SLJIT_CALL && (type & 0xff) <= SLJIT_CALL_REG_ARG);
|
||||||
CHECK_ARGUMENT(function_check_arguments(arg_types, compiler->scratches, -1, compiler->fscratches));
|
CHECK_ARGUMENT(function_check_arguments(arg_types, compiler->scratches, -1, compiler->fscratches));
|
||||||
FUNCTION_CHECK_SRC(src, srcw);
|
FUNCTION_CHECK_SRC(src, srcw);
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN) {
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
CHECK_ARGUMENT((arg_types & SLJIT_ARG_MASK) == compiler->last_return);
|
CHECK_ARGUMENT((arg_types & SLJIT_ARG_MASK) == compiler->last_return);
|
||||||
|
|
||||||
|
if (compiler->options & SLJIT_ENTER_REG_ARG) {
|
||||||
|
CHECK_ARGUMENT((type & 0xff) == SLJIT_CALL_REG_ARG);
|
||||||
|
} else {
|
||||||
|
CHECK_ARGUMENT((type & 0xff) != SLJIT_CALL_REG_ARG);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
|
@ -1830,18 +1877,18 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op_flags(struct sljit_com
|
||||||
sljit_s32 type)
|
sljit_s32 type)
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_32)));
|
CHECK_ARGUMENT(type >= SLJIT_EQUAL && type <= SLJIT_ORDERED_LESS_EQUAL);
|
||||||
CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_ORDERED_F64);
|
|
||||||
CHECK_ARGUMENT(op == SLJIT_MOV || op == SLJIT_MOV32
|
CHECK_ARGUMENT(op == SLJIT_MOV || op == SLJIT_MOV32
|
||||||
|| (GET_OPCODE(op) >= SLJIT_AND && GET_OPCODE(op) <= SLJIT_XOR));
|
|| (GET_OPCODE(op) >= SLJIT_AND && GET_OPCODE(op) <= SLJIT_XOR));
|
||||||
CHECK_ARGUMENT(!(op & VARIABLE_FLAG_MASK));
|
CHECK_ARGUMENT(!(op & VARIABLE_FLAG_MASK));
|
||||||
|
|
||||||
if ((type & 0xff) <= SLJIT_NOT_ZERO)
|
if (type <= SLJIT_NOT_ZERO)
|
||||||
CHECK_ARGUMENT(compiler->last_flags & SLJIT_SET_Z);
|
CHECK_ARGUMENT(compiler->last_flags & SLJIT_SET_Z);
|
||||||
else
|
else
|
||||||
CHECK_ARGUMENT((type & 0xff) == (compiler->last_flags & 0xff)
|
CHECK_ARGUMENT(type == (compiler->last_flags & 0xff)
|
||||||
|| ((type & 0xff) == SLJIT_NOT_CARRY && (compiler->last_flags & 0xff) == SLJIT_CARRY)
|
|| (type == SLJIT_NOT_CARRY && (compiler->last_flags & 0xff) == SLJIT_CARRY)
|
||||||
|| ((type & 0xff) == SLJIT_NOT_OVERFLOW && (compiler->last_flags & 0xff) == SLJIT_OVERFLOW));
|
|| (type == SLJIT_NOT_OVERFLOW && (compiler->last_flags & 0xff) == SLJIT_OVERFLOW)
|
||||||
|
|| CHECK_UNORDERED(type, compiler->last_flags));
|
||||||
|
|
||||||
FUNCTION_CHECK_DST(dst, dstw);
|
FUNCTION_CHECK_DST(dst, dstw);
|
||||||
|
|
||||||
|
@ -1850,12 +1897,12 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op_flags(struct sljit_com
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
||||||
fprintf(compiler->verbose, " flags%s %s%s, ",
|
fprintf(compiler->verbose, " flags.%s%s%s ",
|
||||||
!(op & SLJIT_SET_Z) ? "" : ".z",
|
|
||||||
GET_OPCODE(op) < SLJIT_OP2_BASE ? "mov" : op2_names[GET_OPCODE(op) - SLJIT_OP2_BASE],
|
GET_OPCODE(op) < SLJIT_OP2_BASE ? "mov" : op2_names[GET_OPCODE(op) - SLJIT_OP2_BASE],
|
||||||
GET_OPCODE(op) < SLJIT_OP2_BASE ? op1_names[GET_OPCODE(op) - SLJIT_OP1_BASE] : ((op & SLJIT_32) ? "32" : ""));
|
GET_OPCODE(op) < SLJIT_OP2_BASE ? op1_names[GET_OPCODE(op) - SLJIT_OP1_BASE] : ((op & SLJIT_32) ? "32" : ""),
|
||||||
|
!(op & SLJIT_SET_Z) ? "" : ".z");
|
||||||
sljit_verbose_param(compiler, dst, dstw);
|
sljit_verbose_param(compiler, dst, dstw);
|
||||||
fprintf(compiler->verbose, ", %s%s\n", jump_names[type & 0xff], JUMP_POSTFIX(type));
|
fprintf(compiler->verbose, ", %s\n", jump_names[type]);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
CHECK_RETURN_OK;
|
CHECK_RETURN_OK;
|
||||||
|
@ -1866,8 +1913,7 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_cmov(struct sljit_compile
|
||||||
sljit_s32 src, sljit_sw srcw)
|
sljit_s32 src, sljit_sw srcw)
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_32)));
|
CHECK_ARGUMENT(type >= SLJIT_EQUAL && type <= SLJIT_ORDERED_LESS_EQUAL);
|
||||||
CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_ORDERED_F64);
|
|
||||||
|
|
||||||
CHECK_ARGUMENT(compiler->scratches != -1 && compiler->saveds != -1);
|
CHECK_ARGUMENT(compiler->scratches != -1 && compiler->saveds != -1);
|
||||||
CHECK_ARGUMENT(FUNCTION_CHECK_IS_REG(dst_reg & ~SLJIT_32));
|
CHECK_ARGUMENT(FUNCTION_CHECK_IS_REG(dst_reg & ~SLJIT_32));
|
||||||
|
@ -1876,17 +1922,19 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_cmov(struct sljit_compile
|
||||||
CHECK_ARGUMENT(srcw == 0);
|
CHECK_ARGUMENT(srcw == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((type & 0xff) <= SLJIT_NOT_ZERO)
|
if (type <= SLJIT_NOT_ZERO)
|
||||||
CHECK_ARGUMENT(compiler->last_flags & SLJIT_SET_Z);
|
CHECK_ARGUMENT(compiler->last_flags & SLJIT_SET_Z);
|
||||||
else
|
else
|
||||||
CHECK_ARGUMENT((type & 0xff) == (compiler->last_flags & 0xff)
|
CHECK_ARGUMENT(type == (compiler->last_flags & 0xff)
|
||||||
|| ((type & 0xff) == SLJIT_NOT_OVERFLOW && (compiler->last_flags & 0xff) == SLJIT_OVERFLOW));
|
|| (type == SLJIT_NOT_CARRY && (compiler->last_flags & 0xff) == SLJIT_CARRY)
|
||||||
|
|| (type == SLJIT_NOT_OVERFLOW && (compiler->last_flags & 0xff) == SLJIT_OVERFLOW)
|
||||||
|
|| CHECK_UNORDERED(type, compiler->last_flags));
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
||||||
fprintf(compiler->verbose, " cmov%s %s%s, ",
|
fprintf(compiler->verbose, " cmov%s %s, ",
|
||||||
!(dst_reg & SLJIT_32) ? "" : "32",
|
!(dst_reg & SLJIT_32) ? "" : "32",
|
||||||
jump_names[type & 0xff], JUMP_POSTFIX(type));
|
jump_names[type]);
|
||||||
sljit_verbose_reg(compiler, dst_reg & ~SLJIT_32);
|
sljit_verbose_reg(compiler, dst_reg & ~SLJIT_32);
|
||||||
fprintf(compiler->verbose, ", ");
|
fprintf(compiler->verbose, ", ");
|
||||||
sljit_verbose_param(compiler, src, srcw);
|
sljit_verbose_param(compiler, src, srcw);
|
||||||
|
@ -1901,27 +1949,63 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_mem(struct sljit_compiler
|
||||||
sljit_s32 mem, sljit_sw memw)
|
sljit_s32 mem, sljit_sw memw)
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
|
sljit_s32 allowed_flags;
|
||||||
|
|
||||||
CHECK_ARGUMENT((type & 0xff) >= SLJIT_MOV && (type & 0xff) <= SLJIT_MOV_P);
|
CHECK_ARGUMENT((type & 0xff) >= SLJIT_MOV && (type & 0xff) <= SLJIT_MOV_P);
|
||||||
CHECK_ARGUMENT(!(type & SLJIT_32) || ((type & 0xff) != SLJIT_MOV && (type & 0xff) != SLJIT_MOV_U32 && (type & 0xff) != SLJIT_MOV_P));
|
CHECK_ARGUMENT(!(type & SLJIT_32) || ((type & 0xff) >= SLJIT_MOV_U8 && (type & 0xff) <= SLJIT_MOV_S16));
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED) {
|
||||||
|
allowed_flags = SLJIT_MEM_ALIGNED_16 | SLJIT_MEM_ALIGNED_32;
|
||||||
|
|
||||||
|
switch (type & 0xff) {
|
||||||
|
case SLJIT_MOV_U8:
|
||||||
|
case SLJIT_MOV_S8:
|
||||||
|
case SLJIT_MOV_U16:
|
||||||
|
case SLJIT_MOV_S16:
|
||||||
|
allowed_flags = 0;
|
||||||
|
break;
|
||||||
|
case SLJIT_MOV_U32:
|
||||||
|
case SLJIT_MOV_S32:
|
||||||
|
case SLJIT_MOV32:
|
||||||
|
allowed_flags = SLJIT_MEM_ALIGNED_16;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_UNALIGNED | allowed_flags)) == 0);
|
||||||
|
CHECK_ARGUMENT((type & (SLJIT_MEM_ALIGNED_16 | SLJIT_MEM_ALIGNED_32)) != (SLJIT_MEM_ALIGNED_16 | SLJIT_MEM_ALIGNED_32));
|
||||||
|
} else {
|
||||||
CHECK_ARGUMENT((type & SLJIT_MEM_PRE) || (type & SLJIT_MEM_POST));
|
CHECK_ARGUMENT((type & SLJIT_MEM_PRE) || (type & SLJIT_MEM_POST));
|
||||||
CHECK_ARGUMENT((type & (SLJIT_MEM_PRE | SLJIT_MEM_POST)) != (SLJIT_MEM_PRE | SLJIT_MEM_POST));
|
CHECK_ARGUMENT((type & (SLJIT_MEM_PRE | SLJIT_MEM_POST)) != (SLJIT_MEM_PRE | SLJIT_MEM_POST));
|
||||||
CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_SUPP | SLJIT_MEM_PRE | SLJIT_MEM_POST)) == 0);
|
CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_SUPP | SLJIT_MEM_PRE | SLJIT_MEM_POST)) == 0);
|
||||||
|
CHECK_ARGUMENT((mem & REG_MASK) != 0 && (mem & REG_MASK) != reg);
|
||||||
|
}
|
||||||
|
|
||||||
FUNCTION_CHECK_SRC_MEM(mem, memw);
|
FUNCTION_CHECK_SRC_MEM(mem, memw);
|
||||||
CHECK_ARGUMENT(FUNCTION_CHECK_IS_REG(reg));
|
CHECK_ARGUMENT(FUNCTION_CHECK_IS_REG(reg));
|
||||||
|
|
||||||
CHECK_ARGUMENT((mem & REG_MASK) != 0 && (mem & REG_MASK) != reg);
|
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
if (!(type & SLJIT_MEM_SUPP) && SLJIT_UNLIKELY(!!compiler->verbose)) {
|
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
||||||
if (sljit_emit_mem(compiler, type | SLJIT_MEM_SUPP, reg, mem, memw) == SLJIT_ERR_UNSUPPORTED)
|
if (type & (SLJIT_MEM_PRE | SLJIT_MEM_POST)) {
|
||||||
fprintf(compiler->verbose, " //");
|
if (type & SLJIT_MEM_SUPP)
|
||||||
|
CHECK_RETURN_OK;
|
||||||
|
if (sljit_emit_mem(compiler, type | SLJIT_MEM_SUPP, reg, mem, memw) == SLJIT_ERR_UNSUPPORTED) {
|
||||||
|
fprintf(compiler->verbose, " // mem: unsupported form, no instructions are emitted");
|
||||||
|
CHECK_RETURN_OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fprintf(compiler->verbose, " mem%s.%s%s%s ",
|
if ((type & 0xff) == SLJIT_MOV32)
|
||||||
|
fprintf(compiler->verbose, " mem32.%s",
|
||||||
|
(type & SLJIT_MEM_STORE) ? "st" : "ld");
|
||||||
|
else
|
||||||
|
fprintf(compiler->verbose, " mem%s.%s%s",
|
||||||
!(type & SLJIT_32) ? "" : "32",
|
!(type & SLJIT_32) ? "" : "32",
|
||||||
(type & SLJIT_MEM_STORE) ? "st" : "ld",
|
(type & SLJIT_MEM_STORE) ? "st" : "ld",
|
||||||
op1_names[(type & 0xff) - SLJIT_OP1_BASE],
|
op1_names[(type & 0xff) - SLJIT_OP1_BASE]);
|
||||||
(type & SLJIT_MEM_PRE) ? ".pre" : ".post");
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED) {
|
||||||
|
printf(".un%s%s ", (type & SLJIT_MEM_ALIGNED_16) ? ".16" : "", (type & SLJIT_MEM_ALIGNED_32) ? ".32" : "");
|
||||||
|
} else
|
||||||
|
printf((type & SLJIT_MEM_PRE) ? ".pre " : ".post ");
|
||||||
sljit_verbose_reg(compiler, reg);
|
sljit_verbose_reg(compiler, reg);
|
||||||
fprintf(compiler->verbose, ", ");
|
fprintf(compiler->verbose, ", ");
|
||||||
sljit_verbose_param(compiler, mem, memw);
|
sljit_verbose_param(compiler, mem, memw);
|
||||||
|
@ -1937,22 +2021,37 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fmem(struct sljit_compile
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
||||||
CHECK_ARGUMENT((type & 0xff) == SLJIT_MOV_F64);
|
CHECK_ARGUMENT((type & 0xff) == SLJIT_MOV_F64);
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED) {
|
||||||
|
CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_UNALIGNED | SLJIT_MEM_ALIGNED_16 | (type & SLJIT_32 ? 0 : SLJIT_MEM_ALIGNED_32))) == 0);
|
||||||
|
CHECK_ARGUMENT((type & (SLJIT_MEM_ALIGNED_16 | SLJIT_MEM_ALIGNED_32)) != (SLJIT_MEM_ALIGNED_16 | SLJIT_MEM_ALIGNED_32));
|
||||||
|
} else {
|
||||||
CHECK_ARGUMENT((type & SLJIT_MEM_PRE) || (type & SLJIT_MEM_POST));
|
CHECK_ARGUMENT((type & SLJIT_MEM_PRE) || (type & SLJIT_MEM_POST));
|
||||||
CHECK_ARGUMENT((type & (SLJIT_MEM_PRE | SLJIT_MEM_POST)) != (SLJIT_MEM_PRE | SLJIT_MEM_POST));
|
CHECK_ARGUMENT((type & (SLJIT_MEM_PRE | SLJIT_MEM_POST)) != (SLJIT_MEM_PRE | SLJIT_MEM_POST));
|
||||||
CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_SUPP | SLJIT_MEM_PRE | SLJIT_MEM_POST)) == 0);
|
CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_SUPP | SLJIT_MEM_PRE | SLJIT_MEM_POST)) == 0);
|
||||||
|
}
|
||||||
|
|
||||||
FUNCTION_CHECK_SRC_MEM(mem, memw);
|
FUNCTION_CHECK_SRC_MEM(mem, memw);
|
||||||
CHECK_ARGUMENT(FUNCTION_CHECK_IS_FREG(freg));
|
CHECK_ARGUMENT(FUNCTION_CHECK_IS_FREG(freg));
|
||||||
#endif
|
#endif
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
||||||
if (!(type & SLJIT_MEM_SUPP) && SLJIT_UNLIKELY(!!compiler->verbose)) {
|
if (SLJIT_UNLIKELY(!!compiler->verbose)) {
|
||||||
if (sljit_emit_fmem(compiler, type | SLJIT_MEM_SUPP, freg, mem, memw) == SLJIT_ERR_UNSUPPORTED)
|
if (type & (SLJIT_MEM_PRE | SLJIT_MEM_POST)) {
|
||||||
fprintf(compiler->verbose, " //");
|
if (type & SLJIT_MEM_SUPP)
|
||||||
|
CHECK_RETURN_OK;
|
||||||
|
if (sljit_emit_fmem(compiler, type | SLJIT_MEM_SUPP, freg, mem, memw) == SLJIT_ERR_UNSUPPORTED) {
|
||||||
|
fprintf(compiler->verbose, " // fmem: unsupported form, no instructions are emitted");
|
||||||
|
CHECK_RETURN_OK;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fprintf(compiler->verbose, " fmem.%s%s%s ",
|
fprintf(compiler->verbose, " fmem.%s%s",
|
||||||
(type & SLJIT_MEM_STORE) ? "st" : "ld",
|
(type & SLJIT_MEM_STORE) ? "st" : "ld",
|
||||||
!(type & SLJIT_32) ? ".f64" : ".f32",
|
!(type & SLJIT_32) ? ".f64" : ".f32");
|
||||||
(type & SLJIT_MEM_PRE) ? ".pre" : ".post");
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED) {
|
||||||
|
printf(".un%s%s ", (type & SLJIT_MEM_ALIGNED_16) ? ".16" : "", (type & SLJIT_MEM_ALIGNED_32) ? ".32" : "");
|
||||||
|
} else
|
||||||
|
printf((type & SLJIT_MEM_PRE) ? ".pre " : ".post ");
|
||||||
sljit_verbose_freg(compiler, freg);
|
sljit_verbose_freg(compiler, freg);
|
||||||
fprintf(compiler->verbose, ", ");
|
fprintf(compiler->verbose, ", ");
|
||||||
sljit_verbose_param(compiler, mem, memw);
|
sljit_verbose_param(compiler, mem, memw);
|
||||||
|
@ -2012,6 +2111,10 @@ static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_put_label(struct sljit_co
|
||||||
CHECK_RETURN_OK;
|
CHECK_RETURN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#else /* !SLJIT_ARGUMENT_CHECKS && !SLJIT_VERBOSE */
|
||||||
|
|
||||||
|
#define SLJIT_SKIP_CHECKS(compiler)
|
||||||
|
|
||||||
#endif /* SLJIT_ARGUMENT_CHECKS || SLJIT_VERBOSE */
|
#endif /* SLJIT_ARGUMENT_CHECKS || SLJIT_VERBOSE */
|
||||||
|
|
||||||
#define SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw) \
|
#define SELECT_FOP1_OPERATION_WITH_CHECKS(compiler, op, dst, dstw, src, srcw) \
|
||||||
|
@ -2050,15 +2153,10 @@ static SLJIT_INLINE sljit_s32 emit_mov_before_return(struct sljit_compiler *comp
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op1(compiler, op, SLJIT_RETURN_REG, 0, src, srcw);
|
return sljit_emit_op1(compiler, op, SLJIT_RETURN_REG, 0, src, srcw);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !(defined SLJIT_CONFIG_SPARC && SLJIT_CONFIG_SPARC)
|
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)
|
||||||
{
|
{
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
|
@ -2066,19 +2164,14 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_return(struct sljit_compiler *comp
|
||||||
|
|
||||||
FAIL_IF(emit_mov_before_return(compiler, op, src, srcw));
|
FAIL_IF(emit_mov_before_return(compiler, op, src, srcw));
|
||||||
|
|
||||||
#if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_return_void(compiler);
|
return sljit_emit_return_void(compiler);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86) \
|
#if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86) \
|
||||||
|| (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC) \
|
|| (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC) \
|
||||||
|| (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32) \
|
|| ((defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) && !(defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1 && SLJIT_MIPS_REV < 6)) \
|
||||||
|| ((defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) && !(defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1 && SLJIT_MIPS_REV < 6))
|
|| (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV)
|
||||||
|
|
||||||
static SLJIT_INLINE sljit_s32 sljit_emit_cmov_generic(struct sljit_compiler *compiler, sljit_s32 type,
|
static SLJIT_INLINE sljit_s32 sljit_emit_cmov_generic(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 dst_reg,
|
sljit_s32 dst_reg,
|
||||||
|
@ -2088,31 +2181,55 @@ static SLJIT_INLINE sljit_s32 sljit_emit_cmov_generic(struct sljit_compiler *com
|
||||||
struct sljit_jump *jump;
|
struct sljit_jump *jump;
|
||||||
sljit_s32 op = (dst_reg & SLJIT_32) ? SLJIT_MOV32 : SLJIT_MOV;
|
sljit_s32 op = (dst_reg & SLJIT_32) ? SLJIT_MOV32 : SLJIT_MOV;
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
jump = sljit_emit_jump(compiler, type ^ 0x1);
|
jump = sljit_emit_jump(compiler, type ^ 0x1);
|
||||||
FAIL_IF(!jump);
|
FAIL_IF(!jump);
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
FAIL_IF(sljit_emit_op1(compiler, op, dst_reg & ~SLJIT_32, 0, src, srcw));
|
FAIL_IF(sljit_emit_op1(compiler, op, dst_reg & ~SLJIT_32, 0, src, srcw));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
label = sljit_emit_label(compiler);
|
label = sljit_emit_label(compiler);
|
||||||
FAIL_IF(!label);
|
FAIL_IF(!label);
|
||||||
|
|
||||||
sljit_set_label(jump, label);
|
sljit_set_label(jump, label);
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if (!(defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) || (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 6)) \
|
||||||
|
&& !(defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
|
||||||
|
|
||||||
|
static sljit_s32 sljit_emit_mem_unaligned(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
|
sljit_s32 reg,
|
||||||
|
sljit_s32 mem, sljit_sw memw)
|
||||||
|
{
|
||||||
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_STORE)
|
||||||
|
return sljit_emit_op1(compiler, type & (0xff | SLJIT_32), mem, memw, reg, 0);
|
||||||
|
return sljit_emit_op1(compiler, type & (0xff | SLJIT_32), reg, 0, mem, memw);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* (!SLJIT_CONFIG_MIPS || SLJIT_MIPS_REV >= 6) && !SLJIT_CONFIG_ARM_V5 */
|
||||||
|
|
||||||
|
#if (!(defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) || (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 6)) \
|
||||||
|
&& !(defined SLJIT_CONFIG_ARM_32 && SLJIT_CONFIG_ARM_32)
|
||||||
|
|
||||||
|
static sljit_s32 sljit_emit_fmem_unaligned(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
|
sljit_s32 freg,
|
||||||
|
sljit_s32 mem, sljit_sw memw)
|
||||||
|
{
|
||||||
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_STORE)
|
||||||
|
return sljit_emit_fop1(compiler, type & (0xff | SLJIT_32), mem, memw, freg, 0);
|
||||||
|
return sljit_emit_fop1(compiler, type & (0xff | SLJIT_32), freg, 0, mem, memw);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* (!SLJIT_CONFIG_MIPS || SLJIT_MIPS_REV >= 6) && !SLJIT_CONFIG_ARM */
|
||||||
|
|
||||||
/* CPU description section */
|
/* CPU description section */
|
||||||
|
|
||||||
#if (defined SLJIT_32BIT_ARCHITECTURE && SLJIT_32BIT_ARCHITECTURE)
|
#if (defined SLJIT_32BIT_ARCHITECTURE && SLJIT_32BIT_ARCHITECTURE)
|
||||||
|
@ -2153,13 +2270,14 @@ static SLJIT_INLINE sljit_s32 sljit_emit_cmov_generic(struct sljit_compiler *com
|
||||||
# include "sljitNativePPC_common.c"
|
# include "sljitNativePPC_common.c"
|
||||||
#elif (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
|
#elif (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
|
||||||
# include "sljitNativeMIPS_common.c"
|
# include "sljitNativeMIPS_common.c"
|
||||||
#elif (defined SLJIT_CONFIG_SPARC && SLJIT_CONFIG_SPARC)
|
#elif (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV)
|
||||||
# include "sljitNativeSPARC_common.c"
|
# include "sljitNativeRISCV_common.c"
|
||||||
#elif (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
#elif (defined SLJIT_CONFIG_S390X && SLJIT_CONFIG_S390X)
|
||||||
# include "sljitNativeS390X.c"
|
# include "sljitNativeS390X.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !(defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
|
#if !(defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) \
|
||||||
|
&& !(defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV)
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 src1, sljit_sw src1w,
|
sljit_s32 src1, sljit_sw src1w,
|
||||||
|
@ -2229,20 +2347,33 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler
|
||||||
else
|
else
|
||||||
flags = condition << VARIABLE_FLAG_SHIFT;
|
flags = condition << VARIABLE_FLAG_SHIFT;
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
PTR_FAIL_IF(sljit_emit_op2u(compiler,
|
PTR_FAIL_IF(sljit_emit_op2u(compiler,
|
||||||
SLJIT_SUB | flags | (type & SLJIT_32), src1, src1w, src2, src2w));
|
SLJIT_SUB | flags | (type & SLJIT_32), src1, src1w, src2, src2w));
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_jump(compiler, condition | (type & (SLJIT_REWRITABLE_JUMP | SLJIT_32)));
|
return sljit_emit_jump(compiler, condition | (type & (SLJIT_REWRITABLE_JUMP | SLJIT_32)));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif /* !SLJIT_CONFIG_MIPS */
|
||||||
|
|
||||||
|
#if (defined SLJIT_CONFIG_ARM && SLJIT_CONFIG_ARM)
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_cmp_info(sljit_s32 type)
|
||||||
|
{
|
||||||
|
if (type < SLJIT_UNORDERED || type > SLJIT_ORDERED_LESS_EQUAL)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL:
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* SLJIT_CONFIG_ARM */
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 src1, sljit_sw src1w,
|
sljit_s32 src1, sljit_sw src1w,
|
||||||
|
@ -2251,58 +2382,47 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_fcmp(struct sljit_compile
|
||||||
CHECK_ERROR_PTR();
|
CHECK_ERROR_PTR();
|
||||||
CHECK_PTR(check_sljit_emit_fcmp(compiler, type, src1, src1w, src2, src2w));
|
CHECK_PTR(check_sljit_emit_fcmp(compiler, type, src1, src1w, src2, src2w));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
sljit_emit_fop1(compiler, SLJIT_CMP_F64 | ((type & 0xff) << VARIABLE_FLAG_SHIFT) | (type & SLJIT_32), src1, src1w, src2, src2w);
|
sljit_emit_fop1(compiler, SLJIT_CMP_F64 | ((type & 0xff) << VARIABLE_FLAG_SHIFT) | (type & SLJIT_32), src1, src1w, src2, src2w);
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_jump(compiler, type);
|
return sljit_emit_jump(compiler, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !(defined SLJIT_CONFIG_ARM_32 && SLJIT_CONFIG_ARM_32) \
|
#if !(defined SLJIT_CONFIG_ARM && SLJIT_CONFIG_ARM) \
|
||||||
&& !(defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
|
&& !(defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) \
|
||||||
&& !(defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
|
&& !(defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 reg,
|
sljit_s32 reg,
|
||||||
sljit_s32 mem, sljit_sw memw)
|
sljit_s32 mem, sljit_sw memw)
|
||||||
{
|
{
|
||||||
SLJIT_UNUSED_ARG(compiler);
|
|
||||||
SLJIT_UNUSED_ARG(type);
|
|
||||||
SLJIT_UNUSED_ARG(reg);
|
|
||||||
SLJIT_UNUSED_ARG(mem);
|
|
||||||
SLJIT_UNUSED_ARG(memw);
|
|
||||||
|
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
||||||
|
|
||||||
|
if (type & (SLJIT_MEM_PRE | SLJIT_MEM_POST))
|
||||||
return SLJIT_ERR_UNSUPPORTED;
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
return sljit_emit_mem_unaligned(compiler, type, reg, mem, memw);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !(defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64) \
|
#if !(defined SLJIT_CONFIG_ARM && SLJIT_CONFIG_ARM) \
|
||||||
|
&& !(defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS) \
|
||||||
&& !(defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
|
&& !(defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 freg,
|
sljit_s32 freg,
|
||||||
sljit_s32 mem, sljit_sw memw)
|
sljit_s32 mem, sljit_sw memw)
|
||||||
{
|
{
|
||||||
SLJIT_UNUSED_ARG(compiler);
|
|
||||||
SLJIT_UNUSED_ARG(type);
|
|
||||||
SLJIT_UNUSED_ARG(freg);
|
|
||||||
SLJIT_UNUSED_ARG(mem);
|
|
||||||
SLJIT_UNUSED_ARG(memw);
|
|
||||||
|
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
||||||
|
|
||||||
|
if (type & (SLJIT_MEM_PRE | SLJIT_MEM_POST))
|
||||||
return SLJIT_ERR_UNSUPPORTED;
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
return sljit_emit_fmem_unaligned(compiler, type, freg, mem, memw);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -2316,10 +2436,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *c
|
||||||
CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset));
|
CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset));
|
||||||
|
|
||||||
ADJUST_LOCAL_OFFSET(SLJIT_MEM1(SLJIT_SP), offset);
|
ADJUST_LOCAL_OFFSET(SLJIT_MEM1(SLJIT_SP), offset);
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
if (offset != 0)
|
if (offset != 0)
|
||||||
return sljit_emit_op2(compiler, SLJIT_ADD, dst, dstw, SLJIT_SP, 0, SLJIT_IMM, offset);
|
return sljit_emit_op2(compiler, SLJIT_ADD, dst, dstw, SLJIT_SP, 0, SLJIT_IMM, offset);
|
||||||
return sljit_emit_op1(compiler, SLJIT_MOV, dst, dstw, SLJIT_SP, 0);
|
return sljit_emit_op1(compiler, SLJIT_MOV, dst, dstw, SLJIT_SP, 0);
|
||||||
|
@ -2387,6 +2506,13 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_cmp_info(sljit_s32 type)
|
||||||
|
{
|
||||||
|
SLJIT_UNUSED_ARG(type);
|
||||||
|
SLJIT_UNREACHABLE();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data)
|
SLJIT_API_FUNC_ATTRIBUTE void sljit_free_code(void* code, void *exec_allocator_data)
|
||||||
{
|
{
|
||||||
SLJIT_UNUSED_ARG(code);
|
SLJIT_UNUSED_ARG(code);
|
||||||
|
|
|
@ -488,8 +488,7 @@ struct sljit_compiler {
|
||||||
sljit_uw args_size;
|
sljit_uw args_size;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
|
#if (defined SLJIT_CONFIG_RISCV && SLJIT_CONFIG_RISCV)
|
||||||
sljit_s32 delay_slot;
|
|
||||||
sljit_s32 cache_arg;
|
sljit_s32 cache_arg;
|
||||||
sljit_sw cache_argw;
|
sljit_sw cache_argw;
|
||||||
#endif
|
#endif
|
||||||
|
@ -634,6 +633,20 @@ static SLJIT_INLINE sljit_uw sljit_get_generated_code_size(struct sljit_compiler
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type);
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type);
|
||||||
|
|
||||||
|
/* If type is between SLJIT_ORDERED_EQUAL and SLJIT_ORDERED_LESS_EQUAL,
|
||||||
|
sljit_cmp_info returns one, if the cpu supports the passed floating
|
||||||
|
point comparison type.
|
||||||
|
|
||||||
|
If type is SLJIT_UNORDERED or SLJIT_ORDERED, sljit_cmp_info returns
|
||||||
|
one, if the cpu supports checking the unordered comparison result
|
||||||
|
regardless of the comparison type passed to the comparison instruction.
|
||||||
|
The returned value is always one, if there is at least one type between
|
||||||
|
SLJIT_ORDERED_EQUAL and SLJIT_ORDERED_LESS_EQUAL where sljit_cmp_info
|
||||||
|
returns with a zero value.
|
||||||
|
|
||||||
|
Otherwise it returns zero. */
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_cmp_info(sljit_s32 type);
|
||||||
|
|
||||||
/* Instruction generation. Returns with any error code. If there is no
|
/* Instruction generation. Returns with any error code. If there is no
|
||||||
error, they return with SLJIT_SUCCESS. */
|
error, they return with SLJIT_SUCCESS. */
|
||||||
|
|
||||||
|
@ -683,9 +696,21 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type)
|
||||||
overwrites the previous context.
|
overwrites the previous context.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* The compiled function uses cdecl calling
|
/* Saved registers between SLJIT_S0 and SLJIT_S(n - 1) (inclusive)
|
||||||
* convention instead of SLJIT_FUNC. */
|
are not saved / restored on function enter / return. Instead,
|
||||||
#define SLJIT_ENTER_CDECL 0x00000001
|
these registers can be used to pass / return data (such as
|
||||||
|
global / local context pointers) across function calls. The
|
||||||
|
value of n must be between 1 and 3. Furthermore, this option
|
||||||
|
is only supported by register argument calling convention, so
|
||||||
|
SLJIT_ENTER_REG_ARG (see below) must be specified as well. */
|
||||||
|
#define SLJIT_ENTER_KEEP(n) (n)
|
||||||
|
|
||||||
|
/* The compiled function uses an sljit specific register argument
|
||||||
|
* calling convention. This is a lightweight function call type where
|
||||||
|
* both the caller and called function must be compiled with sljit.
|
||||||
|
* The jump type of the function call must be SLJIT_CALL_REG_ARG
|
||||||
|
* and the called function must store all arguments in registers. */
|
||||||
|
#define SLJIT_ENTER_REG_ARG 0x00000004
|
||||||
|
|
||||||
/* The local_size must be >= 0 and <= SLJIT_MAX_LOCAL_SIZE. */
|
/* The local_size must be >= 0 and <= SLJIT_MAX_LOCAL_SIZE. */
|
||||||
#define SLJIT_MAX_LOCAL_SIZE 65536
|
#define SLJIT_MAX_LOCAL_SIZE 65536
|
||||||
|
@ -792,8 +817,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *
|
||||||
Write-back is supported except for one instruction: 32 bit signed
|
Write-back is supported except for one instruction: 32 bit signed
|
||||||
load with [reg+imm] addressing mode on 64 bit.
|
load with [reg+imm] addressing mode on 64 bit.
|
||||||
mips: [reg+imm], -65536 <= imm <= 65535
|
mips: [reg+imm], -65536 <= imm <= 65535
|
||||||
sparc: [reg+imm], -4096 <= imm <= 4095
|
Write-back is not supported
|
||||||
[reg+reg] is supported
|
riscv: [reg+imm], -2048 <= imm <= 2047
|
||||||
|
Write-back is not supported
|
||||||
s390x: [reg+imm], -2^19 <= imm < 2^19
|
s390x: [reg+imm], -2^19 <= imm < 2^19
|
||||||
[reg+reg] is supported
|
[reg+reg] is supported
|
||||||
Write-back is not supported
|
Write-back is not supported
|
||||||
|
@ -1207,41 +1233,70 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_label* sljit_emit_label(struct sljit_compi
|
||||||
#define SLJIT_SET_CARRY SLJIT_SET(SLJIT_CARRY)
|
#define SLJIT_SET_CARRY SLJIT_SET(SLJIT_CARRY)
|
||||||
#define SLJIT_NOT_CARRY 13
|
#define SLJIT_NOT_CARRY 13
|
||||||
|
|
||||||
/* Floating point comparison types. */
|
/* Basic floating point comparison types.
|
||||||
#define SLJIT_EQUAL_F64 14
|
|
||||||
#define SLJIT_EQUAL_F32 (SLJIT_EQUAL_F64 | SLJIT_32)
|
Note: when the comparison result is unordered, their behaviour is unspecified. */
|
||||||
#define SLJIT_SET_EQUAL_F SLJIT_SET(SLJIT_EQUAL_F64)
|
|
||||||
#define SLJIT_NOT_EQUAL_F64 15
|
#define SLJIT_F_EQUAL 14
|
||||||
#define SLJIT_NOT_EQUAL_F32 (SLJIT_NOT_EQUAL_F64 | SLJIT_32)
|
#define SLJIT_SET_F_EQUAL SLJIT_SET(SLJIT_F_EQUAL)
|
||||||
#define SLJIT_SET_NOT_EQUAL_F SLJIT_SET(SLJIT_NOT_EQUAL_F64)
|
#define SLJIT_F_NOT_EQUAL 15
|
||||||
#define SLJIT_LESS_F64 16
|
#define SLJIT_SET_F_NOT_EQUAL SLJIT_SET(SLJIT_F_NOT_EQUAL)
|
||||||
#define SLJIT_LESS_F32 (SLJIT_LESS_F64 | SLJIT_32)
|
#define SLJIT_F_LESS 16
|
||||||
#define SLJIT_SET_LESS_F SLJIT_SET(SLJIT_LESS_F64)
|
#define SLJIT_SET_F_LESS SLJIT_SET(SLJIT_F_LESS)
|
||||||
#define SLJIT_GREATER_EQUAL_F64 17
|
#define SLJIT_F_GREATER_EQUAL 17
|
||||||
#define SLJIT_GREATER_EQUAL_F32 (SLJIT_GREATER_EQUAL_F64 | SLJIT_32)
|
#define SLJIT_SET_F_GREATER_EQUAL SLJIT_SET(SLJIT_F_GREATER_EQUAL)
|
||||||
#define SLJIT_SET_GREATER_EQUAL_F SLJIT_SET(SLJIT_GREATER_EQUAL_F64)
|
#define SLJIT_F_GREATER 18
|
||||||
#define SLJIT_GREATER_F64 18
|
#define SLJIT_SET_F_GREATER SLJIT_SET(SLJIT_F_GREATER)
|
||||||
#define SLJIT_GREATER_F32 (SLJIT_GREATER_F64 | SLJIT_32)
|
#define SLJIT_F_LESS_EQUAL 19
|
||||||
#define SLJIT_SET_GREATER_F SLJIT_SET(SLJIT_GREATER_F64)
|
#define SLJIT_SET_F_LESS_EQUAL SLJIT_SET(SLJIT_F_LESS_EQUAL)
|
||||||
#define SLJIT_LESS_EQUAL_F64 19
|
|
||||||
#define SLJIT_LESS_EQUAL_F32 (SLJIT_LESS_EQUAL_F64 | SLJIT_32)
|
/* Jumps when either argument contains a NaN value. */
|
||||||
#define SLJIT_SET_LESS_EQUAL_F SLJIT_SET(SLJIT_LESS_EQUAL_F64)
|
#define SLJIT_UNORDERED 20
|
||||||
#define SLJIT_UNORDERED_F64 20
|
#define SLJIT_SET_UNORDERED SLJIT_SET(SLJIT_UNORDERED)
|
||||||
#define SLJIT_UNORDERED_F32 (SLJIT_UNORDERED_F64 | SLJIT_32)
|
/* Jumps when neither argument contains a NaN value. */
|
||||||
#define SLJIT_SET_UNORDERED_F SLJIT_SET(SLJIT_UNORDERED_F64)
|
#define SLJIT_ORDERED 21
|
||||||
#define SLJIT_ORDERED_F64 21
|
#define SLJIT_SET_ORDERED SLJIT_SET(SLJIT_ORDERED)
|
||||||
#define SLJIT_ORDERED_F32 (SLJIT_ORDERED_F64 | SLJIT_32)
|
|
||||||
#define SLJIT_SET_ORDERED_F SLJIT_SET(SLJIT_ORDERED_F64)
|
/* Ordered / unordered floating point comparison types.
|
||||||
|
|
||||||
|
Note: each comparison type has an ordered and unordered form. Some
|
||||||
|
architectures supports only either of them (see: sljit_cmp_info). */
|
||||||
|
|
||||||
|
#define SLJIT_ORDERED_EQUAL 22
|
||||||
|
#define SLJIT_SET_ORDERED_EQUAL SLJIT_SET(SLJIT_ORDERED_EQUAL)
|
||||||
|
#define SLJIT_UNORDERED_OR_NOT_EQUAL 23
|
||||||
|
#define SLJIT_SET_UNORDERED_OR_NOT_EQUAL SLJIT_SET(SLJIT_UNORDERED_OR_NOT_EQUAL)
|
||||||
|
#define SLJIT_ORDERED_LESS 24
|
||||||
|
#define SLJIT_SET_ORDERED_LESS SLJIT_SET(SLJIT_ORDERED_LESS)
|
||||||
|
#define SLJIT_UNORDERED_OR_GREATER_EQUAL 25
|
||||||
|
#define SLJIT_SET_UNORDERED_OR_GREATER_EQUAL SLJIT_SET(SLJIT_UNORDERED_OR_GREATER_EQUAL)
|
||||||
|
#define SLJIT_ORDERED_GREATER 26
|
||||||
|
#define SLJIT_SET_ORDERED_GREATER SLJIT_SET(SLJIT_ORDERED_GREATER)
|
||||||
|
#define SLJIT_UNORDERED_OR_LESS_EQUAL 27
|
||||||
|
#define SLJIT_SET_UNORDERED_OR_LESS_EQUAL SLJIT_SET(SLJIT_UNORDERED_OR_LESS_EQUAL)
|
||||||
|
|
||||||
|
#define SLJIT_UNORDERED_OR_EQUAL 28
|
||||||
|
#define SLJIT_SET_UNORDERED_OR_EQUAL SLJIT_SET(SLJIT_UNORDERED_OR_EQUAL)
|
||||||
|
#define SLJIT_ORDERED_NOT_EQUAL 29
|
||||||
|
#define SLJIT_SET_ORDERED_NOT_EQUAL SLJIT_SET(SLJIT_ORDERED_NOT_EQUAL)
|
||||||
|
#define SLJIT_UNORDERED_OR_LESS 30
|
||||||
|
#define SLJIT_SET_UNORDERED_OR_LESS SLJIT_SET(SLJIT_UNORDERED_OR_LESS)
|
||||||
|
#define SLJIT_ORDERED_GREATER_EQUAL 31
|
||||||
|
#define SLJIT_SET_ORDERED_GREATER_EQUAL SLJIT_SET(SLJIT_ORDERED_GREATER_EQUAL)
|
||||||
|
#define SLJIT_UNORDERED_OR_GREATER 32
|
||||||
|
#define SLJIT_SET_UNORDERED_OR_GREATER SLJIT_SET(SLJIT_UNORDERED_OR_GREATER)
|
||||||
|
#define SLJIT_ORDERED_LESS_EQUAL 33
|
||||||
|
#define SLJIT_SET_ORDERED_LESS_EQUAL SLJIT_SET(SLJIT_ORDERED_LESS_EQUAL)
|
||||||
|
|
||||||
/* Unconditional jump types. */
|
/* Unconditional jump types. */
|
||||||
#define SLJIT_JUMP 22
|
#define SLJIT_JUMP 34
|
||||||
/* Fast calling method. See sljit_emit_fast_enter / SLJIT_FAST_RETURN. */
|
/* Fast calling method. See sljit_emit_fast_enter / SLJIT_FAST_RETURN. */
|
||||||
#define SLJIT_FAST_CALL 23
|
#define SLJIT_FAST_CALL 35
|
||||||
/* Called function must be declared with the SLJIT_FUNC attribute. */
|
/* Default C calling convention. */
|
||||||
#define SLJIT_CALL 24
|
#define SLJIT_CALL 36
|
||||||
/* Called function must be declared with cdecl attribute.
|
/* Called function must be an sljit compiled function.
|
||||||
This is the default attribute for C functions. */
|
See SLJIT_ENTER_REG_ARG option. */
|
||||||
#define SLJIT_CALL_CDECL 25
|
#define SLJIT_CALL_REG_ARG 37
|
||||||
|
|
||||||
/* The target can be changed during runtime (see: sljit_set_jump_addr). */
|
/* The target can be changed during runtime (see: sljit_set_jump_addr). */
|
||||||
#define SLJIT_REWRITABLE_JUMP 0x1000
|
#define SLJIT_REWRITABLE_JUMP 0x1000
|
||||||
|
@ -1249,10 +1304,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_label* sljit_emit_label(struct sljit_compi
|
||||||
the called function returns to the caller of the current function. The
|
the called function returns to the caller of the current function. The
|
||||||
stack usage is reduced before the call, but it is not necessarily reduced
|
stack usage is reduced before the call, but it is not necessarily reduced
|
||||||
to zero. In the latter case the compiler needs to allocate space for some
|
to zero. In the latter case the compiler needs to allocate space for some
|
||||||
arguments and the return register must be kept as well.
|
arguments and the return address must be stored on the stack as well. */
|
||||||
|
|
||||||
This feature is highly experimental and not supported on SPARC platform
|
|
||||||
at the moment. */
|
|
||||||
#define SLJIT_CALL_RETURN 0x2000
|
#define SLJIT_CALL_RETURN 0x2000
|
||||||
|
|
||||||
/* Emit a jump instruction. The destination is not set, only the type of the jump.
|
/* Emit a jump instruction. The destination is not set, only the type of the jump.
|
||||||
|
@ -1287,7 +1339,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler
|
||||||
sljit_emit_jump. However some architectures (i.e: MIPS) may employ
|
sljit_emit_jump. However some architectures (i.e: MIPS) may employ
|
||||||
special optimizations here. It is suggested to use this comparison form
|
special optimizations here. It is suggested to use this comparison form
|
||||||
when appropriate.
|
when appropriate.
|
||||||
type must be between SLJIT_EQUAL_F64 and SLJIT_ORDERED_F32
|
type must be between SLJIT_F_EQUAL and SLJIT_ORDERED_LESS_EQUAL
|
||||||
type can be combined (or'ed) with SLJIT_REWRITABLE_JUMP
|
type can be combined (or'ed) with SLJIT_REWRITABLE_JUMP
|
||||||
Flags: destroy flags.
|
Flags: destroy flags.
|
||||||
Note: if either operand is NaN, the behaviour is undefined for
|
Note: if either operand is NaN, the behaviour is undefined for
|
||||||
|
@ -1320,7 +1372,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compi
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 arg_types, sljit_s32 src, sljit_sw srcw);
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 arg_types, sljit_s32 src, sljit_sw srcw);
|
||||||
|
|
||||||
/* Perform the operation using the conditional flags as the second argument.
|
/* Perform the operation using the conditional flags as the second argument.
|
||||||
Type must always be between SLJIT_EQUAL and SLJIT_ORDERED_F64. The value
|
Type must always be between SLJIT_EQUAL and SLJIT_ORDERED_LESS_EQUAL. The value
|
||||||
represented by the type is 1, if the condition represented by the type
|
represented by the type is 1, if the condition represented by the type
|
||||||
is fulfilled, and 0 otherwise.
|
is fulfilled, and 0 otherwise.
|
||||||
|
|
||||||
|
@ -1339,7 +1391,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
if the condition is satisfied. Unlike other arithmetic operations this
|
if the condition is satisfied. Unlike other arithmetic operations this
|
||||||
instruction does not support memory access.
|
instruction does not support memory access.
|
||||||
|
|
||||||
type must be between SLJIT_EQUAL and SLJIT_ORDERED_F64
|
type must be between SLJIT_EQUAL and SLJIT_ORDERED_LESS_EQUAL
|
||||||
dst_reg must be a valid register and it can be combined
|
dst_reg must be a valid register and it can be combined
|
||||||
with SLJIT_32 to perform a 32 bit arithmetic operation
|
with SLJIT_32 to perform a 32 bit arithmetic operation
|
||||||
src must be register or immediate (SLJIT_IMM)
|
src must be register or immediate (SLJIT_IMM)
|
||||||
|
@ -1351,32 +1403,58 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
||||||
|
|
||||||
/* The following flags are used by sljit_emit_mem() and sljit_emit_fmem(). */
|
/* The following flags are used by sljit_emit_mem() and sljit_emit_fmem(). */
|
||||||
|
|
||||||
|
/* Memory load operation. This is the default. */
|
||||||
|
#define SLJIT_MEM_LOAD 0x000000
|
||||||
|
/* Memory store operation. */
|
||||||
|
#define SLJIT_MEM_STORE 0x000200
|
||||||
|
|
||||||
|
/* Load or stora data from an unaligned address. */
|
||||||
|
#define SLJIT_MEM_UNALIGNED 0x000400
|
||||||
|
/* Load or store data and update the base address with a single operation. */
|
||||||
|
/* Base register is updated before the memory access. */
|
||||||
|
#define SLJIT_MEM_PRE 0x000800
|
||||||
|
/* Base register is updated after the memory access. */
|
||||||
|
#define SLJIT_MEM_POST 0x001000
|
||||||
|
|
||||||
|
/* The following flags are supported when SLJIT_MEM_UNALIGNED is specified: */
|
||||||
|
|
||||||
|
/* Defines 16 bit alignment for unaligned accesses. */
|
||||||
|
#define SLJIT_MEM_ALIGNED_16 0x010000
|
||||||
|
/* Defines 32 bit alignment for unaligned accesses. */
|
||||||
|
#define SLJIT_MEM_ALIGNED_32 0x020000
|
||||||
|
|
||||||
|
/* The following flags are supported when SLJIT_MEM_PRE or
|
||||||
|
SLJIT_MEM_POST is specified: */
|
||||||
|
|
||||||
/* When SLJIT_MEM_SUPP is passed, no instructions are emitted.
|
/* When SLJIT_MEM_SUPP is passed, no instructions are emitted.
|
||||||
Instead the function returns with SLJIT_SUCCESS if the instruction
|
Instead the function returns with SLJIT_SUCCESS if the instruction
|
||||||
form is supported and SLJIT_ERR_UNSUPPORTED otherwise. This flag
|
form is supported and SLJIT_ERR_UNSUPPORTED otherwise. This flag
|
||||||
allows runtime checking of available instruction forms. */
|
allows runtime checking of available instruction forms. */
|
||||||
#define SLJIT_MEM_SUPP 0x0200
|
#define SLJIT_MEM_SUPP 0x010000
|
||||||
/* Memory load operation. This is the default. */
|
|
||||||
#define SLJIT_MEM_LOAD 0x0000
|
|
||||||
/* Memory store operation. */
|
|
||||||
#define SLJIT_MEM_STORE 0x0400
|
|
||||||
/* Base register is updated before the memory access. */
|
|
||||||
#define SLJIT_MEM_PRE 0x0800
|
|
||||||
/* Base register is updated after the memory access. */
|
|
||||||
#define SLJIT_MEM_POST 0x1000
|
|
||||||
|
|
||||||
/* Emit a single memory load or store with update instruction. When the
|
/* The sljit_emit_mem emits instructions for various memory operations:
|
||||||
requested instruction form is not supported by the CPU, it returns
|
|
||||||
with SLJIT_ERR_UNSUPPORTED instead of emulating the instruction. This
|
When SLJIT_MEM_UNALIGNED is set in type argument:
|
||||||
allows specializing tight loops based on the supported instruction
|
Emit instructions for unaligned memory loads or stores. When
|
||||||
forms (see SLJIT_MEM_SUPP flag).
|
SLJIT_UNALIGNED is not defined, the only way to access unaligned
|
||||||
|
memory data is using sljit_emit_mem. Otherwise all operations (e.g.
|
||||||
|
sljit_emit_op1/2, or sljit_emit_fop1/2) supports unaligned access.
|
||||||
|
In general, the performance of unaligned memory accesses are often
|
||||||
|
lower than aligned and should be avoided.
|
||||||
|
|
||||||
|
When SLJIT_MEM_PRE or SLJIT_MEM_POST is set in type argument:
|
||||||
|
Emit a single memory load or store with update instruction.
|
||||||
|
When the requested instruction form is not supported by the CPU,
|
||||||
|
it returns with SLJIT_ERR_UNSUPPORTED instead of emulating the
|
||||||
|
instruction. This allows specializing tight loops based on
|
||||||
|
the supported instruction forms (see SLJIT_MEM_SUPP flag).
|
||||||
|
|
||||||
type must be between SLJIT_MOV and SLJIT_MOV_P and can be
|
type must be between SLJIT_MOV and SLJIT_MOV_P and can be
|
||||||
combined with SLJIT_MEM_* flags. Either SLJIT_MEM_PRE
|
combined with SLJIT_MEM_* flags.
|
||||||
or SLJIT_MEM_POST must be specified.
|
|
||||||
reg is the source or destination register, and must be
|
reg is the source or destination register, and must be
|
||||||
different from the base register of the mem operand
|
different from the base register of the mem operand
|
||||||
mem must be a SLJIT_MEM1() or SLJIT_MEM2() operand
|
when SLJIT_MEM_PRE or SLJIT_MEM_POST is passed
|
||||||
|
mem must be a memory operand
|
||||||
|
|
||||||
Flags: - (does not modify flags) */
|
Flags: - (does not modify flags) */
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
|
@ -1386,9 +1464,11 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compile
|
||||||
/* Same as sljit_emit_mem except the followings:
|
/* Same as sljit_emit_mem except the followings:
|
||||||
|
|
||||||
type must be SLJIT_MOV_F64 or SLJIT_MOV_F32 and can be
|
type must be SLJIT_MOV_F64 or SLJIT_MOV_F32 and can be
|
||||||
combined with SLJIT_MEM_* flags. Either SLJIT_MEM_PRE
|
combined with SLJIT_MEM_* flags.
|
||||||
or SLJIT_MEM_POST must be specified.
|
freg is the source or destination floating point register
|
||||||
freg is the source or destination floating point register */
|
mem must be a memory operand
|
||||||
|
|
||||||
|
Flags: - (does not modify flags) */
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 freg,
|
sljit_s32 freg,
|
||||||
|
@ -1547,7 +1627,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg);
|
||||||
/* The following function is a helper function for sljit_emit_op_custom.
|
/* The following function is a helper function for sljit_emit_op_custom.
|
||||||
It returns with the real machine register index of any SLJIT_FLOAT register.
|
It returns with the real machine register index of any SLJIT_FLOAT register.
|
||||||
|
|
||||||
Note: the index is always an even number on ARM (except ARM-64), MIPS, and SPARC. */
|
Note: the index is always an even number on ARM-32, MIPS. */
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg);
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg);
|
||||||
|
|
||||||
|
|
|
@ -100,6 +100,7 @@ static const sljit_u8 freg_map[SLJIT_NUMBER_OF_FLOAT_REGISTERS + 3] = {
|
||||||
#define CMP 0xe1400000
|
#define CMP 0xe1400000
|
||||||
#define BKPT 0xe1200070
|
#define BKPT 0xe1200070
|
||||||
#define EOR 0xe0200000
|
#define EOR 0xe0200000
|
||||||
|
#define LDR 0xe5100000
|
||||||
#define MOV 0xe1a00000
|
#define MOV 0xe1a00000
|
||||||
#define MUL 0xe0000090
|
#define MUL 0xe0000090
|
||||||
#define MVN 0xe1e00000
|
#define MVN 0xe1e00000
|
||||||
|
@ -111,6 +112,7 @@ static const sljit_u8 freg_map[SLJIT_NUMBER_OF_FLOAT_REGISTERS + 3] = {
|
||||||
#define RSC 0xe0e00000
|
#define RSC 0xe0e00000
|
||||||
#define SBC 0xe0c00000
|
#define SBC 0xe0c00000
|
||||||
#define SMULL 0xe0c00090
|
#define SMULL 0xe0c00090
|
||||||
|
#define STR 0xe5000000
|
||||||
#define SUB 0xe0400000
|
#define SUB 0xe0400000
|
||||||
#define TST 0xe1000000
|
#define TST 0xe1000000
|
||||||
#define UMULL 0xe0800090
|
#define UMULL 0xe0800090
|
||||||
|
@ -1049,7 +1051,8 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
||||||
{
|
{
|
||||||
sljit_uw imm, offset;
|
sljit_uw imm, offset;
|
||||||
sljit_s32 i, tmp, size, word_arg_count, saved_arg_count;
|
sljit_s32 i, tmp, size, word_arg_count;
|
||||||
|
sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options);
|
||||||
#ifdef __SOFTFP__
|
#ifdef __SOFTFP__
|
||||||
sljit_u32 float_arg_count;
|
sljit_u32 float_arg_count;
|
||||||
#else
|
#else
|
||||||
|
@ -1065,7 +1068,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
imm = 0;
|
imm = 0;
|
||||||
|
|
||||||
tmp = SLJIT_S0 - saveds;
|
tmp = SLJIT_S0 - saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--)
|
for (i = SLJIT_S0 - saved_arg_count; i > tmp; i--)
|
||||||
imm |= (sljit_uw)1 << reg_map[i];
|
imm |= (sljit_uw)1 << reg_map[i];
|
||||||
|
|
||||||
for (i = scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
for (i = scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
||||||
|
@ -1082,7 +1085,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
FAIL_IF(push_inst(compiler, 0xe52d0004 | RD(TMP_REG2)));
|
FAIL_IF(push_inst(compiler, 0xe52d0004 | RD(TMP_REG2)));
|
||||||
|
|
||||||
/* Stack must be aligned to 8 bytes: */
|
/* Stack must be aligned to 8 bytes: */
|
||||||
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1);
|
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - saved_arg_count, 1);
|
||||||
|
|
||||||
if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) {
|
if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) {
|
||||||
if ((size & SSIZE_OF(sw)) != 0) {
|
if ((size & SSIZE_OF(sw)) != 0) {
|
||||||
|
@ -1103,6 +1106,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
local_size = ((size + local_size + 0x7) & ~0x7) - size;
|
local_size = ((size + local_size + 0x7) & ~0x7) - size;
|
||||||
compiler->local_size = local_size;
|
compiler->local_size = local_size;
|
||||||
|
|
||||||
|
if (options & SLJIT_ENTER_REG_ARG)
|
||||||
|
arg_types = 0;
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
arg_types >>= SLJIT_ARG_SHIFT;
|
||||||
word_arg_count = 0;
|
word_arg_count = 0;
|
||||||
saved_arg_count = 0;
|
saved_arg_count = 0;
|
||||||
|
@ -1148,8 +1154,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
if (offset < 4 * sizeof(sljit_sw))
|
if (offset < 4 * sizeof(sljit_sw))
|
||||||
FAIL_IF(push_inst(compiler, MOV | RD(tmp) | (offset >> 2)));
|
FAIL_IF(push_inst(compiler, MOV | RD(tmp) | (offset >> 2)));
|
||||||
else
|
else
|
||||||
FAIL_IF(push_inst(compiler, data_transfer_insts[WORD_SIZE | LOAD_DATA] | 0x800000
|
FAIL_IF(push_inst(compiler, LDR | 0x800000 | RN(SLJIT_SP) | RD(tmp) | (offset + (sljit_uw)size - 4 * sizeof(sljit_sw))));
|
||||||
| RN(SLJIT_SP) | RD(tmp) | (offset + (sljit_uw)size - 4 * sizeof(sljit_sw))));
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1217,7 +1222,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *comp
|
||||||
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
||||||
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1);
|
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - SLJIT_KEPT_SAVEDS_COUNT(options), 1);
|
||||||
|
|
||||||
if ((size & SSIZE_OF(sw)) != 0 && (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG))
|
if ((size & SSIZE_OF(sw)) != 0 && (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG))
|
||||||
size += SSIZE_OF(sw);
|
size += SSIZE_OF(sw);
|
||||||
|
@ -1241,6 +1246,7 @@ static sljit_s32 emit_add_sp(struct sljit_compiler *compiler, sljit_uw imm)
|
||||||
static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit_s32 frame_size)
|
static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit_s32 frame_size)
|
||||||
{
|
{
|
||||||
sljit_s32 local_size, fscratches, fsaveds, i, tmp;
|
sljit_s32 local_size, fscratches, fsaveds, i, tmp;
|
||||||
|
sljit_s32 saveds_restore_start = SLJIT_S0 - SLJIT_KEPT_SAVEDS_COUNT(compiler->options);
|
||||||
sljit_s32 lr_dst = TMP_PC;
|
sljit_s32 lr_dst = TMP_PC;
|
||||||
sljit_uw reg_list;
|
sljit_uw reg_list;
|
||||||
|
|
||||||
|
@ -1277,8 +1283,11 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit
|
||||||
reg_list |= (sljit_uw)1 << reg_map[lr_dst];
|
reg_list |= (sljit_uw)1 << reg_map[lr_dst];
|
||||||
|
|
||||||
tmp = SLJIT_S0 - compiler->saveds;
|
tmp = SLJIT_S0 - compiler->saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--)
|
if (saveds_restore_start != tmp) {
|
||||||
|
for (i = saveds_restore_start; i > tmp; i--)
|
||||||
reg_list |= (sljit_uw)1 << reg_map[i];
|
reg_list |= (sljit_uw)1 << reg_map[i];
|
||||||
|
} else
|
||||||
|
saveds_restore_start = 0;
|
||||||
|
|
||||||
for (i = compiler->scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
for (i = compiler->scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
||||||
reg_list |= (sljit_uw)1 << reg_map[i];
|
reg_list |= (sljit_uw)1 << reg_map[i];
|
||||||
|
@ -1298,16 +1307,15 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit
|
||||||
if (reg_list == 0)
|
if (reg_list == 0)
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
if (compiler->saveds > 0) {
|
if (saveds_restore_start != 0) {
|
||||||
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[SLJIT_S0]));
|
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[saveds_restore_start]));
|
||||||
lr_dst = SLJIT_S0;
|
lr_dst = saveds_restore_start;
|
||||||
} else {
|
} else {
|
||||||
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[SLJIT_FIRST_SAVED_REG]));
|
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[SLJIT_FIRST_SAVED_REG]));
|
||||||
lr_dst = SLJIT_FIRST_SAVED_REG;
|
lr_dst = SLJIT_FIRST_SAVED_REG;
|
||||||
}
|
}
|
||||||
|
|
||||||
return push_inst(compiler, data_transfer_insts[WORD_SIZE | LOAD_DATA] | 0x800000
|
return push_inst(compiler, LDR | 0x800000 | RN(SLJIT_SP) | RD(lr_dst) | (sljit_uw)(frame_size - 2 * SSIZE_OF(sw)));
|
||||||
| RN(SLJIT_SP) | RD(lr_dst) | (sljit_uw)(frame_size - 2 * SSIZE_OF(sw)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (local_size > 0)
|
if (local_size > 0)
|
||||||
|
@ -1674,23 +1682,17 @@ static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit
|
||||||
sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg)
|
sljit_s32 arg, sljit_sw argw, sljit_s32 tmp_reg)
|
||||||
{
|
{
|
||||||
sljit_uw imm, offset_reg;
|
sljit_uw imm, offset_reg;
|
||||||
sljit_uw is_type1_transfer = IS_TYPE1_TRANSFER(flags);
|
sljit_sw mask = IS_TYPE1_TRANSFER(flags) ? 0xfff : 0xff;
|
||||||
|
|
||||||
SLJIT_ASSERT (arg & SLJIT_MEM);
|
SLJIT_ASSERT (arg & SLJIT_MEM);
|
||||||
SLJIT_ASSERT((arg & REG_MASK) != tmp_reg);
|
SLJIT_ASSERT((arg & REG_MASK) != tmp_reg || (arg == SLJIT_MEM1(tmp_reg) && argw >= -mask && argw <= mask));
|
||||||
|
|
||||||
if (!(arg & REG_MASK)) {
|
if (SLJIT_UNLIKELY(!(arg & REG_MASK))) {
|
||||||
if (is_type1_transfer) {
|
FAIL_IF(load_immediate(compiler, tmp_reg, (sljit_uw)(argw & ~mask)));
|
||||||
FAIL_IF(load_immediate(compiler, tmp_reg, (sljit_uw)argw & ~(sljit_uw)0xfff));
|
argw &= mask;
|
||||||
argw &= 0xfff;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
FAIL_IF(load_immediate(compiler, tmp_reg, (sljit_uw)argw & ~(sljit_uw)0xff));
|
|
||||||
argw &= 0xff;
|
|
||||||
}
|
|
||||||
|
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, tmp_reg,
|
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, tmp_reg,
|
||||||
is_type1_transfer ? argw : TYPE2_TRANSFER_IMM(argw)));
|
(mask == 0xff) ? TYPE2_TRANSFER_IMM(argw) : argw));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (arg & OFFS_REG_MASK) {
|
if (arg & OFFS_REG_MASK) {
|
||||||
|
@ -1698,72 +1700,53 @@ static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit
|
||||||
arg &= REG_MASK;
|
arg &= REG_MASK;
|
||||||
argw &= 0x3;
|
argw &= 0x3;
|
||||||
|
|
||||||
if (argw != 0 && !is_type1_transfer) {
|
if (argw != 0 && (mask == 0xff)) {
|
||||||
FAIL_IF(push_inst(compiler, ADD | RD(tmp_reg) | RN(arg) | RM(offset_reg) | ((sljit_uw)argw << 7)));
|
FAIL_IF(push_inst(compiler, ADD | RD(tmp_reg) | RN(arg) | RM(offset_reg) | ((sljit_uw)argw << 7)));
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, tmp_reg, TYPE2_TRANSFER_IMM(0)));
|
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, tmp_reg, TYPE2_TRANSFER_IMM(0)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Bit 25: RM is offset. */
|
/* Bit 25: RM is offset. */
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, arg,
|
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, arg,
|
||||||
RM(offset_reg) | (is_type1_transfer ? (1 << 25) : 0) | ((sljit_uw)argw << 7)));
|
RM(offset_reg) | (mask == 0xff ? 0 : (1 << 25)) | ((sljit_uw)argw << 7)));
|
||||||
}
|
}
|
||||||
|
|
||||||
arg &= REG_MASK;
|
arg &= REG_MASK;
|
||||||
|
|
||||||
if (is_type1_transfer) {
|
if (argw > mask) {
|
||||||
if (argw > 0xfff) {
|
imm = get_imm((sljit_uw)(argw & ~mask));
|
||||||
imm = get_imm((sljit_uw)argw & ~(sljit_uw)0xfff);
|
|
||||||
if (imm) {
|
if (imm) {
|
||||||
FAIL_IF(push_inst(compiler, ADD | RD(tmp_reg) | RN(arg) | imm));
|
FAIL_IF(push_inst(compiler, ADD | RD(tmp_reg) | RN(arg) | imm));
|
||||||
argw = argw & 0xfff;
|
argw = argw & mask;
|
||||||
arg = tmp_reg;
|
arg = tmp_reg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (argw < -0xfff) {
|
else if (argw < -mask) {
|
||||||
imm = get_imm((sljit_uw)-argw & ~(sljit_uw)0xfff);
|
imm = get_imm((sljit_uw)(-argw & ~mask));
|
||||||
if (imm) {
|
if (imm) {
|
||||||
FAIL_IF(push_inst(compiler, SUB | RD(tmp_reg) | RN(arg) | imm));
|
FAIL_IF(push_inst(compiler, SUB | RD(tmp_reg) | RN(arg) | imm));
|
||||||
argw = -(-argw & 0xfff);
|
argw = -(-argw & mask);
|
||||||
arg = tmp_reg;
|
arg = tmp_reg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argw >= 0 && argw <= 0xfff)
|
if (argw <= mask && argw >= -mask) {
|
||||||
|
if (argw >= 0) {
|
||||||
|
if (mask == 0xff)
|
||||||
|
argw = TYPE2_TRANSFER_IMM(argw);
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, arg, argw));
|
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, arg, argw));
|
||||||
|
|
||||||
if (argw < 0 && argw >= -0xfff)
|
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 0, reg, arg, -argw));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (argw > 0xff) {
|
|
||||||
imm = get_imm((sljit_uw)argw & ~(sljit_uw)0xff);
|
|
||||||
if (imm) {
|
|
||||||
FAIL_IF(push_inst(compiler, ADD | RD(tmp_reg) | RN(arg) | imm));
|
|
||||||
argw = argw & 0xff;
|
|
||||||
arg = tmp_reg;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (argw < -0xff) {
|
|
||||||
imm = get_imm((sljit_uw)-argw & ~(sljit_uw)0xff);
|
|
||||||
if (imm) {
|
|
||||||
FAIL_IF(push_inst(compiler, SUB | RD(tmp_reg) | RN(arg) | imm));
|
|
||||||
argw = -(-argw & 0xff);
|
|
||||||
arg = tmp_reg;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argw >= 0 && argw <= 0xff)
|
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, arg, TYPE2_TRANSFER_IMM(argw)));
|
|
||||||
|
|
||||||
if (argw < 0 && argw >= -0xff) {
|
|
||||||
argw = -argw;
|
argw = -argw;
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 0, reg, arg, TYPE2_TRANSFER_IMM(argw)));
|
|
||||||
}
|
if (mask == 0xff)
|
||||||
|
argw = TYPE2_TRANSFER_IMM(argw);
|
||||||
|
|
||||||
|
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 0, reg, arg, argw));
|
||||||
}
|
}
|
||||||
|
|
||||||
FAIL_IF(load_immediate(compiler, tmp_reg, (sljit_uw)argw));
|
FAIL_IF(load_immediate(compiler, tmp_reg, (sljit_uw)argw));
|
||||||
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, arg,
|
return push_inst(compiler, EMIT_DATA_TRANSFER(flags, 1, reg, arg,
|
||||||
RM(tmp_reg) | (is_type1_transfer ? (1 << 25) : 0)));
|
RM(tmp_reg) | (mask == 0xff ? 0 : (1 << 25))));
|
||||||
}
|
}
|
||||||
|
|
||||||
static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 inp_flags,
|
static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 inp_flags,
|
||||||
|
@ -1961,15 +1944,15 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compile
|
||||||
saved_reg_list[saved_reg_count++] = 1;
|
saved_reg_list[saved_reg_count++] = 1;
|
||||||
|
|
||||||
if (saved_reg_count > 0) {
|
if (saved_reg_count > 0) {
|
||||||
FAIL_IF(push_inst(compiler, 0xe52d0000 | (saved_reg_count >= 3 ? 16 : 8)
|
FAIL_IF(push_inst(compiler, STR | 0x2d0000 | (saved_reg_count >= 3 ? 16 : 8)
|
||||||
| (saved_reg_list[0] << 12) /* str rX, [sp, #-8/-16]! */));
|
| (saved_reg_list[0] << 12) /* str rX, [sp, #-8/-16]! */));
|
||||||
if (saved_reg_count >= 2) {
|
if (saved_reg_count >= 2) {
|
||||||
SLJIT_ASSERT(saved_reg_list[1] < 8);
|
SLJIT_ASSERT(saved_reg_list[1] < 8);
|
||||||
FAIL_IF(push_inst(compiler, 0xe58d0004 | (saved_reg_list[1] << 12) /* str rX, [sp, #4] */));
|
FAIL_IF(push_inst(compiler, STR | 0x8d0004 | (saved_reg_list[1] << 12) /* str rX, [sp, #4] */));
|
||||||
}
|
}
|
||||||
if (saved_reg_count >= 3) {
|
if (saved_reg_count >= 3) {
|
||||||
SLJIT_ASSERT(saved_reg_list[2] < 8);
|
SLJIT_ASSERT(saved_reg_list[2] < 8);
|
||||||
FAIL_IF(push_inst(compiler, 0xe58d0008 | (saved_reg_list[2] << 12) /* str rX, [sp, #8] */));
|
FAIL_IF(push_inst(compiler, STR | 0x8d0008 | (saved_reg_list[2] << 12) /* str rX, [sp, #8] */));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1983,13 +1966,13 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compile
|
||||||
if (saved_reg_count > 0) {
|
if (saved_reg_count > 0) {
|
||||||
if (saved_reg_count >= 3) {
|
if (saved_reg_count >= 3) {
|
||||||
SLJIT_ASSERT(saved_reg_list[2] < 8);
|
SLJIT_ASSERT(saved_reg_list[2] < 8);
|
||||||
FAIL_IF(push_inst(compiler, 0xe59d0008 | (saved_reg_list[2] << 12) /* ldr rX, [sp, #8] */));
|
FAIL_IF(push_inst(compiler, LDR | 0x8d0008 | (saved_reg_list[2] << 12) /* ldr rX, [sp, #8] */));
|
||||||
}
|
}
|
||||||
if (saved_reg_count >= 2) {
|
if (saved_reg_count >= 2) {
|
||||||
SLJIT_ASSERT(saved_reg_list[1] < 8);
|
SLJIT_ASSERT(saved_reg_list[1] < 8);
|
||||||
FAIL_IF(push_inst(compiler, 0xe59d0004 | (saved_reg_list[1] << 12) /* ldr rX, [sp, #4] */));
|
FAIL_IF(push_inst(compiler, LDR | 0x8d0004 | (saved_reg_list[1] << 12) /* ldr rX, [sp, #4] */));
|
||||||
}
|
}
|
||||||
return push_inst(compiler, 0xe49d0000 | (sljit_uw)(saved_reg_count >= 3 ? 16 : 8)
|
return push_inst(compiler, (LDR ^ (1 << 24)) | 0x8d0000 | (sljit_uw)(saved_reg_count >= 3 ? 16 : 8)
|
||||||
| (saved_reg_list[0] << 12) /* ldr rX, [sp], #8/16 */);
|
| (saved_reg_list[0] << 12) /* ldr rX, [sp], #8/16 */);
|
||||||
}
|
}
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
|
@ -2091,10 +2074,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compil
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, TMP_REG2, 0, src1, src1w, src2, src2w);
|
return sljit_emit_op2(compiler, op, TMP_REG2, 0, src1, src1w, src2, src2w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2370,7 +2350,6 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compil
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef FPU_LOAD
|
|
||||||
#undef EMIT_FPU_DATA_TRANSFER
|
#undef EMIT_FPU_DATA_TRANSFER
|
||||||
|
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
|
@ -2400,11 +2379,15 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
{
|
{
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case SLJIT_EQUAL:
|
case SLJIT_EQUAL:
|
||||||
case SLJIT_EQUAL_F64:
|
case SLJIT_F_EQUAL:
|
||||||
|
case SLJIT_ORDERED_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL: /* Not supported. */
|
||||||
return 0x00000000;
|
return 0x00000000;
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL:
|
case SLJIT_NOT_EQUAL:
|
||||||
case SLJIT_NOT_EQUAL_F64:
|
case SLJIT_F_NOT_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_NOT_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL: /* Not supported. */
|
||||||
return 0x10000000;
|
return 0x10000000;
|
||||||
|
|
||||||
case SLJIT_CARRY:
|
case SLJIT_CARRY:
|
||||||
|
@ -2413,7 +2396,6 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_LESS:
|
case SLJIT_LESS:
|
||||||
case SLJIT_LESS_F64:
|
|
||||||
return 0x30000000;
|
return 0x30000000;
|
||||||
|
|
||||||
case SLJIT_NOT_CARRY:
|
case SLJIT_NOT_CARRY:
|
||||||
|
@ -2422,27 +2404,33 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL:
|
case SLJIT_GREATER_EQUAL:
|
||||||
case SLJIT_GREATER_EQUAL_F64:
|
|
||||||
return 0x20000000;
|
return 0x20000000;
|
||||||
|
|
||||||
case SLJIT_GREATER:
|
case SLJIT_GREATER:
|
||||||
case SLJIT_GREATER_F64:
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
return 0x80000000;
|
return 0x80000000;
|
||||||
|
|
||||||
case SLJIT_LESS_EQUAL:
|
case SLJIT_LESS_EQUAL:
|
||||||
case SLJIT_LESS_EQUAL_F64:
|
case SLJIT_F_LESS_EQUAL:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
return 0x90000000;
|
return 0x90000000;
|
||||||
|
|
||||||
case SLJIT_SIG_LESS:
|
case SLJIT_SIG_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
return 0xb0000000;
|
return 0xb0000000;
|
||||||
|
|
||||||
case SLJIT_SIG_GREATER_EQUAL:
|
case SLJIT_SIG_GREATER_EQUAL:
|
||||||
|
case SLJIT_F_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
return 0xa0000000;
|
return 0xa0000000;
|
||||||
|
|
||||||
case SLJIT_SIG_GREATER:
|
case SLJIT_SIG_GREATER:
|
||||||
|
case SLJIT_F_GREATER:
|
||||||
|
case SLJIT_ORDERED_GREATER:
|
||||||
return 0xc0000000;
|
return 0xc0000000;
|
||||||
|
|
||||||
case SLJIT_SIG_LESS_EQUAL:
|
case SLJIT_SIG_LESS_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS_EQUAL:
|
||||||
return 0xd0000000;
|
return 0xd0000000;
|
||||||
|
|
||||||
case SLJIT_OVERFLOW:
|
case SLJIT_OVERFLOW:
|
||||||
|
@ -2450,7 +2438,7 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
return 0x10000000;
|
return 0x10000000;
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_UNORDERED_F64:
|
case SLJIT_UNORDERED:
|
||||||
return 0x60000000;
|
return 0x60000000;
|
||||||
|
|
||||||
case SLJIT_NOT_OVERFLOW:
|
case SLJIT_NOT_OVERFLOW:
|
||||||
|
@ -2458,11 +2446,18 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
return 0x00000000;
|
return 0x00000000;
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_ORDERED_F64:
|
case SLJIT_ORDERED:
|
||||||
return 0x70000000;
|
return 0x70000000;
|
||||||
|
|
||||||
|
case SLJIT_F_LESS:
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
|
return 0x40000000;
|
||||||
|
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
|
return 0x50000000;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
SLJIT_ASSERT(type >= SLJIT_JUMP && type <= SLJIT_CALL_CDECL);
|
SLJIT_ASSERT(type >= SLJIT_JUMP && type <= SLJIT_CALL_REG_ARG);
|
||||||
return 0xe0000000;
|
return 0xe0000000;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2639,7 +2634,7 @@ static sljit_s32 softfloat_call_with_args(struct sljit_compiler *compiler, sljit
|
||||||
}
|
}
|
||||||
FAIL_IF(push_inst(compiler, MOV | (offset << 10) | (word_arg_offset >> 2)));
|
FAIL_IF(push_inst(compiler, MOV | (offset << 10) | (word_arg_offset >> 2)));
|
||||||
} else
|
} else
|
||||||
FAIL_IF(push_inst(compiler, data_transfer_insts[WORD_SIZE] | 0x800000 | RN(SLJIT_SP) | (word_arg_offset << 10) | (offset - 4 * sizeof(sljit_sw))));
|
FAIL_IF(push_inst(compiler, STR | 0x800000 | RN(SLJIT_SP) | (word_arg_offset << 10) | (offset - 4 * sizeof(sljit_sw))));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -2718,17 +2713,14 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
||||||
|
|
||||||
#ifdef __SOFTFP__
|
#ifdef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG) {
|
||||||
PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space));
|
PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space));
|
||||||
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
||||||
|
|
||||||
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
jump = sljit_emit_jump(compiler, type);
|
jump = sljit_emit_jump(compiler, type);
|
||||||
PTR_FAIL_IF(jump == NULL);
|
PTR_FAIL_IF(jump == NULL);
|
||||||
|
|
||||||
|
@ -2748,21 +2740,21 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
||||||
PTR_FAIL_IF(softfloat_post_call_with_args(compiler, arg_types));
|
PTR_FAIL_IF(softfloat_post_call_with_args(compiler, arg_types));
|
||||||
return jump;
|
return jump;
|
||||||
#else /* !__SOFTFP__ */
|
}
|
||||||
|
#endif /* __SOFTFP__ */
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN) {
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
PTR_FAIL_IF(emit_stack_frame_release(compiler, -1));
|
PTR_FAIL_IF(emit_stack_frame_release(compiler, -1));
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
PTR_FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
PTR_FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
||||||
|
#endif /* !__SOFTFP__ */
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_jump(compiler, type);
|
return sljit_emit_jump(compiler, type);
|
||||||
#endif /* __SOFTFP__ */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw)
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw)
|
||||||
|
@ -2828,17 +2820,14 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __SOFTFP__
|
#ifdef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG) {
|
||||||
FAIL_IF(softfloat_call_with_args(compiler, arg_types, &src, &extra_space));
|
FAIL_IF(softfloat_call_with_args(compiler, arg_types, &src, &extra_space));
|
||||||
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
||||||
|
|
||||||
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
||||||
type = SLJIT_JUMP;
|
type = SLJIT_JUMP;
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
FAIL_IF(sljit_emit_ijump(compiler, type, src, srcw));
|
FAIL_IF(sljit_emit_ijump(compiler, type, src, srcw));
|
||||||
|
|
||||||
if (extra_space > 0) {
|
if (extra_space > 0) {
|
||||||
|
@ -2854,21 +2843,21 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
|
|
||||||
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
||||||
return softfloat_post_call_with_args(compiler, arg_types);
|
return softfloat_post_call_with_args(compiler, arg_types);
|
||||||
#else /* !__SOFTFP__ */
|
}
|
||||||
|
#endif /* __SOFTFP__ */
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN) {
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
FAIL_IF(emit_stack_frame_release(compiler, -1));
|
FAIL_IF(emit_stack_frame_release(compiler, -1));
|
||||||
type = SLJIT_JUMP;
|
type = SLJIT_JUMP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
||||||
|
#endif /* !__SOFTFP__ */
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_ijump(compiler, type, src, srcw);
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
#endif /* __SOFTFP__ */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
|
||||||
|
@ -2883,7 +2872,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
ADJUST_LOCAL_OFFSET(dst, dstw);
|
ADJUST_LOCAL_OFFSET(dst, dstw);
|
||||||
|
|
||||||
op = GET_OPCODE(op);
|
op = GET_OPCODE(op);
|
||||||
cc = get_cc(compiler, type & 0xff);
|
cc = get_cc(compiler, type);
|
||||||
dst_reg = FAST_IS_REG(dst) ? dst : TMP_REG1;
|
dst_reg = FAST_IS_REG(dst) ? dst : TMP_REG1;
|
||||||
|
|
||||||
if (op < SLJIT_ADD) {
|
if (op < SLJIT_ADD) {
|
||||||
|
@ -2923,7 +2912,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
||||||
|
|
||||||
dst_reg &= ~SLJIT_32;
|
dst_reg &= ~SLJIT_32;
|
||||||
|
|
||||||
cc = get_cc(compiler, type & 0xff);
|
cc = get_cc(compiler, type);
|
||||||
|
|
||||||
if (SLJIT_UNLIKELY(src & SLJIT_IMM)) {
|
if (SLJIT_UNLIKELY(src & SLJIT_IMM)) {
|
||||||
tmp = get_imm((sljit_uw)srcw);
|
tmp = get_imm((sljit_uw)srcw);
|
||||||
|
@ -2949,6 +2938,231 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
||||||
return push_inst(compiler, ((MOV | RD(dst_reg) | RM(src)) & ~COND_MASK) | cc);
|
return push_inst(compiler, ((MOV | RD(dst_reg) | RM(src)) & ~COND_MASK) | cc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static sljit_s32 update_mem_addr(struct sljit_compiler *compiler, sljit_s32 *mem, sljit_sw *memw, sljit_s32 max_offset)
|
||||||
|
{
|
||||||
|
sljit_s32 arg = *mem;
|
||||||
|
sljit_sw argw = *memw;
|
||||||
|
sljit_uw imm;
|
||||||
|
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
|
||||||
|
sljit_sw mask = max_offset >= 0x100 ? 0xfff : 0xff;
|
||||||
|
#else /* !SLJIT_CONFIG_ARM_V5 */
|
||||||
|
sljit_sw mask = 0xfff;
|
||||||
|
|
||||||
|
SLJIT_ASSERT(max_offset >= 0x100);
|
||||||
|
#endif /* SLJIT_CONFIG_ARM_V5 */
|
||||||
|
|
||||||
|
*mem = TMP_REG1;
|
||||||
|
|
||||||
|
if (SLJIT_UNLIKELY(arg & OFFS_REG_MASK)) {
|
||||||
|
*memw = 0;
|
||||||
|
return push_inst(compiler, ADD | RD(TMP_REG1) | RN(arg & REG_MASK) | RM(OFFS_REG(arg)) | ((sljit_uw)(argw & 0x3) << 7));
|
||||||
|
}
|
||||||
|
|
||||||
|
arg &= REG_MASK;
|
||||||
|
|
||||||
|
if (arg) {
|
||||||
|
if (argw <= max_offset && argw >= -mask) {
|
||||||
|
*mem = arg;
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (argw < 0) {
|
||||||
|
imm = get_imm((sljit_uw)(-argw & ~mask));
|
||||||
|
|
||||||
|
if (imm) {
|
||||||
|
*memw = -(-argw & mask);
|
||||||
|
return push_inst(compiler, SUB | RD(TMP_REG1) | RN(arg) | imm);
|
||||||
|
}
|
||||||
|
} else if ((argw & mask) <= max_offset) {
|
||||||
|
imm = get_imm((sljit_uw)(argw & ~mask));
|
||||||
|
|
||||||
|
if (imm) {
|
||||||
|
*memw = argw & mask;
|
||||||
|
return push_inst(compiler, ADD | RD(TMP_REG1) | RN(arg) | imm);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
imm = get_imm((sljit_uw)((argw | mask) + 1));
|
||||||
|
|
||||||
|
if (imm) {
|
||||||
|
*memw = (argw & mask) - (mask + 1);
|
||||||
|
return push_inst(compiler, ADD | RD(TMP_REG1) | RN(arg) | imm);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
imm = (sljit_uw)(argw & ~mask);
|
||||||
|
|
||||||
|
if ((argw & mask) > max_offset) {
|
||||||
|
imm += (sljit_uw)(mask + 1);
|
||||||
|
*memw = (argw & mask) - (mask + 1);
|
||||||
|
} else
|
||||||
|
*memw = argw & mask;
|
||||||
|
|
||||||
|
FAIL_IF(load_immediate(compiler, TMP_REG1, imm));
|
||||||
|
|
||||||
|
if (arg == 0)
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
|
return push_inst(compiler, ADD | RD(TMP_REG1) | RN(TMP_REG1) | RM(arg));
|
||||||
|
}
|
||||||
|
|
||||||
|
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
|
||||||
|
|
||||||
|
static sljit_s32 sljit_emit_mem_unaligned(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
|
sljit_s32 reg,
|
||||||
|
sljit_s32 mem, sljit_sw memw)
|
||||||
|
{
|
||||||
|
sljit_s32 flags;
|
||||||
|
sljit_s32 steps;
|
||||||
|
sljit_uw add, shift;
|
||||||
|
|
||||||
|
switch (type & 0xff) {
|
||||||
|
case SLJIT_MOV_U8:
|
||||||
|
case SLJIT_MOV_S8:
|
||||||
|
flags = BYTE_SIZE;
|
||||||
|
if (!(type & SLJIT_MEM_STORE))
|
||||||
|
flags |= LOAD_DATA;
|
||||||
|
if ((type & 0xff) == SLJIT_MOV_S8)
|
||||||
|
flags |= SIGNED;
|
||||||
|
|
||||||
|
return emit_op_mem(compiler, flags, reg, mem, memw, TMP_REG1);
|
||||||
|
|
||||||
|
case SLJIT_MOV_U16:
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xfff - 1));
|
||||||
|
flags = BYTE_SIZE;
|
||||||
|
steps = 1;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case SLJIT_MOV_S16:
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xff - 1));
|
||||||
|
flags = BYTE_SIZE | SIGNED;
|
||||||
|
steps = 1;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
if (type & SLJIT_MEM_ALIGNED_32) {
|
||||||
|
flags = WORD_SIZE;
|
||||||
|
if (!(type & SLJIT_MEM_STORE))
|
||||||
|
flags |= LOAD_DATA;
|
||||||
|
|
||||||
|
return emit_op_mem(compiler, flags, reg, mem, memw, TMP_REG1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(type & SLJIT_MEM_ALIGNED_16)) {
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xfff - 3));
|
||||||
|
flags = BYTE_SIZE;
|
||||||
|
steps = 3;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xff - 2));
|
||||||
|
|
||||||
|
add = 1;
|
||||||
|
if (memw < 0) {
|
||||||
|
add = 0;
|
||||||
|
memw = -memw;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_STORE) {
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(HALF_SIZE, add, reg, mem, TYPE2_TRANSFER_IMM(memw))));
|
||||||
|
FAIL_IF(push_inst(compiler, MOV | RD(TMP_REG2) | RM(reg) | (16 << 7) | (2 << 4)));
|
||||||
|
|
||||||
|
if (!add) {
|
||||||
|
memw -= 2;
|
||||||
|
if (memw <= 0) {
|
||||||
|
memw = -memw;
|
||||||
|
add = 1;
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
memw += 2;
|
||||||
|
|
||||||
|
return push_inst(compiler, EMIT_DATA_TRANSFER(HALF_SIZE, add, TMP_REG2, mem, TYPE2_TRANSFER_IMM(memw)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (reg == mem) {
|
||||||
|
FAIL_IF(push_inst(compiler, MOV | RD(TMP_REG1) | RM(mem)));
|
||||||
|
mem = TMP_REG1;
|
||||||
|
}
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(HALF_SIZE | LOAD_DATA, add, reg, mem, TYPE2_TRANSFER_IMM(memw))));
|
||||||
|
|
||||||
|
if (!add) {
|
||||||
|
memw -= 2;
|
||||||
|
if (memw <= 0) {
|
||||||
|
memw = -memw;
|
||||||
|
add = 1;
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
memw += 2;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(HALF_SIZE | LOAD_DATA, add, TMP_REG2, mem, TYPE2_TRANSFER_IMM(memw))));
|
||||||
|
return push_inst(compiler, ORR | RD(reg) | RN(reg) | RM(TMP_REG2) | (16 << 7));
|
||||||
|
}
|
||||||
|
|
||||||
|
SLJIT_ASSERT(steps > 0);
|
||||||
|
|
||||||
|
add = 1;
|
||||||
|
if (memw < 0) {
|
||||||
|
add = 0;
|
||||||
|
memw = -memw;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_STORE) {
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(BYTE_SIZE, add, reg, mem, memw)));
|
||||||
|
FAIL_IF(push_inst(compiler, MOV | RD(TMP_REG2) | RM(reg) | (8 << 7) | (2 << 4)));
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
if (!add) {
|
||||||
|
memw -= 1;
|
||||||
|
if (memw == 0)
|
||||||
|
add = 1;
|
||||||
|
} else
|
||||||
|
memw += 1;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(BYTE_SIZE, add, TMP_REG2, mem, memw)));
|
||||||
|
|
||||||
|
if (--steps == 0)
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, MOV | RD(TMP_REG2) | RM(TMP_REG2) | (8 << 7) | (2 << 4)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (reg == mem) {
|
||||||
|
FAIL_IF(push_inst(compiler, MOV | RD(TMP_REG1) | RM(mem)));
|
||||||
|
mem = TMP_REG1;
|
||||||
|
}
|
||||||
|
|
||||||
|
shift = 8;
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(BYTE_SIZE | LOAD_DATA, add, reg, mem, memw)));
|
||||||
|
|
||||||
|
do {
|
||||||
|
if (!add) {
|
||||||
|
memw -= 1;
|
||||||
|
if (memw == 0)
|
||||||
|
add = 1;
|
||||||
|
} else
|
||||||
|
memw += 1;
|
||||||
|
|
||||||
|
if (steps > 1) {
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(BYTE_SIZE | LOAD_DATA, add, TMP_REG2, mem, memw)));
|
||||||
|
FAIL_IF(push_inst(compiler, ORR | RD(reg) | RN(reg) | RM(TMP_REG2) | (shift << 7)));
|
||||||
|
shift += 8;
|
||||||
|
}
|
||||||
|
} while (--steps != 0);
|
||||||
|
|
||||||
|
flags |= LOAD_DATA;
|
||||||
|
|
||||||
|
if (flags & SIGNED)
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(flags, add, TMP_REG2, mem, TYPE2_TRANSFER_IMM(memw))));
|
||||||
|
else
|
||||||
|
FAIL_IF(push_inst(compiler, EMIT_DATA_TRANSFER(flags, add, TMP_REG2, mem, memw)));
|
||||||
|
|
||||||
|
return push_inst(compiler, ORR | RD(reg) | RN(reg) | RM(TMP_REG2) | (shift << 7));
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* SLJIT_CONFIG_ARM_V5 */
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 reg,
|
sljit_s32 reg,
|
||||||
sljit_s32 mem, sljit_sw memw)
|
sljit_s32 mem, sljit_sw memw)
|
||||||
|
@ -2959,6 +3173,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compile
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED)
|
||||||
|
return sljit_emit_mem_unaligned(compiler, type, reg, mem, memw);
|
||||||
|
|
||||||
is_type1_transfer = 1;
|
is_type1_transfer = 1;
|
||||||
|
|
||||||
switch (type & 0xff) {
|
switch (type & 0xff) {
|
||||||
|
@ -3054,6 +3271,106 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compile
|
||||||
return push_inst(compiler, inst | TYPE2_TRANSFER_IMM((sljit_uw)memw));
|
return push_inst(compiler, inst | TYPE2_TRANSFER_IMM((sljit_uw)memw));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
|
sljit_s32 freg,
|
||||||
|
sljit_s32 mem, sljit_sw memw)
|
||||||
|
{
|
||||||
|
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
|
||||||
|
sljit_s32 max_offset;
|
||||||
|
sljit_s32 dst;
|
||||||
|
#endif /* SLJIT_CONFIG_ARM_V5 */
|
||||||
|
|
||||||
|
CHECK_ERROR();
|
||||||
|
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
||||||
|
|
||||||
|
if (type & (SLJIT_MEM_PRE | SLJIT_MEM_POST))
|
||||||
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_ALIGNED_32)
|
||||||
|
return emit_fop_mem(compiler, ((type ^ SLJIT_32) & SLJIT_32) | ((type & SLJIT_MEM_STORE) ? 0 : FPU_LOAD), freg, mem, memw);
|
||||||
|
|
||||||
|
#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
|
||||||
|
if (type & SLJIT_MEM_STORE) {
|
||||||
|
FAIL_IF(push_inst(compiler, VMOV | (1 << 20) | VN(freg) | RD(TMP_REG2)));
|
||||||
|
|
||||||
|
if (type & SLJIT_32)
|
||||||
|
return sljit_emit_mem_unaligned(compiler, SLJIT_MOV | SLJIT_MEM_STORE | (type & SLJIT_MEM_ALIGNED_16), TMP_REG2, mem, memw);
|
||||||
|
|
||||||
|
max_offset = 0xfff - 7;
|
||||||
|
if (type & SLJIT_MEM_ALIGNED_16)
|
||||||
|
max_offset++;
|
||||||
|
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, max_offset));
|
||||||
|
mem |= SLJIT_MEM;
|
||||||
|
|
||||||
|
FAIL_IF(sljit_emit_mem_unaligned(compiler, SLJIT_MOV | SLJIT_MEM_STORE | (type & SLJIT_MEM_ALIGNED_16), TMP_REG2, mem, memw));
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, VMOV | (1 << 20) | VN(freg) | 0x80 | RD(TMP_REG2)));
|
||||||
|
return sljit_emit_mem_unaligned(compiler, SLJIT_MOV | SLJIT_MEM_STORE | (type & SLJIT_MEM_ALIGNED_16), TMP_REG2, mem, memw + 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
max_offset = (type & SLJIT_32) ? 0xfff - 3 : 0xfff - 7;
|
||||||
|
if (type & SLJIT_MEM_ALIGNED_16)
|
||||||
|
max_offset++;
|
||||||
|
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, max_offset));
|
||||||
|
|
||||||
|
dst = TMP_REG1;
|
||||||
|
|
||||||
|
/* Stack offset adjustment is not needed because dst
|
||||||
|
is not stored on the stack when mem is SLJIT_SP. */
|
||||||
|
|
||||||
|
if (mem == TMP_REG1) {
|
||||||
|
dst = SLJIT_R3;
|
||||||
|
|
||||||
|
if (compiler->scratches >= 4)
|
||||||
|
FAIL_IF(push_inst(compiler, STR | (1 << 21) | RN(SLJIT_SP) | RD(SLJIT_R3) | 8));
|
||||||
|
}
|
||||||
|
|
||||||
|
mem |= SLJIT_MEM;
|
||||||
|
|
||||||
|
FAIL_IF(sljit_emit_mem_unaligned(compiler, SLJIT_MOV | (type & SLJIT_MEM_ALIGNED_16), dst, mem, memw));
|
||||||
|
FAIL_IF(push_inst(compiler, VMOV | VN(freg) | RD(dst)));
|
||||||
|
|
||||||
|
if (!(type & SLJIT_32)) {
|
||||||
|
FAIL_IF(sljit_emit_mem_unaligned(compiler, SLJIT_MOV | (type & SLJIT_MEM_ALIGNED_16), dst, mem, memw + 4));
|
||||||
|
FAIL_IF(push_inst(compiler, VMOV | VN(freg) | 0x80 | RD(dst)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dst == SLJIT_R3 && compiler->scratches >= 4)
|
||||||
|
FAIL_IF(push_inst(compiler, (LDR ^ (0x1 << 24)) | (0x1 << 23) | RN(SLJIT_SP) | RD(SLJIT_R3) | 8));
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
#else /* !SLJIT_CONFIG_ARM_V5 */
|
||||||
|
if (type & SLJIT_MEM_STORE) {
|
||||||
|
FAIL_IF(push_inst(compiler, VMOV | (1 << 20) | VN(freg) | RD(TMP_REG2)));
|
||||||
|
|
||||||
|
if (type & SLJIT_32)
|
||||||
|
return emit_op_mem(compiler, WORD_SIZE, TMP_REG2, mem, memw, TMP_REG1);
|
||||||
|
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xfff - 4));
|
||||||
|
mem |= SLJIT_MEM;
|
||||||
|
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, mem, memw, TMP_REG1));
|
||||||
|
FAIL_IF(push_inst(compiler, VMOV | (1 << 20) | VN(freg) | 0x80 | RD(TMP_REG2)));
|
||||||
|
return emit_op_mem(compiler, WORD_SIZE, TMP_REG2, mem, memw + 4, TMP_REG1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type & SLJIT_32) {
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE | LOAD_DATA, TMP_REG2, mem, memw, TMP_REG1));
|
||||||
|
return push_inst(compiler, VMOV | VN(freg) | RD(TMP_REG2));
|
||||||
|
}
|
||||||
|
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xfff - 4));
|
||||||
|
mem |= SLJIT_MEM;
|
||||||
|
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE | LOAD_DATA, TMP_REG2, mem, memw, TMP_REG1));
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE | LOAD_DATA, TMP_REG1, mem, memw + 4, TMP_REG1));
|
||||||
|
return push_inst(compiler, VMOV2 | VM(freg) | RD(TMP_REG2) | RN(TMP_REG1));
|
||||||
|
#endif /* SLJIT_CONFIG_ARM_V5 */
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef FPU_LOAD
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
|
SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
|
||||||
{
|
{
|
||||||
struct sljit_const *const_;
|
struct sljit_const *const_;
|
||||||
|
|
|
@ -137,8 +137,6 @@ static const sljit_u8 freg_map[SLJIT_NUMBER_OF_FLOAT_REGISTERS + 3] = {
|
||||||
#define UDIV 0x9ac00800
|
#define UDIV 0x9ac00800
|
||||||
#define UMULH 0x9bc03c00
|
#define UMULH 0x9bc03c00
|
||||||
|
|
||||||
/* dest_reg is the absolute name of the register
|
|
||||||
Useful for reordering instructions in the delay slot. */
|
|
||||||
static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins)
|
static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins)
|
||||||
{
|
{
|
||||||
sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
|
sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
|
||||||
|
@ -924,14 +922,14 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
||||||
{
|
{
|
||||||
sljit_s32 prev, fprev, saved_regs_size, i, tmp;
|
sljit_s32 prev, fprev, saved_regs_size, i, tmp;
|
||||||
sljit_s32 word_arg_count = 0;
|
sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options);
|
||||||
sljit_ins offs;
|
sljit_ins offs;
|
||||||
|
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
||||||
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 2);
|
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - saved_arg_count, 2);
|
||||||
saved_regs_size += GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, SSIZE_OF(f64));
|
saved_regs_size += GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, SSIZE_OF(f64));
|
||||||
|
|
||||||
local_size = (local_size + saved_regs_size + 0xf) & ~0xf;
|
local_size = (local_size + saved_regs_size + 0xf) & ~0xf;
|
||||||
|
@ -954,7 +952,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
prev = -1;
|
prev = -1;
|
||||||
|
|
||||||
tmp = SLJIT_S0 - saveds;
|
tmp = SLJIT_S0 - saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--) {
|
for (i = SLJIT_S0 - saved_arg_count; i > tmp; i--) {
|
||||||
if (prev == -1) {
|
if (prev == -1) {
|
||||||
prev = i;
|
prev = i;
|
||||||
continue;
|
continue;
|
||||||
|
@ -1003,24 +1001,28 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
if (prev != -1)
|
if (prev != -1)
|
||||||
FAIL_IF(push_inst(compiler, STRI | RT(prev) | RN(SLJIT_SP) | (offs >> 5) | ((fprev == -1) ? (1 << 10) : 0)));
|
FAIL_IF(push_inst(compiler, STRI | RT(prev) | RN(SLJIT_SP) | (offs >> 5) | ((fprev == -1) ? (1 << 10) : 0)));
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (local_size > 4096)
|
if (local_size > 4096)
|
||||||
FAIL_IF(push_inst(compiler, SUBI | RD(SLJIT_SP) | RN(SLJIT_SP) | (1 << 10) | (1 << 22)));
|
FAIL_IF(push_inst(compiler, SUBI | RD(SLJIT_SP) | RN(SLJIT_SP) | (1 << 10) | (1 << 22)));
|
||||||
#endif /* _WIN32 */
|
#endif /* _WIN32 */
|
||||||
|
|
||||||
tmp = 0;
|
if (!(options & SLJIT_ENTER_REG_ARG)) {
|
||||||
while (arg_types > 0) {
|
arg_types >>= SLJIT_ARG_SHIFT;
|
||||||
|
saved_arg_count = 0;
|
||||||
|
tmp = SLJIT_R0;
|
||||||
|
|
||||||
|
while (arg_types) {
|
||||||
if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) {
|
if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) {
|
||||||
if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) {
|
if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) {
|
||||||
FAIL_IF(push_inst(compiler, ORR | RD(SLJIT_S0 - tmp) | RN(TMP_ZERO) | RM(SLJIT_R0 + word_arg_count)));
|
FAIL_IF(push_inst(compiler, ORR | RD(SLJIT_S0 - saved_arg_count) | RN(TMP_ZERO) | RM(tmp)));
|
||||||
|
saved_arg_count++;
|
||||||
|
}
|
||||||
tmp++;
|
tmp++;
|
||||||
}
|
}
|
||||||
word_arg_count++;
|
|
||||||
}
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
arg_types >>= SLJIT_ARG_SHIFT;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (local_size > 4096) {
|
if (local_size > 4096) {
|
||||||
|
@ -1100,7 +1102,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *comp
|
||||||
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
||||||
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 2);
|
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - SLJIT_KEPT_SAVEDS_COUNT(options), 2);
|
||||||
saved_regs_size += GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, SSIZE_OF(f64));
|
saved_regs_size += GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, SSIZE_OF(f64));
|
||||||
|
|
||||||
compiler->local_size = (local_size + saved_regs_size + 0xf) & ~0xf;
|
compiler->local_size = (local_size + saved_regs_size + 0xf) & ~0xf;
|
||||||
|
@ -1137,7 +1139,7 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
prev = -1;
|
prev = -1;
|
||||||
|
|
||||||
tmp = SLJIT_S0 - compiler->saveds;
|
tmp = SLJIT_S0 - compiler->saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--) {
|
for (i = SLJIT_S0 - SLJIT_KEPT_SAVEDS_COUNT(compiler->options); i > tmp; i--) {
|
||||||
if (prev == -1) {
|
if (prev == -1) {
|
||||||
prev = i;
|
prev = i;
|
||||||
continue;
|
continue;
|
||||||
|
@ -1392,10 +1394,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compil
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w);
|
return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1550,10 +1549,9 @@ static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_f64_from_sw(struct sljit_comp
|
||||||
emit_op_mem(compiler, ((GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32) ? INT_SIZE : WORD_SIZE), TMP_REG1, src, srcw, TMP_REG1);
|
emit_op_mem(compiler, ((GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32) ? INT_SIZE : WORD_SIZE), TMP_REG1, src, srcw, TMP_REG1);
|
||||||
src = TMP_REG1;
|
src = TMP_REG1;
|
||||||
} else if (src & SLJIT_IMM) {
|
} else if (src & SLJIT_IMM) {
|
||||||
#if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
|
|
||||||
if (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32)
|
if (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32)
|
||||||
srcw = (sljit_s32)srcw;
|
srcw = (sljit_s32)srcw;
|
||||||
#endif
|
|
||||||
FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
|
FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
|
||||||
src = TMP_REG1;
|
src = TMP_REG1;
|
||||||
}
|
}
|
||||||
|
@ -1699,11 +1697,15 @@ static sljit_ins get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
{
|
{
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case SLJIT_EQUAL:
|
case SLJIT_EQUAL:
|
||||||
case SLJIT_EQUAL_F64:
|
case SLJIT_F_EQUAL:
|
||||||
|
case SLJIT_ORDERED_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL: /* Not supported. */
|
||||||
return 0x1;
|
return 0x1;
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL:
|
case SLJIT_NOT_EQUAL:
|
||||||
case SLJIT_NOT_EQUAL_F64:
|
case SLJIT_F_NOT_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_NOT_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL: /* Not supported. */
|
||||||
return 0x0;
|
return 0x0;
|
||||||
|
|
||||||
case SLJIT_CARRY:
|
case SLJIT_CARRY:
|
||||||
|
@ -1712,7 +1714,6 @@ static sljit_ins get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_LESS:
|
case SLJIT_LESS:
|
||||||
case SLJIT_LESS_F64:
|
|
||||||
return 0x2;
|
return 0x2;
|
||||||
|
|
||||||
case SLJIT_NOT_CARRY:
|
case SLJIT_NOT_CARRY:
|
||||||
|
@ -1721,27 +1722,33 @@ static sljit_ins get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL:
|
case SLJIT_GREATER_EQUAL:
|
||||||
case SLJIT_GREATER_EQUAL_F64:
|
|
||||||
return 0x3;
|
return 0x3;
|
||||||
|
|
||||||
case SLJIT_GREATER:
|
case SLJIT_GREATER:
|
||||||
case SLJIT_GREATER_F64:
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
return 0x9;
|
return 0x9;
|
||||||
|
|
||||||
case SLJIT_LESS_EQUAL:
|
case SLJIT_LESS_EQUAL:
|
||||||
case SLJIT_LESS_EQUAL_F64:
|
case SLJIT_F_LESS_EQUAL:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
return 0x8;
|
return 0x8;
|
||||||
|
|
||||||
case SLJIT_SIG_LESS:
|
case SLJIT_SIG_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
return 0xa;
|
return 0xa;
|
||||||
|
|
||||||
case SLJIT_SIG_GREATER_EQUAL:
|
case SLJIT_SIG_GREATER_EQUAL:
|
||||||
|
case SLJIT_F_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
return 0xb;
|
return 0xb;
|
||||||
|
|
||||||
case SLJIT_SIG_GREATER:
|
case SLJIT_SIG_GREATER:
|
||||||
|
case SLJIT_F_GREATER:
|
||||||
|
case SLJIT_ORDERED_GREATER:
|
||||||
return 0xd;
|
return 0xd;
|
||||||
|
|
||||||
case SLJIT_SIG_LESS_EQUAL:
|
case SLJIT_SIG_LESS_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS_EQUAL:
|
||||||
return 0xc;
|
return 0xc;
|
||||||
|
|
||||||
case SLJIT_OVERFLOW:
|
case SLJIT_OVERFLOW:
|
||||||
|
@ -1749,7 +1756,7 @@ static sljit_ins get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
return 0x0;
|
return 0x0;
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_UNORDERED_F64:
|
case SLJIT_UNORDERED:
|
||||||
return 0x7;
|
return 0x7;
|
||||||
|
|
||||||
case SLJIT_NOT_OVERFLOW:
|
case SLJIT_NOT_OVERFLOW:
|
||||||
|
@ -1757,9 +1764,16 @@ static sljit_ins get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
return 0x1;
|
return 0x1;
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_ORDERED_F64:
|
case SLJIT_ORDERED:
|
||||||
return 0x6;
|
return 0x6;
|
||||||
|
|
||||||
|
case SLJIT_F_LESS:
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
|
return 0x5;
|
||||||
|
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
|
return 0x4;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
SLJIT_UNREACHABLE();
|
SLJIT_UNREACHABLE();
|
||||||
return 0xe;
|
return 0xe;
|
||||||
|
@ -1820,11 +1834,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_jump(compiler, type);
|
return sljit_emit_jump(compiler, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1914,11 +1924,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
type = SLJIT_JUMP;
|
type = SLJIT_JUMP;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_ijump(compiler, type, src, srcw);
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1933,7 +1939,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, type));
|
CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, type));
|
||||||
ADJUST_LOCAL_OFFSET(dst, dstw);
|
ADJUST_LOCAL_OFFSET(dst, dstw);
|
||||||
|
|
||||||
cc = get_cc(compiler, type & 0xff);
|
cc = get_cc(compiler, type);
|
||||||
dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1;
|
dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1;
|
||||||
|
|
||||||
if (GET_OPCODE(op) < SLJIT_ADD) {
|
if (GET_OPCODE(op) < SLJIT_ADD) {
|
||||||
|
@ -1988,7 +1994,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
||||||
srcw = 0;
|
srcw = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
cc = get_cc(compiler, type & 0xff);
|
cc = get_cc(compiler, type);
|
||||||
dst_reg &= ~SLJIT_32;
|
dst_reg &= ~SLJIT_32;
|
||||||
|
|
||||||
return push_inst(compiler, (CSEL ^ inv_bits) | (cc << 12) | RD(dst_reg) | RN(dst_reg) | RM(src));
|
return push_inst(compiler, (CSEL ^ inv_bits) | (cc << 12) | RD(dst_reg) | RN(dst_reg) | RM(src));
|
||||||
|
@ -2003,6 +2009,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compile
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED)
|
||||||
|
return sljit_emit_mem_unaligned(compiler, type, reg, mem, memw);
|
||||||
|
|
||||||
if ((mem & OFFS_REG_MASK) || (memw > 255 || memw < -256))
|
if ((mem & OFFS_REG_MASK) || (memw > 255 || memw < -256))
|
||||||
return SLJIT_ERR_UNSUPPORTED;
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
@ -2057,6 +2066,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compil
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED)
|
||||||
|
return sljit_emit_fmem_unaligned(compiler, type, freg, mem, memw);
|
||||||
|
|
||||||
if ((mem & OFFS_REG_MASK) || (memw > 255 || memw < -256))
|
if ((mem & OFFS_REG_MASK) || (memw > 255 || memw < -256))
|
||||||
return SLJIT_ERR_UNSUPPORTED;
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
|
|
@ -890,8 +890,8 @@ static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, s
|
||||||
#define HALF_SIZE 0x08
|
#define HALF_SIZE 0x08
|
||||||
#define PRELOAD 0x0c
|
#define PRELOAD 0x0c
|
||||||
|
|
||||||
#define IS_WORD_SIZE(flags) (!(flags & (BYTE_SIZE | HALF_SIZE)))
|
#define IS_WORD_SIZE(flags) (!((flags) & (BYTE_SIZE | HALF_SIZE)))
|
||||||
#define OFFSET_CHECK(imm, shift) (!(argw & ~(imm << shift)))
|
#define ALIGN_CHECK(argw, imm, shift) (!((argw) & ~((imm) << (shift))))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
1st letter:
|
1st letter:
|
||||||
|
@ -993,8 +993,7 @@ static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit
|
||||||
sljit_uw tmp;
|
sljit_uw tmp;
|
||||||
|
|
||||||
SLJIT_ASSERT(arg & SLJIT_MEM);
|
SLJIT_ASSERT(arg & SLJIT_MEM);
|
||||||
SLJIT_ASSERT((arg & REG_MASK) != tmp_reg);
|
SLJIT_ASSERT((arg & REG_MASK) != tmp_reg || (arg == SLJIT_MEM1(tmp_reg) && argw >= -0xff && argw <= 0xfff));
|
||||||
arg &= ~SLJIT_MEM;
|
|
||||||
|
|
||||||
if (SLJIT_UNLIKELY(!(arg & REG_MASK))) {
|
if (SLJIT_UNLIKELY(!(arg & REG_MASK))) {
|
||||||
tmp = get_imm((sljit_uw)argw & ~(sljit_uw)0xfff);
|
tmp = get_imm((sljit_uw)argw & ~(sljit_uw)0xfff);
|
||||||
|
@ -1012,15 +1011,17 @@ static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit
|
||||||
if (SLJIT_UNLIKELY(arg & OFFS_REG_MASK)) {
|
if (SLJIT_UNLIKELY(arg & OFFS_REG_MASK)) {
|
||||||
argw &= 0x3;
|
argw &= 0x3;
|
||||||
other_r = OFFS_REG(arg);
|
other_r = OFFS_REG(arg);
|
||||||
arg &= 0xf;
|
arg &= REG_MASK;
|
||||||
|
|
||||||
if (!argw && IS_3_LO_REGS(reg, arg, other_r))
|
if (!argw && IS_3_LO_REGS(reg, arg, other_r))
|
||||||
return push_inst16(compiler, sljit_mem16[flags] | RD3(reg) | RN3(arg) | RM3(other_r));
|
return push_inst16(compiler, sljit_mem16[flags] | RD3(reg) | RN3(arg) | RM3(other_r));
|
||||||
return push_inst32(compiler, sljit_mem32[flags] | RT4(reg) | RN4(arg) | RM4(other_r) | ((sljit_ins)argw << 4));
|
return push_inst32(compiler, sljit_mem32[flags] | RT4(reg) | RN4(arg) | RM4(other_r) | ((sljit_ins)argw << 4));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
arg &= REG_MASK;
|
||||||
|
|
||||||
if (argw > 0xfff) {
|
if (argw > 0xfff) {
|
||||||
tmp = get_imm((sljit_uw)argw & ~(sljit_uw)0xfff);
|
tmp = get_imm((sljit_uw)(argw & ~0xfff));
|
||||||
if (tmp != INVALID_IMM) {
|
if (tmp != INVALID_IMM) {
|
||||||
push_inst32(compiler, ADD_WI | RD4(tmp_reg) | RN4(arg) | tmp);
|
push_inst32(compiler, ADD_WI | RD4(tmp_reg) | RN4(arg) | tmp);
|
||||||
arg = tmp_reg;
|
arg = tmp_reg;
|
||||||
|
@ -1028,7 +1029,7 @@ static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (argw < -0xff) {
|
else if (argw < -0xff) {
|
||||||
tmp = get_imm((sljit_uw)-argw & ~(sljit_uw)0xff);
|
tmp = get_imm((sljit_uw)(-argw & ~0xff));
|
||||||
if (tmp != INVALID_IMM) {
|
if (tmp != INVALID_IMM) {
|
||||||
push_inst32(compiler, SUB_WI | RD4(tmp_reg) | RN4(arg) | tmp);
|
push_inst32(compiler, SUB_WI | RD4(tmp_reg) | RN4(arg) | tmp);
|
||||||
arg = tmp_reg;
|
arg = tmp_reg;
|
||||||
|
@ -1036,27 +1037,28 @@ static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 16 bit instruction forms. */
|
||||||
if (IS_2_LO_REGS(reg, arg) && sljit_mem16_imm5[flags]) {
|
if (IS_2_LO_REGS(reg, arg) && sljit_mem16_imm5[flags]) {
|
||||||
tmp = 3;
|
tmp = 3;
|
||||||
if (IS_WORD_SIZE(flags)) {
|
if (IS_WORD_SIZE(flags)) {
|
||||||
if (OFFSET_CHECK(0x1f, 2))
|
if (ALIGN_CHECK(argw, 0x1f, 2))
|
||||||
tmp = 2;
|
tmp = 2;
|
||||||
}
|
}
|
||||||
else if (flags & BYTE_SIZE)
|
else if (flags & BYTE_SIZE)
|
||||||
{
|
{
|
||||||
if (OFFSET_CHECK(0x1f, 0))
|
if (ALIGN_CHECK(argw, 0x1f, 0))
|
||||||
tmp = 0;
|
tmp = 0;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
SLJIT_ASSERT(flags & HALF_SIZE);
|
SLJIT_ASSERT(flags & HALF_SIZE);
|
||||||
if (OFFSET_CHECK(0x1f, 1))
|
if (ALIGN_CHECK(argw, 0x1f, 1))
|
||||||
tmp = 1;
|
tmp = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tmp < 3)
|
if (tmp < 3)
|
||||||
return push_inst16(compiler, sljit_mem16_imm5[flags] | RD3(reg) | RN3(arg) | ((sljit_ins)argw << (6 - tmp)));
|
return push_inst16(compiler, sljit_mem16_imm5[flags] | RD3(reg) | RN3(arg) | ((sljit_ins)argw << (6 - tmp)));
|
||||||
}
|
}
|
||||||
else if (SLJIT_UNLIKELY(arg == SLJIT_SP) && IS_WORD_SIZE(flags) && OFFSET_CHECK(0xff, 2) && reg_map[reg] <= 7) {
|
else if (SLJIT_UNLIKELY(arg == SLJIT_SP) && IS_WORD_SIZE(flags) && ALIGN_CHECK(argw, 0xff, 2) && reg_map[reg] <= 7) {
|
||||||
/* SP based immediate. */
|
/* SP based immediate. */
|
||||||
return push_inst16(compiler, STR_SP | (sljit_ins)((flags & STORE) ? 0 : 0x800) | RDN3(reg) | ((sljit_ins)argw >> 2));
|
return push_inst16(compiler, STR_SP | (sljit_ins)((flags & STORE) ? 0 : 0x800) | RDN3(reg) | ((sljit_ins)argw >> 2));
|
||||||
}
|
}
|
||||||
|
@ -1074,6 +1076,9 @@ static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit
|
||||||
return push_inst32(compiler, sljit_mem32[flags] | RT4(reg) | RN4(arg) | RM4(tmp_reg));
|
return push_inst32(compiler, sljit_mem32[flags] | RT4(reg) | RN4(arg) | RM4(tmp_reg));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#undef ALIGN_CHECK
|
||||||
|
#undef IS_WORD_SIZE
|
||||||
|
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
/* Entry, exit */
|
/* Entry, exit */
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
|
@ -1082,7 +1087,8 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,
|
sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,
|
||||||
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
||||||
{
|
{
|
||||||
sljit_s32 size, i, tmp, word_arg_count, saved_arg_count;
|
sljit_s32 size, i, tmp, word_arg_count;
|
||||||
|
sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options);
|
||||||
sljit_uw offset;
|
sljit_uw offset;
|
||||||
sljit_uw imm = 0;
|
sljit_uw imm = 0;
|
||||||
#ifdef __SOFTFP__
|
#ifdef __SOFTFP__
|
||||||
|
@ -1098,7 +1104,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
tmp = SLJIT_S0 - saveds;
|
tmp = SLJIT_S0 - saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--)
|
for (i = SLJIT_S0 - saved_arg_count; i > tmp; i--)
|
||||||
imm |= (sljit_uw)1 << reg_map[i];
|
imm |= (sljit_uw)1 << reg_map[i];
|
||||||
|
|
||||||
for (i = scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
for (i = scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
||||||
|
@ -1110,7 +1116,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
: push_inst16(compiler, PUSH | (1 << 8) | imm));
|
: push_inst16(compiler, PUSH | (1 << 8) | imm));
|
||||||
|
|
||||||
/* Stack must be aligned to 8 bytes: (LR, R4) */
|
/* Stack must be aligned to 8 bytes: (LR, R4) */
|
||||||
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1);
|
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - saved_arg_count, 1);
|
||||||
|
|
||||||
if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) {
|
if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) {
|
||||||
if ((size & SSIZE_OF(sw)) != 0) {
|
if ((size & SSIZE_OF(sw)) != 0) {
|
||||||
|
@ -1131,6 +1137,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
local_size = ((size + local_size + 0x7) & ~0x7) - size;
|
local_size = ((size + local_size + 0x7) & ~0x7) - size;
|
||||||
compiler->local_size = local_size;
|
compiler->local_size = local_size;
|
||||||
|
|
||||||
|
if (options & SLJIT_ENTER_REG_ARG)
|
||||||
|
arg_types = 0;
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
arg_types >>= SLJIT_ARG_SHIFT;
|
||||||
word_arg_count = 0;
|
word_arg_count = 0;
|
||||||
saved_arg_count = 0;
|
saved_arg_count = 0;
|
||||||
|
@ -1173,13 +1182,14 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
else
|
else
|
||||||
break;
|
break;
|
||||||
|
|
||||||
SLJIT_ASSERT(reg_map[tmp] <= 7);
|
|
||||||
|
|
||||||
if (offset < 4 * sizeof(sljit_sw))
|
if (offset < 4 * sizeof(sljit_sw))
|
||||||
FAIL_IF(push_inst16(compiler, MOV | RD3(tmp) | (offset << 1)));
|
FAIL_IF(push_inst16(compiler, MOV | ((sljit_ins)reg_map[tmp] & 0x7) | (((sljit_ins)reg_map[tmp] & 0x8) << 4) | (offset << 1)));
|
||||||
else
|
else if (reg_map[tmp] <= 7)
|
||||||
FAIL_IF(push_inst16(compiler, LDR_SP | RDN3(tmp)
|
FAIL_IF(push_inst16(compiler, LDR_SP | RDN3(tmp)
|
||||||
| ((offset + (sljit_uw)size - 4 * sizeof(sljit_sw)) >> 2)));
|
| ((offset + (sljit_uw)size - 4 * sizeof(sljit_sw)) >> 2)));
|
||||||
|
else
|
||||||
|
FAIL_IF(push_inst32(compiler, LDR | RT4(tmp) | RN4(SLJIT_SP)
|
||||||
|
| ((offset + (sljit_uw)size - 4 * sizeof(sljit_sw)))));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1293,7 +1303,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *comp
|
||||||
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
||||||
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1);
|
size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - SLJIT_KEPT_SAVEDS_COUNT(options), 1);
|
||||||
|
|
||||||
if ((size & SSIZE_OF(sw)) != 0 && (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG))
|
if ((size & SSIZE_OF(sw)) != 0 && (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG))
|
||||||
size += SSIZE_OF(sw);
|
size += SSIZE_OF(sw);
|
||||||
|
@ -1325,6 +1335,7 @@ static sljit_s32 emit_add_sp(struct sljit_compiler *compiler, sljit_uw imm)
|
||||||
static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit_s32 frame_size)
|
static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit_s32 frame_size)
|
||||||
{
|
{
|
||||||
sljit_s32 local_size, fscratches, fsaveds, i, tmp;
|
sljit_s32 local_size, fscratches, fsaveds, i, tmp;
|
||||||
|
sljit_s32 saveds_restore_start = SLJIT_S0 - SLJIT_KEPT_SAVEDS_COUNT(compiler->options);
|
||||||
sljit_s32 lr_dst = TMP_PC;
|
sljit_s32 lr_dst = TMP_PC;
|
||||||
sljit_uw reg_list;
|
sljit_uw reg_list;
|
||||||
|
|
||||||
|
@ -1358,8 +1369,11 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit
|
||||||
|
|
||||||
reg_list = 0;
|
reg_list = 0;
|
||||||
tmp = SLJIT_S0 - compiler->saveds;
|
tmp = SLJIT_S0 - compiler->saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--)
|
if (saveds_restore_start != tmp) {
|
||||||
|
for (i = saveds_restore_start; i > tmp; i--)
|
||||||
reg_list |= (sljit_uw)1 << reg_map[i];
|
reg_list |= (sljit_uw)1 << reg_map[i];
|
||||||
|
} else
|
||||||
|
saveds_restore_start = 0;
|
||||||
|
|
||||||
for (i = compiler->scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
for (i = compiler->scratches; i >= SLJIT_FIRST_SAVED_REG; i--)
|
||||||
reg_list |= (sljit_uw)1 << reg_map[i];
|
reg_list |= (sljit_uw)1 << reg_map[i];
|
||||||
|
@ -1379,9 +1393,9 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler, sljit
|
||||||
if (reg_list == 0)
|
if (reg_list == 0)
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
if (compiler->saveds > 0) {
|
if (saveds_restore_start != 0) {
|
||||||
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[SLJIT_S0]));
|
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[saveds_restore_start]));
|
||||||
lr_dst = SLJIT_S0;
|
lr_dst = saveds_restore_start;
|
||||||
} else {
|
} else {
|
||||||
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[SLJIT_FIRST_SAVED_REG]));
|
SLJIT_ASSERT(reg_list == ((sljit_uw)1 << reg_map[SLJIT_FIRST_SAVED_REG]));
|
||||||
lr_dst = SLJIT_FIRST_SAVED_REG;
|
lr_dst = SLJIT_FIRST_SAVED_REG;
|
||||||
|
@ -1685,10 +1699,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compil
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w);
|
return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1955,8 +1966,6 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compil
|
||||||
return emit_fop_mem(compiler, (op & SLJIT_32), TMP_FREG1, dst, dstw);
|
return emit_fop_mem(compiler, (op & SLJIT_32), TMP_FREG1, dst, dstw);
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef FPU_LOAD
|
|
||||||
|
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
/* Other instructions */
|
/* Other instructions */
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
|
@ -1984,11 +1993,15 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
{
|
{
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case SLJIT_EQUAL:
|
case SLJIT_EQUAL:
|
||||||
case SLJIT_EQUAL_F64:
|
case SLJIT_F_EQUAL:
|
||||||
|
case SLJIT_ORDERED_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL: /* Not supported. */
|
||||||
return 0x0;
|
return 0x0;
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL:
|
case SLJIT_NOT_EQUAL:
|
||||||
case SLJIT_NOT_EQUAL_F64:
|
case SLJIT_F_NOT_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_NOT_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL: /* Not supported. */
|
||||||
return 0x1;
|
return 0x1;
|
||||||
|
|
||||||
case SLJIT_CARRY:
|
case SLJIT_CARRY:
|
||||||
|
@ -1997,7 +2010,6 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_LESS:
|
case SLJIT_LESS:
|
||||||
case SLJIT_LESS_F64:
|
|
||||||
return 0x3;
|
return 0x3;
|
||||||
|
|
||||||
case SLJIT_NOT_CARRY:
|
case SLJIT_NOT_CARRY:
|
||||||
|
@ -2006,27 +2018,33 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL:
|
case SLJIT_GREATER_EQUAL:
|
||||||
case SLJIT_GREATER_EQUAL_F64:
|
|
||||||
return 0x2;
|
return 0x2;
|
||||||
|
|
||||||
case SLJIT_GREATER:
|
case SLJIT_GREATER:
|
||||||
case SLJIT_GREATER_F64:
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
return 0x8;
|
return 0x8;
|
||||||
|
|
||||||
case SLJIT_LESS_EQUAL:
|
case SLJIT_LESS_EQUAL:
|
||||||
case SLJIT_LESS_EQUAL_F64:
|
case SLJIT_F_LESS_EQUAL:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
return 0x9;
|
return 0x9;
|
||||||
|
|
||||||
case SLJIT_SIG_LESS:
|
case SLJIT_SIG_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
return 0xb;
|
return 0xb;
|
||||||
|
|
||||||
case SLJIT_SIG_GREATER_EQUAL:
|
case SLJIT_SIG_GREATER_EQUAL:
|
||||||
|
case SLJIT_F_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
return 0xa;
|
return 0xa;
|
||||||
|
|
||||||
case SLJIT_SIG_GREATER:
|
case SLJIT_SIG_GREATER:
|
||||||
|
case SLJIT_F_GREATER:
|
||||||
|
case SLJIT_ORDERED_GREATER:
|
||||||
return 0xc;
|
return 0xc;
|
||||||
|
|
||||||
case SLJIT_SIG_LESS_EQUAL:
|
case SLJIT_SIG_LESS_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS_EQUAL:
|
||||||
return 0xd;
|
return 0xd;
|
||||||
|
|
||||||
case SLJIT_OVERFLOW:
|
case SLJIT_OVERFLOW:
|
||||||
|
@ -2034,7 +2052,7 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
return 0x1;
|
return 0x1;
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_UNORDERED_F64:
|
case SLJIT_UNORDERED:
|
||||||
return 0x6;
|
return 0x6;
|
||||||
|
|
||||||
case SLJIT_NOT_OVERFLOW:
|
case SLJIT_NOT_OVERFLOW:
|
||||||
|
@ -2042,9 +2060,16 @@ static sljit_uw get_cc(struct sljit_compiler *compiler, sljit_s32 type)
|
||||||
return 0x0;
|
return 0x0;
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_ORDERED_F64:
|
case SLJIT_ORDERED:
|
||||||
return 0x7;
|
return 0x7;
|
||||||
|
|
||||||
|
case SLJIT_F_LESS:
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
|
return 0x4;
|
||||||
|
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
|
return 0x5;
|
||||||
|
|
||||||
default: /* SLJIT_JUMP */
|
default: /* SLJIT_JUMP */
|
||||||
SLJIT_UNREACHABLE();
|
SLJIT_UNREACHABLE();
|
||||||
return 0xe;
|
return 0xe;
|
||||||
|
@ -2289,17 +2314,14 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
||||||
|
|
||||||
#ifdef __SOFTFP__
|
#ifdef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG) {
|
||||||
PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space));
|
PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space));
|
||||||
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
||||||
|
|
||||||
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
jump = sljit_emit_jump(compiler, type);
|
jump = sljit_emit_jump(compiler, type);
|
||||||
PTR_FAIL_IF(jump == NULL);
|
PTR_FAIL_IF(jump == NULL);
|
||||||
|
|
||||||
|
@ -2319,22 +2341,22 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
||||||
PTR_FAIL_IF(softfloat_post_call_with_args(compiler, arg_types));
|
PTR_FAIL_IF(softfloat_post_call_with_args(compiler, arg_types));
|
||||||
return jump;
|
return jump;
|
||||||
#else
|
}
|
||||||
|
#endif /* __SOFTFP__ */
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN) {
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
/* ldmia sp!, {..., lr} */
|
/* ldmia sp!, {..., lr} */
|
||||||
PTR_FAIL_IF(emit_stack_frame_release(compiler, -1));
|
PTR_FAIL_IF(emit_stack_frame_release(compiler, -1));
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
PTR_FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
PTR_FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
||||||
|
#endif /* !__SOFTFP__ */
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_jump(compiler, type);
|
return sljit_emit_jump(compiler, type);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw)
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw)
|
||||||
|
@ -2391,17 +2413,14 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __SOFTFP__
|
#ifdef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG) {
|
||||||
FAIL_IF(softfloat_call_with_args(compiler, arg_types, &src, &extra_space));
|
FAIL_IF(softfloat_call_with_args(compiler, arg_types, &src, &extra_space));
|
||||||
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
SLJIT_ASSERT((extra_space & 0x7) == 0);
|
||||||
|
|
||||||
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
if ((type & SLJIT_CALL_RETURN) && extra_space == 0)
|
||||||
type = SLJIT_JUMP;
|
type = SLJIT_JUMP;
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
FAIL_IF(sljit_emit_ijump(compiler, type, src, srcw));
|
FAIL_IF(sljit_emit_ijump(compiler, type, src, srcw));
|
||||||
|
|
||||||
if (extra_space > 0) {
|
if (extra_space > 0) {
|
||||||
|
@ -2417,22 +2436,22 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
|
|
||||||
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
SLJIT_ASSERT(!(type & SLJIT_CALL_RETURN));
|
||||||
return softfloat_post_call_with_args(compiler, arg_types);
|
return softfloat_post_call_with_args(compiler, arg_types);
|
||||||
#else /* !__SOFTFP__ */
|
}
|
||||||
|
#endif /* __SOFTFP__ */
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN) {
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
/* ldmia sp!, {..., lr} */
|
/* ldmia sp!, {..., lr} */
|
||||||
FAIL_IF(emit_stack_frame_release(compiler, -1));
|
FAIL_IF(emit_stack_frame_release(compiler, -1));
|
||||||
type = SLJIT_JUMP;
|
type = SLJIT_JUMP;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef __SOFTFP__
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
FAIL_IF(hardfloat_call_with_args(compiler, arg_types));
|
||||||
|
#endif /* !__SOFTFP__ */
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_ijump(compiler, type, src, srcw);
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
#endif /* __SOFTFP__ */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
|
||||||
|
@ -2447,7 +2466,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
ADJUST_LOCAL_OFFSET(dst, dstw);
|
ADJUST_LOCAL_OFFSET(dst, dstw);
|
||||||
|
|
||||||
op = GET_OPCODE(op);
|
op = GET_OPCODE(op);
|
||||||
cc = get_cc(compiler, type & 0xff);
|
cc = get_cc(compiler, type);
|
||||||
dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1;
|
dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1;
|
||||||
|
|
||||||
if (op < SLJIT_ADD) {
|
if (op < SLJIT_ADD) {
|
||||||
|
@ -2499,7 +2518,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
||||||
|
|
||||||
dst_reg &= ~SLJIT_32;
|
dst_reg &= ~SLJIT_32;
|
||||||
|
|
||||||
cc = get_cc(compiler, type & 0xff);
|
cc = get_cc(compiler, type);
|
||||||
|
|
||||||
if (!(src & SLJIT_IMM)) {
|
if (!(src & SLJIT_IMM)) {
|
||||||
FAIL_IF(push_inst16(compiler, IT | (cc << 4) | 0x8));
|
FAIL_IF(push_inst16(compiler, IT | (cc << 4) | 0x8));
|
||||||
|
@ -2546,6 +2565,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compile
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED)
|
||||||
|
return sljit_emit_mem_unaligned(compiler, type, reg, mem, memw);
|
||||||
|
|
||||||
if ((mem & OFFS_REG_MASK) || (memw > 255 || memw < -255))
|
if ((mem & OFFS_REG_MASK) || (memw > 255 || memw < -255))
|
||||||
return SLJIT_ERR_UNSUPPORTED;
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
@ -2594,6 +2616,109 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compile
|
||||||
return push_inst32(compiler, inst | RT4(reg) | RN4(mem & REG_MASK) | (sljit_ins)memw);
|
return push_inst32(compiler, inst | RT4(reg) | RN4(mem & REG_MASK) | (sljit_ins)memw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static sljit_s32 update_mem_addr(struct sljit_compiler *compiler, sljit_s32 *mem, sljit_sw *memw, sljit_s32 max_offset)
|
||||||
|
{
|
||||||
|
sljit_s32 arg = *mem;
|
||||||
|
sljit_sw argw = *memw;
|
||||||
|
sljit_uw imm;
|
||||||
|
|
||||||
|
*mem = TMP_REG1;
|
||||||
|
|
||||||
|
if (SLJIT_UNLIKELY(arg & OFFS_REG_MASK)) {
|
||||||
|
*memw = 0;
|
||||||
|
return push_inst32(compiler, ADD_W | RD4(TMP_REG1) | RN4(arg & REG_MASK) | RM4(OFFS_REG(arg)) | ((sljit_uw)(argw & 0x3) << 6));
|
||||||
|
}
|
||||||
|
|
||||||
|
arg &= REG_MASK;
|
||||||
|
|
||||||
|
if (arg) {
|
||||||
|
if (argw <= max_offset && argw >= -0xff) {
|
||||||
|
*mem = arg;
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (argw < 0) {
|
||||||
|
imm = get_imm((sljit_uw)(-argw & ~0xff));
|
||||||
|
|
||||||
|
if (imm) {
|
||||||
|
*memw = -(-argw & 0xff);
|
||||||
|
return push_inst32(compiler, SUB_WI | RD4(TMP_REG1) | RN4(arg) | imm);
|
||||||
|
}
|
||||||
|
} else if ((argw & 0xfff) <= max_offset) {
|
||||||
|
imm = get_imm((sljit_uw)(argw & ~0xfff));
|
||||||
|
|
||||||
|
if (imm) {
|
||||||
|
*memw = argw & 0xfff;
|
||||||
|
return push_inst32(compiler, ADD_WI | RD4(TMP_REG1) | RN4(arg) | imm);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
imm = get_imm((sljit_uw)((argw | 0xfff) + 1));
|
||||||
|
|
||||||
|
if (imm) {
|
||||||
|
*memw = (argw & 0xfff) - 0x1000;
|
||||||
|
return push_inst32(compiler, ADD_WI | RD4(TMP_REG1) | RN4(arg) | imm);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
imm = (sljit_uw)(argw & ~0xfff);
|
||||||
|
|
||||||
|
if ((argw & 0xfff) > max_offset) {
|
||||||
|
imm += 0x1000;
|
||||||
|
*memw = (argw & 0xfff) - 0x1000;
|
||||||
|
} else
|
||||||
|
*memw = argw & 0xfff;
|
||||||
|
|
||||||
|
FAIL_IF(load_immediate(compiler, TMP_REG1, imm));
|
||||||
|
|
||||||
|
if (arg == 0)
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
|
return push_inst16(compiler, ADD | SET_REGS44(TMP_REG1, arg));
|
||||||
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
|
sljit_s32 freg,
|
||||||
|
sljit_s32 mem, sljit_sw memw)
|
||||||
|
{
|
||||||
|
CHECK_ERROR();
|
||||||
|
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
||||||
|
|
||||||
|
if (type & (SLJIT_MEM_PRE | SLJIT_MEM_POST))
|
||||||
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_ALIGNED_32)
|
||||||
|
return emit_fop_mem(compiler, ((type ^ SLJIT_32) & SLJIT_32) | ((type & SLJIT_MEM_STORE) ? 0 : FPU_LOAD), freg, mem, memw);
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_STORE) {
|
||||||
|
FAIL_IF(push_inst32(compiler, VMOV | (1 << 20) | DN4(freg) | RT4(TMP_REG2)));
|
||||||
|
|
||||||
|
if (type & SLJIT_32)
|
||||||
|
return emit_op_mem(compiler, WORD_SIZE | STORE, TMP_REG2, mem, memw, TMP_REG1);
|
||||||
|
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xfff - 4));
|
||||||
|
mem |= SLJIT_MEM;
|
||||||
|
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE | STORE, TMP_REG2, mem, memw, TMP_REG1));
|
||||||
|
FAIL_IF(push_inst32(compiler, VMOV | (1 << 20) | DN4(freg) | 0x80 | RT4(TMP_REG2)));
|
||||||
|
return emit_op_mem(compiler, WORD_SIZE | STORE, TMP_REG2, mem, memw + 4, TMP_REG1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type & SLJIT_32) {
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, mem, memw, TMP_REG1));
|
||||||
|
return push_inst32(compiler, VMOV | DN4(freg) | RT4(TMP_REG2));
|
||||||
|
}
|
||||||
|
|
||||||
|
FAIL_IF(update_mem_addr(compiler, &mem, &memw, 0xfff - 4));
|
||||||
|
mem |= SLJIT_MEM;
|
||||||
|
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG2, mem, memw, TMP_REG1));
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_SIZE, TMP_REG1, mem, memw + 4, TMP_REG1));
|
||||||
|
return push_inst32(compiler, VMOV2 | DM4(freg) | RT4(TMP_REG2) | RN4(TMP_REG1));
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef FPU_LOAD
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
|
SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
|
||||||
{
|
{
|
||||||
struct sljit_const *const_;
|
struct sljit_const *const_;
|
||||||
|
|
|
@ -38,383 +38,6 @@ static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_a
|
||||||
return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SLJIT_SUCCESS;
|
return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SLJIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define EMIT_LOGICAL(op_imm, op_norm) \
|
|
||||||
if (flags & SRC2_IMM) { \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_imm | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_imm | S(src1) | T(dst) | IMM(src2), DR(dst))); \
|
|
||||||
} \
|
|
||||||
else { \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | D(dst), DR(dst))); \
|
|
||||||
}
|
|
||||||
|
|
||||||
#define EMIT_SHIFT(op_imm, op_v) \
|
|
||||||
if (flags & SRC2_IMM) { \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_imm | T(src1) | DA(EQUAL_FLAG) | SH_IMM(src2), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_imm | T(src1) | D(dst) | SH_IMM(src2), DR(dst))); \
|
|
||||||
} \
|
|
||||||
else { \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_v | S(src2) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_v | S(src2) | T(src1) | D(dst), DR(dst))); \
|
|
||||||
}
|
|
||||||
|
|
||||||
static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags,
|
|
||||||
sljit_s32 dst, sljit_s32 src1, sljit_sw src2)
|
|
||||||
{
|
|
||||||
sljit_s32 is_overflow, is_carry, is_handled;
|
|
||||||
|
|
||||||
switch (GET_OPCODE(op)) {
|
|
||||||
case SLJIT_MOV:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if (dst != src2)
|
|
||||||
return push_inst(compiler, ADDU | S(src2) | TA(0) | D(dst), DR(dst));
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_U8:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE))
|
|
||||||
return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xff), DR(dst));
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_S8:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
return push_inst(compiler, SEB | T(src2) | D(dst), DR(dst));
|
|
||||||
#else /* SLJIT_MIPS_REV < 1 */
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | T(src2) | D(dst) | SH_IMM(24), DR(dst)));
|
|
||||||
return push_inst(compiler, SRA | T(dst) | D(dst) | SH_IMM(24), DR(dst));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 1 */
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_U16:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE))
|
|
||||||
return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xffff), DR(dst));
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_S16:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
return push_inst(compiler, SEH | T(src2) | D(dst), DR(dst));
|
|
||||||
#else /* SLJIT_MIPS_REV < 1 */
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | T(src2) | D(dst) | SH_IMM(16), DR(dst)));
|
|
||||||
return push_inst(compiler, SRA | T(dst) | D(dst) | SH_IMM(16), DR(dst));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 1 */
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_NOT:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | D(dst), DR(dst)));
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_CLZ:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, CLZ | S(src2) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
FAIL_IF(push_inst(compiler, CLZ | S(src2) | T(dst) | D(dst), DR(dst)));
|
|
||||||
#else /* SLJIT_MIPS_REV < 1 */
|
|
||||||
if (SLJIT_UNLIKELY(flags & UNUSED_DEST)) {
|
|
||||||
FAIL_IF(push_inst(compiler, SRL | T(src2) | DA(EQUAL_FLAG) | SH_IMM(31), EQUAL_FLAG));
|
|
||||||
return push_inst(compiler, XORI | SA(EQUAL_FLAG) | TA(EQUAL_FLAG) | IMM(1), EQUAL_FLAG);
|
|
||||||
}
|
|
||||||
/* Nearly all instructions are unmovable in the following sequence. */
|
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(src2) | TA(0) | D(TMP_REG1), DR(TMP_REG1)));
|
|
||||||
/* Check zero. */
|
|
||||||
FAIL_IF(push_inst(compiler, BEQ | S(TMP_REG1) | TA(0) | IMM(5), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, ORI | SA(0) | T(dst) | IMM(32), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(dst) | IMM(-1), DR(dst)));
|
|
||||||
/* Loop for searching the highest bit. */
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(dst) | T(dst) | IMM(1), DR(dst)));
|
|
||||||
FAIL_IF(push_inst(compiler, BGEZ | S(TMP_REG1) | IMM(-2), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | T(TMP_REG1) | D(TMP_REG1) | SH_IMM(1), UNMOVABLE_INS));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 1 */
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_ADD:
|
|
||||||
is_overflow = GET_FLAG_TYPE(op) == SLJIT_OVERFLOW;
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_overflow) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
}
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, ORI | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
else {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(src1) | T(dst) | IMM(src2), DR(dst)));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (is_overflow)
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
|
|
||||||
/* a + b >= a | b (otherwise, the carry should be set to 1). */
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
if (!is_overflow)
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | TA(OTHER_FLAG) | D(TMP_REG1) | SH_IMM(31), DR(TMP_REG1)));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(TMP_REG1) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(dst) | TA(EQUAL_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(dst) | TA(0) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
return push_inst(compiler, SRL | TA(OTHER_FLAG) | DA(OTHER_FLAG) | SH_IMM(31), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_ADDC:
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_carry) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, ORI | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
else {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(src1) | T(dst) | IMM(src2), DR(dst)));
|
|
||||||
} else {
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(dst) | TA(OTHER_FLAG) | D(dst), DR(dst)));
|
|
||||||
if (!is_carry)
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
/* Set ULESS_FLAG (dst == 0) && (OTHER_FLAG == 1). */
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
/* Set carry flag. */
|
|
||||||
return push_inst(compiler, OR | SA(OTHER_FLAG) | TA(EQUAL_FLAG) | DA(OTHER_FLAG), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_SUB:
|
|
||||||
if ((flags & SRC2_IMM) && src2 == SIMM_MIN) {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(TMP_REG2) | IMM(src2), DR(TMP_REG2)));
|
|
||||||
src2 = TMP_REG2;
|
|
||||||
flags &= ~SRC2_IMM;
|
|
||||||
}
|
|
||||||
|
|
||||||
is_handled = 0;
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (GET_FLAG_TYPE(op) == SLJIT_LESS || GET_FLAG_TYPE(op) == SLJIT_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLTIU | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
is_handled = 1;
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_SIG_LESS || GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLTI | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
is_handled = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_handled && GET_FLAG_TYPE(op) >= SLJIT_LESS && GET_FLAG_TYPE(op) <= SLJIT_SIG_LESS_EQUAL) {
|
|
||||||
is_handled = 1;
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(TMP_REG2) | IMM(src2), DR(TMP_REG2)));
|
|
||||||
src2 = TMP_REG2;
|
|
||||||
flags &= ~SRC2_IMM;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (GET_FLAG_TYPE(op) == SLJIT_LESS || GET_FLAG_TYPE(op) == SLJIT_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_GREATER || GET_FLAG_TYPE(op) == SLJIT_LESS_EQUAL)
|
|
||||||
{
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src2) | T(src1) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_SIG_LESS || GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLT | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER || GET_FLAG_TYPE(op) == SLJIT_SIG_LESS_EQUAL)
|
|
||||||
{
|
|
||||||
FAIL_IF(push_inst(compiler, SLT | S(src2) | T(src1) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_handled) {
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(src1) | TA(EQUAL_FLAG) | IMM(-src2), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
return push_inst(compiler, ADDIU | S(src1) | T(dst) | IMM(-src2), DR(dst));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SUBU | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
return push_inst(compiler, SUBU | S(src1) | T(src2) | D(dst), DR(dst));
|
|
||||||
}
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
is_overflow = GET_FLAG_TYPE(op) == SLJIT_OVERFLOW;
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_overflow) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
}
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(src1) | TA(EQUAL_FLAG) | IMM(-src2), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTIU | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(src1) | T(dst) | IMM(-src2), DR(dst)));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (is_overflow)
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SUBU | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, SUBU | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_overflow)
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | TA(OTHER_FLAG) | D(TMP_REG1) | SH_IMM(31), DR(TMP_REG1)));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(TMP_REG1) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(dst) | TA(EQUAL_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(dst) | TA(0) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
return push_inst(compiler, SRL | TA(OTHER_FLAG) | DA(OTHER_FLAG) | SH_IMM(31), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_SUBC:
|
|
||||||
if ((flags & SRC2_IMM) && src2 == SIMM_MIN) {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(TMP_REG2) | IMM(src2), DR(TMP_REG2)));
|
|
||||||
src2 = TMP_REG2;
|
|
||||||
flags &= ~SRC2_IMM;
|
|
||||||
}
|
|
||||||
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTIU | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | S(src1) | T(dst) | IMM(-src2), DR(dst)));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
FAIL_IF(push_inst(compiler, SUBU | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(OTHER_FLAG) | D(TMP_REG1), DR(TMP_REG1)));
|
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, SUBU | S(dst) | TA(OTHER_FLAG) | D(dst), DR(dst)));
|
|
||||||
return (is_carry) ? push_inst(compiler, OR | SA(EQUAL_FLAG) | T(TMP_REG1) | DA(OTHER_FLAG), OTHER_FLAG) : SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MUL:
|
|
||||||
SLJIT_ASSERT(!(flags & SRC2_IMM));
|
|
||||||
|
|
||||||
if (GET_FLAG_TYPE(op) != SLJIT_OVERFLOW) {
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
return push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst));
|
|
||||||
#else /* SLJIT_MIPS_REV < 1 */
|
|
||||||
FAIL_IF(push_inst(compiler, MULT | S(src1) | T(src2), MOVABLE_INS));
|
|
||||||
return push_inst(compiler, MFLO | D(dst), DR(dst));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 1 */
|
|
||||||
}
|
|
||||||
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 6)
|
|
||||||
FAIL_IF(push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
FAIL_IF(push_inst(compiler, MUH | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
#else /* SLJIT_MIPS_REV < 6 */
|
|
||||||
FAIL_IF(push_inst(compiler, MULT | S(src1) | T(src2), MOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, MFHI | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, MFLO | D(dst), DR(dst)));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 6 */
|
|
||||||
FAIL_IF(push_inst(compiler, SRA | T(dst) | DA(OTHER_FLAG) | SH_IMM(31), OTHER_FLAG));
|
|
||||||
return push_inst(compiler, SUBU | SA(EQUAL_FLAG) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_AND:
|
|
||||||
EMIT_LOGICAL(ANDI, AND);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_OR:
|
|
||||||
EMIT_LOGICAL(ORI, OR);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_XOR:
|
|
||||||
EMIT_LOGICAL(XORI, XOR);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_SHL:
|
|
||||||
EMIT_SHIFT(SLL, SLLV);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_LSHR:
|
|
||||||
EMIT_SHIFT(SRL, SRLV);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_ASHR:
|
|
||||||
EMIT_SHIFT(SRA, SRAV);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
SLJIT_UNREACHABLE();
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
|
static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
|
||||||
{
|
{
|
||||||
FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 16), DR(dst)));
|
FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 16), DR(dst)));
|
||||||
|
@ -573,8 +196,8 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
sljit_s32 arg_types)
|
sljit_s32 arg_types)
|
||||||
{
|
{
|
||||||
struct sljit_jump *jump;
|
struct sljit_jump *jump;
|
||||||
sljit_u32 extra_space = (sljit_u32)type;
|
sljit_u32 extra_space = 0;
|
||||||
sljit_ins ins;
|
sljit_ins ins = NOP;
|
||||||
|
|
||||||
CHECK_ERROR_PTR();
|
CHECK_ERROR_PTR();
|
||||||
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
||||||
|
@ -583,14 +206,23 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
PTR_FAIL_IF(!jump);
|
PTR_FAIL_IF(!jump);
|
||||||
set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP);
|
set_jump(jump, compiler, type & SLJIT_REWRITABLE_JUMP);
|
||||||
|
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG) {
|
||||||
|
extra_space = (sljit_u32)type;
|
||||||
PTR_FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space));
|
PTR_FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space));
|
||||||
|
} else if (type & SLJIT_CALL_RETURN)
|
||||||
|
PTR_FAIL_IF(emit_stack_frame_release(compiler, 0, &ins));
|
||||||
|
|
||||||
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
||||||
|
|
||||||
PTR_FAIL_IF(emit_const(compiler, PIC_ADDR_REG, 0));
|
if (ins == NOP && compiler->delay_slot != UNMOVABLE_INS)
|
||||||
|
jump->flags |= IS_MOVABLE;
|
||||||
|
|
||||||
if (!(type & SLJIT_CALL_RETURN) || extra_space > 0) {
|
if (!(type & SLJIT_CALL_RETURN) || extra_space > 0) {
|
||||||
jump->flags |= IS_JAL | IS_CALL;
|
jump->flags |= IS_JAL;
|
||||||
|
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
|
jump->flags |= IS_CALL;
|
||||||
|
|
||||||
PTR_FAIL_IF(push_inst(compiler, JALR | S(PIC_ADDR_REG) | DA(RETURN_ADDR_REG), UNMOVABLE_INS));
|
PTR_FAIL_IF(push_inst(compiler, JALR | S(PIC_ADDR_REG) | DA(RETURN_ADDR_REG), UNMOVABLE_INS));
|
||||||
} else
|
} else
|
||||||
PTR_FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS));
|
PTR_FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS));
|
||||||
|
@ -598,6 +230,9 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
jump->addr = compiler->size;
|
jump->addr = compiler->size;
|
||||||
PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS));
|
PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS));
|
||||||
|
|
||||||
|
/* Maximum number of instructions required for generating a constant. */
|
||||||
|
compiler->size += 2;
|
||||||
|
|
||||||
if (extra_space == 0)
|
if (extra_space == 0)
|
||||||
return jump;
|
return jump;
|
||||||
|
|
||||||
|
@ -623,16 +258,37 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw));
|
CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw));
|
||||||
|
|
||||||
|
if (src & SLJIT_MEM) {
|
||||||
|
ADJUST_LOCAL_OFFSET(src, srcw);
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, DR(PIC_ADDR_REG), src, srcw));
|
||||||
|
src = PIC_ADDR_REG;
|
||||||
|
srcw = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((type & 0xff) == SLJIT_CALL_REG_ARG) {
|
||||||
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
|
if (src >= SLJIT_FIRST_SAVED_REG && src <= SLJIT_S0) {
|
||||||
|
FAIL_IF(push_inst(compiler, ADDU | S(src) | TA(0) | D(PIC_ADDR_REG), DR(PIC_ADDR_REG)));
|
||||||
|
src = PIC_ADDR_REG;
|
||||||
|
srcw = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
FAIL_IF(emit_stack_frame_release(compiler, 0, &ins));
|
||||||
|
|
||||||
|
if (ins != NOP)
|
||||||
|
FAIL_IF(push_inst(compiler, ins, MOVABLE_INS));
|
||||||
|
}
|
||||||
|
|
||||||
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
|
}
|
||||||
|
|
||||||
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
||||||
|
|
||||||
if (src & SLJIT_IMM)
|
if (src & SLJIT_IMM)
|
||||||
FAIL_IF(load_immediate(compiler, DR(PIC_ADDR_REG), srcw));
|
FAIL_IF(load_immediate(compiler, DR(PIC_ADDR_REG), srcw));
|
||||||
else if (FAST_IS_REG(src))
|
else if (src != PIC_ADDR_REG)
|
||||||
FAIL_IF(push_inst(compiler, ADDU | S(src) | TA(0) | D(PIC_ADDR_REG), DR(PIC_ADDR_REG)));
|
FAIL_IF(push_inst(compiler, ADDU | S(src) | TA(0) | D(PIC_ADDR_REG), DR(PIC_ADDR_REG)));
|
||||||
else if (src & SLJIT_MEM) {
|
|
||||||
ADJUST_LOCAL_OFFSET(src, srcw);
|
|
||||||
FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, DR(PIC_ADDR_REG), src, srcw));
|
|
||||||
}
|
|
||||||
|
|
||||||
FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space));
|
FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space));
|
||||||
|
|
||||||
|
|
|
@ -118,421 +118,6 @@ static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_a
|
||||||
return !(imm & 0xffff) ? SLJIT_SUCCESS : push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar);
|
return !(imm & 0xffff) ? SLJIT_SUCCESS : push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define SELECT_OP(a, b) \
|
|
||||||
(!(op & SLJIT_32) ? a : b)
|
|
||||||
|
|
||||||
#define EMIT_LOGICAL(op_imm, op_norm) \
|
|
||||||
if (flags & SRC2_IMM) { \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_imm | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_imm | S(src1) | T(dst) | IMM(src2), DR(dst))); \
|
|
||||||
} \
|
|
||||||
else { \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | D(dst), DR(dst))); \
|
|
||||||
}
|
|
||||||
|
|
||||||
#define EMIT_SHIFT(op_dimm, op_dimm32, op_imm, op_dv, op_v) \
|
|
||||||
if (flags & SRC2_IMM) { \
|
|
||||||
if (src2 >= 32) { \
|
|
||||||
SLJIT_ASSERT(!(op & SLJIT_32)); \
|
|
||||||
ins = op_dimm32; \
|
|
||||||
src2 -= 32; \
|
|
||||||
} \
|
|
||||||
else \
|
|
||||||
ins = (op & SLJIT_32) ? op_imm : op_dimm; \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, ins | T(src1) | DA(EQUAL_FLAG) | SH_IMM(src2), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, ins | T(src1) | D(dst) | SH_IMM(src2), DR(dst))); \
|
|
||||||
} \
|
|
||||||
else { \
|
|
||||||
ins = (op & SLJIT_32) ? op_v : op_dv; \
|
|
||||||
if (op & SLJIT_SET_Z) \
|
|
||||||
FAIL_IF(push_inst(compiler, ins | S(src2) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG)); \
|
|
||||||
if (!(flags & UNUSED_DEST)) \
|
|
||||||
FAIL_IF(push_inst(compiler, ins | S(src2) | T(src1) | D(dst), DR(dst))); \
|
|
||||||
}
|
|
||||||
|
|
||||||
static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags,
|
|
||||||
sljit_s32 dst, sljit_s32 src1, sljit_sw src2)
|
|
||||||
{
|
|
||||||
sljit_ins ins;
|
|
||||||
sljit_s32 is_overflow, is_carry, is_handled;
|
|
||||||
|
|
||||||
switch (GET_OPCODE(op)) {
|
|
||||||
case SLJIT_MOV:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if (dst != src2)
|
|
||||||
return push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(src2) | TA(0) | D(dst), DR(dst));
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_U8:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE))
|
|
||||||
return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xff), DR(dst));
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_S8:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
if (op & SLJIT_32)
|
|
||||||
return push_inst(compiler, SEB | T(src2) | D(dst), DR(dst));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 1 */
|
|
||||||
FAIL_IF(push_inst(compiler, DSLL32 | T(src2) | D(dst) | SH_IMM(24), DR(dst)));
|
|
||||||
return push_inst(compiler, DSRA32 | T(dst) | D(dst) | SH_IMM(24), DR(dst));
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_U16:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE))
|
|
||||||
return push_inst(compiler, ANDI | S(src2) | T(dst) | IMM(0xffff), DR(dst));
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_S16:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
if (op & SLJIT_32)
|
|
||||||
return push_inst(compiler, SEH | T(src2) | D(dst), DR(dst));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 1 */
|
|
||||||
FAIL_IF(push_inst(compiler, DSLL32 | T(src2) | D(dst) | SH_IMM(16), DR(dst)));
|
|
||||||
return push_inst(compiler, DSRA32 | T(dst) | D(dst) | SH_IMM(16), DR(dst));
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_U32:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM) && !(op & SLJIT_32));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 2)
|
|
||||||
if (dst == src2)
|
|
||||||
return push_inst(compiler, DINSU | T(src2) | SA(0) | (31 << 11) | (0 << 11), DR(dst));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 2 */
|
|
||||||
FAIL_IF(push_inst(compiler, DSLL32 | T(src2) | D(dst) | SH_IMM(0), DR(dst)));
|
|
||||||
return push_inst(compiler, DSRL32 | T(dst) | D(dst) | SH_IMM(0), DR(dst));
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_S32:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM) && !(op & SLJIT_32));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
return push_inst(compiler, SLL | T(src2) | D(dst) | SH_IMM(0), DR(dst));
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_NOT:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src2) | T(src2) | D(dst), DR(dst)));
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_CLZ:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DCLZ, CLZ) | S(src2) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DCLZ, CLZ) | S(src2) | T(dst) | D(dst), DR(dst)));
|
|
||||||
#else /* SLJIT_MIPS_REV < 1 */
|
|
||||||
if (SLJIT_UNLIKELY(flags & UNUSED_DEST)) {
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSRL32, SRL) | T(src2) | DA(EQUAL_FLAG) | SH_IMM(31), EQUAL_FLAG));
|
|
||||||
return push_inst(compiler, XORI | SA(EQUAL_FLAG) | TA(EQUAL_FLAG) | IMM(1), EQUAL_FLAG);
|
|
||||||
}
|
|
||||||
/* Nearly all instructions are unmovable in the following sequence. */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(src2) | TA(0) | D(TMP_REG1), DR(TMP_REG1)));
|
|
||||||
/* Check zero. */
|
|
||||||
FAIL_IF(push_inst(compiler, BEQ | S(TMP_REG1) | TA(0) | IMM(5), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, ORI | SA(0) | T(dst) | IMM((op & SLJIT_32) ? 32 : 64), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | SA(0) | T(dst) | IMM(-1), DR(dst)));
|
|
||||||
/* Loop for searching the highest bit. */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(dst) | T(dst) | IMM(1), DR(dst)));
|
|
||||||
FAIL_IF(push_inst(compiler, BGEZ | S(TMP_REG1) | IMM(-2), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSLL, SLL) | T(TMP_REG1) | D(TMP_REG1) | SH_IMM(1), UNMOVABLE_INS));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 1 */
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_ADD:
|
|
||||||
is_overflow = GET_FLAG_TYPE(op) == SLJIT_OVERFLOW;
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_overflow) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
}
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, ORI | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
else {
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | SA(0) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | T(dst) | IMM(src2), DR(dst)));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (is_overflow)
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
|
|
||||||
/* a + b >= a | b (otherwise, the carry should be set to 1). */
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
if (!is_overflow)
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSLL32, SLL) | TA(OTHER_FLAG) | D(TMP_REG1) | SH_IMM(31), DR(TMP_REG1)));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(TMP_REG1) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(dst) | TA(EQUAL_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(dst) | TA(0) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
return push_inst(compiler, SELECT_OP(DSRL32, SRL) | TA(OTHER_FLAG) | DA(OTHER_FLAG) | SH_IMM(31), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_ADDC:
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_carry) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, ORI | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
else {
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | SA(0) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | T(dst) | IMM(src2), DR(dst)));
|
|
||||||
} else {
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(dst) | TA(OTHER_FLAG) | D(dst), DR(dst)));
|
|
||||||
if (!is_carry)
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
/* Set ULESS_FLAG (dst == 0) && (OTHER_FLAG == 1). */
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
/* Set carry flag. */
|
|
||||||
return push_inst(compiler, OR | SA(OTHER_FLAG) | TA(EQUAL_FLAG) | DA(OTHER_FLAG), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_SUB:
|
|
||||||
if ((flags & SRC2_IMM) && src2 == SIMM_MIN) {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(TMP_REG2) | IMM(src2), DR(TMP_REG2)));
|
|
||||||
src2 = TMP_REG2;
|
|
||||||
flags &= ~SRC2_IMM;
|
|
||||||
}
|
|
||||||
|
|
||||||
is_handled = 0;
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (GET_FLAG_TYPE(op) == SLJIT_LESS || GET_FLAG_TYPE(op) == SLJIT_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLTIU | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
is_handled = 1;
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_SIG_LESS || GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLTI | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
is_handled = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_handled && GET_FLAG_TYPE(op) >= SLJIT_LESS && GET_FLAG_TYPE(op) <= SLJIT_SIG_LESS_EQUAL) {
|
|
||||||
is_handled = 1;
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(TMP_REG2) | IMM(src2), DR(TMP_REG2)));
|
|
||||||
src2 = TMP_REG2;
|
|
||||||
flags &= ~SRC2_IMM;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (GET_FLAG_TYPE(op) == SLJIT_LESS || GET_FLAG_TYPE(op) == SLJIT_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_GREATER || GET_FLAG_TYPE(op) == SLJIT_LESS_EQUAL)
|
|
||||||
{
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src2) | T(src1) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_SIG_LESS || GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER_EQUAL) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLT | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
else if (GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER || GET_FLAG_TYPE(op) == SLJIT_SIG_LESS_EQUAL)
|
|
||||||
{
|
|
||||||
FAIL_IF(push_inst(compiler, SLT | S(src2) | T(src1) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_handled) {
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | TA(EQUAL_FLAG) | IMM(-src2), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
return push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | T(dst) | IMM(-src2), DR(dst));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSUBU, SUBU) | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
if (!(flags & UNUSED_DEST))
|
|
||||||
return push_inst(compiler, SELECT_OP(DSUBU, SUBU) | S(src1) | T(src2) | D(dst), DR(dst));
|
|
||||||
}
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
is_overflow = GET_FLAG_TYPE(op) == SLJIT_OVERFLOW;
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_overflow) {
|
|
||||||
if (src2 >= 0)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else
|
|
||||||
FAIL_IF(push_inst(compiler, NOR | S(src1) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
}
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | TA(EQUAL_FLAG) | IMM(-src2), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTIU | S(src1) | TA(OTHER_FLAG) | IMM(src2), OTHER_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | T(dst) | IMM(-src2), DR(dst)));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (is_overflow)
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
else if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSUBU, SUBU) | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
|
|
||||||
if (is_overflow || is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src1) | T(src2) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK))
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSUBU, SUBU) | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_overflow)
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSLL32, SLL) | TA(OTHER_FLAG) | D(TMP_REG1) | SH_IMM(31), DR(TMP_REG1)));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(TMP_REG1) | TA(EQUAL_FLAG) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, XOR | S(dst) | TA(EQUAL_FLAG) | DA(OTHER_FLAG), OTHER_FLAG));
|
|
||||||
if (op & SLJIT_SET_Z)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(dst) | TA(0) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
return push_inst(compiler, SELECT_OP(DSRL32, SRL) | TA(OTHER_FLAG) | DA(OTHER_FLAG) | SH_IMM(31), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_SUBC:
|
|
||||||
if ((flags & SRC2_IMM) && src2 == SIMM_MIN) {
|
|
||||||
FAIL_IF(push_inst(compiler, ADDIU | SA(0) | T(TMP_REG2) | IMM(src2), DR(TMP_REG2)));
|
|
||||||
src2 = TMP_REG2;
|
|
||||||
flags &= ~SRC2_IMM;
|
|
||||||
}
|
|
||||||
|
|
||||||
is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY);
|
|
||||||
|
|
||||||
if (flags & SRC2_IMM) {
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTIU | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DADDIU, ADDIU) | S(src1) | T(dst) | IMM(-src2), DR(dst)));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
/* dst may be the same as src1 or src2. */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSUBU, SUBU) | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_carry)
|
|
||||||
FAIL_IF(push_inst(compiler, SLTU | S(dst) | TA(OTHER_FLAG) | D(TMP_REG1), DR(TMP_REG1)));
|
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSUBU, SUBU) | S(dst) | TA(OTHER_FLAG) | D(dst), DR(dst)));
|
|
||||||
return (is_carry) ? push_inst(compiler, OR | SA(EQUAL_FLAG) | T(TMP_REG1) | DA(OTHER_FLAG), OTHER_FLAG) : SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MUL:
|
|
||||||
SLJIT_ASSERT(!(flags & SRC2_IMM));
|
|
||||||
|
|
||||||
if (GET_FLAG_TYPE(op) != SLJIT_OVERFLOW) {
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 6)
|
|
||||||
return push_inst(compiler, SELECT_OP(DMUL, MUL) | S(src1) | T(src2) | D(dst), DR(dst));
|
|
||||||
#elif (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 1)
|
|
||||||
if (op & SLJIT_32)
|
|
||||||
return push_inst(compiler, MUL | S(src1) | T(src2) | D(dst), DR(dst));
|
|
||||||
FAIL_IF(push_inst(compiler, DMULT | S(src1) | T(src2), MOVABLE_INS));
|
|
||||||
return push_inst(compiler, MFLO | D(dst), DR(dst));
|
|
||||||
#else /* SLJIT_MIPS_REV < 1 */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DMULT, MULT) | S(src1) | T(src2), MOVABLE_INS));
|
|
||||||
return push_inst(compiler, MFLO | D(dst), DR(dst));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 6 */
|
|
||||||
}
|
|
||||||
|
|
||||||
#if (defined SLJIT_MIPS_REV && SLJIT_MIPS_REV >= 6)
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DMUL, MUL) | S(src1) | T(src2) | D(dst), DR(dst)));
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DMUH, MUH) | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
#else /* SLJIT_MIPS_REV < 6 */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DMULT, MULT) | S(src1) | T(src2), MOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, MFHI | DA(EQUAL_FLAG), EQUAL_FLAG));
|
|
||||||
FAIL_IF(push_inst(compiler, MFLO | D(dst), DR(dst)));
|
|
||||||
#endif /* SLJIT_MIPS_REV >= 6 */
|
|
||||||
FAIL_IF(push_inst(compiler, SELECT_OP(DSRA32, SRA) | T(dst) | DA(OTHER_FLAG) | SH_IMM(31), OTHER_FLAG));
|
|
||||||
return push_inst(compiler, SELECT_OP(DSUBU, SUBU) | SA(EQUAL_FLAG) | TA(OTHER_FLAG) | DA(OTHER_FLAG), OTHER_FLAG);
|
|
||||||
|
|
||||||
case SLJIT_AND:
|
|
||||||
EMIT_LOGICAL(ANDI, AND);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_OR:
|
|
||||||
EMIT_LOGICAL(ORI, OR);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_XOR:
|
|
||||||
EMIT_LOGICAL(XORI, XOR);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_SHL:
|
|
||||||
EMIT_SHIFT(DSLL, DSLL32, SLL, DSLLV, SLLV);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_LSHR:
|
|
||||||
EMIT_SHIFT(DSRL, DSRL32, SRL, DSRLV, SRLV);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_ASHR:
|
|
||||||
EMIT_SHIFT(DSRA, DSRA32, SRA, DSRAV, SRAV);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
SLJIT_UNREACHABLE();
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
|
static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
|
||||||
{
|
{
|
||||||
FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 48), DR(dst)));
|
FAIL_IF(push_inst(compiler, LUI | T(dst) | IMM(init_value >> 48), DR(dst)));
|
||||||
|
@ -653,14 +238,20 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
if (type & SLJIT_CALL_RETURN)
|
if (type & SLJIT_CALL_RETURN)
|
||||||
PTR_FAIL_IF(emit_stack_frame_release(compiler, 0, &ins));
|
PTR_FAIL_IF(emit_stack_frame_release(compiler, 0, &ins));
|
||||||
|
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
PTR_FAIL_IF(call_with_args(compiler, arg_types, &ins));
|
PTR_FAIL_IF(call_with_args(compiler, arg_types, &ins));
|
||||||
|
|
||||||
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
||||||
|
|
||||||
PTR_FAIL_IF(emit_const(compiler, PIC_ADDR_REG, 0));
|
if (ins == NOP && compiler->delay_slot != UNMOVABLE_INS)
|
||||||
|
jump->flags |= IS_MOVABLE;
|
||||||
|
|
||||||
if (!(type & SLJIT_CALL_RETURN)) {
|
if (!(type & SLJIT_CALL_RETURN)) {
|
||||||
jump->flags |= IS_JAL | IS_CALL;
|
jump->flags |= IS_JAL;
|
||||||
|
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
|
jump->flags |= IS_CALL;
|
||||||
|
|
||||||
PTR_FAIL_IF(push_inst(compiler, JALR | S(PIC_ADDR_REG) | DA(RETURN_ADDR_REG), UNMOVABLE_INS));
|
PTR_FAIL_IF(push_inst(compiler, JALR | S(PIC_ADDR_REG) | DA(RETURN_ADDR_REG), UNMOVABLE_INS));
|
||||||
} else
|
} else
|
||||||
PTR_FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS));
|
PTR_FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS));
|
||||||
|
@ -668,6 +259,8 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
jump->addr = compiler->size;
|
jump->addr = compiler->size;
|
||||||
PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS));
|
PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS));
|
||||||
|
|
||||||
|
/* Maximum number of instructions required for generating a constant. */
|
||||||
|
compiler->size += 6;
|
||||||
return jump;
|
return jump;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -680,16 +273,37 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw));
|
CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw));
|
||||||
|
|
||||||
|
if (src & SLJIT_MEM) {
|
||||||
|
ADJUST_LOCAL_OFFSET(src, srcw);
|
||||||
|
FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, DR(PIC_ADDR_REG), src, srcw));
|
||||||
|
src = PIC_ADDR_REG;
|
||||||
|
srcw = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((type & 0xff) == SLJIT_CALL_REG_ARG) {
|
||||||
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
|
if (src >= SLJIT_FIRST_SAVED_REG && src <= SLJIT_S0) {
|
||||||
|
FAIL_IF(push_inst(compiler, DADDU | S(src) | TA(0) | D(PIC_ADDR_REG), DR(PIC_ADDR_REG)));
|
||||||
|
src = PIC_ADDR_REG;
|
||||||
|
srcw = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
FAIL_IF(emit_stack_frame_release(compiler, 0, &ins));
|
||||||
|
|
||||||
|
if (ins != NOP)
|
||||||
|
FAIL_IF(push_inst(compiler, ins, MOVABLE_INS));
|
||||||
|
}
|
||||||
|
|
||||||
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
|
}
|
||||||
|
|
||||||
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
SLJIT_ASSERT(DR(PIC_ADDR_REG) == 25 && PIC_ADDR_REG == TMP_REG2);
|
||||||
|
|
||||||
if (src & SLJIT_IMM)
|
if (src & SLJIT_IMM)
|
||||||
FAIL_IF(load_immediate(compiler, DR(PIC_ADDR_REG), srcw));
|
FAIL_IF(load_immediate(compiler, DR(PIC_ADDR_REG), srcw));
|
||||||
else if (FAST_IS_REG(src))
|
else if (src != PIC_ADDR_REG)
|
||||||
FAIL_IF(push_inst(compiler, DADDU | S(src) | TA(0) | D(PIC_ADDR_REG), DR(PIC_ADDR_REG)));
|
FAIL_IF(push_inst(compiler, DADDU | S(src) | TA(0) | D(PIC_ADDR_REG), DR(PIC_ADDR_REG)));
|
||||||
else if (src & SLJIT_MEM) {
|
|
||||||
ADJUST_LOCAL_OFFSET(src, srcw);
|
|
||||||
FAIL_IF(emit_op_mem(compiler, WORD_DATA | LOAD_DATA, DR(PIC_ADDR_REG), src, srcw));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN)
|
if (type & SLJIT_CALL_RETURN)
|
||||||
FAIL_IF(emit_stack_frame_release(compiler, 0, &ins));
|
FAIL_IF(emit_stack_frame_release(compiler, 0, &ins));
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -277,8 +277,3 @@ SLJIT_API_FUNC_ATTRIBUTE void sljit_set_jump_addr(sljit_uw addr, sljit_uw new_ta
|
||||||
inst = (sljit_ins *)SLJIT_ADD_EXEC_OFFSET(inst, executable_offset);
|
inst = (sljit_ins *)SLJIT_ADD_EXEC_OFFSET(inst, executable_offset);
|
||||||
SLJIT_CACHE_FLUSH(inst, inst + 2);
|
SLJIT_CACHE_FLUSH(inst, inst + 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw executable_offset)
|
|
||||||
{
|
|
||||||
sljit_set_jump_addr(addr, (sljit_uw)new_constant, executable_offset);
|
|
||||||
}
|
|
||||||
|
|
|
@ -502,8 +502,3 @@ SLJIT_API_FUNC_ATTRIBUTE void sljit_set_jump_addr(sljit_uw addr, sljit_uw new_ta
|
||||||
inst = (sljit_ins *)SLJIT_ADD_EXEC_OFFSET(inst, executable_offset);
|
inst = (sljit_ins *)SLJIT_ADD_EXEC_OFFSET(inst, executable_offset);
|
||||||
SLJIT_CACHE_FLUSH(inst, inst + 5);
|
SLJIT_CACHE_FLUSH(inst, inst + 5);
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw executable_offset)
|
|
||||||
{
|
|
||||||
sljit_set_jump_addr(addr, (sljit_uw)new_constant, executable_offset);
|
|
||||||
}
|
|
||||||
|
|
|
@ -649,6 +649,11 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_cmp_info(sljit_s32 type)
|
||||||
|
{
|
||||||
|
return (type >= SLJIT_UNORDERED && type <= SLJIT_ORDERED_LESS_EQUAL);
|
||||||
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
/* Entry, exit */
|
/* Entry, exit */
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
|
@ -721,7 +726,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
{
|
{
|
||||||
sljit_s32 i, tmp, base, offset;
|
sljit_s32 i, tmp, base, offset;
|
||||||
sljit_s32 word_arg_count = 0;
|
sljit_s32 word_arg_count = 0;
|
||||||
sljit_s32 saved_arg_count = 0;
|
sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options);
|
||||||
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
||||||
sljit_s32 arg_count = 0;
|
sljit_s32 arg_count = 0;
|
||||||
#endif
|
#endif
|
||||||
|
@ -730,8 +735,12 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
||||||
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1)
|
local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds - saved_arg_count, 0)
|
||||||
+ GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, sizeof(sljit_f64));
|
+ GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, sizeof(sljit_f64));
|
||||||
|
|
||||||
|
if (!(options & SLJIT_ENTER_REG_ARG))
|
||||||
|
local_size += SSIZE_OF(sw);
|
||||||
|
|
||||||
local_size = (local_size + SLJIT_LOCALS_OFFSET + 15) & ~0xf;
|
local_size = (local_size + SLJIT_LOCALS_OFFSET + 15) & ~0xf;
|
||||||
compiler->local_size = local_size;
|
compiler->local_size = local_size;
|
||||||
|
|
||||||
|
@ -770,11 +779,13 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
FAIL_IF(push_inst(compiler, STFD | FS(i) | A(base) | IMM(offset)));
|
FAIL_IF(push_inst(compiler, STFD | FS(i) | A(base) | IMM(offset)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(options & SLJIT_ENTER_REG_ARG)) {
|
||||||
offset -= SSIZE_OF(sw);
|
offset -= SSIZE_OF(sw);
|
||||||
FAIL_IF(push_inst(compiler, STACK_STORE | S(TMP_ZERO) | A(base) | IMM(offset)));
|
FAIL_IF(push_inst(compiler, STACK_STORE | S(TMP_ZERO) | A(base) | IMM(offset)));
|
||||||
|
}
|
||||||
|
|
||||||
tmp = SLJIT_S0 - saveds;
|
tmp = SLJIT_S0 - saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--) {
|
for (i = SLJIT_S0 - saved_arg_count; i > tmp; i--) {
|
||||||
offset -= SSIZE_OF(sw);
|
offset -= SSIZE_OF(sw);
|
||||||
FAIL_IF(push_inst(compiler, STACK_STORE | S(i) | A(base) | IMM(offset)));
|
FAIL_IF(push_inst(compiler, STACK_STORE | S(i) | A(base) | IMM(offset)));
|
||||||
}
|
}
|
||||||
|
@ -785,9 +796,14 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
}
|
}
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, STACK_STORE | S(0) | A(base) | IMM(local_size + LR_SAVE_OFFSET)));
|
FAIL_IF(push_inst(compiler, STACK_STORE | S(0) | A(base) | IMM(local_size + LR_SAVE_OFFSET)));
|
||||||
|
|
||||||
|
if (options & SLJIT_ENTER_REG_ARG)
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, ADDI | D(TMP_ZERO) | A(0) | 0));
|
FAIL_IF(push_inst(compiler, ADDI | D(TMP_ZERO) | A(0) | 0));
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
arg_types >>= SLJIT_ARG_SHIFT;
|
||||||
|
saved_arg_count = 0;
|
||||||
|
|
||||||
while (arg_types > 0) {
|
while (arg_types > 0) {
|
||||||
if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) {
|
if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) {
|
||||||
|
@ -829,13 +845,16 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *comp
|
||||||
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
||||||
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1)
|
local_size += GET_SAVED_REGISTERS_SIZE(scratches, saveds - SLJIT_KEPT_SAVEDS_COUNT(options), 0)
|
||||||
+ GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, sizeof(sljit_f64));
|
+ GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches, fsaveds, sizeof(sljit_f64));
|
||||||
|
|
||||||
|
if (!(options & SLJIT_ENTER_REG_ARG))
|
||||||
|
local_size += SSIZE_OF(sw);
|
||||||
|
|
||||||
compiler->local_size = (local_size + SLJIT_LOCALS_OFFSET + 15) & ~0xf;
|
compiler->local_size = (local_size + SLJIT_LOCALS_OFFSET + 15) & ~0xf;
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
{
|
{
|
||||||
sljit_s32 i, tmp, base, offset;
|
sljit_s32 i, tmp, base, offset;
|
||||||
|
@ -867,11 +886,13 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
FAIL_IF(push_inst(compiler, LFD | FS(i) | A(base) | IMM(offset)));
|
FAIL_IF(push_inst(compiler, LFD | FS(i) | A(base) | IMM(offset)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!(compiler->options & SLJIT_ENTER_REG_ARG)) {
|
||||||
offset -= SSIZE_OF(sw);
|
offset -= SSIZE_OF(sw);
|
||||||
FAIL_IF(push_inst(compiler, STACK_LOAD | S(TMP_ZERO) | A(base) | IMM(offset)));
|
FAIL_IF(push_inst(compiler, STACK_LOAD | S(TMP_ZERO) | A(base) | IMM(offset)));
|
||||||
|
}
|
||||||
|
|
||||||
tmp = SLJIT_S0 - compiler->saveds;
|
tmp = SLJIT_S0 - compiler->saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--) {
|
for (i = SLJIT_S0 - SLJIT_KEPT_SAVEDS_COUNT(compiler->options); i > tmp; i--) {
|
||||||
offset -= SSIZE_OF(sw);
|
offset -= SSIZE_OF(sw);
|
||||||
FAIL_IF(push_inst(compiler, STACK_LOAD | S(i) | A(base) | IMM(offset)));
|
FAIL_IF(push_inst(compiler, STACK_LOAD | S(i) | A(base) | IMM(offset)));
|
||||||
}
|
}
|
||||||
|
@ -1626,7 +1647,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compile
|
||||||
return emit_op(compiler, GET_OPCODE(op), flags | ALT_FORM2, dst, dstw, src2, src2w, TMP_REG2, 0);
|
return emit_op(compiler, GET_OPCODE(op), flags | ALT_FORM2, dst, dstw, src2, src2w, TMP_REG2, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (GET_OPCODE(op) != SLJIT_AND) {
|
if (!HAS_FLAGS(op) && GET_OPCODE(op) != SLJIT_AND) {
|
||||||
/* Unlike or and xor, the and resets unwanted bits as well. */
|
/* Unlike or and xor, the and resets unwanted bits as well. */
|
||||||
if (TEST_UI_IMM(src2, src2w)) {
|
if (TEST_UI_IMM(src2, src2w)) {
|
||||||
compiler->imm = (sljit_ins)src2w;
|
compiler->imm = (sljit_ins)src2w;
|
||||||
|
@ -1663,10 +1684,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compil
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, TMP_REG2, 0, src1, src1w, src2, src2w);
|
return sljit_emit_op2(compiler, op, TMP_REG2, 0, src1, src1w, src2, src2w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1818,6 +1836,7 @@ static SLJIT_INLINE sljit_s32 sljit_emit_fop1_conv_f64_from_sw(struct sljit_comp
|
||||||
if (src & SLJIT_IMM) {
|
if (src & SLJIT_IMM) {
|
||||||
if (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32)
|
if (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_S32)
|
||||||
srcw = (sljit_s32)srcw;
|
srcw = (sljit_s32)srcw;
|
||||||
|
|
||||||
FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
|
FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
|
||||||
src = TMP_REG1;
|
src = TMP_REG1;
|
||||||
}
|
}
|
||||||
|
@ -1899,7 +1918,21 @@ static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compile
|
||||||
src2 = TMP_FREG2;
|
src2 = TMP_FREG2;
|
||||||
}
|
}
|
||||||
|
|
||||||
return push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2));
|
FAIL_IF(push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2)));
|
||||||
|
|
||||||
|
switch (GET_FLAG_TYPE(op)) {
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL:
|
||||||
|
return push_inst(compiler, CROR | ((4 + 2) << 21) | ((4 + 2) << 16) | ((4 + 3) << 11));
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
|
return push_inst(compiler, CROR | ((4 + 0) << 21) | ((4 + 0) << 16) | ((4 + 3) << 11));
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
|
return push_inst(compiler, CROR | ((4 + 1) << 21) | ((4 + 1) << 16) | ((4 + 3) << 11));
|
||||||
|
}
|
||||||
|
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
|
||||||
|
@ -2076,38 +2109,50 @@ static sljit_ins get_bo_bi_flags(struct sljit_compiler *compiler, sljit_s32 type
|
||||||
case SLJIT_SIG_LESS_EQUAL:
|
case SLJIT_SIG_LESS_EQUAL:
|
||||||
return (4 << 21) | (1 << 16);
|
return (4 << 21) | (1 << 16);
|
||||||
|
|
||||||
case SLJIT_LESS_F64:
|
|
||||||
return (12 << 21) | ((4 + 0) << 16);
|
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL_F64:
|
|
||||||
return (4 << 21) | ((4 + 0) << 16);
|
|
||||||
|
|
||||||
case SLJIT_GREATER_F64:
|
|
||||||
return (12 << 21) | ((4 + 1) << 16);
|
|
||||||
|
|
||||||
case SLJIT_LESS_EQUAL_F64:
|
|
||||||
return (4 << 21) | ((4 + 1) << 16);
|
|
||||||
|
|
||||||
case SLJIT_OVERFLOW:
|
case SLJIT_OVERFLOW:
|
||||||
return (12 << 21) | (3 << 16);
|
return (12 << 21) | (3 << 16);
|
||||||
|
|
||||||
case SLJIT_NOT_OVERFLOW:
|
case SLJIT_NOT_OVERFLOW:
|
||||||
return (4 << 21) | (3 << 16);
|
return (4 << 21) | (3 << 16);
|
||||||
|
|
||||||
case SLJIT_EQUAL_F64:
|
case SLJIT_F_LESS:
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
|
return (12 << 21) | ((4 + 0) << 16);
|
||||||
|
|
||||||
|
case SLJIT_F_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
|
return (4 << 21) | ((4 + 0) << 16);
|
||||||
|
|
||||||
|
case SLJIT_F_GREATER:
|
||||||
|
case SLJIT_ORDERED_GREATER:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
|
return (12 << 21) | ((4 + 1) << 16);
|
||||||
|
|
||||||
|
case SLJIT_F_LESS_EQUAL:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS_EQUAL:
|
||||||
|
return (4 << 21) | ((4 + 1) << 16);
|
||||||
|
|
||||||
|
case SLJIT_F_EQUAL:
|
||||||
|
case SLJIT_ORDERED_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL:
|
||||||
return (12 << 21) | ((4 + 2) << 16);
|
return (12 << 21) | ((4 + 2) << 16);
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL_F64:
|
case SLJIT_F_NOT_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_NOT_EQUAL:
|
||||||
return (4 << 21) | ((4 + 2) << 16);
|
return (4 << 21) | ((4 + 2) << 16);
|
||||||
|
|
||||||
case SLJIT_UNORDERED_F64:
|
case SLJIT_UNORDERED:
|
||||||
return (12 << 21) | ((4 + 3) << 16);
|
return (12 << 21) | ((4 + 3) << 16);
|
||||||
|
|
||||||
case SLJIT_ORDERED_F64:
|
case SLJIT_ORDERED:
|
||||||
return (4 << 21) | ((4 + 3) << 16);
|
return (4 << 21) | ((4 + 3) << 16);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
SLJIT_ASSERT(type >= SLJIT_JUMP && type <= SLJIT_CALL_CDECL);
|
SLJIT_ASSERT(type >= SLJIT_JUMP && type <= SLJIT_CALL_REG_ARG);
|
||||||
return (20 << 21);
|
return (20 << 21);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2154,6 +2199,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
PTR_FAIL_IF(call_with_args(compiler, arg_types, NULL));
|
PTR_FAIL_IF(call_with_args(compiler, arg_types, NULL));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -2162,11 +2208,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_jump(compiler, type);
|
return sljit_emit_jump(compiler, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2240,14 +2282,11 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
FAIL_IF(call_with_args(compiler, arg_types, &src));
|
FAIL_IF(call_with_args(compiler, arg_types, &src));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_ijump(compiler, type, src, srcw);
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2279,7 +2318,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
bit = 0;
|
bit = 0;
|
||||||
from_xer = 0;
|
from_xer = 0;
|
||||||
|
|
||||||
switch (type & 0xff) {
|
switch (type) {
|
||||||
case SLJIT_LESS:
|
case SLJIT_LESS:
|
||||||
case SLJIT_SIG_LESS:
|
case SLJIT_SIG_LESS:
|
||||||
break;
|
break;
|
||||||
|
@ -2332,38 +2371,50 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
invert = (compiler->status_flags_state & SLJIT_CURRENT_FLAGS_ADD) != 0;
|
invert = (compiler->status_flags_state & SLJIT_CURRENT_FLAGS_ADD) != 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_LESS_F64:
|
case SLJIT_F_LESS:
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
bit = 4 + 0;
|
bit = 4 + 0;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL_F64:
|
case SLJIT_F_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
bit = 4 + 0;
|
bit = 4 + 0;
|
||||||
invert = 1;
|
invert = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_GREATER_F64:
|
case SLJIT_F_GREATER:
|
||||||
|
case SLJIT_ORDERED_GREATER:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
bit = 4 + 1;
|
bit = 4 + 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_LESS_EQUAL_F64:
|
case SLJIT_F_LESS_EQUAL:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS_EQUAL:
|
||||||
bit = 4 + 1;
|
bit = 4 + 1;
|
||||||
invert = 1;
|
invert = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_EQUAL_F64:
|
case SLJIT_F_EQUAL:
|
||||||
|
case SLJIT_ORDERED_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL:
|
||||||
bit = 4 + 2;
|
bit = 4 + 2;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL_F64:
|
case SLJIT_F_NOT_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_NOT_EQUAL:
|
||||||
bit = 4 + 2;
|
bit = 4 + 2;
|
||||||
invert = 1;
|
invert = 1;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_UNORDERED_F64:
|
case SLJIT_UNORDERED:
|
||||||
bit = 4 + 3;
|
bit = 4 + 3;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SLJIT_ORDERED_F64:
|
case SLJIT_ORDERED:
|
||||||
bit = 4 + 3;
|
bit = 4 + 3;
|
||||||
invert = 1;
|
invert = 1;
|
||||||
break;
|
break;
|
||||||
|
@ -2385,10 +2436,8 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
return emit_op_mem(compiler, input_flags, reg, dst, dstw, TMP_REG1);
|
return emit_op_mem(compiler, input_flags, reg, dst, dstw, TMP_REG1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
if (dst & SLJIT_MEM)
|
if (dst & SLJIT_MEM)
|
||||||
return sljit_emit_op2(compiler, saved_op, dst, saved_dstw, TMP_REG1, 0, TMP_REG2, 0);
|
return sljit_emit_op2(compiler, saved_op, dst, saved_dstw, TMP_REG1, 0, TMP_REG2, 0);
|
||||||
return sljit_emit_op2(compiler, saved_op, dst, 0, dst, 0, TMP_REG2, 0);
|
return sljit_emit_op2(compiler, saved_op, dst, 0, dst, 0, TMP_REG2, 0);
|
||||||
|
@ -2414,6 +2463,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_mem(struct sljit_compiler *compile
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
CHECK(check_sljit_emit_mem(compiler, type, reg, mem, memw));
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED)
|
||||||
|
return sljit_emit_mem_unaligned(compiler, type, reg, mem, memw);
|
||||||
|
|
||||||
if (type & SLJIT_MEM_POST)
|
if (type & SLJIT_MEM_POST)
|
||||||
return SLJIT_ERR_UNSUPPORTED;
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
@ -2510,6 +2562,9 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fmem(struct sljit_compiler *compil
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
CHECK(check_sljit_emit_fmem(compiler, type, freg, mem, memw));
|
||||||
|
|
||||||
|
if (type & SLJIT_MEM_UNALIGNED)
|
||||||
|
return sljit_emit_fmem_unaligned(compiler, type, freg, mem, memw);
|
||||||
|
|
||||||
if (type & SLJIT_MEM_POST)
|
if (type & SLJIT_MEM_POST)
|
||||||
return SLJIT_ERR_UNSUPPORTED;
|
return SLJIT_ERR_UNSUPPORTED;
|
||||||
|
|
||||||
|
@ -2587,3 +2642,8 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_put_label* sljit_emit_put_label(struct slj
|
||||||
|
|
||||||
return put_label;
|
return put_label;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw executable_offset)
|
||||||
|
{
|
||||||
|
sljit_set_jump_addr(addr, (sljit_uw)new_constant, executable_offset);
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,72 @@
|
||||||
|
/*
|
||||||
|
* Stack-less Just-In-Time compiler
|
||||||
|
*
|
||||||
|
* Copyright Zoltan Herczeg (hzmester@freemail.hu). All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
||||||
|
* SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
||||||
|
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
||||||
|
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||||
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_r, sljit_sw imm, sljit_s32 tmp_r)
|
||||||
|
{
|
||||||
|
SLJIT_UNUSED_ARG(tmp_r);
|
||||||
|
|
||||||
|
if (imm <= SIMM_MAX && imm >= SIMM_MIN)
|
||||||
|
return push_inst(compiler, ADDI | RD(dst_r) | RS1(TMP_ZERO) | IMM_I(imm));
|
||||||
|
|
||||||
|
if (imm & 0x800)
|
||||||
|
imm += 0x1000;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)(imm & ~0xfff)));
|
||||||
|
|
||||||
|
if ((imm & 0xfff) == 0)
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
|
return push_inst(compiler, ADDI | RD(dst_r) | RS1(dst_r) | IMM_I(imm));
|
||||||
|
}
|
||||||
|
|
||||||
|
static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value, sljit_ins last_ins)
|
||||||
|
{
|
||||||
|
if ((init_value & 0x800) != 0)
|
||||||
|
init_value += 0x1000;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst) | (sljit_ins)(init_value & ~0xfff)));
|
||||||
|
return push_inst(compiler, last_ins | RS1(dst) | IMM_I(init_value));
|
||||||
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_jump_addr(sljit_uw addr, sljit_uw new_target, sljit_sw executable_offset)
|
||||||
|
{
|
||||||
|
sljit_ins *inst = (sljit_ins*)addr;
|
||||||
|
SLJIT_UNUSED_ARG(executable_offset);
|
||||||
|
|
||||||
|
if ((new_target & 0x800) != 0)
|
||||||
|
new_target += 0x1000;
|
||||||
|
|
||||||
|
SLJIT_UPDATE_WX_FLAGS(inst, inst + 5, 0);
|
||||||
|
|
||||||
|
SLJIT_ASSERT((inst[0] & 0x7f) == LUI);
|
||||||
|
inst[0] = (inst[0] & 0xfff) | (sljit_ins)((sljit_sw)new_target & ~0xfff);
|
||||||
|
SLJIT_ASSERT((inst[1] & 0x707f) == ADDI || (inst[1] & 0x707f) == JALR);
|
||||||
|
inst[1] = (inst[1] & 0xfffff) | IMM_I(new_target);
|
||||||
|
|
||||||
|
SLJIT_UPDATE_WX_FLAGS(inst, inst + 5, 1);
|
||||||
|
inst = (sljit_ins *)SLJIT_ADD_EXEC_OFFSET(inst, executable_offset);
|
||||||
|
SLJIT_CACHE_FLUSH(inst, inst + 5);
|
||||||
|
}
|
|
@ -0,0 +1,181 @@
|
||||||
|
/*
|
||||||
|
* Stack-less Just-In-Time compiler
|
||||||
|
*
|
||||||
|
* Copyright Zoltan Herczeg (hzmester@freemail.hu). All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without modification, are
|
||||||
|
* permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||||
|
* conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||||
|
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||||
|
* provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||||
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
||||||
|
* SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
||||||
|
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
||||||
|
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||||
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_r, sljit_sw imm, sljit_s32 tmp_r)
|
||||||
|
{
|
||||||
|
sljit_sw high;
|
||||||
|
|
||||||
|
if (imm <= SIMM_MAX && imm >= SIMM_MIN)
|
||||||
|
return push_inst(compiler, ADDI | RD(dst_r) | RS1(TMP_ZERO) | IMM_I(imm));
|
||||||
|
|
||||||
|
if (imm <= 0x7fffffffl && imm >= S32_MIN) {
|
||||||
|
if (imm > S32_MAX) {
|
||||||
|
SLJIT_ASSERT((imm & 0x800) != 0);
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)0x80000000u));
|
||||||
|
return push_inst(compiler, XORI | RD(dst_r) | RS1(dst_r) | IMM_I(imm));
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((imm & 0x800) != 0)
|
||||||
|
imm += 0x1000;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)(imm & ~0xfff)));
|
||||||
|
|
||||||
|
if ((imm & 0xfff) == 0)
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
|
return push_inst(compiler, ADDI | RD(dst_r) | RS1(dst_r) | IMM_I(imm));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Trailing zeroes could be used to produce shifted immediates. */
|
||||||
|
|
||||||
|
if (imm <= 0x7ffffffffffl && imm >= -0x80000000000l) {
|
||||||
|
high = imm >> 12;
|
||||||
|
|
||||||
|
if (imm & 0x800)
|
||||||
|
high = ~high;
|
||||||
|
|
||||||
|
if (high > S32_MAX) {
|
||||||
|
SLJIT_ASSERT((high & 0x800) != 0);
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)0x80000000u));
|
||||||
|
FAIL_IF(push_inst(compiler, XORI | RD(dst_r) | RS1(dst_r) | IMM_I(high)));
|
||||||
|
} else {
|
||||||
|
if ((high & 0x800) != 0)
|
||||||
|
high += 0x1000;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)(high & ~0xfff)));
|
||||||
|
|
||||||
|
if ((high & 0xfff) != 0)
|
||||||
|
FAIL_IF(push_inst(compiler, ADDI | RD(dst_r) | RS1(dst_r) | IMM_I(high)));
|
||||||
|
}
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, SLLI | RD(dst_r) | RS1(dst_r) | IMM_I(12)));
|
||||||
|
|
||||||
|
if ((imm & 0xfff) != 0)
|
||||||
|
return push_inst(compiler, XORI | RD(dst_r) | RS1(dst_r) | IMM_I(imm));
|
||||||
|
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
high = imm >> 32;
|
||||||
|
imm = (sljit_s32)imm;
|
||||||
|
|
||||||
|
if ((imm & 0x80000000l) != 0)
|
||||||
|
high = ~high;
|
||||||
|
|
||||||
|
if (high <= 0x7ffff && high >= -0x80000) {
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(tmp_r) | (sljit_ins)(high << 12)));
|
||||||
|
high = 0x1000;
|
||||||
|
} else {
|
||||||
|
if ((high & 0x800) != 0)
|
||||||
|
high += 0x1000;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(tmp_r) | (sljit_ins)(high & ~0xfff)));
|
||||||
|
high &= 0xfff;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (imm <= SIMM_MAX && imm >= SIMM_MIN) {
|
||||||
|
FAIL_IF(push_inst(compiler, ADDI | RD(dst_r) | RS1(TMP_ZERO) | IMM_I(imm)));
|
||||||
|
imm = 0;
|
||||||
|
} else if (imm > S32_MAX) {
|
||||||
|
SLJIT_ASSERT((imm & 0x800) != 0);
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)0x80000000u));
|
||||||
|
imm = 0x1000 | (imm & 0xfff);
|
||||||
|
} else {
|
||||||
|
if ((imm & 0x800) != 0)
|
||||||
|
imm += 0x1000;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)(imm & ~0xfff)));
|
||||||
|
imm &= 0xfff;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((high & 0xfff) != 0)
|
||||||
|
FAIL_IF(push_inst(compiler, ADDI | RD(tmp_r) | RS1(tmp_r) | IMM_I(high)));
|
||||||
|
|
||||||
|
if (imm & 0x1000)
|
||||||
|
FAIL_IF(push_inst(compiler, XORI | RD(dst_r) | RS1(dst_r) | IMM_I(imm)));
|
||||||
|
else if (imm != 0)
|
||||||
|
FAIL_IF(push_inst(compiler, ADDI | RD(dst_r) | RS1(dst_r) | IMM_I(imm)));
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, SLLI | RD(tmp_r) | RS1(tmp_r) | IMM_I((high & 0x1000) ? 20 : 32)));
|
||||||
|
return push_inst(compiler, XOR | RD(dst_r) | RS1(dst_r) | RS2(tmp_r));
|
||||||
|
}
|
||||||
|
|
||||||
|
static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value, sljit_ins last_ins)
|
||||||
|
{
|
||||||
|
sljit_sw high;
|
||||||
|
|
||||||
|
if ((init_value & 0x800) != 0)
|
||||||
|
init_value += 0x1000;
|
||||||
|
|
||||||
|
high = init_value >> 32;
|
||||||
|
|
||||||
|
if ((init_value & 0x80000000l) != 0)
|
||||||
|
high = ~high;
|
||||||
|
|
||||||
|
if ((high & 0x800) != 0)
|
||||||
|
high += 0x1000;
|
||||||
|
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(TMP_REG3) | (sljit_ins)(high & ~0xfff)));
|
||||||
|
FAIL_IF(push_inst(compiler, ADDI | RD(TMP_REG3) | RS1(TMP_REG3) | IMM_I(high)));
|
||||||
|
FAIL_IF(push_inst(compiler, LUI | RD(dst) | (sljit_ins)(init_value & ~0xfff)));
|
||||||
|
FAIL_IF(push_inst(compiler, SLLI | RD(TMP_REG3) | RS1(TMP_REG3) | IMM_I(32)));
|
||||||
|
FAIL_IF(push_inst(compiler, XOR | RD(dst) | RS1(dst) | RS2(TMP_REG3)));
|
||||||
|
return push_inst(compiler, last_ins | RS1(dst) | IMM_I(init_value));
|
||||||
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_jump_addr(sljit_uw addr, sljit_uw new_target, sljit_sw executable_offset)
|
||||||
|
{
|
||||||
|
sljit_ins *inst = (sljit_ins*)addr;
|
||||||
|
sljit_sw high;
|
||||||
|
SLJIT_UNUSED_ARG(executable_offset);
|
||||||
|
|
||||||
|
if ((new_target & 0x800) != 0)
|
||||||
|
new_target += 0x1000;
|
||||||
|
|
||||||
|
high = (sljit_sw)new_target >> 32;
|
||||||
|
|
||||||
|
if ((new_target & 0x80000000l) != 0)
|
||||||
|
high = ~high;
|
||||||
|
|
||||||
|
if ((high & 0x800) != 0)
|
||||||
|
high += 0x1000;
|
||||||
|
|
||||||
|
SLJIT_UPDATE_WX_FLAGS(inst, inst + 5, 0);
|
||||||
|
|
||||||
|
SLJIT_ASSERT((inst[0] & 0x7f) == LUI);
|
||||||
|
inst[0] = (inst[0] & 0xfff) | (sljit_ins)(high & ~0xfff);
|
||||||
|
SLJIT_ASSERT((inst[1] & 0x707f) == ADDI);
|
||||||
|
inst[1] = (inst[1] & 0xfffff) | IMM_I(high);
|
||||||
|
SLJIT_ASSERT((inst[2] & 0x7f) == LUI);
|
||||||
|
inst[2] = (inst[2] & 0xfff) | (sljit_ins)((sljit_sw)new_target & ~0xfff);
|
||||||
|
SLJIT_ASSERT((inst[5] & 0x707f) == ADDI || (inst[5] & 0x707f) == JALR);
|
||||||
|
inst[5] = (inst[5] & 0xfffff) | IMM_I(new_target);
|
||||||
|
SLJIT_UPDATE_WX_FLAGS(inst, inst + 5, 1);
|
||||||
|
|
||||||
|
inst = (sljit_ins *)SLJIT_ADD_EXEC_OFFSET(inst, executable_offset);
|
||||||
|
SLJIT_CACHE_FLUSH(inst, inst + 5);
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -220,7 +220,8 @@ static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 t
|
||||||
}
|
}
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_EQUAL_F64:
|
case SLJIT_F_EQUAL:
|
||||||
|
case SLJIT_ORDERED_EQUAL:
|
||||||
return cc0;
|
return cc0;
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL:
|
case SLJIT_NOT_EQUAL:
|
||||||
|
@ -234,13 +235,14 @@ static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 t
|
||||||
}
|
}
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL_F64:
|
case SLJIT_UNORDERED_OR_NOT_EQUAL:
|
||||||
return (cc1 | cc2 | cc3);
|
return (cc1 | cc2 | cc3);
|
||||||
|
|
||||||
case SLJIT_LESS:
|
case SLJIT_LESS:
|
||||||
return cc1;
|
return cc1;
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL:
|
case SLJIT_GREATER_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
return (cc0 | cc2 | cc3);
|
return (cc0 | cc2 | cc3);
|
||||||
|
|
||||||
case SLJIT_GREATER:
|
case SLJIT_GREATER:
|
||||||
|
@ -254,7 +256,8 @@ static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 t
|
||||||
return (cc0 | cc1 | cc2);
|
return (cc0 | cc1 | cc2);
|
||||||
|
|
||||||
case SLJIT_SIG_LESS:
|
case SLJIT_SIG_LESS:
|
||||||
case SLJIT_LESS_F64:
|
case SLJIT_F_LESS:
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
return cc1;
|
return cc1;
|
||||||
|
|
||||||
case SLJIT_NOT_CARRY:
|
case SLJIT_NOT_CARRY:
|
||||||
|
@ -263,7 +266,8 @@ static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 t
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_SIG_LESS_EQUAL:
|
case SLJIT_SIG_LESS_EQUAL:
|
||||||
case SLJIT_LESS_EQUAL_F64:
|
case SLJIT_F_LESS_EQUAL:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
return (cc0 | cc1);
|
return (cc0 | cc1);
|
||||||
|
|
||||||
case SLJIT_CARRY:
|
case SLJIT_CARRY:
|
||||||
|
@ -272,6 +276,7 @@ static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 t
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_SIG_GREATER:
|
case SLJIT_SIG_GREATER:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
/* Overflow is considered greater, see SLJIT_SUB. */
|
/* Overflow is considered greater, see SLJIT_SUB. */
|
||||||
return cc2 | cc3;
|
return cc2 | cc3;
|
||||||
|
|
||||||
|
@ -283,7 +288,7 @@ static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 t
|
||||||
return (cc2 | cc3);
|
return (cc2 | cc3);
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_UNORDERED_F64:
|
case SLJIT_UNORDERED:
|
||||||
return cc3;
|
return cc3;
|
||||||
|
|
||||||
case SLJIT_NOT_OVERFLOW:
|
case SLJIT_NOT_OVERFLOW:
|
||||||
|
@ -291,14 +296,29 @@ static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 t
|
||||||
return (cc0 | cc1);
|
return (cc0 | cc1);
|
||||||
/* fallthrough */
|
/* fallthrough */
|
||||||
|
|
||||||
case SLJIT_ORDERED_F64:
|
case SLJIT_ORDERED:
|
||||||
return (cc0 | cc1 | cc2);
|
return (cc0 | cc1 | cc2);
|
||||||
|
|
||||||
case SLJIT_GREATER_F64:
|
case SLJIT_F_NOT_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL:
|
||||||
|
return (cc1 | cc2);
|
||||||
|
|
||||||
|
case SLJIT_F_GREATER:
|
||||||
|
case SLJIT_ORDERED_GREATER:
|
||||||
return cc2;
|
return cc2;
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL_F64:
|
case SLJIT_F_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
return (cc0 | cc2);
|
return (cc0 | cc2);
|
||||||
|
|
||||||
|
case SLJIT_UNORDERED_OR_LESS_EQUAL:
|
||||||
|
return (cc0 | cc1 | cc3);
|
||||||
|
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL:
|
||||||
|
return (cc0 | cc3);
|
||||||
|
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
|
return (cc1 | cc3);
|
||||||
}
|
}
|
||||||
|
|
||||||
SLJIT_UNREACHABLE();
|
SLJIT_UNREACHABLE();
|
||||||
|
@ -1628,6 +1648,11 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_cmp_info(sljit_s32 type)
|
||||||
|
{
|
||||||
|
return (type >= SLJIT_UNORDERED && type <= SLJIT_ORDERED_LESS_EQUAL);
|
||||||
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
/* Entry, exit */
|
/* Entry, exit */
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
|
@ -1636,7 +1661,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,
|
sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,
|
||||||
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
|
||||||
{
|
{
|
||||||
sljit_s32 word_arg_count = 0;
|
sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options);
|
||||||
sljit_s32 offset, i, tmp;
|
sljit_s32 offset, i, tmp;
|
||||||
|
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
|
@ -1648,8 +1673,13 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
|
|
||||||
offset = 2 * SSIZE_OF(sw);
|
offset = 2 * SSIZE_OF(sw);
|
||||||
if (saveds + scratches >= SLJIT_NUMBER_OF_REGISTERS) {
|
if (saveds + scratches >= SLJIT_NUMBER_OF_REGISTERS) {
|
||||||
FAIL_IF(push_inst(compiler, stmg(r6, r14, offset, r15))); /* save registers TODO(MGM): optimize */
|
if (saved_arg_count == 0) {
|
||||||
|
FAIL_IF(push_inst(compiler, stmg(r6, r14, offset, r15)));
|
||||||
offset += 9 * SSIZE_OF(sw);
|
offset += 9 * SSIZE_OF(sw);
|
||||||
|
} else {
|
||||||
|
FAIL_IF(push_inst(compiler, stmg(r6, r13 - (sljit_gpr)saved_arg_count, offset, r15)));
|
||||||
|
offset += (8 - saved_arg_count) * SSIZE_OF(sw);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (scratches == SLJIT_FIRST_SAVED_REG) {
|
if (scratches == SLJIT_FIRST_SAVED_REG) {
|
||||||
FAIL_IF(push_inst(compiler, stg(r6, offset, 0, r15)));
|
FAIL_IF(push_inst(compiler, stg(r6, offset, 0, r15)));
|
||||||
|
@ -1659,6 +1689,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
offset += (scratches - (SLJIT_FIRST_SAVED_REG - 1)) * SSIZE_OF(sw);
|
offset += (scratches - (SLJIT_FIRST_SAVED_REG - 1)) * SSIZE_OF(sw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (saved_arg_count == 0) {
|
||||||
if (saveds == 0) {
|
if (saveds == 0) {
|
||||||
FAIL_IF(push_inst(compiler, stg(r14, offset, 0, r15)));
|
FAIL_IF(push_inst(compiler, stg(r14, offset, 0, r15)));
|
||||||
offset += SSIZE_OF(sw);
|
offset += SSIZE_OF(sw);
|
||||||
|
@ -1666,6 +1697,20 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
FAIL_IF(push_inst(compiler, stmg(r14 - (sljit_gpr)saveds, r14, offset, r15)));
|
FAIL_IF(push_inst(compiler, stmg(r14 - (sljit_gpr)saveds, r14, offset, r15)));
|
||||||
offset += (saveds + 1) * SSIZE_OF(sw);
|
offset += (saveds + 1) * SSIZE_OF(sw);
|
||||||
}
|
}
|
||||||
|
} else if (saveds > saved_arg_count) {
|
||||||
|
if (saveds == saved_arg_count + 1) {
|
||||||
|
FAIL_IF(push_inst(compiler, stg(r14 - (sljit_gpr)saveds, offset, 0, r15)));
|
||||||
|
offset += SSIZE_OF(sw);
|
||||||
|
} else {
|
||||||
|
FAIL_IF(push_inst(compiler, stmg(r14 - (sljit_gpr)saveds, r13 - (sljit_gpr)saved_arg_count, offset, r15)));
|
||||||
|
offset += (saveds - saved_arg_count) * SSIZE_OF(sw);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (saved_arg_count > 0) {
|
||||||
|
FAIL_IF(push_inst(compiler, stg(r14, offset, 0, r15)));
|
||||||
|
offset += SSIZE_OF(sw);
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp = SLJIT_FS0 - fsaveds;
|
tmp = SLJIT_FS0 - fsaveds;
|
||||||
|
@ -1684,15 +1729,19 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, 0xe30000000071 /* lay */ | R36A(r15) | R28A(r15) | disp_s20(-local_size)));
|
FAIL_IF(push_inst(compiler, 0xe30000000071 /* lay */ | R36A(r15) | R28A(r15) | disp_s20(-local_size)));
|
||||||
|
|
||||||
|
if (options & SLJIT_ENTER_REG_ARG)
|
||||||
|
return SLJIT_SUCCESS;
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
arg_types >>= SLJIT_ARG_SHIFT;
|
||||||
|
saved_arg_count = 0;
|
||||||
tmp = 0;
|
tmp = 0;
|
||||||
while (arg_types > 0) {
|
while (arg_types > 0) {
|
||||||
if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) {
|
if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) {
|
||||||
if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) {
|
if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) {
|
||||||
FAIL_IF(push_inst(compiler, lgr(gpr(SLJIT_S0 - tmp), gpr(SLJIT_R0 + word_arg_count))));
|
FAIL_IF(push_inst(compiler, lgr(gpr(SLJIT_S0 - saved_arg_count), gpr(SLJIT_R0 + tmp))));
|
||||||
tmp++;
|
saved_arg_count++;
|
||||||
}
|
}
|
||||||
word_arg_count++;
|
tmp++;
|
||||||
}
|
}
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
arg_types >>= SLJIT_ARG_SHIFT;
|
||||||
|
@ -1719,6 +1768,7 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
sljit_s32 local_size = compiler->local_size;
|
sljit_s32 local_size = compiler->local_size;
|
||||||
sljit_s32 saveds = compiler->saveds;
|
sljit_s32 saveds = compiler->saveds;
|
||||||
sljit_s32 scratches = compiler->scratches;
|
sljit_s32 scratches = compiler->scratches;
|
||||||
|
sljit_s32 kept_saveds_count = SLJIT_KEPT_SAVEDS_COUNT(compiler->options);
|
||||||
|
|
||||||
if (is_u12(local_size))
|
if (is_u12(local_size))
|
||||||
FAIL_IF(push_inst(compiler, 0x41000000 /* ly */ | R20A(r15) | R12A(r15) | (sljit_ins)local_size));
|
FAIL_IF(push_inst(compiler, 0x41000000 /* ly */ | R20A(r15) | R12A(r15) | (sljit_ins)local_size));
|
||||||
|
@ -1727,8 +1777,13 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
|
|
||||||
offset = 2 * SSIZE_OF(sw);
|
offset = 2 * SSIZE_OF(sw);
|
||||||
if (saveds + scratches >= SLJIT_NUMBER_OF_REGISTERS) {
|
if (saveds + scratches >= SLJIT_NUMBER_OF_REGISTERS) {
|
||||||
FAIL_IF(push_inst(compiler, lmg(r6, r14, offset, r15))); /* save registers TODO(MGM): optimize */
|
if (kept_saveds_count == 0) {
|
||||||
|
FAIL_IF(push_inst(compiler, lmg(r6, r14, offset, r15)));
|
||||||
offset += 9 * SSIZE_OF(sw);
|
offset += 9 * SSIZE_OF(sw);
|
||||||
|
} else {
|
||||||
|
FAIL_IF(push_inst(compiler, lmg(r6, r13 - (sljit_gpr)kept_saveds_count, offset, r15)));
|
||||||
|
offset += (8 - kept_saveds_count) * SSIZE_OF(sw);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (scratches == SLJIT_FIRST_SAVED_REG) {
|
if (scratches == SLJIT_FIRST_SAVED_REG) {
|
||||||
FAIL_IF(push_inst(compiler, lg(r6, offset, 0, r15)));
|
FAIL_IF(push_inst(compiler, lg(r6, offset, 0, r15)));
|
||||||
|
@ -1738,6 +1793,7 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
offset += (scratches - (SLJIT_FIRST_SAVED_REG - 1)) * SSIZE_OF(sw);
|
offset += (scratches - (SLJIT_FIRST_SAVED_REG - 1)) * SSIZE_OF(sw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (kept_saveds_count == 0) {
|
||||||
if (saveds == 0) {
|
if (saveds == 0) {
|
||||||
FAIL_IF(push_inst(compiler, lg(r14, offset, 0, r15)));
|
FAIL_IF(push_inst(compiler, lg(r14, offset, 0, r15)));
|
||||||
offset += SSIZE_OF(sw);
|
offset += SSIZE_OF(sw);
|
||||||
|
@ -1745,6 +1801,20 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
FAIL_IF(push_inst(compiler, lmg(r14 - (sljit_gpr)saveds, r14, offset, r15)));
|
FAIL_IF(push_inst(compiler, lmg(r14 - (sljit_gpr)saveds, r14, offset, r15)));
|
||||||
offset += (saveds + 1) * SSIZE_OF(sw);
|
offset += (saveds + 1) * SSIZE_OF(sw);
|
||||||
}
|
}
|
||||||
|
} else if (saveds > kept_saveds_count) {
|
||||||
|
if (saveds == kept_saveds_count + 1) {
|
||||||
|
FAIL_IF(push_inst(compiler, lg(r14 - (sljit_gpr)saveds, offset, 0, r15)));
|
||||||
|
offset += SSIZE_OF(sw);
|
||||||
|
} else {
|
||||||
|
FAIL_IF(push_inst(compiler, lmg(r14 - (sljit_gpr)saveds, r13 - (sljit_gpr)kept_saveds_count, offset, r15)));
|
||||||
|
offset += (saveds - kept_saveds_count) * SSIZE_OF(sw);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (kept_saveds_count > 0) {
|
||||||
|
FAIL_IF(push_inst(compiler, lg(r14, offset, 0, r15)));
|
||||||
|
offset += SSIZE_OF(sw);
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp = SLJIT_FS0 - compiler->fsaveds;
|
tmp = SLJIT_FS0 - compiler->fsaveds;
|
||||||
|
@ -2734,10 +2804,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compil
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, (sljit_s32)tmp0, 0, src1, src1w, src2, src2w);
|
return sljit_emit_op2(compiler, op, (sljit_s32)tmp0, 0, src1, src1w, src2, src2w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3117,6 +3184,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compile
|
||||||
SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compiler *compiler, sljit_s32 type,
|
SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compiler *compiler, sljit_s32 type,
|
||||||
sljit_s32 arg_types)
|
sljit_s32 arg_types)
|
||||||
{
|
{
|
||||||
|
SLJIT_UNUSED_ARG(arg_types);
|
||||||
CHECK_ERROR_PTR();
|
CHECK_ERROR_PTR();
|
||||||
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types));
|
||||||
|
|
||||||
|
@ -3125,11 +3193,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_jump(compiler, type);
|
return sljit_emit_jump(compiler, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3181,11 +3245,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
type = SLJIT_JUMP;
|
type = SLJIT_JUMP;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return sljit_emit_ijump(compiler, type, src, srcw);
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3193,7 +3253,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
sljit_s32 dst, sljit_sw dstw,
|
sljit_s32 dst, sljit_sw dstw,
|
||||||
sljit_s32 type)
|
sljit_s32 type)
|
||||||
{
|
{
|
||||||
sljit_u8 mask = get_cc(compiler, type & 0xff);
|
sljit_u8 mask = get_cc(compiler, type);
|
||||||
|
|
||||||
CHECK_ERROR();
|
CHECK_ERROR();
|
||||||
CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, type));
|
CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, type));
|
||||||
|
@ -3263,7 +3323,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
||||||
sljit_s32 dst_reg,
|
sljit_s32 dst_reg,
|
||||||
sljit_s32 src, sljit_sw srcw)
|
sljit_s32 src, sljit_sw srcw)
|
||||||
{
|
{
|
||||||
sljit_u8 mask = get_cc(compiler, type & 0xff);
|
sljit_u8 mask = get_cc(compiler, type);
|
||||||
sljit_gpr dst_r = gpr(dst_reg & ~SLJIT_32);
|
sljit_gpr dst_r = gpr(dst_reg & ~SLJIT_32);
|
||||||
sljit_gpr src_r = FAST_IS_REG(src) ? gpr(src) : tmp0;
|
sljit_gpr src_r = FAST_IS_REG(src) ? gpr(src) : tmp0;
|
||||||
|
|
||||||
|
|
|
@ -1,283 +0,0 @@
|
||||||
/*
|
|
||||||
* Stack-less Just-In-Time compiler
|
|
||||||
*
|
|
||||||
* Copyright Zoltan Herczeg (hzmester@freemail.hu). All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without modification, are
|
|
||||||
* permitted provided that the following conditions are met:
|
|
||||||
*
|
|
||||||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
||||||
* conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
||||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
||||||
* provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY
|
|
||||||
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
||||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
||||||
* SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
||||||
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
||||||
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
||||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
||||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw imm)
|
|
||||||
{
|
|
||||||
if (imm <= SIMM_MAX && imm >= SIMM_MIN)
|
|
||||||
return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst));
|
|
||||||
|
|
||||||
FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((imm >> 10) & 0x3fffff), DR(dst)));
|
|
||||||
return (imm & 0x3ff) ? push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (imm & 0x3ff), DR(dst)) : SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define ARG2(flags, src2) ((flags & SRC2_IMM) ? IMM(src2) : S2(src2))
|
|
||||||
|
|
||||||
static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_u32 flags,
|
|
||||||
sljit_s32 dst, sljit_s32 src1, sljit_sw src2)
|
|
||||||
{
|
|
||||||
SLJIT_COMPILE_ASSERT(ICC_IS_SET == SET_FLAGS, icc_is_set_and_set_flags_must_be_the_same);
|
|
||||||
|
|
||||||
switch (op) {
|
|
||||||
case SLJIT_MOV:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if (dst != src2)
|
|
||||||
return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst));
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_U8:
|
|
||||||
case SLJIT_MOV_S8:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
if (op == SLJIT_MOV_U8)
|
|
||||||
return push_inst(compiler, AND | D(dst) | S1(src2) | IMM(0xff), DR(dst));
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst)));
|
|
||||||
return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst));
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_MOV_U16:
|
|
||||||
case SLJIT_MOV_S16:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst)));
|
|
||||||
return push_inst(compiler, (op == SLJIT_MOV_S16 ? SRA : SRL) | D(dst) | S1(dst) | IMM(16), DR(dst));
|
|
||||||
}
|
|
||||||
SLJIT_ASSERT(dst == src2);
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
|
|
||||||
case SLJIT_NOT:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
return push_inst(compiler, XNOR | (flags & SET_FLAGS) | D(dst) | S1(0) | S2(src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_CLZ:
|
|
||||||
SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
|
|
||||||
FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(src2) | S2(0), SET_FLAGS));
|
|
||||||
FAIL_IF(push_inst(compiler, OR | D(TMP_REG1) | S1(0) | S2(src2), DR(TMP_REG1)));
|
|
||||||
FAIL_IF(push_inst(compiler, BICC | DA(0x1) | (7 & DISP_MASK), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, OR | D(dst) | S1(0) | IMM(32), UNMOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, OR | D(dst) | S1(0) | IMM(-1), DR(dst)));
|
|
||||||
|
|
||||||
/* Loop. */
|
|
||||||
FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(TMP_REG1) | S2(0), SET_FLAGS));
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | D(TMP_REG1) | S1(TMP_REG1) | IMM(1), DR(TMP_REG1)));
|
|
||||||
FAIL_IF(push_inst(compiler, BICC | DA(0xe) | ((sljit_ins)-2 & DISP_MASK), UNMOVABLE_INS));
|
|
||||||
return push_inst(compiler, ADD | D(dst) | S1(dst) | IMM(1), UNMOVABLE_INS);
|
|
||||||
|
|
||||||
case SLJIT_ADD:
|
|
||||||
compiler->status_flags_state = SLJIT_CURRENT_FLAGS_ADD;
|
|
||||||
return push_inst(compiler, ADD | (flags & SET_FLAGS) | D(dst) | S1(src1) | ARG2(flags, src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_ADDC:
|
|
||||||
compiler->status_flags_state = SLJIT_CURRENT_FLAGS_ADD;
|
|
||||||
return push_inst(compiler, ADDC | (flags & SET_FLAGS) | D(dst) | S1(src1) | ARG2(flags, src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_SUB:
|
|
||||||
compiler->status_flags_state = SLJIT_CURRENT_FLAGS_SUB;
|
|
||||||
return push_inst(compiler, SUB | (flags & SET_FLAGS) | D(dst) | S1(src1) | ARG2(flags, src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_SUBC:
|
|
||||||
compiler->status_flags_state = SLJIT_CURRENT_FLAGS_SUB;
|
|
||||||
return push_inst(compiler, SUBC | (flags & SET_FLAGS) | D(dst) | S1(src1) | ARG2(flags, src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_MUL:
|
|
||||||
compiler->status_flags_state = 0;
|
|
||||||
FAIL_IF(push_inst(compiler, SMUL | D(dst) | S1(src1) | ARG2(flags, src2), DR(dst)));
|
|
||||||
if (!(flags & SET_FLAGS))
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
FAIL_IF(push_inst(compiler, SRA | D(TMP_REG1) | S1(dst) | IMM(31), DR(TMP_REG1)));
|
|
||||||
FAIL_IF(push_inst(compiler, RDY | D(TMP_LINK), DR(TMP_LINK)));
|
|
||||||
return push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(TMP_REG1) | S2(TMP_LINK), MOVABLE_INS | SET_FLAGS);
|
|
||||||
|
|
||||||
case SLJIT_AND:
|
|
||||||
return push_inst(compiler, AND | (flags & SET_FLAGS) | D(dst) | S1(src1) | ARG2(flags, src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_OR:
|
|
||||||
return push_inst(compiler, OR | (flags & SET_FLAGS) | D(dst) | S1(src1) | ARG2(flags, src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_XOR:
|
|
||||||
return push_inst(compiler, XOR | (flags & SET_FLAGS) | D(dst) | S1(src1) | ARG2(flags, src2), DRF(dst, flags));
|
|
||||||
|
|
||||||
case SLJIT_SHL:
|
|
||||||
FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src1) | ARG2(flags, src2), DR(dst)));
|
|
||||||
return !(flags & SET_FLAGS) ? SLJIT_SUCCESS : push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(dst) | S2(0), SET_FLAGS);
|
|
||||||
|
|
||||||
case SLJIT_LSHR:
|
|
||||||
FAIL_IF(push_inst(compiler, SRL | D(dst) | S1(src1) | ARG2(flags, src2), DR(dst)));
|
|
||||||
return !(flags & SET_FLAGS) ? SLJIT_SUCCESS : push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(dst) | S2(0), SET_FLAGS);
|
|
||||||
|
|
||||||
case SLJIT_ASHR:
|
|
||||||
FAIL_IF(push_inst(compiler, SRA | D(dst) | S1(src1) | ARG2(flags, src2), DR(dst)));
|
|
||||||
return !(flags & SET_FLAGS) ? SLJIT_SUCCESS : push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(dst) | S2(0), SET_FLAGS);
|
|
||||||
}
|
|
||||||
|
|
||||||
SLJIT_UNREACHABLE();
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
static sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *src)
|
|
||||||
{
|
|
||||||
sljit_s32 reg_index = 8;
|
|
||||||
sljit_s32 word_reg_index = 8;
|
|
||||||
sljit_s32 float_arg_index = 1;
|
|
||||||
sljit_s32 double_arg_count = 0;
|
|
||||||
sljit_u32 float_offset = (16 + 6) * sizeof(sljit_sw);
|
|
||||||
sljit_s32 types = 0;
|
|
||||||
sljit_s32 reg = 0;
|
|
||||||
sljit_s32 move_to_tmp2 = 0;
|
|
||||||
|
|
||||||
if (src)
|
|
||||||
reg = reg_map[*src & REG_MASK];
|
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
|
||||||
|
|
||||||
while (arg_types) {
|
|
||||||
types = (types << SLJIT_ARG_SHIFT) | (arg_types & SLJIT_ARG_MASK);
|
|
||||||
|
|
||||||
switch (arg_types & SLJIT_ARG_MASK) {
|
|
||||||
case SLJIT_ARG_TYPE_F64:
|
|
||||||
float_arg_index++;
|
|
||||||
double_arg_count++;
|
|
||||||
if (reg_index == reg || reg_index + 1 == reg)
|
|
||||||
move_to_tmp2 = 1;
|
|
||||||
reg_index += 2;
|
|
||||||
break;
|
|
||||||
case SLJIT_ARG_TYPE_F32:
|
|
||||||
float_arg_index++;
|
|
||||||
if (reg_index == reg)
|
|
||||||
move_to_tmp2 = 1;
|
|
||||||
reg_index++;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
if (reg_index != word_reg_index && reg_index == reg)
|
|
||||||
move_to_tmp2 = 1;
|
|
||||||
reg_index++;
|
|
||||||
word_reg_index++;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (move_to_tmp2) {
|
|
||||||
if (reg < 14)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | D(TMP_REG1) | S1(0) | S2A(reg), DR(TMP_REG1)));
|
|
||||||
*src = TMP_REG1;
|
|
||||||
}
|
|
||||||
|
|
||||||
arg_types = types;
|
|
||||||
|
|
||||||
while (arg_types) {
|
|
||||||
switch (arg_types & SLJIT_ARG_MASK) {
|
|
||||||
case SLJIT_ARG_TYPE_F64:
|
|
||||||
float_arg_index--;
|
|
||||||
if (float_arg_index == 4 && double_arg_count == 4) {
|
|
||||||
/* The address is not doubleword aligned, so two instructions are required to store the double. */
|
|
||||||
FAIL_IF(push_inst(compiler, STF | FD(float_arg_index) | S1(SLJIT_SP) | IMM((16 + 7) * sizeof(sljit_sw)), MOVABLE_INS));
|
|
||||||
FAIL_IF(push_inst(compiler, STF | FD(float_arg_index) | (1 << 25) | S1(SLJIT_SP) | IMM((16 + 8) * sizeof(sljit_sw)), MOVABLE_INS));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
FAIL_IF(push_inst(compiler, STDF | FD(float_arg_index) | S1(SLJIT_SP) | IMM(float_offset), MOVABLE_INS));
|
|
||||||
float_offset -= sizeof(sljit_f64);
|
|
||||||
break;
|
|
||||||
case SLJIT_ARG_TYPE_F32:
|
|
||||||
float_arg_index--;
|
|
||||||
FAIL_IF(push_inst(compiler, STF | FD(float_arg_index) | S1(SLJIT_SP) | IMM(float_offset), MOVABLE_INS));
|
|
||||||
float_offset -= sizeof(sljit_f64);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
arg_types >>= SLJIT_ARG_SHIFT;
|
|
||||||
}
|
|
||||||
|
|
||||||
float_offset = (16 + 6) * sizeof(sljit_sw);
|
|
||||||
|
|
||||||
while (types) {
|
|
||||||
switch (types & SLJIT_ARG_MASK) {
|
|
||||||
case SLJIT_ARG_TYPE_F64:
|
|
||||||
reg_index -= 2;
|
|
||||||
if (reg_index < 14) {
|
|
||||||
if ((reg_index & 0x1) != 0) {
|
|
||||||
FAIL_IF(push_inst(compiler, LDUW | DA(reg_index) | S1(SLJIT_SP) | IMM(float_offset), reg_index));
|
|
||||||
if (reg_index < 8 + 6 - 1)
|
|
||||||
FAIL_IF(push_inst(compiler, LDUW | DA(reg_index + 1) | S1(SLJIT_SP) | IMM(float_offset + sizeof(sljit_sw)), reg_index + 1));
|
|
||||||
}
|
|
||||||
else
|
|
||||||
FAIL_IF(push_inst(compiler, LDD | DA(reg_index) | S1(SLJIT_SP) | IMM(float_offset), reg_index));
|
|
||||||
}
|
|
||||||
float_offset -= sizeof(sljit_f64);
|
|
||||||
break;
|
|
||||||
case SLJIT_ARG_TYPE_F32:
|
|
||||||
reg_index--;
|
|
||||||
if (reg_index < 8 + 6)
|
|
||||||
FAIL_IF(push_inst(compiler, LDUW | DA(reg_index) | S1(SLJIT_SP) | IMM(float_offset), reg_index));
|
|
||||||
float_offset -= sizeof(sljit_f64);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
reg_index--;
|
|
||||||
word_reg_index--;
|
|
||||||
|
|
||||||
if (reg_index != word_reg_index) {
|
|
||||||
if (reg_index < 14)
|
|
||||||
FAIL_IF(push_inst(compiler, OR | DA(reg_index) | S1(0) | S2A(word_reg_index), reg_index));
|
|
||||||
else
|
|
||||||
FAIL_IF(push_inst(compiler, STW | DA(word_reg_index) | S1(SLJIT_SP) | IMM(92), word_reg_index));
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
types >>= SLJIT_ARG_SHIFT;
|
|
||||||
}
|
|
||||||
|
|
||||||
return SLJIT_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw init_value)
|
|
||||||
{
|
|
||||||
FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((init_value >> 10) & 0x3fffff), DR(dst)));
|
|
||||||
return push_inst(compiler, OR | D(dst) | S1(dst) | IMM_ARG | (init_value & 0x3ff), DR(dst));
|
|
||||||
}
|
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_jump_addr(sljit_uw addr, sljit_uw new_target, sljit_sw executable_offset)
|
|
||||||
{
|
|
||||||
sljit_ins *inst = (sljit_ins *)addr;
|
|
||||||
SLJIT_UNUSED_ARG(executable_offset);
|
|
||||||
|
|
||||||
SLJIT_UPDATE_WX_FLAGS(inst, inst + 2, 0);
|
|
||||||
SLJIT_ASSERT(((inst[0] & 0xc1c00000) == 0x01000000) && ((inst[1] & 0xc1f82000) == 0x80102000));
|
|
||||||
inst[0] = (inst[0] & 0xffc00000) | ((new_target >> 10) & 0x3fffff);
|
|
||||||
inst[1] = (inst[1] & 0xfffffc00) | (new_target & 0x3ff);
|
|
||||||
SLJIT_UPDATE_WX_FLAGS(inst, inst + 2, 1);
|
|
||||||
inst = (sljit_ins *)SLJIT_ADD_EXEC_OFFSET(inst, executable_offset);
|
|
||||||
SLJIT_CACHE_FLUSH(inst, inst + 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant, sljit_sw executable_offset)
|
|
||||||
{
|
|
||||||
sljit_set_jump_addr(addr, (sljit_uw)new_constant, executable_offset);
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -101,8 +101,7 @@ static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_uw
|
||||||
/* Calculate size of b. */
|
/* Calculate size of b. */
|
||||||
inst_size += 1; /* mod r/m byte. */
|
inst_size += 1; /* mod r/m byte. */
|
||||||
if (b & SLJIT_MEM) {
|
if (b & SLJIT_MEM) {
|
||||||
if (!(b & OFFS_REG_MASK)) {
|
if (!(b & OFFS_REG_MASK) && NOT_HALFWORD(immb)) {
|
||||||
if (NOT_HALFWORD(immb)) {
|
|
||||||
PTR_FAIL_IF(emit_load_imm64(compiler, TMP_REG2, immb));
|
PTR_FAIL_IF(emit_load_imm64(compiler, TMP_REG2, immb));
|
||||||
immb = 0;
|
immb = 0;
|
||||||
if (b & REG_MASK)
|
if (b & REG_MASK)
|
||||||
|
@ -110,25 +109,30 @@ static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_uw
|
||||||
else
|
else
|
||||||
b |= TMP_REG2;
|
b |= TMP_REG2;
|
||||||
}
|
}
|
||||||
else if (reg_lmap[b & REG_MASK] == 4)
|
|
||||||
b |= TO_OFFS_REG(SLJIT_SP);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!(b & REG_MASK))
|
if (!(b & REG_MASK))
|
||||||
inst_size += 1 + sizeof(sljit_s32); /* SIB byte required to avoid RIP based addressing. */
|
inst_size += 1 + sizeof(sljit_s32); /* SIB byte required to avoid RIP based addressing. */
|
||||||
else {
|
else {
|
||||||
if (reg_map[b & REG_MASK] >= 8)
|
if (immb != 0 && !(b & OFFS_REG_MASK)) {
|
||||||
rex |= REX_B;
|
|
||||||
|
|
||||||
if (immb != 0 && (!(b & OFFS_REG_MASK) || (b & OFFS_REG_MASK) == TO_OFFS_REG(SLJIT_SP))) {
|
|
||||||
/* Immediate operand. */
|
/* Immediate operand. */
|
||||||
if (immb <= 127 && immb >= -128)
|
if (immb <= 127 && immb >= -128)
|
||||||
inst_size += sizeof(sljit_s8);
|
inst_size += sizeof(sljit_s8);
|
||||||
else
|
else
|
||||||
inst_size += sizeof(sljit_s32);
|
inst_size += sizeof(sljit_s32);
|
||||||
}
|
}
|
||||||
else if (reg_lmap[b & REG_MASK] == 5)
|
else if (reg_lmap[b & REG_MASK] == 5) {
|
||||||
|
/* Swap registers if possible. */
|
||||||
|
if ((b & OFFS_REG_MASK) && (immb & 0x3) == 0 && reg_lmap[OFFS_REG(b)] != 5)
|
||||||
|
b = SLJIT_MEM | OFFS_REG(b) | TO_OFFS_REG(b & REG_MASK);
|
||||||
|
else
|
||||||
inst_size += sizeof(sljit_s8);
|
inst_size += sizeof(sljit_s8);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (reg_map[b & REG_MASK] >= 8)
|
||||||
|
rex |= REX_B;
|
||||||
|
|
||||||
|
if (reg_lmap[b & REG_MASK] == 4 && !(b & OFFS_REG_MASK))
|
||||||
|
b |= TO_OFFS_REG(SLJIT_SP);
|
||||||
|
|
||||||
if (b & OFFS_REG_MASK) {
|
if (b & OFFS_REG_MASK) {
|
||||||
inst_size += 1; /* SIB byte. */
|
inst_size += 1; /* SIB byte. */
|
||||||
|
@ -223,7 +227,7 @@ static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_uw
|
||||||
} else if (b & REG_MASK) {
|
} else if (b & REG_MASK) {
|
||||||
reg_lmap_b = reg_lmap[b & REG_MASK];
|
reg_lmap_b = reg_lmap[b & REG_MASK];
|
||||||
|
|
||||||
if (!(b & OFFS_REG_MASK) || (b & OFFS_REG_MASK) == TO_OFFS_REG(SLJIT_SP) || reg_lmap_b == 5) {
|
if (!(b & OFFS_REG_MASK) || (b & OFFS_REG_MASK) == TO_OFFS_REG(SLJIT_SP)) {
|
||||||
if (immb != 0 || reg_lmap_b == 5) {
|
if (immb != 0 || reg_lmap_b == 5) {
|
||||||
if (immb <= 127 && immb >= -128)
|
if (immb <= 127 && immb >= -128)
|
||||||
*buf_ptr |= 0x40;
|
*buf_ptr |= 0x40;
|
||||||
|
@ -248,8 +252,14 @@ static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_uw
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
if (reg_lmap_b == 5)
|
||||||
|
*buf_ptr |= 0x40;
|
||||||
|
|
||||||
*buf_ptr++ |= 0x04;
|
*buf_ptr++ |= 0x04;
|
||||||
*buf_ptr++ = U8(reg_lmap_b | (reg_lmap[OFFS_REG(b)] << 3) | (immb << 6));
|
*buf_ptr++ = U8(reg_lmap_b | (reg_lmap[OFFS_REG(b)] << 3) | (immb << 6));
|
||||||
|
|
||||||
|
if (reg_lmap_b == 5)
|
||||||
|
*buf_ptr++ = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -366,7 +376,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
{
|
{
|
||||||
sljit_uw size;
|
sljit_uw size;
|
||||||
sljit_s32 word_arg_count = 0;
|
sljit_s32 word_arg_count = 0;
|
||||||
sljit_s32 saved_arg_count = 0;
|
sljit_s32 saved_arg_count = SLJIT_KEPT_SAVEDS_COUNT(options);
|
||||||
sljit_s32 saved_regs_size, tmp, i;
|
sljit_s32 saved_regs_size, tmp, i;
|
||||||
#ifdef _WIN64
|
#ifdef _WIN64
|
||||||
sljit_s32 saved_float_regs_size;
|
sljit_s32 saved_float_regs_size;
|
||||||
|
@ -379,16 +389,19 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compi
|
||||||
CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size));
|
||||||
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size);
|
||||||
|
|
||||||
|
if (options & SLJIT_ENTER_REG_ARG)
|
||||||
|
arg_types = 0;
|
||||||
|
|
||||||
/* Emit ENDBR64 at function entry if needed. */
|
/* Emit ENDBR64 at function entry if needed. */
|
||||||
FAIL_IF(emit_endbranch(compiler));
|
FAIL_IF(emit_endbranch(compiler));
|
||||||
|
|
||||||
compiler->mode32 = 0;
|
compiler->mode32 = 0;
|
||||||
|
|
||||||
/* Including the return address saved by the call instruction. */
|
/* Including the return address saved by the call instruction. */
|
||||||
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1);
|
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - saved_arg_count, 1);
|
||||||
|
|
||||||
tmp = SLJIT_S0 - saveds;
|
tmp = SLJIT_S0 - saveds;
|
||||||
for (i = SLJIT_S0; i > tmp; i--) {
|
for (i = SLJIT_S0 - saved_arg_count; i > tmp; i--) {
|
||||||
size = reg_map[i] >= 8 ? 2 : 1;
|
size = reg_map[i] >= 8 ? 2 : 1;
|
||||||
inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
|
inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
|
||||||
FAIL_IF(!inst);
|
FAIL_IF(!inst);
|
||||||
|
@ -561,7 +574,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *comp
|
||||||
#endif /* _WIN64 */
|
#endif /* _WIN64 */
|
||||||
|
|
||||||
/* Including the return address saved by the call instruction. */
|
/* Including the return address saved by the call instruction. */
|
||||||
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds, 1);
|
saved_regs_size = GET_SAVED_REGISTERS_SIZE(scratches, saveds - SLJIT_KEPT_SAVEDS_COUNT(options), 1);
|
||||||
compiler->local_size = ((local_size + saved_regs_size + 0xf) & ~0xf) - saved_regs_size;
|
compiler->local_size = ((local_size + saved_regs_size + 0xf) & ~0xf) - saved_regs_size;
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -633,8 +646,8 @@ static sljit_s32 emit_stack_frame_release(struct sljit_compiler *compiler)
|
||||||
POP_REG(reg_lmap[i]);
|
POP_REG(reg_lmap[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
tmp = compiler->saveds < SLJIT_NUMBER_OF_SAVED_REGISTERS ? (SLJIT_S0 + 1 - compiler->saveds) : SLJIT_FIRST_SAVED_REG;
|
tmp = SLJIT_S0 - SLJIT_KEPT_SAVEDS_COUNT(compiler->options);
|
||||||
for (i = tmp; i <= SLJIT_S0; i++) {
|
for (i = SLJIT_S0 + 1 - compiler->saveds; i <= tmp; i++) {
|
||||||
size = reg_map[i] >= 8 ? 2 : 1;
|
size = reg_map[i] >= 8 ? 2 : 1;
|
||||||
inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
|
inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
|
||||||
FAIL_IF(!inst);
|
FAIL_IF(!inst);
|
||||||
|
@ -786,6 +799,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
|
|
||||||
compiler->mode32 = 0;
|
compiler->mode32 = 0;
|
||||||
|
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
PTR_FAIL_IF(call_with_args(compiler, arg_types, NULL));
|
PTR_FAIL_IF(call_with_args(compiler, arg_types, NULL));
|
||||||
|
|
||||||
if (type & SLJIT_CALL_RETURN) {
|
if (type & SLJIT_CALL_RETURN) {
|
||||||
|
@ -793,10 +807,7 @@ SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_call(struct sljit_compile
|
||||||
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
type = SLJIT_JUMP | (type & SLJIT_REWRITABLE_JUMP);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_jump(compiler, type);
|
return sljit_emit_jump(compiler, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -822,16 +833,15 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_icall(struct sljit_compiler *compi
|
||||||
}
|
}
|
||||||
|
|
||||||
FAIL_IF(emit_stack_frame_release(compiler));
|
FAIL_IF(emit_stack_frame_release(compiler));
|
||||||
type = SLJIT_JUMP;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((type & 0xff) != SLJIT_CALL_REG_ARG)
|
||||||
FAIL_IF(call_with_args(compiler, arg_types, &src));
|
FAIL_IF(call_with_args(compiler, arg_types, &src));
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
if (type & SLJIT_CALL_RETURN)
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
type = SLJIT_JUMP;
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
return sljit_emit_ijump(compiler, type, src, srcw);
|
return sljit_emit_ijump(compiler, type, src, srcw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,11 +26,7 @@
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
|
SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
|
||||||
{
|
{
|
||||||
#if (defined SLJIT_X86_32_FASTCALL && SLJIT_X86_32_FASTCALL)
|
|
||||||
return "x86" SLJIT_CPUINFO " ABI:fastcall";
|
|
||||||
#else
|
|
||||||
return "x86" SLJIT_CPUINFO;
|
return "x86" SLJIT_CPUINFO;
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -379,29 +375,41 @@ static sljit_u8 get_jump_code(sljit_uw type)
|
||||||
{
|
{
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case SLJIT_EQUAL:
|
case SLJIT_EQUAL:
|
||||||
case SLJIT_EQUAL_F64:
|
case SLJIT_F_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_EQUAL:
|
||||||
|
case SLJIT_ORDERED_EQUAL: /* Not supported. */
|
||||||
return 0x84 /* je */;
|
return 0x84 /* je */;
|
||||||
|
|
||||||
case SLJIT_NOT_EQUAL:
|
case SLJIT_NOT_EQUAL:
|
||||||
case SLJIT_NOT_EQUAL_F64:
|
case SLJIT_F_NOT_EQUAL:
|
||||||
|
case SLJIT_ORDERED_NOT_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_NOT_EQUAL: /* Not supported. */
|
||||||
return 0x85 /* jne */;
|
return 0x85 /* jne */;
|
||||||
|
|
||||||
case SLJIT_LESS:
|
case SLJIT_LESS:
|
||||||
case SLJIT_CARRY:
|
case SLJIT_CARRY:
|
||||||
case SLJIT_LESS_F64:
|
case SLJIT_F_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
return 0x82 /* jc */;
|
return 0x82 /* jc */;
|
||||||
|
|
||||||
case SLJIT_GREATER_EQUAL:
|
case SLJIT_GREATER_EQUAL:
|
||||||
case SLJIT_NOT_CARRY:
|
case SLJIT_NOT_CARRY:
|
||||||
case SLJIT_GREATER_EQUAL_F64:
|
case SLJIT_F_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_GREATER_EQUAL:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
return 0x83 /* jae */;
|
return 0x83 /* jae */;
|
||||||
|
|
||||||
case SLJIT_GREATER:
|
case SLJIT_GREATER:
|
||||||
case SLJIT_GREATER_F64:
|
case SLJIT_F_GREATER:
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
|
case SLJIT_ORDERED_GREATER:
|
||||||
return 0x87 /* jnbe */;
|
return 0x87 /* jnbe */;
|
||||||
|
|
||||||
case SLJIT_LESS_EQUAL:
|
case SLJIT_LESS_EQUAL:
|
||||||
case SLJIT_LESS_EQUAL_F64:
|
case SLJIT_F_LESS_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_LESS_EQUAL:
|
||||||
return 0x86 /* jbe */;
|
return 0x86 /* jbe */;
|
||||||
|
|
||||||
case SLJIT_SIG_LESS:
|
case SLJIT_SIG_LESS:
|
||||||
|
@ -422,10 +430,10 @@ static sljit_u8 get_jump_code(sljit_uw type)
|
||||||
case SLJIT_NOT_OVERFLOW:
|
case SLJIT_NOT_OVERFLOW:
|
||||||
return 0x81 /* jno */;
|
return 0x81 /* jno */;
|
||||||
|
|
||||||
case SLJIT_UNORDERED_F64:
|
case SLJIT_UNORDERED:
|
||||||
return 0x8a /* jp */;
|
return 0x8a /* jp */;
|
||||||
|
|
||||||
case SLJIT_ORDERED_F64:
|
case SLJIT_ORDERED:
|
||||||
return 0x8b /* jpo */;
|
return 0x8b /* jpo */;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -682,6 +690,20 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_has_cpu_feature(sljit_s32 feature_type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_cmp_info(sljit_s32 type)
|
||||||
|
{
|
||||||
|
if (type < SLJIT_UNORDERED || type > SLJIT_ORDERED_LESS_EQUAL)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case SLJIT_ORDERED_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_NOT_EQUAL:
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
/* Operators */
|
/* Operators */
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
|
@ -2312,10 +2334,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2u(struct sljit_compiler *compil
|
||||||
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
CHECK(check_sljit_emit_op2(compiler, op, 1, 0, 0, src1, src1w, src2, src2w));
|
||||||
|
|
||||||
if (opcode != SLJIT_SUB && opcode != SLJIT_AND) {
|
if (opcode != SLJIT_SUB && opcode != SLJIT_AND) {
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w);
|
return sljit_emit_op2(compiler, op, TMP_REG1, 0, src1, src1w, src2, src2w);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2516,6 +2535,19 @@ static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compile
|
||||||
sljit_s32 src1, sljit_sw src1w,
|
sljit_s32 src1, sljit_sw src1w,
|
||||||
sljit_s32 src2, sljit_sw src2w)
|
sljit_s32 src2, sljit_sw src2w)
|
||||||
{
|
{
|
||||||
|
switch (GET_FLAG_TYPE(op)) {
|
||||||
|
case SLJIT_ORDERED_LESS:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER_EQUAL:
|
||||||
|
case SLJIT_UNORDERED_OR_GREATER:
|
||||||
|
case SLJIT_ORDERED_LESS_EQUAL:
|
||||||
|
if (!FAST_IS_REG(src2)) {
|
||||||
|
FAIL_IF(emit_sse2_load(compiler, op & SLJIT_32, TMP_FREG, src2, src2w));
|
||||||
|
src2 = TMP_FREG;
|
||||||
|
}
|
||||||
|
|
||||||
|
return emit_sse2_logic(compiler, UCOMISD_x_xm, !(op & SLJIT_32), src2, src1, src1w);
|
||||||
|
}
|
||||||
|
|
||||||
if (!FAST_IS_REG(src1)) {
|
if (!FAST_IS_REG(src1)) {
|
||||||
FAIL_IF(emit_sse2_load(compiler, op & SLJIT_32, TMP_FREG, src1, src1w));
|
FAIL_IF(emit_sse2_load(compiler, op & SLJIT_32, TMP_FREG, src1, src1w));
|
||||||
src1 = TMP_FREG;
|
src1 = TMP_FREG;
|
||||||
|
@ -2769,7 +2801,6 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
ADJUST_LOCAL_OFFSET(dst, dstw);
|
ADJUST_LOCAL_OFFSET(dst, dstw);
|
||||||
CHECK_EXTRA_REGS(dst, dstw, (void)0);
|
CHECK_EXTRA_REGS(dst, dstw, (void)0);
|
||||||
|
|
||||||
type &= 0xff;
|
|
||||||
/* setcc = jcc + 0x10. */
|
/* setcc = jcc + 0x10. */
|
||||||
cond_set = U8(get_jump_code((sljit_uw)type) + 0x10);
|
cond_set = U8(get_jump_code((sljit_uw)type) + 0x10);
|
||||||
|
|
||||||
|
@ -2813,10 +2844,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
return emit_mov(compiler, dst, dstw, TMP_REG1, 0);
|
return emit_mov(compiler, dst, dstw, TMP_REG1, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, dst_save, dstw_save, dst_save, dstw_save, TMP_REG1, 0);
|
return sljit_emit_op2(compiler, op, dst_save, dstw_save, dst_save, dstw_save, TMP_REG1, 0);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
@ -2927,10 +2955,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *co
|
||||||
if (GET_OPCODE(op) < SLJIT_ADD)
|
if (GET_OPCODE(op) < SLJIT_ADD)
|
||||||
return emit_mov(compiler, dst, dstw, TMP_REG1, 0);
|
return emit_mov(compiler, dst, dstw, TMP_REG1, 0);
|
||||||
|
|
||||||
#if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
|
SLJIT_SKIP_CHECKS(compiler);
|
||||||
|| (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
|
|
||||||
compiler->skip_checks = 1;
|
|
||||||
#endif
|
|
||||||
return sljit_emit_op2(compiler, op, dst_save, dstw_save, dst_save, dstw_save, TMP_REG1, 0);
|
return sljit_emit_op2(compiler, op, dst_save, dstw_save, dst_save, dstw_save, TMP_REG1, 0);
|
||||||
#endif /* SLJIT_CONFIG_X86_64 */
|
#endif /* SLJIT_CONFIG_X86_64 */
|
||||||
}
|
}
|
||||||
|
@ -2971,7 +2996,7 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_cmov(struct sljit_compiler *compil
|
||||||
inst = emit_x86_instruction(compiler, 2, dst_reg, 0, src, srcw);
|
inst = emit_x86_instruction(compiler, 2, dst_reg, 0, src, srcw);
|
||||||
FAIL_IF(!inst);
|
FAIL_IF(!inst);
|
||||||
*inst++ = GROUP_0F;
|
*inst++ = GROUP_0F;
|
||||||
*inst = U8(get_jump_code(type & 0xff) - 0x40);
|
*inst = U8(get_jump_code((sljit_uw)type) - 0x40);
|
||||||
return SLJIT_SUCCESS;
|
return SLJIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -59,38 +59,15 @@
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
|
||||||
#ifdef __NetBSD__
|
#ifdef __NetBSD__
|
||||||
#if defined(PROT_MPROTECT)
|
|
||||||
#define check_se_protected(ptr, size) (0)
|
|
||||||
#define SLJIT_PROT_WX PROT_MPROTECT(PROT_EXEC)
|
#define SLJIT_PROT_WX PROT_MPROTECT(PROT_EXEC)
|
||||||
#else /* !PROT_MPROTECT */
|
#define check_se_protected(ptr, size) (0)
|
||||||
#ifdef _NETBSD_SOURCE
|
|
||||||
#include <sys/param.h>
|
|
||||||
#else /* !_NETBSD_SOURCE */
|
|
||||||
typedef unsigned int u_int;
|
|
||||||
#define devmajor_t sljit_s32
|
|
||||||
#endif /* _NETBSD_SOURCE */
|
|
||||||
#include <sys/sysctl.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
#define check_se_protected(ptr, size) netbsd_se_protected()
|
|
||||||
|
|
||||||
static SLJIT_INLINE int netbsd_se_protected(void)
|
|
||||||
{
|
|
||||||
int mib[3];
|
|
||||||
int paxflags;
|
|
||||||
size_t len = sizeof(paxflags);
|
|
||||||
|
|
||||||
mib[0] = CTL_PROC;
|
|
||||||
mib[1] = getpid();
|
|
||||||
mib[2] = PROC_PID_PAXFLAGS;
|
|
||||||
|
|
||||||
if (SLJIT_UNLIKELY(sysctl(mib, 3, &paxflags, &len, NULL, 0) < 0))
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
return (paxflags & CTL_PROC_PAXFLAGS_MPROTECT) ? -1 : 0;
|
|
||||||
}
|
|
||||||
#endif /* PROT_MPROTECT */
|
|
||||||
#else /* POSIX */
|
#else /* POSIX */
|
||||||
|
#if !(defined SLJIT_SINGLE_THREADED && SLJIT_SINGLE_THREADED)
|
||||||
|
#include <pthread.h>
|
||||||
|
#define SLJIT_SE_LOCK() pthread_mutex_lock(&se_lock)
|
||||||
|
#define SLJIT_SE_UNLOCK() pthread_mutex_unlock(&se_lock)
|
||||||
|
#endif /* !SLJIT_SINGLE_THREADED */
|
||||||
|
|
||||||
#define check_se_protected(ptr, size) generic_se_protected(ptr, size)
|
#define check_se_protected(ptr, size) generic_se_protected(ptr, size)
|
||||||
|
|
||||||
static SLJIT_INLINE int generic_se_protected(void *ptr, sljit_uw size)
|
static SLJIT_INLINE int generic_se_protected(void *ptr, sljit_uw size)
|
||||||
|
@ -102,22 +79,20 @@ static SLJIT_INLINE int generic_se_protected(void *ptr, sljit_uw size)
|
||||||
}
|
}
|
||||||
#endif /* NetBSD */
|
#endif /* NetBSD */
|
||||||
|
|
||||||
#if defined SLJIT_SINGLE_THREADED && SLJIT_SINGLE_THREADED
|
#ifndef SLJIT_SE_LOCK
|
||||||
#define SLJIT_SE_LOCK()
|
#define SLJIT_SE_LOCK()
|
||||||
|
#endif
|
||||||
|
#ifndef SLJIT_SE_UNLOCK
|
||||||
#define SLJIT_SE_UNLOCK()
|
#define SLJIT_SE_UNLOCK()
|
||||||
#else /* !SLJIT_SINGLE_THREADED */
|
#endif
|
||||||
#include <pthread.h>
|
|
||||||
#define SLJIT_SE_LOCK() pthread_mutex_lock(&se_lock)
|
|
||||||
#define SLJIT_SE_UNLOCK() pthread_mutex_unlock(&se_lock)
|
|
||||||
#endif /* SLJIT_SINGLE_THREADED */
|
|
||||||
|
|
||||||
#ifndef SLJIT_PROT_WX
|
#ifndef SLJIT_PROT_WX
|
||||||
#define SLJIT_PROT_WX 0
|
#define SLJIT_PROT_WX 0
|
||||||
#endif /* !SLJIT_PROT_WX */
|
#endif
|
||||||
|
|
||||||
SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size)
|
SLJIT_API_FUNC_ATTRIBUTE void* sljit_malloc_exec(sljit_uw size)
|
||||||
{
|
{
|
||||||
#if !(defined SLJIT_SINGLE_THREADED && SLJIT_SINGLE_THREADED)
|
#if !(defined SLJIT_SINGLE_THREADED && SLJIT_SINGLE_THREADED) \
|
||||||
|
&& !defined(__NetBSD__)
|
||||||
static pthread_mutex_t se_lock = PTHREAD_MUTEX_INITIALIZER;
|
static pthread_mutex_t se_lock = PTHREAD_MUTEX_INITIALIZER;
|
||||||
#endif
|
#endif
|
||||||
static int se_protected = !SLJIT_PROT_WX;
|
static int se_protected = !SLJIT_PROT_WX;
|
||||||
|
|
Loading…
Reference in New Issue