[Pcre-svn] [501] code/trunk/src: JIT compiler update.

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [501] code/trunk/src: JIT compiler update.
Revision: 501
          http://www.exim.org/viewvc/pcre2?view=rev&revision=501
Author:   zherczeg
Date:     2016-02-29 09:09:40 +0000 (Mon, 29 Feb 2016)
Log Message:
-----------
JIT compiler update.


Modified Paths:
--------------
    code/trunk/src/pcre2_jit_compile.c
    code/trunk/src/pcre2_jit_match.c
    code/trunk/src/sljit/sljitConfigInternal.h
    code/trunk/src/sljit/sljitExecAllocator.c
    code/trunk/src/sljit/sljitLir.c
    code/trunk/src/sljit/sljitLir.h
    code/trunk/src/sljit/sljitNativeARM_32.c
    code/trunk/src/sljit/sljitNativeARM_64.c
    code/trunk/src/sljit/sljitNativeARM_T2_32.c
    code/trunk/src/sljit/sljitNativeMIPS_32.c
    code/trunk/src/sljit/sljitNativeMIPS_64.c
    code/trunk/src/sljit/sljitNativeMIPS_common.c
    code/trunk/src/sljit/sljitNativePPC_32.c
    code/trunk/src/sljit/sljitNativePPC_64.c
    code/trunk/src/sljit/sljitNativePPC_common.c
    code/trunk/src/sljit/sljitNativeSPARC_32.c
    code/trunk/src/sljit/sljitNativeSPARC_common.c
    code/trunk/src/sljit/sljitNativeTILEGX_64.c
    code/trunk/src/sljit/sljitNativeX86_32.c
    code/trunk/src/sljit/sljitNativeX86_64.c
    code/trunk/src/sljit/sljitNativeX86_common.c
    code/trunk/src/sljit/sljitUtils.c


Modified: code/trunk/src/pcre2_jit_compile.c
===================================================================
--- code/trunk/src/pcre2_jit_compile.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/pcre2_jit_compile.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -186,7 +186,7 @@
   void *callout_data;
   /* Everything else after. */
   sljit_uw offset_limit;
-  sljit_ui limit_match;
+  sljit_u32 limit_match;
   uint32_t oveccount;
   uint32_t options;
 } jit_arguments;
@@ -197,8 +197,8 @@
   void *executable_funcs[JIT_NUMBER_OF_COMPILE_MODES];
   void *read_only_data_heads[JIT_NUMBER_OF_COMPILE_MODES];
   sljit_uw executable_sizes[JIT_NUMBER_OF_COMPILE_MODES];
-  sljit_ui top_bracket;
-  sljit_ui limit_match;
+  sljit_u32 top_bracket;
+  sljit_u32 limit_match;
 } executable_functions;


 typedef struct jump_list {
@@ -349,46 +349,46 @@
   /* First byte code. */
   PCRE2_SPTR start;
   /* Maps private data offset to each opcode. */
-  sljit_si *private_data_ptrs;
+  sljit_s32 *private_data_ptrs;
   /* Chain list of read-only data ptrs. */
   void *read_only_data_head;
   /* Tells whether the capturing bracket is optimized. */
-  sljit_ub *optimized_cbracket;
+  sljit_u8 *optimized_cbracket;
   /* Tells whether the starting offset is a target of then. */
-  sljit_ub *then_offsets;
+  sljit_u8 *then_offsets;
   /* Current position where a THEN must jump. */
   then_trap_backtrack *then_trap;
   /* Starting offset of private data for capturing brackets. */
-  sljit_si cbra_ptr;
+  sljit_s32 cbra_ptr;
   /* Output vector starting point. Must be divisible by 2. */
-  sljit_si ovector_start;
+  sljit_s32 ovector_start;
   /* Points to the starting character of the current match. */
-  sljit_si start_ptr;
+  sljit_s32 start_ptr;
   /* Last known position of the requested byte. */
-  sljit_si req_char_ptr;
+  sljit_s32 req_char_ptr;
   /* Head of the last recursion. */
-  sljit_si recursive_head_ptr;
+  sljit_s32 recursive_head_ptr;
   /* First inspected character for partial matching.
      (Needed for avoiding zero length partial matches.) */
-  sljit_si start_used_ptr;
+  sljit_s32 start_used_ptr;
   /* Starting pointer for partial soft matches. */
-  sljit_si hit_start;
+  sljit_s32 hit_start;
   /* Pointer of the match end position. */
-  sljit_si match_end_ptr;
+  sljit_s32 match_end_ptr;
   /* Points to the marked string. */
-  sljit_si mark_ptr;
+  sljit_s32 mark_ptr;
   /* Recursive control verb management chain. */
-  sljit_si control_head_ptr;
+  sljit_s32 control_head_ptr;
   /* Points to the last matched capture block index. */
-  sljit_si capture_last_ptr;
+  sljit_s32 capture_last_ptr;
   /* Fast forward skipping byte code pointer. */
   PCRE2_SPTR fast_forward_bc_ptr;
   /* Locals used by fast fail optimization. */
-  sljit_si fast_fail_start_ptr;
-  sljit_si fast_fail_end_ptr;
+  sljit_s32 fast_fail_start_ptr;
+  sljit_s32 fast_fail_end_ptr;


   /* Flipped and lower case tables. */
-  const sljit_ub *fcc;
+  const sljit_u8 *fcc;
   sljit_sw lcc;
   /* Mode can be PCRE2_JIT_COMPLETE and others. */
   int mode;
@@ -408,12 +408,12 @@
   BOOL positive_assert;
   /* Newline control. */
   int nltype;
-  sljit_ui nlmax;
-  sljit_ui nlmin;
+  sljit_u32 nlmax;
+  sljit_u32 nlmin;
   int newline;
   int bsr_nltype;
-  sljit_ui bsr_nlmax;
-  sljit_ui bsr_nlmin;
+  sljit_u32 bsr_nlmax;
+  sljit_u32 bsr_nlmin;
   /* Dollar endonly. */
   int endonly;
   /* Tables. */
@@ -470,27 +470,27 @@
 #if defined SLJIT_UNALIGNED && SLJIT_UNALIGNED
   int ucharptr;
   union {
-    sljit_si asint;
-    sljit_uh asushort;
+    sljit_s32 asint;
+    sljit_u16 asushort;
 #if PCRE2_CODE_UNIT_WIDTH == 8
-    sljit_ub asbyte;
-    sljit_ub asuchars[4];
+    sljit_u8 asbyte;
+    sljit_u8 asuchars[4];
 #elif PCRE2_CODE_UNIT_WIDTH == 16
-    sljit_uh asuchars[2];
+    sljit_u16 asuchars[2];
 #elif PCRE2_CODE_UNIT_WIDTH == 32
-    sljit_ui asuchars[1];
+    sljit_u32 asuchars[1];
 #endif
   } c;
   union {
-    sljit_si asint;
-    sljit_uh asushort;
+    sljit_s32 asint;
+    sljit_u16 asushort;
 #if PCRE2_CODE_UNIT_WIDTH == 8
-    sljit_ub asbyte;
-    sljit_ub asuchars[4];
+    sljit_u8 asbyte;
+    sljit_u8 asuchars[4];
 #elif PCRE2_CODE_UNIT_WIDTH == 16
-    sljit_uh asuchars[2];
+    sljit_u16 asuchars[2];
 #elif PCRE2_CODE_UNIT_WIDTH == 32
-    sljit_ui asuchars[1];
+    sljit_u32 asuchars[1];
 #endif
   } oc;
 #endif
@@ -532,17 +532,17 @@
 #define PRIVATE_DATA(cc) (common->private_data_ptrs[(cc) - common->start])


#if PCRE2_CODE_UNIT_WIDTH == 8
-#define MOV_UCHAR SLJIT_MOV_UB
-#define MOVU_UCHAR SLJIT_MOVU_UB
+#define MOV_UCHAR SLJIT_MOV_U8
+#define MOVU_UCHAR SLJIT_MOVU_U8
#define IN_UCHARS(x) (x)
#elif PCRE2_CODE_UNIT_WIDTH == 16
-#define MOV_UCHAR SLJIT_MOV_UH
-#define MOVU_UCHAR SLJIT_MOVU_UH
+#define MOV_UCHAR SLJIT_MOV_U16
+#define MOVU_UCHAR SLJIT_MOVU_U16
#define UCHAR_SHIFT (1)
#define IN_UCHARS(x) ((x) << UCHAR_SHIFT)
#elif PCRE2_CODE_UNIT_WIDTH == 32
-#define MOV_UCHAR SLJIT_MOV_UI
-#define MOVU_UCHAR SLJIT_MOVU_UI
+#define MOV_UCHAR SLJIT_MOV_U32
+#define MOVU_UCHAR SLJIT_MOVU_U32
#define UCHAR_SHIFT (2)
#define IN_UCHARS(x) ((x) << UCHAR_SHIFT)
#else
@@ -1055,7 +1055,7 @@
return FALSE;
}

-static SLJIT_INLINE void detect_fast_fail(compiler_common *common, PCRE2_SPTR cc, int *private_data_start, sljit_si depth)
+static SLJIT_INLINE void detect_fast_fail(compiler_common *common, PCRE2_SPTR cc, int *private_data_start, sljit_s32 depth)
{
PCRE2_SPTR next_alt;

@@ -1120,8 +1120,8 @@

static int get_class_iterator_size(PCRE2_SPTR cc)
{
-sljit_ui min;
-sljit_ui max;
+sljit_u32 min;
+sljit_u32 max;
switch(*cc)
{
case OP_CRSTAR:
@@ -1158,7 +1158,7 @@
PCRE2_SPTR max_end;
PCRE2_UCHAR type;
sljit_sw length = end - begin;
-sljit_si min, max, i;
+sljit_s32 min, max, i;

/* Detect fixed iterations first. */
if (end[-(1 + LINK_SIZE)] != OP_KET)
@@ -2223,7 +2223,7 @@
SLJIT_ASSERT(cc == ccend && stackptr == stacktop && (save || (tmp1empty && tmp2empty)));
}

-static SLJIT_INLINE PCRE2_SPTR set_then_offsets(compiler_common *common, PCRE2_SPTR cc, sljit_ub *current_offset)
+static SLJIT_INLINE PCRE2_SPTR set_then_offsets(compiler_common *common, PCRE2_SPTR cc, sljit_u8 *current_offset)
{
PCRE2_SPTR end = bracketend(cc);
BOOL has_alternatives = cc[GET(cc, 1)] == OP_ALT;
@@ -2390,7 +2390,7 @@
{
DEFINE_COMPILER;
struct sljit_label *loop;
-sljit_si i;
+sljit_s32 i;

/* At this point we can freely use all temporary registers. */
SLJIT_ASSERT(length > 1);
@@ -2415,7 +2415,7 @@
static SLJIT_INLINE void reset_fast_fail(compiler_common *common)
{
DEFINE_COMPILER;
-sljit_si i;
+sljit_s32 i;

SLJIT_ASSERT(common->fast_fail_start_ptr < common->fast_fail_end_ptr);

@@ -2496,7 +2496,7 @@
OP1(SLJIT_MOV, SLJIT_S0, 0, SLJIT_MEM1(SLJIT_SP), common->start_ptr);
if (common->mark_ptr != 0)
OP1(SLJIT_MOV, SLJIT_R2, 0, SLJIT_MEM1(SLJIT_SP), common->mark_ptr);
-OP1(SLJIT_MOV_UI, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, oveccount));
+OP1(SLJIT_MOV_U32, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, oveccount));
OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, startchar_ptr), SLJIT_S0, 0);
if (common->mark_ptr != 0)
OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_R0), SLJIT_OFFSETOF(jit_arguments, mark_ptr), SLJIT_R2, 0);
@@ -2515,7 +2515,7 @@
#endif
SLJIT_ASSERT(sizeof(PCRE2_SIZE) == 4 || sizeof(PCRE2_SIZE) == 8);
if (sizeof(PCRE2_SIZE) == 4)
- OP1(SLJIT_MOVU_UI, SLJIT_MEM1(SLJIT_R2), sizeof(PCRE2_SIZE), SLJIT_S1, 0);
+ OP1(SLJIT_MOVU_U32, SLJIT_MEM1(SLJIT_R2), sizeof(PCRE2_SIZE), SLJIT_S1, 0);
else
OP1(SLJIT_MOVU, SLJIT_MEM1(SLJIT_R2), sizeof(PCRE2_SIZE), SLJIT_S1, 0);
OP2(SLJIT_SUB | SLJIT_SET_E, SLJIT_R1, 0, SLJIT_R1, 0, SLJIT_IMM, 1);
@@ -2541,7 +2541,7 @@
static SLJIT_INLINE void return_with_partial_match(compiler_common *common, struct sljit_label *quit)
{
DEFINE_COMPILER;
-sljit_si mov_opcode;
+sljit_s32 mov_opcode;

SLJIT_COMPILE_ASSERT(STR_END == SLJIT_S1, str_end_must_be_saved_reg2);
SLJIT_ASSERT(common->start_used_ptr != 0 && common->start_ptr != 0
@@ -2557,7 +2557,7 @@
OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_R1), SLJIT_OFFSETOF(jit_arguments, startchar_ptr), SLJIT_R2, 0);
OP1(SLJIT_MOV, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_R1), SLJIT_OFFSETOF(jit_arguments, match_data));

-mov_opcode = (sizeof(PCRE2_SIZE) == 4) ? SLJIT_MOV_UI : SLJIT_MOV;
+mov_opcode = (sizeof(PCRE2_SIZE) == 4) ? SLJIT_MOV_U32 : SLJIT_MOV;

OP2(SLJIT_SUB, SLJIT_R2, 0, SLJIT_R2, 0, SLJIT_S0, 0);
#if PCRE2_CODE_UNIT_WIDTH == 16 || PCRE2_CODE_UNIT_WIDTH == 32
@@ -2794,7 +2794,7 @@
JUMPHERE(jump);
}

-static void peek_char(compiler_common *common, sljit_ui max)
+static void peek_char(compiler_common *common, sljit_u32 max)
{
/* Reads the character into TMP1, keeps STR_PTR.
Does not check STR_END. TMP2 Destroyed. */
@@ -2839,12 +2839,12 @@

#if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8

-static BOOL is_char7_bitset(const sljit_ub *bitset, BOOL nclass)
+static BOOL is_char7_bitset(const sljit_u8 *bitset, BOOL nclass)
{
/* Tells whether the character codes below 128 are enough
to determine a match. */
-const sljit_ub value = nclass ? 0xff : 0;
-const sljit_ub *end = bitset + 32;
+const sljit_u8 value = nclass ? 0xff : 0;
+const sljit_u8 *end = bitset + 32;

bitset += 16;
do
@@ -2869,12 +2869,12 @@
OP1(MOV_UCHAR, TMP2, 0, SLJIT_MEM1(STR_PTR), 0);
OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(1));

-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);

if (full_read)
{
jump = CMP(SLJIT_LESS, TMP2, 0, SLJIT_IMM, 0xc0);
- OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+ OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(utf8_table4) - 0xc0);
OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, TMP2, 0);
JUMPHERE(jump);
}
@@ -2882,7 +2882,7 @@

#endif /* SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8 */

-static void read_char_range(compiler_common *common, sljit_ui min, sljit_ui max, BOOL update_str_ptr)
+static void read_char_range(compiler_common *common, sljit_u32 min, sljit_u32 max, BOOL update_str_ptr)
 {
 /* Reads the precise value of a character into TMP1, if the character is
 between min and max (c >= min && c <= max). Otherwise it returns with a value
@@ -2913,7 +2913,7 @@
     {
     OP2(SLJIT_SUB, TMP2, 0, TMP1, 0, SLJIT_IMM, 0xf0);
     if (update_str_ptr)
-      OP1(SLJIT_MOV_UB, RETURN_ADDR, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+      OP1(SLJIT_MOV_U8, RETURN_ADDR, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
     OP1(MOV_UCHAR, TMP1, 0, SLJIT_MEM1(STR_PTR), IN_UCHARS(0));
     jump2 = CMP(SLJIT_GREATER, TMP2, 0, SLJIT_IMM, 0x7);
     OP2(SLJIT_SHL, TMP2, 0, TMP2, 0, SLJIT_IMM, 6);
@@ -2937,7 +2937,7 @@
     {
     OP2(SLJIT_SUB, TMP2, 0, TMP1, 0, SLJIT_IMM, 0xe0);
     if (update_str_ptr)
-      OP1(SLJIT_MOV_UB, RETURN_ADDR, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+      OP1(SLJIT_MOV_U8, RETURN_ADDR, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
     OP1(MOV_UCHAR, TMP1, 0, SLJIT_MEM1(STR_PTR), IN_UCHARS(0));
     jump2 = CMP(SLJIT_GREATER, TMP2, 0, SLJIT_IMM, 0xf);
     OP2(SLJIT_SHL, TMP2, 0, TMP2, 0, SLJIT_IMM, 6);
@@ -2957,7 +2957,7 @@
     add_jump(compiler, (max < 0x10000) ? &common->utfreadchar16 : &common->utfreadchar, JUMP(SLJIT_FAST_CALL));
   else if (max < 128)
     {
-    OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+    OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
     OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, TMP2, 0);
     }
   else
@@ -2966,7 +2966,7 @@
     if (!update_str_ptr)
       OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(1));
     else
-      OP1(SLJIT_MOV_UB, RETURN_ADDR, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+      OP1(SLJIT_MOV_U8, RETURN_ADDR, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
     OP2(SLJIT_AND, TMP1, 0, TMP1, 0, SLJIT_IMM, 0x3f);
     OP2(SLJIT_SHL, TMP1, 0, TMP1, 0, SLJIT_IMM, 6);
     OP2(SLJIT_AND, TMP2, 0, TMP2, 0, SLJIT_IMM, 0x3f);
@@ -3036,7 +3036,7 @@
   {
   /* This can be an extra read in some situations, but hopefully
   it is needed in most cases. */
-  OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
+  OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
   jump = CMP(SLJIT_LESS, TMP2, 0, SLJIT_IMM, 0xc0);
   if (!update_str_ptr)
     {
@@ -3048,7 +3048,7 @@
     OP2(SLJIT_OR, TMP2, 0, TMP2, 0, TMP1, 0);
     OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, 0);
     jump2 = CMP(SLJIT_GREATER, TMP2, 0, SLJIT_IMM, 255);
-    OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
+    OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
     JUMPHERE(jump2);
     }
   else
@@ -3063,7 +3063,7 @@
 OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, 0);
 jump = CMP(SLJIT_GREATER, TMP2, 0, SLJIT_IMM, 255);
 #endif
-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
 #if PCRE2_CODE_UNIT_WIDTH != 8
 JUMPHERE(jump);
 #endif
@@ -3255,7 +3255,7 @@
 OP2(SLJIT_SHL, TMP2, 0, TMP2, 0, SLJIT_IMM, 6);
 OP2(SLJIT_AND, TMP1, 0, TMP1, 0, SLJIT_IMM, 0x3f);
 OP2(SLJIT_OR, TMP2, 0, TMP2, 0, TMP1, 0);
-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes);
 sljit_emit_fast_return(compiler, RETURN_ADDR, 0);


JUMPHERE(compare);
@@ -3264,7 +3264,7 @@

/* We only have types for characters less than 256. */
JUMPHERE(jump);
-OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(utf8_table4) - 0xc0);
OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, 0);
OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, TMP2, 0);
sljit_emit_fast_return(compiler, RETURN_ADDR, 0);
@@ -3286,14 +3286,14 @@

sljit_emit_fast_enter(compiler, RETURN_ADDR, 0);
OP2(SLJIT_LSHR, TMP2, 0, TMP1, 0, SLJIT_IMM, UCD_BLOCK_SHIFT);
-OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_stage1));
+OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_stage1));
OP2(SLJIT_AND, TMP1, 0, TMP1, 0, SLJIT_IMM, UCD_BLOCK_MASK);
OP2(SLJIT_SHL, TMP2, 0, TMP2, 0, SLJIT_IMM, UCD_BLOCK_SHIFT);
OP2(SLJIT_ADD, TMP1, 0, TMP1, 0, TMP2, 0);
OP1(SLJIT_MOV, TMP2, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_stage2));
-OP1(SLJIT_MOV_UH, TMP2, 0, SLJIT_MEM2(TMP2, TMP1), 1);
+OP1(SLJIT_MOV_U16, TMP2, 0, SLJIT_MEM2(TMP2, TMP1), 1);
OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype));
-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM2(TMP1, TMP2), 3);
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM2(TMP1, TMP2), 3);
sljit_emit_fast_return(compiler, RETURN_ADDR, 0);
}

@@ -3417,7 +3417,7 @@
if (common->utf)
{
singlechar = CMP(SLJIT_LESS, TMP1, 0, SLJIT_IMM, 0xc0);
- OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+ OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, TMP1, 0);
JUMPHERE(singlechar);
}
@@ -3483,8 +3483,8 @@
/* Recursive function, which scans prefix literals. */
BOOL last, any, class, caseless;
int len, repeat, len_save, consumed = 0;
-sljit_ui chr; /* Any unicode character. */
-sljit_ub *bytes, *bytes_end, byte;
+sljit_u32 chr; /* Any unicode character. */
+sljit_u8 *bytes, *bytes_end, byte;
PCRE2_SPTR alternative, cc_save, oc;
#if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
PCRE2_UCHAR othercase[8];
@@ -3603,7 +3603,7 @@

     case OP_CLASS:
 #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
-    if (common->utf && !is_char7_bitset((const sljit_ub *)(cc + 1), FALSE))
+    if (common->utf && !is_char7_bitset((const sljit_u8 *)(cc + 1), FALSE))
       return consumed;
 #endif
     class = TRUE;
@@ -3628,7 +3628,7 @@


     case OP_DIGIT:
 #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
-    if (common->utf && !is_char7_bitset((const sljit_ub *)common->ctypes - cbit_length + cbit_digit, FALSE))
+    if (common->utf && !is_char7_bitset((const sljit_u8 *)common->ctypes - cbit_length + cbit_digit, FALSE))
       return consumed;
 #endif
     any = TRUE;
@@ -3637,7 +3637,7 @@


     case OP_WHITESPACE:
 #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
-    if (common->utf && !is_char7_bitset((const sljit_ub *)common->ctypes - cbit_length + cbit_space, FALSE))
+    if (common->utf && !is_char7_bitset((const sljit_u8 *)common->ctypes - cbit_length + cbit_space, FALSE))
       return consumed;
 #endif
     any = TRUE;
@@ -3646,7 +3646,7 @@


     case OP_WORDCHAR:
 #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
-    if (common->utf && !is_char7_bitset((const sljit_ub *)common->ctypes - cbit_length + cbit_word, FALSE))
+    if (common->utf && !is_char7_bitset((const sljit_u8 *)common->ctypes - cbit_length + cbit_word, FALSE))
       return consumed;
 #endif
     any = TRUE;
@@ -3718,7 +3718,7 @@


   if (class)
     {
-    bytes = (sljit_ub*) (cc + 1);
+    bytes = (sljit_u8*) (cc + 1);
     cc += 1 + 32 / sizeof(PCRE2_UCHAR);


     switch (*cc)
@@ -3878,9 +3878,9 @@


#if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86)

-static sljit_si character_to_int32(PCRE2_UCHAR chr)
+static sljit_s32 character_to_int32(PCRE2_UCHAR chr)
{
-sljit_si value = (sljit_si)chr;
+sljit_s32 value = (sljit_s32)chr;
#if PCRE2_CODE_UNIT_WIDTH == 8
#define SSE2_COMPARE_TYPE_INDEX 0
return (value << 24) | (value << 16) | (value << 8) | value;
@@ -3901,10 +3901,10 @@
struct sljit_label *start;
struct sljit_jump *quit[3];
struct sljit_jump *nomatch;
-sljit_ub instruction[8];
-sljit_si tmp1_ind = sljit_get_register_index(TMP1);
-sljit_si tmp2_ind = sljit_get_register_index(TMP2);
-sljit_si str_ptr_ind = sljit_get_register_index(STR_PTR);
+sljit_u8 instruction[8];
+sljit_s32 tmp1_ind = sljit_get_register_index(TMP1);
+sljit_s32 tmp2_ind = sljit_get_register_index(TMP2);
+sljit_s32 str_ptr_ind = sljit_get_register_index(STR_PTR);
BOOL load_twice = FALSE;
PCRE2_UCHAR bit;

@@ -4157,7 +4157,7 @@

#endif

-static void fast_forward_first_char2(compiler_common *common, PCRE2_UCHAR char1, PCRE2_UCHAR char2, sljit_si offset)
+static void fast_forward_first_char2(compiler_common *common, PCRE2_UCHAR char1, PCRE2_UCHAR char2, sljit_s32 offset)
{
DEFINE_COMPILER;
struct sljit_label *start;
@@ -4334,12 +4334,12 @@
/* bytes[0] represent the number of characters between 0
and MAX_N_BYTES - 1, 255 represents any character. */
PCRE2_UCHAR chars[MAX_N_CHARS * MAX_DIFF_CHARS];
-sljit_si offset;
+sljit_s32 offset;
PCRE2_UCHAR mask;
PCRE2_UCHAR *char_set, *char_set_end;
int i, max, from;
int range_right = -1, range_len;
-sljit_ub *update_table = NULL;
+sljit_u8 *update_table = NULL;
BOOL in_range;
uint32_t rec_count;

@@ -4379,7 +4379,7 @@

 if (range_right >= 0)
   {
-  update_table = (sljit_ub *)allocate_read_only_data(common, 256);
+  update_table = (sljit_u8 *)allocate_read_only_data(common, 256);
   if (update_table == NULL)
     return TRUE;
   memset(update_table, IN_UCHARS(range_len), 256);
@@ -4465,15 +4465,15 @@
 quit = CMP(SLJIT_GREATER_EQUAL, STR_PTR, 0, STR_END, 0);


#if PCRE2_CODE_UNIT_WIDTH == 8 || (defined SLJIT_LITTLE_ENDIAN && SLJIT_LITTLE_ENDIAN)
-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(STR_PTR), IN_UCHARS(range_right));
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(STR_PTR), IN_UCHARS(range_right));
#else
-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(STR_PTR), IN_UCHARS(range_right + 1) - 1);
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(STR_PTR), IN_UCHARS(range_right + 1) - 1);
#endif

#if !(defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM2(RETURN_ADDR, TMP1), 0);
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM2(RETURN_ADDR, TMP1), 0);
#else
-OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)update_table);
+OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)update_table);
#endif
OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, TMP1, 0);
CMPTO(SLJIT_NOT_EQUAL, TMP1, 0, SLJIT_IMM, 0, start);
@@ -4654,9 +4654,9 @@
OP1(SLJIT_MOV, STR_END, 0, TMP3, 0);
}

-static BOOL check_class_ranges(compiler_common *common, const sljit_ub *bits, BOOL nclass, BOOL invert, jump_list **backtracks);
+static BOOL check_class_ranges(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL invert, jump_list **backtracks);

-static SLJIT_INLINE void fast_forward_start_bits(compiler_common *common, const sljit_ub *start_bits)
+static SLJIT_INLINE void fast_forward_start_bits(compiler_common *common, const sljit_u8 *start_bits)
{
DEFINE_COMPILER;
struct sljit_label *start;
@@ -4690,7 +4690,7 @@
#endif
OP2(SLJIT_AND, TMP2, 0, TMP1, 0, SLJIT_IMM, 0x7);
OP2(SLJIT_LSHR, TMP1, 0, TMP1, 0, SLJIT_IMM, 3);
- OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)start_bits);
+ OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)start_bits);
OP2(SLJIT_SHL, TMP2, 0, SLJIT_IMM, 1, TMP2, 0);
OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, TMP2, 0);
found = JUMP(SLJIT_NOT_ZERO);
@@ -4706,7 +4706,7 @@
if (common->utf)
{
CMPTO(SLJIT_LESS, TMP1, 0, SLJIT_IMM, 0xc0, start);
- OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+ OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, TMP1, 0);
}
#elif PCRE2_CODE_UNIT_WIDTH == 16
@@ -4741,7 +4741,7 @@
struct sljit_jump *found;
struct sljit_jump *foundoc = NULL;
struct sljit_jump *notfound;
-sljit_ui oc, bit;
+sljit_u32 oc, bit;

 SLJIT_ASSERT(common->req_char_ptr != 0);
 OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(SLJIT_SP), common->req_char_ptr);
@@ -4878,7 +4878,7 @@
   if (common->utf)
     jump = CMP(SLJIT_GREATER, TMP1, 0, SLJIT_IMM, 255);
 #endif /* PCRE2_CODE_UNIT_WIDTH == 8 */
-  OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), common->ctypes);
+  OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), common->ctypes);
   OP2(SLJIT_LSHR, TMP1, 0, TMP1, 0, SLJIT_IMM, 4 /* ctype_word */);
   OP2(SLJIT_AND, TMP1, 0, TMP1, 0, SLJIT_IMM, 1);
   OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), LOCALS1, TMP1, 0);
@@ -4923,7 +4923,7 @@
   if (common->utf)
     jump = CMP(SLJIT_GREATER, TMP1, 0, SLJIT_IMM, 255);
 #endif
-  OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM1(TMP1), common->ctypes);
+  OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP1), common->ctypes);
   OP2(SLJIT_LSHR, TMP2, 0, TMP2, 0, SLJIT_IMM, 4 /* ctype_word */);
   OP2(SLJIT_AND, TMP2, 0, TMP2, 0, SLJIT_IMM, 1);
 #if PCRE2_CODE_UNIT_WIDTH != 8
@@ -4939,12 +4939,12 @@
 sljit_emit_fast_return(compiler, SLJIT_MEM1(SLJIT_SP), LOCALS0);
 }


-static BOOL check_class_ranges(compiler_common *common, const sljit_ub *bits, BOOL nclass, BOOL invert, jump_list **backtracks)
+static BOOL check_class_ranges(compiler_common *common, const sljit_u8 *bits, BOOL nclass, BOOL invert, jump_list **backtracks)
{
/* May destroy TMP1. */
DEFINE_COMPILER;
int ranges[MAX_RANGE_SIZE];
-sljit_ub bit, cbit, all;
+sljit_u8 bit, cbit, all;
int i, byte, length = 0;

bit = bits[0] & 0x1;
@@ -5239,12 +5239,12 @@
#if PCRE2_CODE_UNIT_WIDTH != 8
jump = CMP(SLJIT_GREATER, CHAR1, 0, SLJIT_IMM, 255);
#endif
-OP1(SLJIT_MOV_UB, CHAR1, 0, SLJIT_MEM2(LCC_TABLE, CHAR1), 0);
+OP1(SLJIT_MOV_U8, CHAR1, 0, SLJIT_MEM2(LCC_TABLE, CHAR1), 0);
#if PCRE2_CODE_UNIT_WIDTH != 8
JUMPHERE(jump);
jump = CMP(SLJIT_GREATER, CHAR2, 0, SLJIT_IMM, 255);
#endif
-OP1(SLJIT_MOV_UB, CHAR2, 0, SLJIT_MEM2(LCC_TABLE, CHAR2), 0);
+OP1(SLJIT_MOV_U8, CHAR2, 0, SLJIT_MEM2(LCC_TABLE, CHAR2), 0);
#if PCRE2_CODE_UNIT_WIDTH != 8
JUMPHERE(jump);
#endif
@@ -5269,11 +5269,11 @@
static PCRE2_SPTR SLJIT_CALL do_utf_caselesscmp(PCRE2_SPTR src1, jit_arguments *args, PCRE2_SPTR end1)
{
/* This function would be ineffective to do in JIT level. */
-sljit_ui c1, c2;
+sljit_u32 c1, c2;
PCRE2_SPTR src2 = args->startchar_ptr;
PCRE2_SPTR end2 = args->end;
const ucd_record *ur;
-const sljit_ui *pp;
+const sljit_u32 *pp;

 while (src1 < end1)
   {
@@ -5335,16 +5335,16 @@
 #if PCRE2_CODE_UNIT_WIDTH == 8
 #if defined SLJIT_UNALIGNED && SLJIT_UNALIGNED
   if (context->length >= 4)
-    OP1(SLJIT_MOV_SI, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
+    OP1(SLJIT_MOV_S32, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
   else if (context->length >= 2)
-    OP1(SLJIT_MOV_UH, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
+    OP1(SLJIT_MOV_U16, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
   else
 #endif
-    OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
+    OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
 #elif PCRE2_CODE_UNIT_WIDTH == 16
 #if defined SLJIT_UNALIGNED && SLJIT_UNALIGNED
   if (context->length >= 4)
-    OP1(SLJIT_MOV_SI, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
+    OP1(SLJIT_MOV_S32, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
   else
 #endif
     OP1(MOV_UCHAR, TMP1, 0, SLJIT_MEM1(STR_PTR), -context->length);
@@ -5386,12 +5386,12 @@
 #endif
     {
     if (context->length >= 4)
-      OP1(SLJIT_MOV_SI, context->sourcereg, 0, SLJIT_MEM1(STR_PTR), -context->length);
+      OP1(SLJIT_MOV_S32, context->sourcereg, 0, SLJIT_MEM1(STR_PTR), -context->length);
     else if (context->length >= 2)
-      OP1(SLJIT_MOV_UH, context->sourcereg, 0, SLJIT_MEM1(STR_PTR), -context->length);
+      OP1(SLJIT_MOV_U16, context->sourcereg, 0, SLJIT_MEM1(STR_PTR), -context->length);
 #if PCRE2_CODE_UNIT_WIDTH == 8
     else if (context->length >= 1)
-      OP1(SLJIT_MOV_UB, context->sourcereg, 0, SLJIT_MEM1(STR_PTR), -context->length);
+      OP1(SLJIT_MOV_U8, context->sourcereg, 0, SLJIT_MEM1(STR_PTR), -context->length);
 #endif /* PCRE2_CODE_UNIT_WIDTH == 8 */
     context->sourcereg = context->sourcereg == TMP1 ? TMP2 : TMP1;


@@ -5491,7 +5491,7 @@
BOOL needstype = FALSE, needsscript = FALSE, needschar = FALSE;
BOOL charsaved = FALSE;
int typereg = TMP1;
-const sljit_ui *other_cases;
+const sljit_u32 *other_cases;
sljit_uw typeoffset;
#endif

@@ -5609,11 +5609,11 @@
   if ((cc[-1] & XCL_MAP) != 0)
     {
     jump = CMP(SLJIT_GREATER, TMP1, 0, SLJIT_IMM, 255);
-    if (!check_class_ranges(common, (const sljit_ub *)cc, (((const sljit_ub *)cc)[31] & 0x80) != 0, TRUE, &found))
+    if (!check_class_ranges(common, (const sljit_u8 *)cc, (((const sljit_u8 *)cc)[31] & 0x80) != 0, TRUE, &found))
       {
       OP2(SLJIT_AND, TMP2, 0, TMP1, 0, SLJIT_IMM, 0x7);
       OP2(SLJIT_LSHR, TMP1, 0, TMP1, 0, SLJIT_IMM, 3);
-      OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)cc);
+      OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)cc);
       OP2(SLJIT_SHL, TMP2, 0, SLJIT_IMM, 1, TMP2, 0);
       OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, TMP2, 0);
       add_jump(compiler, &found, JUMP(SLJIT_NOT_ZERO));
@@ -5636,7 +5636,7 @@
 #ifdef SUPPORT_UNICODE
   charsaved = TRUE;
 #endif
-  if (!check_class_ranges(common, (const sljit_ub *)cc, FALSE, TRUE, list))
+  if (!check_class_ranges(common, (const sljit_u8 *)cc, FALSE, TRUE, list))
     {
 #if PCRE2_CODE_UNIT_WIDTH == 8
     jump = NULL;
@@ -5646,7 +5646,7 @@


     OP2(SLJIT_AND, TMP2, 0, TMP1, 0, SLJIT_IMM, 0x7);
     OP2(SLJIT_LSHR, TMP1, 0, TMP1, 0, SLJIT_IMM, 3);
-    OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)cc);
+    OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)cc);
     OP2(SLJIT_SHL, TMP2, 0, SLJIT_IMM, 1, TMP2, 0);
     OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, TMP2, 0);
     add_jump(compiler, list, JUMP(SLJIT_NOT_ZERO));
@@ -5668,18 +5668,18 @@
     OP1(SLJIT_MOV, RETURN_ADDR, 0, TMP1, 0);


OP2(SLJIT_LSHR, TMP2, 0, TMP1, 0, SLJIT_IMM, UCD_BLOCK_SHIFT);
- OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_stage1));
+ OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_stage1));
OP2(SLJIT_AND, TMP1, 0, TMP1, 0, SLJIT_IMM, UCD_BLOCK_MASK);
OP2(SLJIT_SHL, TMP2, 0, TMP2, 0, SLJIT_IMM, UCD_BLOCK_SHIFT);
OP2(SLJIT_ADD, TMP1, 0, TMP1, 0, TMP2, 0);
OP1(SLJIT_MOV, TMP2, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_stage2));
- OP1(SLJIT_MOV_UH, TMP2, 0, SLJIT_MEM2(TMP2, TMP1), 1);
+ OP1(SLJIT_MOV_U16, TMP2, 0, SLJIT_MEM2(TMP2, TMP1), 1);

   /* Before anything else, we deal with scripts. */
   if (needsscript)
     {
     OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, script));
-    OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM2(TMP1, TMP2), 3);
+    OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM2(TMP1, TMP2), 3);


     ccbegin = cc;


@@ -5726,12 +5726,12 @@
     if (!needschar)
       {
       OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype));
-      OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM2(TMP1, TMP2), 3);
+      OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM2(TMP1, TMP2), 3);
       }
     else
       {
       OP2(SLJIT_SHL, TMP2, 0, TMP2, 0, SLJIT_IMM, 3);
-      OP1(SLJIT_MOV_UB, RETURN_ADDR, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype));
+      OP1(SLJIT_MOV_U8, RETURN_ADDR, 0, SLJIT_MEM1(TMP2), (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, chartype));
       typereg = RETURN_ADDR;
       }
     }
@@ -6267,7 +6267,7 @@
   if (check_str_ptr)
     detect_partial_match(common, backtracks);
 #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
-  if (common->utf && is_char7_bitset((const sljit_ub*)common->ctypes - cbit_length + cbit_digit, FALSE))
+  if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_digit, FALSE))
     read_char7_type(common, type == OP_NOT_DIGIT);
   else
 #endif
@@ -6282,7 +6282,7 @@
   if (check_str_ptr)
     detect_partial_match(common, backtracks);
 #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
-  if (common->utf && is_char7_bitset((const sljit_ub*)common->ctypes - cbit_length + cbit_space, FALSE))
+  if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_space, FALSE))
     read_char7_type(common, type == OP_NOT_WHITESPACE);
   else
 #endif
@@ -6296,7 +6296,7 @@
   if (check_str_ptr)
     detect_partial_match(common, backtracks);
 #if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
-  if (common->utf && is_char7_bitset((const sljit_ub*)common->ctypes - cbit_length + cbit_word, FALSE))
+  if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_word, FALSE))
     read_char7_type(common, type == OP_NOT_WORDCHAR);
   else
 #endif
@@ -6338,7 +6338,7 @@
 #if PCRE2_CODE_UNIT_WIDTH == 8 || PCRE2_CODE_UNIT_WIDTH == 16
 #if PCRE2_CODE_UNIT_WIDTH == 8
     jump[0] = CMP(SLJIT_LESS, TMP1, 0, SLJIT_IMM, 0xc0);
-    OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
+    OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)PRIV(utf8_table4) - 0xc0);
     OP2(SLJIT_ADD, STR_PTR, 0, STR_PTR, 0, TMP1, 0);
 #elif PCRE2_CODE_UNIT_WIDTH == 16
     jump[0] = CMP(SLJIT_LESS, TMP1, 0, SLJIT_IMM, 0xd800);
@@ -6425,7 +6425,7 @@
   OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, gbprop));
   /* Optimize register allocation: use a real register. */
   OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), LOCALS0, STACK_TOP, 0);
-  OP1(SLJIT_MOV_UB, STACK_TOP, 0, SLJIT_MEM2(TMP1, TMP2), 3);
+  OP1(SLJIT_MOV_U8, STACK_TOP, 0, SLJIT_MEM2(TMP1, TMP2), 3);


label = LABEL();
jump[0] = CMP(SLJIT_GREATER_EQUAL, STR_PTR, 0, STR_END, 0);
@@ -6433,10 +6433,10 @@
read_char(common);
add_jump(compiler, &common->getucd, JUMP(SLJIT_FAST_CALL));
OP1(SLJIT_MOV, TMP1, 0, SLJIT_IMM, (sljit_sw)PRIV(ucd_records) + SLJIT_OFFSETOF(ucd_record, gbprop));
- OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM2(TMP1, TMP2), 3);
+ OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM2(TMP1, TMP2), 3);

   OP2(SLJIT_SHL, STACK_TOP, 0, STACK_TOP, 0, SLJIT_IMM, 2);
-  OP1(SLJIT_MOV_UI, TMP1, 0, SLJIT_MEM1(STACK_TOP), (sljit_sw)PRIV(ucp_gbtable));
+  OP1(SLJIT_MOV_U32, TMP1, 0, SLJIT_MEM1(STACK_TOP), (sljit_sw)PRIV(ucp_gbtable));
   OP1(SLJIT_MOV, STACK_TOP, 0, TMP2, 0);
   OP2(SLJIT_SHL, TMP2, 0, SLJIT_IMM, 1, TMP2, 0);
   OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, TMP2, 0);
@@ -6520,7 +6520,7 @@
     c = *cc;
     if (c < 128)
       {
-      OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(STR_PTR), 0);
+      OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(STR_PTR), 0);
       if (type == OP_NOT || !char_has_othercase(common, cc))
         add_jump(compiler, backtracks, CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_IMM, c));
       else
@@ -6576,13 +6576,13 @@
     detect_partial_match(common, backtracks);


#if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
- bit = (common->utf && is_char7_bitset((const sljit_ub *)cc, type == OP_NCLASS)) ? 127 : 255;
+ bit = (common->utf && is_char7_bitset((const sljit_u8 *)cc, type == OP_NCLASS)) ? 127 : 255;
read_char_range(common, 0, bit, type == OP_NCLASS);
#else
read_char_range(common, 0, 255, type == OP_NCLASS);
#endif

-  if (check_class_ranges(common, (const sljit_ub *)cc, type == OP_NCLASS, FALSE, backtracks))
+  if (check_class_ranges(common, (const sljit_u8 *)cc, type == OP_NCLASS, FALSE, backtracks))
     return cc + 32 / sizeof(PCRE2_UCHAR);


#if defined SUPPORT_UNICODE && PCRE2_CODE_UNIT_WIDTH == 8
@@ -6607,7 +6607,7 @@

   OP2(SLJIT_AND, TMP2, 0, TMP1, 0, SLJIT_IMM, 0x7);
   OP2(SLJIT_LSHR, TMP1, 0, TMP1, 0, SLJIT_IMM, 3);
-  OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)cc);
+  OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), (sljit_sw)cc);
   OP2(SLJIT_SHL, TMP2, 0, SLJIT_IMM, 1, TMP2, 0);
   OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, TMP2, 0);
   add_jump(compiler, backtracks, JUMP(SLJIT_ZERO));
@@ -7176,7 +7176,7 @@
 {
 DEFINE_COMPILER;
 backtrack_common *backtrack;
-sljit_si mov_opcode;
+sljit_s32 mov_opcode;
 unsigned int callout_length = (*cc == OP_CALLOUT)
     ? PRIV(OP_lengths)[OP_CALLOUT] : GET(cc, 1 + 2 * LINK_SIZE);
 sljit_sw value1;
@@ -7191,8 +7191,8 @@
 OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(SLJIT_SP), common->capture_last_ptr);
 OP1(SLJIT_MOV, TMP1, 0, ARGUMENTS, 0);
 value1 = (*cc == OP_CALLOUT) ? cc[1 + 2 * LINK_SIZE] : 0;
-OP1(SLJIT_MOV_UI, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(callout_number), SLJIT_IMM, value1);
-OP1(SLJIT_MOV_UI, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(capture_last), TMP2, 0);
+OP1(SLJIT_MOV_U32, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(callout_number), SLJIT_IMM, value1);
+OP1(SLJIT_MOV_U32, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(capture_last), TMP2, 0);


/* These pointer sized fields temporarly stores internal variables. */
OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(0));
@@ -7201,7 +7201,7 @@

if (common->mark_ptr != 0)
OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, mark_ptr));
-mov_opcode = (sizeof(PCRE2_SIZE) == 4) ? SLJIT_MOV_UI : SLJIT_MOV;
+mov_opcode = (sizeof(PCRE2_SIZE) == 4) ? SLJIT_MOV_U32 : SLJIT_MOV;
OP1(mov_opcode, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(pattern_position), SLJIT_IMM, GET(cc, 1));
OP1(mov_opcode, SLJIT_MEM1(STACK_TOP), CALLOUT_ARG_OFFSET(next_item_length), SLJIT_IMM, GET(cc, 1 + LINK_SIZE));

@@ -7228,7 +7228,7 @@
OP2(SLJIT_SUB, SLJIT_R1, 0, STACK_TOP, 0, SLJIT_IMM, CALLOUT_ARG_SIZE);
GET_LOCAL_BASE(SLJIT_R2, 0, OVECTOR_START);
sljit_emit_ijump(compiler, SLJIT_CALL3, SLJIT_IMM, SLJIT_FUNC_OFFSET(do_callout));
-OP1(SLJIT_MOV_SI, SLJIT_RETURN_REG, 0, SLJIT_RETURN_REG, 0);
+OP1(SLJIT_MOV_S32, SLJIT_RETURN_REG, 0, SLJIT_RETURN_REG, 0);
OP1(SLJIT_MOV, STACK_TOP, 0, SLJIT_MEM1(SLJIT_SP), LOCALS0);
free_stack(common, CALLOUT_ARG_SIZE / sizeof(sljit_sw));

@@ -8654,7 +8654,7 @@
return cc + 1 + LINK_SIZE;
}

-static SLJIT_INLINE PCRE2_SPTR get_iterator_parameters(compiler_common *common, PCRE2_SPTR cc, PCRE2_UCHAR *opcode, PCRE2_UCHAR *type, sljit_ui *max, sljit_ui *exact, PCRE2_SPTR *end)
+static SLJIT_INLINE PCRE2_SPTR get_iterator_parameters(compiler_common *common, PCRE2_SPTR cc, PCRE2_UCHAR *opcode, PCRE2_UCHAR *type, sljit_u32 *max, sljit_u32 *exact, PCRE2_SPTR *end)
{
int class_len;

@@ -8805,9 +8805,9 @@
backtrack_common *backtrack;
PCRE2_UCHAR opcode;
PCRE2_UCHAR type;
-sljit_ui max = 0, exact;
+sljit_u32 max = 0, exact;
BOOL fast_fail;
-sljit_si fast_str_ptr;
+sljit_s32 fast_str_ptr;
BOOL charpos_enabled;
PCRE2_UCHAR charpos_char;
unsigned int charpos_othercasebit;
@@ -9222,7 +9222,7 @@
else
CMPTO(SLJIT_NOT_EQUAL, STR_PTR, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(0), common->accept_label);
OP1(SLJIT_MOV, TMP1, 0, ARGUMENTS, 0);
-OP1(SLJIT_MOV_UI, TMP2, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, options));
+OP1(SLJIT_MOV_U32, TMP2, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, options));
OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, PCRE2_NOTEMPTY);
add_jump(compiler, &backtrack->topbacktracks, JUMP(SLJIT_NOT_ZERO));
OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, PCRE2_NOTEMPTY_ATSTART);
@@ -9654,7 +9654,7 @@
PCRE2_SPTR cc = current->cc;
PCRE2_UCHAR opcode;
PCRE2_UCHAR type;
-sljit_ui max = 0, exact;
+sljit_u32 max = 0, exact;
struct sljit_label *label = NULL;
struct sljit_jump *jump = NULL;
jump_list *jumplist = NULL;
@@ -10835,7 +10835,7 @@
backtrack_common rootbacktrack;
compiler_common common_data;
compiler_common *common = &common_data;
-const sljit_ub *tables = re->tables;
+const sljit_u8 *tables = re->tables;
void *allocator_data = &re->memctl;
int private_data_size;
PCRE2_SPTR ccend;
@@ -10932,7 +10932,7 @@

/* Calculate the local space size on the stack. */
common->ovector_start = LIMIT_MATCH + sizeof(sljit_sw);
-common->optimized_cbracket = (sljit_ub *)SLJIT_MALLOC(re->top_bracket + 1, allocator_data);
+common->optimized_cbracket = (sljit_u8 *)SLJIT_MALLOC(re->top_bracket + 1, allocator_data);
if (!common->optimized_cbracket)
return PCRE2_ERROR_NOMEMORY;
#if defined DEBUG_FORCE_UNOPTIMIZED_CBRAS && DEBUG_FORCE_UNOPTIMIZED_CBRAS == 1
@@ -11003,13 +11003,13 @@
common->cbra_ptr = OVECTOR_START + (re->top_bracket + 1) * 2 * sizeof(sljit_sw);

total_length = ccend - common->start;
-common->private_data_ptrs = (sljit_si *)SLJIT_MALLOC(total_length * (sizeof(sljit_si) + (common->has_then ? 1 : 0)), allocator_data);
+common->private_data_ptrs = (sljit_s32 *)SLJIT_MALLOC(total_length * (sizeof(sljit_s32) + (common->has_then ? 1 : 0)), allocator_data);
if (!common->private_data_ptrs)
{
SLJIT_FREE(common->optimized_cbracket, allocator_data);
return PCRE2_ERROR_NOMEMORY;
}
-memset(common->private_data_ptrs, 0, total_length * sizeof(sljit_si));
+memset(common->private_data_ptrs, 0, total_length * sizeof(sljit_s32));

private_data_size = common->cbra_ptr + (re->top_bracket + 1) * sizeof(sljit_sw);
set_private_data_ptrs(common, &private_data_size, ccend);
@@ -11030,7 +11030,7 @@

if (common->has_then)
{
- common->then_offsets = (sljit_ub *)(common->private_data_ptrs + total_length);
+ common->then_offsets = (sljit_u8 *)(common->private_data_ptrs + total_length);
memset(common->then_offsets, 0, total_length);
set_then_offsets(common, common->start, NULL);
}
@@ -11057,7 +11057,7 @@
OP1(SLJIT_MOV, STR_PTR, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, str));
OP1(SLJIT_MOV, STR_END, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, end));
OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, stack));
-OP1(SLJIT_MOV_UI, TMP1, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, limit_match));
+OP1(SLJIT_MOV_U32, TMP1, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, limit_match));
OP1(SLJIT_MOV, STACK_TOP, 0, SLJIT_MEM1(TMP2), SLJIT_OFFSETOF(struct sljit_stack, base));
OP1(SLJIT_MOV, STACK_LIMIT, 0, SLJIT_MEM1(TMP2), SLJIT_OFFSETOF(struct sljit_stack, limit));
OP2(SLJIT_ADD, TMP1, 0, TMP1, 0, SLJIT_IMM, 1);
@@ -11235,7 +11235,7 @@
{
JUMPHERE(empty_match);
OP1(SLJIT_MOV, TMP1, 0, ARGUMENTS, 0);
- OP1(SLJIT_MOV_UI, TMP2, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, options));
+ OP1(SLJIT_MOV_U32, TMP2, 0, SLJIT_MEM1(TMP1), SLJIT_OFFSETOF(jit_arguments, options));
OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, PCRE2_NOTEMPTY);
JUMPTO(SLJIT_NOT_ZERO, empty_match_backtrack_label);
OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP2, 0, SLJIT_IMM, PCRE2_NOTEMPTY_ATSTART);

Modified: code/trunk/src/pcre2_jit_match.c
===================================================================
--- code/trunk/src/pcre2_jit_match.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/pcre2_jit_match.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -46,7 +46,7 @@


static SLJIT_NOINLINE int jit_machine_stack_exec(jit_arguments *arguments, jit_function executable_func)
{
-sljit_ub local_space[MACHINE_STACK_SIZE];
+sljit_u8 local_space[MACHINE_STACK_SIZE];
struct sljit_stack local_stack;

local_stack.top = (sljit_sw)&local_space;

Modified: code/trunk/src/sljit/sljitConfigInternal.h
===================================================================
--- code/trunk/src/sljit/sljitConfigInternal.h    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitConfigInternal.h    2016-02-29 09:09:40 UTC (rev 501)
@@ -31,9 +31,9 @@
    SLJIT defines the following architecture dependent types and macros:


    Types:
-     sljit_sb, sljit_ub : signed and unsigned 8 bit byte
-     sljit_sh, sljit_uh : signed and unsigned 16 bit half-word (short) type
-     sljit_si, sljit_ui : signed and unsigned 32 bit integer type
+     sljit_s8, sljit_u8   : signed and unsigned 8 bit integer type
+     sljit_s16, sljit_u16 : signed and unsigned 16 bit integer type
+     sljit_s32, sljit_u32 : signed and unsigned 32 bit integer type
      sljit_sw, sljit_uw : signed and unsigned machine word, enough to store a pointer
      sljit_p : unsgined pointer value (usually the same as sljit_uw, but
                some 64 bit ABIs may use 32 bit pointers)
@@ -252,11 +252,6 @@
 #endif
 #endif /* !SLJIT_INLINE */


-#ifndef SLJIT_CONST
-/* Const variables. */
-#define SLJIT_CONST const
-#endif
-
#ifndef SLJIT_UNUSED_ARG
/* Unused arguments. */
#define SLJIT_UNUSED_ARG(arg) (void)arg
@@ -334,16 +329,16 @@
/******************************************************/

/* 8 bit byte type. */
-typedef unsigned char sljit_ub;
-typedef signed char sljit_sb;
+typedef unsigned char sljit_u8;
+typedef signed char sljit_s8;

/* 16 bit half-word type. */
-typedef unsigned short int sljit_uh;
-typedef signed short int sljit_sh;
+typedef unsigned short int sljit_u16;
+typedef signed short int sljit_s16;

/* 32 bit integer type. */
-typedef unsigned int sljit_ui;
-typedef signed int sljit_si;
+typedef unsigned int sljit_u32;
+typedef signed int sljit_s32;

 /* Machine word type. Enough for storing a pointer.
      32 bit for 32 bit machines.


Modified: code/trunk/src/sljit/sljitExecAllocator.c
===================================================================
--- code/trunk/src/sljit/sljitExecAllocator.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitExecAllocator.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -137,10 +137,10 @@
 };


 #define AS_BLOCK_HEADER(base, offset) \
-    ((struct block_header*)(((sljit_ub*)base) + offset))
+    ((struct block_header*)(((sljit_u8*)base) + offset))
 #define AS_FREE_BLOCK(base, offset) \
-    ((struct free_block*)(((sljit_ub*)base) + offset))
-#define MEM_START(base)        ((void*)(((sljit_ub*)base) + sizeof(struct block_header)))
+    ((struct free_block*)(((sljit_u8*)base) + offset))
+#define MEM_START(base)        ((void*)(((sljit_u8*)base) + sizeof(struct block_header)))
 #define ALIGN_SIZE(size)    (((size) + sizeof(struct block_header) + 7) & ~7)


 static struct free_block* free_blocks;
@@ -153,7 +153,7 @@
     free_block->size = size;


     free_block->next = free_blocks;
-    free_block->prev = 0;
+    free_block->prev = NULL;
     if (free_blocks)
         free_blocks->prev = free_block;
     free_blocks = free_block;


Modified: code/trunk/src/sljit/sljitLir.c
===================================================================
--- code/trunk/src/sljit/sljitLir.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitLir.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -77,16 +77,16 @@
 #if !(defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED)


 #define GET_OPCODE(op) \
-    ((op) & ~(SLJIT_INT_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))
+    ((op) & ~(SLJIT_I32_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))


 #define GET_FLAGS(op) \
     ((op) & (SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C))


 #define GET_ALL_FLAGS(op) \
-    ((op) & (SLJIT_INT_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))
+    ((op) & (SLJIT_I32_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))


 #define TYPE_CAST_NEEDED(op) \
-    (((op) >= SLJIT_MOV_UB && (op) <= SLJIT_MOV_SH) || ((op) >= SLJIT_MOVU_UB && (op) <= SLJIT_MOVU_SH))
+    (((op) >= SLJIT_MOV_U8 && (op) <= SLJIT_MOV_S16) || ((op) >= SLJIT_MOVU_U8 && (op) <= SLJIT_MOVU_S16))


 #define BUF_SIZE    4096


@@ -257,7 +257,7 @@
             return 1; \
     } while (0)


-#define CHECK_RETURN_TYPE sljit_si
+#define CHECK_RETURN_TYPE sljit_s32
#define CHECK_RETURN_OK return 0

#define CHECK(x) \
@@ -320,7 +320,7 @@

 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) || (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86)
 #define SLJIT_NEEDS_COMPILER_INIT 1
-static sljit_si compiler_initialized = 0;
+static sljit_s32 compiler_initialized = 0;
 /* A thread safe initialization. */
 static void init_compiler(void);
 #endif
@@ -333,15 +333,15 @@
     SLJIT_ZEROMEM(compiler, sizeof(struct sljit_compiler));


     SLJIT_COMPILE_ASSERT(
-        sizeof(sljit_sb) == 1 && sizeof(sljit_ub) == 1
-        && sizeof(sljit_sh) == 2 && sizeof(sljit_uh) == 2
-        && sizeof(sljit_si) == 4 && sizeof(sljit_ui) == 4
+        sizeof(sljit_s8) == 1 && sizeof(sljit_u8) == 1
+        && sizeof(sljit_s16) == 2 && sizeof(sljit_u16) == 2
+        && sizeof(sljit_s32) == 4 && sizeof(sljit_u32) == 4
         && (sizeof(sljit_p) == 4 || sizeof(sljit_p) == 8)
         && sizeof(sljit_p) <= sizeof(sljit_sw)
         && (sizeof(sljit_sw) == 4 || sizeof(sljit_sw) == 8)
         && (sizeof(sljit_uw) == 4 || sizeof(sljit_uw) == 8),
         invalid_integer_types);
-    SLJIT_COMPILE_ASSERT(SLJIT_INT_OP == SLJIT_SINGLE_OP,
+    SLJIT_COMPILE_ASSERT(SLJIT_I32_OP == SLJIT_SINGLE_OP,
         int_op_and_single_op_must_be_the_same);
     SLJIT_COMPILE_ASSERT(SLJIT_REWRITABLE_JUMP != SLJIT_SINGLE_OP,
         rewritable_jump_and_single_op_must_not_be_the_same);
@@ -379,7 +379,7 @@


 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
     compiler->cpool = (sljit_uw*)SLJIT_MALLOC(CPOOL_SIZE * sizeof(sljit_uw)
-        + CPOOL_SIZE * sizeof(sljit_ub), allocator_data);
+        + CPOOL_SIZE * sizeof(sljit_u8), allocator_data);
     if (!compiler->cpool) {
         SLJIT_FREE(compiler->buf, allocator_data);
         SLJIT_FREE(compiler->abuf, allocator_data);
@@ -386,7 +386,7 @@
         SLJIT_FREE(compiler, allocator_data);
         return NULL;
     }
-    compiler->cpool_unique = (sljit_ub*)(compiler->cpool + CPOOL_SIZE);
+    compiler->cpool_unique = (sljit_u8*)(compiler->cpool + CPOOL_SIZE);
     compiler->cpool_diff = 0xffffffff;
 #endif


@@ -485,7 +485,7 @@

 static void* ensure_buf(struct sljit_compiler *compiler, sljit_uw size)
 {
-    sljit_ub *ret;
+    sljit_u8 *ret;
     struct sljit_memory_fragment *new_frag;


     SLJIT_ASSERT(size <= 256);
@@ -504,7 +504,7 @@


 static void* ensure_abuf(struct sljit_compiler *compiler, sljit_uw size)
 {
-    sljit_ub *ret;
+    sljit_u8 *ret;
     struct sljit_memory_fragment *new_frag;


     SLJIT_ASSERT(size <= 256);
@@ -521,7 +521,7 @@
     return new_frag->memory;
 }


-SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_s32 size)
 {
     CHECK_ERROR_PTR();


@@ -554,8 +554,8 @@
}

 static SLJIT_INLINE void set_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     SLJIT_UNUSED_ARG(args);
     SLJIT_UNUSED_ARG(local_size);
@@ -571,8 +571,8 @@
 }


 static SLJIT_INLINE void set_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     SLJIT_UNUSED_ARG(args);
     SLJIT_UNUSED_ARG(local_size);
@@ -598,7 +598,7 @@
     compiler->last_label = label;
 }


-static SLJIT_INLINE void set_jump(struct sljit_jump *jump, struct sljit_compiler *compiler, sljit_si flags)
+static SLJIT_INLINE void set_jump(struct sljit_jump *jump, struct sljit_compiler *compiler, sljit_s32 flags)
 {
     jump->next = NULL;
     jump->flags = flags;
@@ -657,16 +657,16 @@
     case SLJIT_LUMUL: \
     case SLJIT_LSMUL: \
     case SLJIT_MOV: \
-    case SLJIT_MOV_UI: \
+    case SLJIT_MOV_U32: \
     case SLJIT_MOV_P: \
     case SLJIT_MOVU: \
-    case SLJIT_MOVU_UI: \
+    case SLJIT_MOVU_U32: \
     case SLJIT_MOVU_P: \
         /* Nothing allowed */ \
-        CHECK_ARGUMENT(!(op & (SLJIT_INT_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))); \
+        CHECK_ARGUMENT(!(op & (SLJIT_I32_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))); \
         break; \
     default: \
-        /* Only SLJIT_INT_OP or SLJIT_SINGLE_OP is allowed. */ \
+        /* Only SLJIT_I32_OP or SLJIT_SINGLE_OP is allowed. */ \
         CHECK_ARGUMENT(!(op & (SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))); \
         break; \
     }
@@ -679,7 +679,7 @@
         CHECK_ARGUMENT((op & (SLJIT_SET_E | SLJIT_SET_S))); \
         break; \
     default: \
-        /* Only SLJIT_INT_OP or SLJIT_SINGLE_OP is allowed. */ \
+        /* Only SLJIT_I32_OP or SLJIT_SINGLE_OP is allowed. */ \
         CHECK_ARGUMENT(!(op & (SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJIT_KEEP_FLAGS))); \
         break; \
     }
@@ -844,12 +844,12 @@
             fprintf(compiler->verbose, "fs%d", SLJIT_NUMBER_OF_FLOAT_REGISTERS - (p)); \
     }


-static SLJIT_CONST char* op0_names[] = {
+static const char* op0_names[] = {
     (char*)"breakpoint", (char*)"nop", (char*)"lumul", (char*)"lsmul",
     (char*)"udivmod", (char*)"sdivmod", (char*)"udivi", (char*)"sdivi"
 };


-static SLJIT_CONST char* op1_names[] = {
+static const char* op1_names[] = {
     (char*)"mov", (char*)"mov_ub", (char*)"mov_sb", (char*)"mov_uh",
     (char*)"mov_sh", (char*)"mov_ui", (char*)"mov_si", (char*)"mov_p",
     (char*)"movu", (char*)"movu_ub", (char*)"movu_sb", (char*)"movu_uh",
@@ -857,24 +857,24 @@
     (char*)"not", (char*)"neg", (char*)"clz",
 };


-static SLJIT_CONST char* op2_names[] = {
+static const char* op2_names[] = {
     (char*)"add", (char*)"addc", (char*)"sub", (char*)"subc",
     (char*)"mul", (char*)"and", (char*)"or", (char*)"xor",
     (char*)"shl", (char*)"lshr", (char*)"ashr",
 };


-static SLJIT_CONST char* fop1_names[] = {
+static const char* fop1_names[] = {
     (char*)"mov", (char*)"conv", (char*)"conv", (char*)"conv",
     (char*)"conv", (char*)"conv", (char*)"cmp", (char*)"neg",
     (char*)"abs",
 };


-static SLJIT_CONST char* fop2_names[] = {
+static const char* fop2_names[] = {
     (char*)"add", (char*)"sub", (char*)"mul", (char*)"div"
 };


 #define JUMP_PREFIX(type) \
-    ((type & 0xff) <= SLJIT_MUL_NOT_OVERFLOW ? ((type & SLJIT_INT_OP) ? "i_" : "") \
+    ((type & 0xff) <= SLJIT_MUL_NOT_OVERFLOW ? ((type & SLJIT_I32_OP) ? "i_" : "") \
     : ((type & 0xff) <= SLJIT_D_ORDERED ? ((type & SLJIT_SINGLE_OP) ? "s_" : "d_") : ""))


static char* jump_names[] = {
@@ -923,8 +923,8 @@
}

 static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     SLJIT_UNUSED_ARG(compiler);


@@ -949,8 +949,8 @@
}

 static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -977,7 +977,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     CHECK_ARGUMENT(compiler->scratches >= 0);
@@ -1002,7 +1002,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     FUNCTION_CHECK_DST(dst, dstw);
@@ -1017,7 +1017,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     FUNCTION_CHECK_SRC(src, srcw);
@@ -1032,23 +1032,23 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     CHECK_ARGUMENT((op >= SLJIT_BREAKPOINT && op <= SLJIT_LSMUL)
-        || ((op & ~SLJIT_INT_OP) >= SLJIT_UDIVMOD && (op & ~SLJIT_INT_OP) <= SLJIT_SDIVI));
+        || ((op & ~SLJIT_I32_OP) >= SLJIT_UDIVMOD && (op & ~SLJIT_I32_OP) <= SLJIT_SDIVI));
     CHECK_ARGUMENT(op < SLJIT_LUMUL || compiler->scratches >= 2);
 #endif
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
     if (SLJIT_UNLIKELY(!!compiler->verbose))
-        fprintf(compiler->verbose, "  %s%s\n", !(op & SLJIT_INT_OP) ? "" : "i", op0_names[GET_OPCODE(op) - SLJIT_OP0_BASE]);
+        fprintf(compiler->verbose, "  %s%s\n", !(op & SLJIT_I32_OP) ? "" : "i", op0_names[GET_OPCODE(op) - SLJIT_OP0_BASE]);
 #endif
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1064,7 +1064,7 @@
 #endif
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
     if (SLJIT_UNLIKELY(!!compiler->verbose)) {
-        fprintf(compiler->verbose, "  %s%s%s%s%s%s%s%s ", !(op & SLJIT_INT_OP) ? "" : "i", op1_names[GET_OPCODE(op) - SLJIT_OP1_BASE],
+        fprintf(compiler->verbose, "  %s%s%s%s%s%s%s%s ", !(op & SLJIT_I32_OP) ? "" : "i", op1_names[GET_OPCODE(op) - SLJIT_OP1_BASE],
             !(op & SLJIT_SET_E) ? "" : ".e", !(op & SLJIT_SET_U) ? "" : ".u", !(op & SLJIT_SET_S) ? "" : ".s",
             !(op & SLJIT_SET_O) ? "" : ".o", !(op & SLJIT_SET_C) ? "" : ".c", !(op & SLJIT_KEEP_FLAGS) ? "" : ".k");
         sljit_verbose_param(compiler, dst, dstw);
@@ -1076,10 +1076,10 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1095,7 +1095,7 @@
 #endif
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
     if (SLJIT_UNLIKELY(!!compiler->verbose)) {
-        fprintf(compiler->verbose, "  %s%s%s%s%s%s%s%s ", !(op & SLJIT_INT_OP) ? "" : "i", op2_names[GET_OPCODE(op) - SLJIT_OP2_BASE],
+        fprintf(compiler->verbose, "  %s%s%s%s%s%s%s%s ", !(op & SLJIT_I32_OP) ? "" : "i", op2_names[GET_OPCODE(op) - SLJIT_OP2_BASE],
             !(op & SLJIT_SET_E) ? "" : ".e", !(op & SLJIT_SET_U) ? "" : ".u", !(op & SLJIT_SET_S) ? "" : ".s",
             !(op & SLJIT_SET_O) ? "" : ".o", !(op & SLJIT_SET_C) ? "" : ".c", !(op & SLJIT_KEEP_FLAGS) ? "" : ".k");
         sljit_verbose_param(compiler, dst, dstw);
@@ -1109,7 +1109,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_get_register_index(sljit_si reg)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_get_register_index(sljit_s32 reg)
 {
     SLJIT_UNUSED_ARG(reg);
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
@@ -1118,7 +1118,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_get_float_register_index(sljit_si reg)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_get_float_register_index(sljit_s32 reg)
 {
     SLJIT_UNUSED_ARG(reg);
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
@@ -1128,7 +1128,7 @@
 }


 static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+    void *instruction, sljit_s32 size)
 {
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
     int i;
@@ -1152,7 +1152,7 @@
     if (SLJIT_UNLIKELY(!!compiler->verbose)) {
         fprintf(compiler->verbose, "  op_custom");
         for (i = 0; i < size; i++)
-            fprintf(compiler->verbose, " 0x%x", ((sljit_ub*)instruction)[i]);
+            fprintf(compiler->verbose, " 0x%x", ((sljit_u8*)instruction)[i]);
         fprintf(compiler->verbose, "\n");
     }
 #endif
@@ -1159,9 +1159,9 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1193,9 +1193,9 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1222,9 +1222,9 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1252,9 +1252,9 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1282,10 +1282,10 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     CHECK_ARGUMENT(sljit_is_fpu_available());
@@ -1320,7 +1320,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1328,9 +1328,9 @@
     }


 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
-    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_INT_OP)));
+    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_I32_OP)));
     CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_CALL3);
-    CHECK_ARGUMENT((type & 0xff) < SLJIT_JUMP || !(type & SLJIT_INT_OP));
+    CHECK_ARGUMENT((type & 0xff) < SLJIT_JUMP || !(type & SLJIT_I32_OP));
     CHECK_ARGUMENT((type & 0xff) <= SLJIT_CALL0 || ((type & 0xff) - SLJIT_CALL0) <= compiler->scratches);
 #endif
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
@@ -1341,12 +1341,12 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_cmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_cmp(struct sljit_compiler *compiler, sljit_s32 type,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
-    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_INT_OP)));
+    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_I32_OP)));
     CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_SIG_LESS_EQUAL);
     FUNCTION_CHECK_SRC(src1, src1w);
     FUNCTION_CHECK_SRC(src2, src2w);
@@ -1354,7 +1354,7 @@
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
     if (SLJIT_UNLIKELY(!!compiler->verbose)) {
         fprintf(compiler->verbose, "  cmp%s.%s%s ", !(type & SLJIT_REWRITABLE_JUMP) ? "" : ".r",
-            (type & SLJIT_INT_OP) ? "i_" : "", jump_names[type & 0xff]);
+            (type & SLJIT_I32_OP) ? "i_" : "", jump_names[type & 0xff]);
         sljit_verbose_param(compiler, src1, src1w);
         fprintf(compiler->verbose, ", ");
         sljit_verbose_param(compiler, src2, src2w);
@@ -1364,9 +1364,9 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_s32 type,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     CHECK_ARGUMENT(sljit_is_fpu_available());
@@ -1388,7 +1388,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_ijump(struct sljit_compiler *compiler, sljit_s32 type, sljit_s32 src, sljit_sw srcw)
 {
     if (SLJIT_UNLIKELY(compiler->skip_checks)) {
         compiler->skip_checks = 0;
@@ -1410,15 +1410,15 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
-    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_INT_OP)));
+    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_I32_OP)));
     CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_D_ORDERED);
-    CHECK_ARGUMENT(op == SLJIT_MOV || GET_OPCODE(op) == SLJIT_MOV_UI || GET_OPCODE(op) == SLJIT_MOV_SI
+    CHECK_ARGUMENT(op == SLJIT_MOV || GET_OPCODE(op) == SLJIT_MOV_U32 || GET_OPCODE(op) == SLJIT_MOV_S32
         || (GET_OPCODE(op) >= SLJIT_AND && GET_OPCODE(op) <= SLJIT_XOR));
     CHECK_ARGUMENT((op & (SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C)) == 0);
     CHECK_ARGUMENT((op & (SLJIT_SET_E | SLJIT_KEEP_FLAGS)) != (SLJIT_SET_E | SLJIT_KEEP_FLAGS));
@@ -1431,7 +1431,7 @@
 #endif
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
     if (SLJIT_UNLIKELY(!!compiler->verbose)) {
-        fprintf(compiler->verbose, "  flags.%s%s%s%s ", !(op & SLJIT_INT_OP) ? "" : "i",
+        fprintf(compiler->verbose, "  flags.%s%s%s%s ", !(op & SLJIT_I32_OP) ? "" : "i",
             GET_OPCODE(op) >= SLJIT_OP2_BASE ? op2_names[GET_OPCODE(op) - SLJIT_OP2_BASE] : op1_names[GET_OPCODE(op) - SLJIT_OP1_BASE],
             !(op & SLJIT_SET_E) ? "" : ".e", !(op & SLJIT_KEEP_FLAGS) ? "" : ".k");
         sljit_verbose_param(compiler, dst, dstw);
@@ -1445,7 +1445,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw offset)
 {
     SLJIT_UNUSED_ARG(offset);


@@ -1462,7 +1462,7 @@
     CHECK_RETURN_OK;
 }


-static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw init_value)
+static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value)
 {
     SLJIT_UNUSED_ARG(init_value);


@@ -1506,7 +1506,7 @@
     ADJUST_LOCAL_OFFSET(dst, dstw); \
     ADJUST_LOCAL_OFFSET(src, srcw);


-static SLJIT_INLINE sljit_si emit_mov_before_return(struct sljit_compiler *compiler, sljit_si op, sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 emit_mov_before_return(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 src, sljit_sw srcw)
 {
     /* Return if don't need to do anything. */
     if (op == SLJIT_UNUSED)
@@ -1517,7 +1517,7 @@
     if (src == SLJIT_RETURN_REG && (op == SLJIT_MOV || op == SLJIT_MOV_P))
         return SLJIT_SUCCESS;
 #else
-    if (src == SLJIT_RETURN_REG && (op == SLJIT_MOV || op == SLJIT_MOV_UI || op == SLJIT_MOV_SI || op == SLJIT_MOV_P))
+    if (src == SLJIT_RETURN_REG && (op == SLJIT_MOV || op == SLJIT_MOV_U32 || op == SLJIT_MOV_S32 || op == SLJIT_MOV_P))
         return SLJIT_SUCCESS;
 #endif


@@ -1576,12 +1576,12 @@

#if !(defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)

-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+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 src2, sljit_sw src2w)
 {
     /* Default compare for most architectures. */
-    sljit_si flags, tmp_src, condition;
+    sljit_s32 flags, tmp_src, condition;
     sljit_sw tmp_srcw;


     CHECK_ERROR_PTR();
@@ -1629,7 +1629,7 @@
             condition = SLJIT_SIG_GREATER_EQUAL;
             break;
         }
-        type = condition | (type & (SLJIT_INT_OP | SLJIT_REWRITABLE_JUMP));
+        type = condition | (type & (SLJIT_I32_OP | SLJIT_REWRITABLE_JUMP));
         tmp_src = src1;
         src1 = src2;
         src2 = tmp_src;
@@ -1649,7 +1649,7 @@
         || (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     compiler->skip_checks = 1;
 #endif
-    PTR_FAIL_IF(sljit_emit_op2(compiler, SLJIT_SUB | flags | (type & SLJIT_INT_OP),
+    PTR_FAIL_IF(sljit_emit_op2(compiler, SLJIT_SUB | flags | (type & SLJIT_I32_OP),
         SLJIT_UNUSED, 0, src1, src1w, src2, src2w));
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
         || (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
@@ -1658,11 +1658,11 @@
     return sljit_emit_jump(compiler, condition | (type & SLJIT_REWRITABLE_JUMP));
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+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 src2, sljit_sw src2w)
 {
-    sljit_si flags, condition;
+    sljit_s32 flags, condition;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_fcmp(compiler, type, src1, src1w, src2, src2w));
@@ -1689,7 +1689,7 @@


#if !(defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86)

-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw offset)
 {
     CHECK_ERROR();
     CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset));
@@ -1710,7 +1710,7 @@


/* Empty function bodies for those machines, which are not (yet) supported. */

-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
 {
     return "unsupported";
 }
@@ -1727,7 +1727,7 @@
     SLJIT_ASSERT_STOP();
 }


-SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_s32 size)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(size);
@@ -1757,9 +1757,9 @@
     SLJIT_ASSERT_STOP();
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(options);
@@ -1773,9 +1773,9 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(options);
@@ -1789,7 +1789,7 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(op);
@@ -1799,7 +1799,7 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(dst);
@@ -1808,7 +1808,7 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(src);
@@ -1817,7 +1817,7 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(op);
@@ -1825,9 +1825,9 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(op);
@@ -1839,10 +1839,10 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(op);
@@ -1856,14 +1856,14 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     SLJIT_ASSERT_STOP();
     return reg;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(instruction);
@@ -1872,15 +1872,15 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
     SLJIT_ASSERT_STOP();
     return 0;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(op);
@@ -1892,10 +1892,10 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(op);
@@ -1916,7 +1916,7 @@
     return NULL;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(type);
@@ -1924,9 +1924,9 @@
     return NULL;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+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 src2, sljit_sw src2w)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(type);
@@ -1938,9 +1938,9 @@
     return NULL;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+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 src2, sljit_sw src2w)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(type);
@@ -1966,7 +1966,7 @@
     SLJIT_ASSERT_STOP();
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(type);
@@ -1976,10 +1976,10 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(op);
@@ -1992,7 +1992,7 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw offset)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(dst);
@@ -2002,7 +2002,7 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw initval)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw initval)
 {
     SLJIT_UNUSED_ARG(compiler);
     SLJIT_UNUSED_ARG(dst);


Modified: code/trunk/src/sljit/sljitLir.h
===================================================================
--- code/trunk/src/sljit/sljitLir.h    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitLir.h    2016-02-29 09:09:40 UTC (rev 501)
@@ -271,7 +271,7 @@
     struct sljit_memory_fragment *next;
     sljit_uw used_size;
     /* Must be aligned to sljit_sw. */
-    sljit_ub memory[1];
+    sljit_u8 memory[1];
 };


struct sljit_label {
@@ -297,8 +297,8 @@
};

 struct sljit_compiler {
-    sljit_si error;
-    sljit_si options;
+    sljit_s32 error;
+    sljit_s32 options;


     struct sljit_label *labels;
     struct sljit_jump *jumps;
@@ -312,15 +312,15 @@
     struct sljit_memory_fragment *abuf;


     /* Used scratch registers. */
-    sljit_si scratches;
+    sljit_s32 scratches;
     /* Used saved registers. */
-    sljit_si saveds;
+    sljit_s32 saveds;
     /* Used float scratch registers. */
-    sljit_si fscratches;
+    sljit_s32 fscratches;
     /* Used float saved registers. */
-    sljit_si fsaveds;
+    sljit_s32 fsaveds;
     /* Local stack size. */
-    sljit_si local_size;
+    sljit_s32 local_size;
     /* Code size. */
     sljit_uw size;
     /* For statistical purposes. */
@@ -327,21 +327,21 @@
     sljit_uw executable_size;


 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-    sljit_si args;
+    sljit_s32 args;
 #endif


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-    sljit_si mode32;
+    sljit_s32 mode32;
 #endif


 #if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86)
-    sljit_si flags_saved;
+    sljit_s32 flags_saved;
 #endif


 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
     /* Constant pool handling. */
     sljit_uw *cpool;
-    sljit_ub *cpool_unique;
+    sljit_u8 *cpool_unique;
     sljit_uw cpool_diff;
     sljit_uw cpool_fill;
     /* Other members. */
@@ -352,40 +352,40 @@
 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5) || (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7)
     /* Temporary fields. */
     sljit_uw shift_imm;
-    sljit_si cache_arg;
+    sljit_s32 cache_arg;
     sljit_sw cache_argw;
 #endif


 #if (defined SLJIT_CONFIG_ARM_THUMB2 && SLJIT_CONFIG_ARM_THUMB2)
-    sljit_si cache_arg;
+    sljit_s32 cache_arg;
     sljit_sw cache_argw;
 #endif


 #if (defined SLJIT_CONFIG_ARM_64 && SLJIT_CONFIG_ARM_64)
-    sljit_si cache_arg;
+    sljit_s32 cache_arg;
     sljit_sw cache_argw;
 #endif


 #if (defined SLJIT_CONFIG_PPC && SLJIT_CONFIG_PPC)
     sljit_sw imm;
-    sljit_si cache_arg;
+    sljit_s32 cache_arg;
     sljit_sw cache_argw;
 #endif


 #if (defined SLJIT_CONFIG_MIPS && SLJIT_CONFIG_MIPS)
-    sljit_si delay_slot;
-    sljit_si cache_arg;
+    sljit_s32 delay_slot;
+    sljit_s32 cache_arg;
     sljit_sw cache_argw;
 #endif


 #if (defined SLJIT_CONFIG_SPARC_32 && SLJIT_CONFIG_SPARC_32)
-    sljit_si delay_slot;
-    sljit_si cache_arg;
+    sljit_s32 delay_slot;
+    sljit_s32 cache_arg;
     sljit_sw cache_argw;
 #endif


 #if (defined SLJIT_CONFIG_TILEGX && SLJIT_CONFIG_TILEGX)
-    sljit_si cache_arg;
+    sljit_s32 cache_arg;
     sljit_sw cache_argw;
 #endif


@@ -396,13 +396,13 @@
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
         || (defined SLJIT_DEBUG && SLJIT_DEBUG)
     /* Local size passed to the functions. */
-    sljit_si logical_local_size;
+    sljit_s32 logical_local_size;
 #endif


 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS) \
         || (defined SLJIT_DEBUG && SLJIT_DEBUG) \
         || (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
-    sljit_si skip_checks;
+    sljit_s32 skip_checks;
 #endif
 };


@@ -427,7 +427,7 @@
    error code. Thus there is no need for checking the error after every
    call, it is enough to do it before the code is compiled. Removing
    these checks increases the performance of the compiling process. */
-static SLJIT_INLINE sljit_si sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler->error; }
+static SLJIT_INLINE sljit_s32 sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler->error; }


 /* Sets the compiler error code to SLJIT_ERR_ALLOC_FAILED except
    if an error was detected before. After the error code is set
@@ -448,7 +448,7 @@
    indicate that there is no more memory (does not set the current error code
    of the compiler to out-of-memory status).
 */
-SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_si size);
+SLJIT_API_FUNC_ATTRIBUTE void* sljit_alloc_memory(struct sljit_compiler *compiler, sljit_s32 size);


 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
 /* Passing NULL disables verbose. */
@@ -518,9 +518,9 @@
 /* The local_size must be >= 0 and <= SLJIT_MAX_LOCAL_SIZE. */
 #define SLJIT_MAX_LOCAL_SIZE    65536


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size);


 /* The machine code has a context (which contains the local stack space size,
    number of used registers, etc.) which initialized by sljit_emit_enter. Several
@@ -532,9 +532,9 @@
    Note: every call of sljit_emit_enter and sljit_set_context overwrites
          the previous context. */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size);


 /* Return from machine code.  The op argument can be SLJIT_UNUSED which means the
    function does not return with anything or any opcode between SLJIT_MOV and
@@ -542,8 +542,8 @@
    is SLJIT_UNUSED, otherwise see below the description about source and
    destination arguments. */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si 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);


 /* Fast calling mechanism for utility functions (see SLJIT_FAST_CALL). All registers and
    even the stack frame is passed to the callee. The return address is preserved in
@@ -560,8 +560,8 @@
 /* Note: although sljit_emit_fast_return could be replaced by an ijump, it is not suggested,
    since many architectures do clever branch prediction on call / return instruction pairs. */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw);
-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw);

 /*
    Source and destination values for arithmetical instructions
@@ -630,22 +630,22 @@
    to the 32 bit result. The higher 32 bits are undefined for both the input and
    output. However, the CPU might not ignore those higher 32 bits, like MIPS, which
    expects it to be the sign extension of the lower 32 bit. All 32 bit operations
-   are undefined, if this condition is not fulfilled. Therefore, when SLJIT_INT_OP
+   are undefined, if this condition is not fulfilled. Therefore, when SLJIT_I32_OP
    is specified, all register arguments must be the result of other operations with
-   the same SLJIT_INT_OP flag. In other words, although a register can hold either
+   the same SLJIT_I32_OP flag. In other words, although a register can hold either
    a 64 or 32 bit value, these values cannot be mixed. The only exceptions are
-   SLJIT_IMOV and SLJIT_IMOVU (SLJIT_MOV_SI/SLJIT_MOVU_SI with SLJIT_INT_OP flag)
-   which can convert any source argument to SLJIT_INT_OP compatible result. This
+   SLJIT_IMOV and SLJIT_IMOVU (SLJIT_MOV_S32/SLJIT_MOVU_S32 with SLJIT_I32_OP flag)
+   which can convert any source argument to SLJIT_I32_OP compatible result. This
    conversion might be unnecessary on some CPUs like x86-64, since the upper 32
    bit is always ignored. In this case SLJIT is clever enough to not generate any
    instructions if the source and destination operands are the same registers.
    Affects sljit_emit_op0, sljit_emit_op1 and sljit_emit_op2. */
-#define SLJIT_INT_OP        0x100
+#define SLJIT_I32_OP        0x100


-/* Single precision mode (SP). This flag is similar to SLJIT_INT_OP, just
+/* Single precision mode (SP). This flag is similar to SLJIT_I32_OP, just
    it applies to floating point registers (it is even the same bit). When
    this flag is passed, the CPU performs single precision floating point
-   operations. Similar to SLJIT_INT_OP, all register arguments must be the
+   operations. Similar to SLJIT_I32_OP, all register arguments must be the
    result of other floating point operations with this flag. Affects
    sljit_emit_fop1, sljit_emit_fop2 and sljit_emit_fcmp. */
 #define SLJIT_SINGLE_OP        0x100
@@ -707,7 +707,7 @@
    The result is placed into SLJIT_R0 and the remainder into SLJIT_R1.
    Note: if SLJIT_R1 is 0, the behaviour is undefined. */
 #define SLJIT_UDIVMOD            (SLJIT_OP0_BASE + 4)
-#define SLJIT_IUDIVMOD            (SLJIT_UDIVMOD | SLJIT_INT_OP)
+#define SLJIT_IUDIVMOD            (SLJIT_UDIVMOD | SLJIT_I32_OP)
 /* Flags: I - (may destroy flags)
    Signed divide of the value in SLJIT_R0 by the value in SLJIT_R1.
    The result is placed into SLJIT_R0 and the remainder into SLJIT_R1.
@@ -715,7 +715,7 @@
    Note: if SLJIT_R1 is -1 and SLJIT_R0 is integer min (0x800..00),
          the behaviour is undefined. */
 #define SLJIT_SDIVMOD            (SLJIT_OP0_BASE + 5)
-#define SLJIT_ISDIVMOD            (SLJIT_SDIVMOD | SLJIT_INT_OP)
+#define SLJIT_ISDIVMOD            (SLJIT_SDIVMOD | SLJIT_I32_OP)
 /* Flags: I - (may destroy flags)
    Unsigned divide of the value in SLJIT_R0 by the value in SLJIT_R1.
    The result is placed into SLJIT_R0. SLJIT_R1 preserves its value.
@@ -722,7 +722,7 @@
    Note: if SLJIT_R1 is 0, the behaviour is undefined.
    Note: SLJIT_SDIV is single precision divide. */
 #define SLJIT_UDIVI            (SLJIT_OP0_BASE + 6)
-#define SLJIT_IUDIVI            (SLJIT_UDIVI | SLJIT_INT_OP)
+#define SLJIT_IUDIVI            (SLJIT_UDIVI | SLJIT_I32_OP)
 /* Flags: I - (may destroy flags)
    Signed divide of the value in SLJIT_R0 by the value in SLJIT_R1.
    The result is placed into SLJIT_R0. SLJIT_R1 preserves its value.
@@ -731,9 +731,9 @@
          the behaviour is undefined.
    Note: SLJIT_SDIV is single precision divide. */
 #define SLJIT_SDIVI            (SLJIT_OP0_BASE + 7)
-#define SLJIT_ISDIVI            (SLJIT_SDIVI | SLJIT_INT_OP)
+#define SLJIT_ISDIVI            (SLJIT_SDIVI | SLJIT_I32_OP)


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op);

 /* Starting index of opcodes for sljit_emit_op1. */
 #define SLJIT_OP1_BASE            32
@@ -752,67 +752,67 @@
 /* Flags: - (never set any flags) */
 #define SLJIT_MOV            (SLJIT_OP1_BASE + 0)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOV_UB            (SLJIT_OP1_BASE + 1)
-#define SLJIT_IMOV_UB            (SLJIT_MOV_UB | SLJIT_INT_OP)
+#define SLJIT_MOV_U8            (SLJIT_OP1_BASE + 1)
+#define SLJIT_IMOV_U8            (SLJIT_MOV_U8 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOV_SB            (SLJIT_OP1_BASE + 2)
-#define SLJIT_IMOV_SB            (SLJIT_MOV_SB | SLJIT_INT_OP)
+#define SLJIT_MOV_S8            (SLJIT_OP1_BASE + 2)
+#define SLJIT_IMOV_S8            (SLJIT_MOV_S8 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOV_UH            (SLJIT_OP1_BASE + 3)
-#define SLJIT_IMOV_UH            (SLJIT_MOV_UH | SLJIT_INT_OP)
+#define SLJIT_MOV_U16            (SLJIT_OP1_BASE + 3)
+#define SLJIT_IMOV_U16            (SLJIT_MOV_U16 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOV_SH            (SLJIT_OP1_BASE + 4)
-#define SLJIT_IMOV_SH            (SLJIT_MOV_SH | SLJIT_INT_OP)
+#define SLJIT_MOV_S16            (SLJIT_OP1_BASE + 4)
+#define SLJIT_IMOV_S16            (SLJIT_MOV_S16 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags)
-   Note: see SLJIT_INT_OP for further details. */
-#define SLJIT_MOV_UI            (SLJIT_OP1_BASE + 5)
-/* No SLJIT_INT_OP form, since it is the same as SLJIT_IMOV. */
+   Note: see SLJIT_I32_OP for further details. */
+#define SLJIT_MOV_U32            (SLJIT_OP1_BASE + 5)
+/* No SLJIT_I32_OP form, since it is the same as SLJIT_IMOV. */
 /* Flags: I - (never set any flags)
-   Note: see SLJIT_INT_OP for further details. */
-#define SLJIT_MOV_SI            (SLJIT_OP1_BASE + 6)
-#define SLJIT_IMOV            (SLJIT_MOV_SI | SLJIT_INT_OP)
+   Note: see SLJIT_I32_OP for further details. */
+#define SLJIT_MOV_S32            (SLJIT_OP1_BASE + 6)
+#define SLJIT_IMOV            (SLJIT_MOV_S32 | SLJIT_I32_OP)
 /* Flags: - (never set any flags) */
 #define SLJIT_MOV_P            (SLJIT_OP1_BASE + 7)
 /* Flags: - (never set any flags) */
 #define SLJIT_MOVU            (SLJIT_OP1_BASE + 8)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOVU_UB            (SLJIT_OP1_BASE + 9)
-#define SLJIT_IMOVU_UB            (SLJIT_MOVU_UB | SLJIT_INT_OP)
+#define SLJIT_MOVU_U8            (SLJIT_OP1_BASE + 9)
+#define SLJIT_IMOVU_U8            (SLJIT_MOVU_U8 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOVU_SB            (SLJIT_OP1_BASE + 10)
-#define SLJIT_IMOVU_SB            (SLJIT_MOVU_SB | SLJIT_INT_OP)
+#define SLJIT_MOVU_S8            (SLJIT_OP1_BASE + 10)
+#define SLJIT_IMOVU_S8            (SLJIT_MOVU_S8 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOVU_UH            (SLJIT_OP1_BASE + 11)
-#define SLJIT_IMOVU_UH            (SLJIT_MOVU_UH | SLJIT_INT_OP)
+#define SLJIT_MOVU_U16            (SLJIT_OP1_BASE + 11)
+#define SLJIT_IMOVU_U16            (SLJIT_MOVU_U16 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags) */
-#define SLJIT_MOVU_SH            (SLJIT_OP1_BASE + 12)
-#define SLJIT_IMOVU_SH            (SLJIT_MOVU_SH | SLJIT_INT_OP)
+#define SLJIT_MOVU_S16            (SLJIT_OP1_BASE + 12)
+#define SLJIT_IMOVU_S16            (SLJIT_MOVU_S16 | SLJIT_I32_OP)
 /* Flags: I - (never set any flags)
-   Note: see SLJIT_INT_OP for further details. */
-#define SLJIT_MOVU_UI            (SLJIT_OP1_BASE + 13)
-/* No SLJIT_INT_OP form, since it is the same as SLJIT_IMOVU. */
+   Note: see SLJIT_I32_OP for further details. */
+#define SLJIT_MOVU_U32            (SLJIT_OP1_BASE + 13)
+/* No SLJIT_I32_OP form, since it is the same as SLJIT_IMOVU. */
 /* Flags: I - (never set any flags)
-   Note: see SLJIT_INT_OP for further details. */
-#define SLJIT_MOVU_SI            (SLJIT_OP1_BASE + 14)
-#define SLJIT_IMOVU            (SLJIT_MOVU_SI | SLJIT_INT_OP)
+   Note: see SLJIT_I32_OP for further details. */
+#define SLJIT_MOVU_S32            (SLJIT_OP1_BASE + 14)
+#define SLJIT_IMOVU            (SLJIT_MOVU_S32 | SLJIT_I32_OP)
 /* Flags: - (never set any flags) */
 #define SLJIT_MOVU_P            (SLJIT_OP1_BASE + 15)
 /* Flags: I | E | K */
 #define SLJIT_NOT            (SLJIT_OP1_BASE + 16)
-#define SLJIT_INOT            (SLJIT_NOT | SLJIT_INT_OP)
+#define SLJIT_INOT            (SLJIT_NOT | SLJIT_I32_OP)
 /* Flags: I | E | O | K */
 #define SLJIT_NEG            (SLJIT_OP1_BASE + 17)
-#define SLJIT_INEG            (SLJIT_NEG | SLJIT_INT_OP)
+#define SLJIT_INEG            (SLJIT_NEG | SLJIT_I32_OP)
 /* Count leading zeroes
    Flags: I | E | K
    Important note! Sparc 32 does not support K flag, since
    the required popc instruction is introduced only in sparc 64. */
 #define SLJIT_CLZ            (SLJIT_OP1_BASE + 18)
-#define SLJIT_ICLZ            (SLJIT_CLZ | SLJIT_INT_OP)
+#define SLJIT_ICLZ            (SLJIT_CLZ | SLJIT_I32_OP)


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw);


 /* Starting index of opcodes for sljit_emit_op2. */
 #define SLJIT_OP2_BASE            96
@@ -819,29 +819,29 @@


 /* Flags: I | E | O | C | K */
 #define SLJIT_ADD            (SLJIT_OP2_BASE + 0)
-#define SLJIT_IADD            (SLJIT_ADD | SLJIT_INT_OP)
+#define SLJIT_IADD            (SLJIT_ADD | SLJIT_I32_OP)
 /* Flags: I | C | K */
 #define SLJIT_ADDC            (SLJIT_OP2_BASE + 1)
-#define SLJIT_IADDC            (SLJIT_ADDC | SLJIT_INT_OP)
+#define SLJIT_IADDC            (SLJIT_ADDC | SLJIT_I32_OP)
 /* Flags: I | E | U | S | O | C | K */
 #define SLJIT_SUB            (SLJIT_OP2_BASE + 2)
-#define SLJIT_ISUB            (SLJIT_SUB | SLJIT_INT_OP)
+#define SLJIT_ISUB            (SLJIT_SUB | SLJIT_I32_OP)
 /* Flags: I | C | K */
 #define SLJIT_SUBC            (SLJIT_OP2_BASE + 3)
-#define SLJIT_ISUBC            (SLJIT_SUBC | SLJIT_INT_OP)
+#define SLJIT_ISUBC            (SLJIT_SUBC | SLJIT_I32_OP)
 /* Note: integer mul
    Flags: I | O (see SLJIT_C_MUL_*) | K */
 #define SLJIT_MUL            (SLJIT_OP2_BASE + 4)
-#define SLJIT_IMUL            (SLJIT_MUL | SLJIT_INT_OP)
+#define SLJIT_IMUL            (SLJIT_MUL | SLJIT_I32_OP)
 /* Flags: I | E | K */
 #define SLJIT_AND            (SLJIT_OP2_BASE + 5)
-#define SLJIT_IAND            (SLJIT_AND | SLJIT_INT_OP)
+#define SLJIT_IAND            (SLJIT_AND | SLJIT_I32_OP)
 /* Flags: I | E | K */
 #define SLJIT_OR            (SLJIT_OP2_BASE + 6)
-#define SLJIT_IOR            (SLJIT_OR | SLJIT_INT_OP)
+#define SLJIT_IOR            (SLJIT_OR | SLJIT_I32_OP)
 /* Flags: I | E | K */
 #define SLJIT_XOR            (SLJIT_OP2_BASE + 7)
-#define SLJIT_IXOR            (SLJIT_XOR | SLJIT_INT_OP)
+#define SLJIT_IXOR            (SLJIT_XOR | SLJIT_I32_OP)
 /* Flags: I | E | K
    Let bit_length be the length of the shift operation: 32 or 64.
    If src2 is immediate, src2w is masked by (bit_length - 1).
@@ -848,7 +848,7 @@
    Otherwise, if the content of src2 is outside the range from 0
    to bit_length - 1, the result is undefined. */
 #define SLJIT_SHL            (SLJIT_OP2_BASE + 8)
-#define SLJIT_ISHL            (SLJIT_SHL | SLJIT_INT_OP)
+#define SLJIT_ISHL            (SLJIT_SHL | SLJIT_I32_OP)
 /* Flags: I | E | K
    Let bit_length be the length of the shift operation: 32 or 64.
    If src2 is immediate, src2w is masked by (bit_length - 1).
@@ -855,7 +855,7 @@
    Otherwise, if the content of src2 is outside the range from 0
    to bit_length - 1, the result is undefined. */
 #define SLJIT_LSHR            (SLJIT_OP2_BASE + 9)
-#define SLJIT_ILSHR            (SLJIT_LSHR | SLJIT_INT_OP)
+#define SLJIT_ILSHR            (SLJIT_LSHR | SLJIT_I32_OP)
 /* Flags: I | E | K
    Let bit_length be the length of the shift operation: 32 or 64.
    If src2 is immediate, src2w is masked by (bit_length - 1).
@@ -862,16 +862,16 @@
    Otherwise, if the content of src2 is outside the range from 0
    to bit_length - 1, the result is undefined. */
 #define SLJIT_ASHR            (SLJIT_OP2_BASE + 10)
-#define SLJIT_IASHR            (SLJIT_ASHR | SLJIT_INT_OP)
+#define SLJIT_IASHR            (SLJIT_ASHR | SLJIT_I32_OP)


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w);


/* Returns with non-zero if fpu is available. */

-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void);

 /* Starting index of opcodes for sljit_emit_fop1. */
 #define SLJIT_FOP1_BASE            128
@@ -910,9 +910,9 @@
 #define SLJIT_DABS            (SLJIT_FOP1_BASE + 8)
 #define SLJIT_SABS            (SLJIT_DABS | SLJIT_SINGLE_OP)


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw);


 /* Starting index of opcodes for sljit_emit_fop2. */
 #define SLJIT_FOP2_BASE            160
@@ -930,10 +930,10 @@
 #define SLJIT_DDIV            (SLJIT_FOP2_BASE + 3)
 #define SLJIT_SDIV            (SLJIT_DDIV | SLJIT_SINGLE_OP)


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w);


/* Label and jump instructions. */

@@ -943,40 +943,40 @@

 /* Integer comparison types. */
 #define SLJIT_EQUAL            0
-#define SLJIT_I_EQUAL            (SLJIT_EQUAL | SLJIT_INT_OP)
+#define SLJIT_I_EQUAL            (SLJIT_EQUAL | SLJIT_I32_OP)
 #define SLJIT_ZERO            0
-#define SLJIT_I_ZERO            (SLJIT_ZERO | SLJIT_INT_OP)
+#define SLJIT_I_ZERO            (SLJIT_ZERO | SLJIT_I32_OP)
 #define SLJIT_NOT_EQUAL            1
-#define SLJIT_I_NOT_EQUAL        (SLJIT_NOT_EQUAL | SLJIT_INT_OP)
+#define SLJIT_I_NOT_EQUAL        (SLJIT_NOT_EQUAL | SLJIT_I32_OP)
 #define SLJIT_NOT_ZERO            1
-#define SLJIT_I_NOT_ZERO        (SLJIT_NOT_ZERO | SLJIT_INT_OP)
+#define SLJIT_I_NOT_ZERO        (SLJIT_NOT_ZERO | SLJIT_I32_OP)


 #define SLJIT_LESS            2
-#define SLJIT_I_LESS            (SLJIT_LESS | SLJIT_INT_OP)
+#define SLJIT_I_LESS            (SLJIT_LESS | SLJIT_I32_OP)
 #define SLJIT_GREATER_EQUAL        3
-#define SLJIT_I_GREATER_EQUAL        (SLJIT_GREATER_EQUAL | SLJIT_INT_OP)
+#define SLJIT_I_GREATER_EQUAL        (SLJIT_GREATER_EQUAL | SLJIT_I32_OP)
 #define SLJIT_GREATER            4
-#define SLJIT_I_GREATER            (SLJIT_GREATER | SLJIT_INT_OP)
+#define SLJIT_I_GREATER            (SLJIT_GREATER | SLJIT_I32_OP)
 #define SLJIT_LESS_EQUAL        5
-#define SLJIT_I_LESS_EQUAL        (SLJIT_LESS_EQUAL | SLJIT_INT_OP)
+#define SLJIT_I_LESS_EQUAL        (SLJIT_LESS_EQUAL | SLJIT_I32_OP)
 #define SLJIT_SIG_LESS            6
-#define SLJIT_I_SIG_LESS        (SLJIT_SIG_LESS | SLJIT_INT_OP)
+#define SLJIT_I_SIG_LESS        (SLJIT_SIG_LESS | SLJIT_I32_OP)
 #define SLJIT_SIG_GREATER_EQUAL        7
-#define SLJIT_I_SIG_GREATER_EQUAL    (SLJIT_SIG_GREATER_EQUAL | SLJIT_INT_OP)
+#define SLJIT_I_SIG_GREATER_EQUAL    (SLJIT_SIG_GREATER_EQUAL | SLJIT_I32_OP)
 #define SLJIT_SIG_GREATER        8
-#define SLJIT_I_SIG_GREATER        (SLJIT_SIG_GREATER | SLJIT_INT_OP)
+#define SLJIT_I_SIG_GREATER        (SLJIT_SIG_GREATER | SLJIT_I32_OP)
 #define SLJIT_SIG_LESS_EQUAL        9
-#define SLJIT_I_SIG_LESS_EQUAL        (SLJIT_SIG_LESS_EQUAL | SLJIT_INT_OP)
+#define SLJIT_I_SIG_LESS_EQUAL        (SLJIT_SIG_LESS_EQUAL | SLJIT_I32_OP)


 #define SLJIT_OVERFLOW            10
-#define SLJIT_I_OVERFLOW        (SLJIT_OVERFLOW | SLJIT_INT_OP)
+#define SLJIT_I_OVERFLOW        (SLJIT_OVERFLOW | SLJIT_I32_OP)
 #define SLJIT_NOT_OVERFLOW        11
-#define SLJIT_I_NOT_OVERFLOW        (SLJIT_NOT_OVERFLOW | SLJIT_INT_OP)
+#define SLJIT_I_NOT_OVERFLOW        (SLJIT_NOT_OVERFLOW | SLJIT_I32_OP)


 #define SLJIT_MUL_OVERFLOW        12
-#define SLJIT_I_MUL_OVERFLOW        (SLJIT_MUL_OVERFLOW | SLJIT_INT_OP)
+#define SLJIT_I_MUL_OVERFLOW        (SLJIT_MUL_OVERFLOW | SLJIT_I32_OP)
 #define SLJIT_MUL_NOT_OVERFLOW        13
-#define SLJIT_I_MUL_NOT_OVERFLOW    (SLJIT_MUL_NOT_OVERFLOW | SLJIT_INT_OP)
+#define SLJIT_I_MUL_NOT_OVERFLOW    (SLJIT_MUL_NOT_OVERFLOW | SLJIT_I32_OP)


 /* Floating point comparison types. */
 #define SLJIT_D_EQUAL            14
@@ -1014,7 +1014,7 @@
     type can be combined (or'ed) with SLJIT_REWRITABLE_JUMP
    Flags: - (never set any flags) for both conditional and unconditional jumps.
    Flags: destroy all flags for calls. */
-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type);
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type);


 /* Basic arithmetic comparison. In most architectures it is implemented as
    an SLJIT_SUB operation (with SLJIT_UNUSED destination and setting
@@ -1024,9 +1024,9 @@
     type must be between SLJIT_EQUAL and SLJIT_I_SIG_LESS_EQUAL
     type can be combined (or'ed) with SLJIT_REWRITABLE_JUMP
    Flags: destroy flags. */
-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w);
+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 src2, sljit_sw src2w);


 /* Basic floating point comparison. In most architectures it is implemented as
    an SLJIT_FCMP operation (setting appropriate flags) followed by a
@@ -1038,9 +1038,9 @@
    Flags: destroy flags.
    Note: if either operand is NaN, the behaviour is undefined for
          types up to SLJIT_S_LESS_EQUAL. */
-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w);
+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 src2, sljit_sw src2w);


 /* Set the destination of the jump to this label. */
 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_label(struct sljit_jump *jump, struct sljit_label* label);
@@ -1053,7 +1053,7 @@
     Indirect form: any other valid addressing mode
    Flags: - (never set any flags) for unconditional jumps.
    Flags: destroy all flags for calls. */
-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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);


 /* Perform the operation using the conditional flags as the second argument.
    Type must always be between SLJIT_EQUAL and SLJIT_S_ORDERED. The value
@@ -1060,7 +1060,7 @@
    represented by the type is 1, if the condition represented by the type
    is fulfilled, and 0 otherwise.


-   If op == SLJIT_MOV, SLJIT_MOV_SI, SLJIT_MOV_UI:
+   If op == SLJIT_MOV, SLJIT_MOV_S32, SLJIT_MOV_U32:
      Set dst to the value represented by the type (0 or 1).
      Src must be SLJIT_UNUSED, and srcw must be 0
      Flags: - (never set any flags)
@@ -1070,18 +1070,18 @@
      Important note: only dst=src and dstw=srcw is supported at the moment!
      Flags: I | E | K
    Note: sljit_emit_op_flags does nothing, if dst is SLJIT_UNUSED (regardless of op). */
-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type);


 /* Copies the base address of SLJIT_SP + offset to dst.
    Flags: - (never set any flags) */
-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw offset);


 /* The constant can be changed runtime (see: sljit_set_const)
    Flags: - (never set any flags) */
-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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);


 /* After the code generation the address for label, jump and const instructions
    are computed. Since these structures are freed by sljit_free_compiler, the
@@ -1104,7 +1104,7 @@
 /* Get the human readable name of the platform. Can be useful on platforms
    like ARM, where ARM and Thumb2 functions can be mixed, and
    it is useful to know the type of the code generator. */
-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void);
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void);


/* Portable helper function to get an offset of a member. */
#define SLJIT_OFFSETOF(base, member) ((sljit_sw)(&((base*)0x10)->member) - 0x10)
@@ -1196,7 +1196,7 @@

    Note: it returns with -1 for virtual registers (only on x86-32). */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg);
+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.
    It returns with the real machine register index of any SLJIT_FLOAT register.
@@ -1203,7 +1203,7 @@


    Note: the index is always an even number on ARM (except ARM-64), MIPS, and SPARC. */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg);

 /* Any instruction can be inserted into the instruction stream by
    sljit_emit_op_custom. It has a similar purpose as inline assembly.
@@ -1215,18 +1215,18 @@
               if size == 4, the instruction argument must be 4 byte aligned.
    Otherwise: size must be 4 and instruction argument must be 4 byte aligned. */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size);


#if (defined SLJIT_CONFIG_X86 && SLJIT_CONFIG_X86)

/* Returns with non-zero if sse2 is available. */

-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_x86_is_sse2_available(void);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_x86_is_sse2_available(void);

/* Returns with non-zero if cmov instruction is available. */

-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_x86_is_cmov_available(void);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_x86_is_cmov_available(void);

 /* Emit a conditional mov instruction on x86 CPUs. This instruction
    moves src to destination, if the condition is satisfied. Unlike
@@ -1235,14 +1235,14 @@
    checked by sljit_x86_is_cmov_available function.
     type must be between SLJIT_EQUAL and SLJIT_S_ORDERED
     dst_reg must be a valid register and it can be combined
-      with SLJIT_INT_OP to perform 32 bit arithmetic
+      with SLJIT_I32_OP to perform 32 bit arithmetic
    Flags: I - (never set any flags)
  */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_x86_emit_cmov(struct sljit_compiler *compiler,
-    sljit_si type,
-    sljit_si dst_reg,
-    sljit_si src, sljit_sw srcw);
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_x86_emit_cmov(struct sljit_compiler *compiler,
+    sljit_s32 type,
+    sljit_s32 dst_reg,
+    sljit_s32 src, sljit_sw srcw);


#endif


Modified: code/trunk/src/sljit/sljitNativeARM_32.c
===================================================================
--- code/trunk/src/sljit/sljitNativeARM_32.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeARM_32.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -24,7 +24,7 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */


-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
 {
 #if (defined SLJIT_CONFIG_ARM_V7 && SLJIT_CONFIG_ARM_V7)
     return "ARMv7" SLJIT_CPUINFO;
@@ -52,10 +52,10 @@
 #define ALIGN_INSTRUCTION(ptr) \
     (sljit_uw*)(((sljit_uw)(ptr) + (CONST_POOL_ALIGNMENT * sizeof(sljit_uw)) - 1) & ~((CONST_POOL_ALIGNMENT * sizeof(sljit_uw)) - 1))
 #define MAX_DIFFERENCE(max_diff) \
-    (((max_diff) / (sljit_si)sizeof(sljit_uw)) - (CONST_POOL_ALIGNMENT - 1))
+    (((max_diff) / (sljit_s32)sizeof(sljit_uw)) - (CONST_POOL_ALIGNMENT - 1))


 /* See sljit_emit_enter and sljit_emit_op0 if you want to change them. */
-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
     0, 0, 1, 2, 11, 10, 9, 8, 7, 6, 5, 4, 13, 3, 12, 14, 15
 };


@@ -126,13 +126,13 @@

#if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)

-static sljit_si push_cpool(struct sljit_compiler *compiler)
+static sljit_s32 push_cpool(struct sljit_compiler *compiler)
 {
     /* Pushing the constant pool into the instruction stream. */
     sljit_uw* inst;
     sljit_uw* cpool_ptr;
     sljit_uw* cpool_end;
-    sljit_si i;
+    sljit_s32 i;


     /* The label could point the address after the constant pool. */
     if (compiler->last_label && compiler->last_label->size == compiler->size)
@@ -164,7 +164,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_inst(struct sljit_compiler *compiler, sljit_uw inst)
+static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_uw inst)
 {
     sljit_uw* ptr;


@@ -178,13 +178,13 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_inst_with_literal(struct sljit_compiler *compiler, sljit_uw inst, sljit_uw literal)
+static sljit_s32 push_inst_with_literal(struct sljit_compiler *compiler, sljit_uw inst, sljit_uw literal)
 {
     sljit_uw* ptr;
     sljit_uw cpool_index = CPOOL_SIZE;
     sljit_uw* cpool_ptr;
     sljit_uw* cpool_end;
-    sljit_ub* cpool_unique_ptr;
+    sljit_u8* cpool_unique_ptr;


     if (SLJIT_UNLIKELY(compiler->cpool_diff != CONST_POOL_EMPTY && compiler->size - compiler->cpool_diff >= MAX_DIFFERENCE(4092)))
         FAIL_IF(push_cpool(compiler));
@@ -228,7 +228,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_inst_with_unique_literal(struct sljit_compiler *compiler, sljit_uw inst, sljit_uw literal)
+static sljit_s32 push_inst_with_unique_literal(struct sljit_compiler *compiler, sljit_uw inst, sljit_uw literal)
 {
     sljit_uw* ptr;
     if (SLJIT_UNLIKELY((compiler->cpool_diff != CONST_POOL_EMPTY && compiler->size - compiler->cpool_diff >= MAX_DIFFERENCE(4092)) || compiler->cpool_fill >= CPOOL_SIZE))
@@ -248,7 +248,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si prepare_blx(struct sljit_compiler *compiler)
+static SLJIT_INLINE sljit_s32 prepare_blx(struct sljit_compiler *compiler)
 {
     /* Place for at least two instruction (doesn't matter whether the first has a literal). */
     if (SLJIT_UNLIKELY(compiler->cpool_diff != CONST_POOL_EMPTY && compiler->size - compiler->cpool_diff >= MAX_DIFFERENCE(4088)))
@@ -256,7 +256,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_blx(struct sljit_compiler *compiler)
+static SLJIT_INLINE sljit_s32 emit_blx(struct sljit_compiler *compiler)
 {
     /* Must follow tightly the previous instruction (to be able to convert it to bl instruction). */
     SLJIT_ASSERT(compiler->cpool_diff == CONST_POOL_EMPTY || compiler->size - compiler->cpool_diff < MAX_DIFFERENCE(4092));
@@ -286,7 +286,7 @@


             /* Must be a load instruction with immediate offset. */
             SLJIT_ASSERT(ind < cpool_size && !(*last_pc_patch & (1 << 25)) && (*last_pc_patch & (1 << 20)));
-            if ((sljit_si)const_pool[ind] < 0) {
+            if ((sljit_s32)const_pool[ind] < 0) {
                 const_pool[ind] = counter;
                 ind = counter;
                 counter++;
@@ -311,13 +311,13 @@
 /* In some rare ocasions we may need future patches. The probability is close to 0 in practice. */
 struct future_patch {
     struct future_patch* next;
-    sljit_si index;
-    sljit_si value;
+    sljit_s32 index;
+    sljit_s32 value;
 };


-static sljit_si resolve_const_pool_index(struct sljit_compiler *compiler, struct future_patch **first_patch, sljit_uw cpool_current_index, sljit_uw *cpool_start_address, sljit_uw *buf_ptr)
+static sljit_s32 resolve_const_pool_index(struct sljit_compiler *compiler, struct future_patch **first_patch, sljit_uw cpool_current_index, sljit_uw *cpool_start_address, sljit_uw *buf_ptr)
 {
-    sljit_si value;
+    sljit_s32 value;
     struct future_patch *curr_patch, *prev_patch;


     SLJIT_UNUSED_ARG(compiler);
@@ -324,13 +324,13 @@


     /* Using the values generated by patch_pc_relative_loads. */
     if (!*first_patch)
-        value = (sljit_si)cpool_start_address[cpool_current_index];
+        value = (sljit_s32)cpool_start_address[cpool_current_index];
     else {
         curr_patch = *first_patch;
-        prev_patch = 0;
+        prev_patch = NULL;
         while (1) {
             if (!curr_patch) {
-                value = (sljit_si)cpool_start_address[cpool_current_index];
+                value = (sljit_s32)cpool_start_address[cpool_current_index];
                 break;
             }
             if ((sljit_uw)curr_patch->index == cpool_current_index) {
@@ -370,7 +370,7 @@


#else

-static sljit_si push_inst(struct sljit_compiler *compiler, sljit_uw inst)
+static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_uw inst)
 {
     sljit_uw* ptr;


@@ -381,7 +381,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_imm(struct sljit_compiler *compiler, sljit_si reg, sljit_sw imm)
+static SLJIT_INLINE sljit_s32 emit_imm(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm)
 {
     FAIL_IF(push_inst(compiler, MOVW | RD(reg) | ((imm << 4) & 0xf0000) | (imm & 0xfff)));
     return push_inst(compiler, MOVT | RD(reg) | ((imm >> 12) & 0xf0000) | ((imm >> 16) & 0xfff));
@@ -389,7 +389,7 @@


#endif

-static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_uw *code_ptr, sljit_uw *code)
+static SLJIT_INLINE sljit_s32 detect_jump_type(struct sljit_jump *jump, sljit_uw *code_ptr, sljit_uw *code)
 {
     sljit_sw diff;


@@ -446,13 +446,13 @@
     return 0;
 }


-static SLJIT_INLINE void inline_set_jump_addr(sljit_uw addr, sljit_uw new_addr, sljit_si flush)
+static SLJIT_INLINE void inline_set_jump_addr(sljit_uw addr, sljit_uw new_addr, sljit_s32 flush)
 {
 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
     sljit_uw *ptr = (sljit_uw*)addr;
     sljit_uw *inst = (sljit_uw*)ptr[0];
     sljit_uw mov_pc = ptr[1];
-    sljit_si bl = (mov_pc & 0x0000f000) != RD(TMP_PC);
+    sljit_s32 bl = (mov_pc & 0x0000f000) != RD(TMP_PC);
     sljit_sw diff = (sljit_sw)(((sljit_sw)new_addr - (sljit_sw)(inst + 2)) >> 2);


     if (diff <= 0x7fffff && diff >= -0x800000) {
@@ -504,7 +504,7 @@


static sljit_uw get_imm(sljit_uw imm);

-static SLJIT_INLINE void inline_set_const(sljit_uw addr, sljit_sw new_constant, sljit_si flush)
+static SLJIT_INLINE void inline_set_const(sljit_uw addr, sljit_sw new_constant, sljit_s32 flush)
 {
 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
     sljit_uw *ptr = (sljit_uw*)addr;
@@ -789,7 +789,7 @@
     }
 #endif


-    SLJIT_ASSERT(code_ptr - code <= (sljit_si)size);
+    SLJIT_ASSERT(code_ptr - code <= (sljit_s32)size);


     compiler->error = SLJIT_ERR_COMPILED;
     compiler->executable_size = (code_ptr - code) * sizeof(sljit_uw);
@@ -820,16 +820,16 @@
 #define EMIT_DATA_PROCESS_INS(opcode, set_flags, dst, src1, src2) \
     (0xe0000000 | ((opcode) << 21) | (set_flags) | RD(dst) | RN(src1) | (src2))


-static sljit_si emit_op(struct sljit_compiler *compiler, sljit_si op, sljit_si inp_flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w);
+static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 inp_flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w);


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si size, i, tmp;
+    sljit_s32 size, i, tmp;
     sljit_uw push;


     CHECK_ERROR();
@@ -866,11 +866,11 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si size;
+    sljit_s32 size;


     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -881,9 +881,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si i, tmp;
+    sljit_s32 i, tmp;
     sljit_uw pop;


     CHECK_ERROR();
@@ -983,8 +983,8 @@
     } \
     return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, dst, SLJIT_UNUSED, (reg_map[(flags & ARGS_SWAPPED) ? src1 : src2] << 8) | (opcode << 5) | 0x10 | ((flags & ARGS_SWAPPED) ? reg_map[src2] : reg_map[src1])));


-static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_si src1, sljit_si src2)
+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_s32 src2)
 {
     sljit_sw mul_inst;


@@ -1001,17 +1001,17 @@
         }
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UB:
-    case SLJIT_MOV_SB:
+    case SLJIT_MOV_U8:
+    case SLJIT_MOV_S8:
         SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & ARGS_SWAPPED));
         if ((flags & (REG_DEST | REG_SOURCE)) == (REG_DEST | REG_SOURCE)) {
 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
-            if (op == SLJIT_MOV_UB)
+            if (op == SLJIT_MOV_U8)
                 return push_inst(compiler, EMIT_DATA_PROCESS_INS(AND_DP, 0, dst, src2, SRC2_IMM | 0xff));
             FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst, SLJIT_UNUSED, (24 << 7) | reg_map[src2])));
-            return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst, SLJIT_UNUSED, (24 << 7) | (op == SLJIT_MOV_UB ? 0x20 : 0x40) | reg_map[dst]));
+            return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst, SLJIT_UNUSED, (24 << 7) | (op == SLJIT_MOV_U8 ? 0x20 : 0x40) | reg_map[dst]));
 #else
-            return push_inst(compiler, (op == SLJIT_MOV_UB ? UXTB : SXTB) | RD(dst) | RM(src2));
+            return push_inst(compiler, (op == SLJIT_MOV_U8 ? UXTB : SXTB) | RD(dst) | RM(src2));
 #endif
         }
         else if (dst != src2) {
@@ -1022,15 +1022,15 @@
         }
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UH:
-    case SLJIT_MOV_SH:
+    case SLJIT_MOV_U16:
+    case SLJIT_MOV_S16:
         SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & ARGS_SWAPPED));
         if ((flags & (REG_DEST | REG_SOURCE)) == (REG_DEST | REG_SOURCE)) {
 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
             FAIL_IF(push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst, SLJIT_UNUSED, (16 << 7) | reg_map[src2])));
-            return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst, SLJIT_UNUSED, (16 << 7) | (op == SLJIT_MOV_UH ? 0x20 : 0x40) | reg_map[dst]));
+            return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, 0, dst, SLJIT_UNUSED, (16 << 7) | (op == SLJIT_MOV_U16 ? 0x20 : 0x40) | reg_map[dst]));
 #else
-            return push_inst(compiler, (op == SLJIT_MOV_UH ? UXTH : SXTH) | RD(dst) | RM(src2));
+            return push_inst(compiler, (op == SLJIT_MOV_U16 ? UXTH : SXTH) | RD(dst) | RM(src2));
 #endif
         }
         else if (dst != src2) {
@@ -1139,7 +1139,7 @@
    Returns with 0 if not possible. */
 static sljit_uw get_imm(sljit_uw imm)
 {
-    sljit_si rol;
+    sljit_s32 rol;


     if (imm <= 0xff)
         return SRC2_IMM | imm;
@@ -1175,12 +1175,12 @@
 }


 #if (defined SLJIT_CONFIG_ARM_V5 && SLJIT_CONFIG_ARM_V5)
-static sljit_si generate_int(struct sljit_compiler *compiler, sljit_si reg, sljit_uw imm, sljit_si positive)
+static sljit_s32 generate_int(struct sljit_compiler *compiler, sljit_s32 reg, sljit_uw imm, sljit_s32 positive)
 {
     sljit_uw mask;
     sljit_uw imm1;
     sljit_uw imm2;
-    sljit_si rol;
+    sljit_s32 rol;


     /* Step1: Search a zero byte (8 continous zero bit). */
     mask = 0xff000000;
@@ -1286,7 +1286,7 @@
 }
 #endif


-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si reg, sljit_uw imm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_uw imm)
 {
     sljit_uw tmp;


@@ -1317,7 +1317,7 @@
}

 /* Helper function. Dst should be reg + value, using at most 1 instruction, flags does not set. */
-static sljit_si emit_set_delta(struct sljit_compiler *compiler, sljit_si dst, sljit_si reg, sljit_sw value)
+static sljit_s32 emit_set_delta(struct sljit_compiler *compiler, sljit_s32 dst, sljit_s32 reg, sljit_sw value)
 {
     if (value >= 0) {
         value = get_imm(value);
@@ -1333,7 +1333,7 @@
 }


 /* Can perform an operation using at most 1 instruction. */
-static sljit_si getput_arg_fast(struct sljit_compiler *compiler, sljit_si inp_flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     sljit_uw imm;


@@ -1408,7 +1408,7 @@
 /* See getput_arg below.
    Note: can_cache is called only for binary operators. Those
    operators always uses word arguments without write back. */
-static sljit_si can_cache(sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
     /* Immediate caching is not supported as it would be an operation on constant arguments. */
     if (arg & SLJIT_IMM)
@@ -1456,9 +1456,9 @@
     }


 /* Emit the necessary instructions. See can_cache above. */
-static sljit_si getput_arg(struct sljit_compiler *compiler, sljit_si inp_flags, sljit_si reg, sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
-    sljit_si tmp_r;
+    sljit_s32 tmp_r;
     sljit_sw max_delta;
     sljit_sw sign;
     sljit_uw imm;
@@ -1583,7 +1583,7 @@
     return push_inst(compiler, EMIT_DATA_TRANSFER(inp_flags, 1, inp_flags & WRITE_BACK, reg, arg & REG_MASK, reg_map[tmp_r] | (max_delta & 0xf00 ? SRC2_IMM : 0)));
 }


-static SLJIT_INLINE sljit_si emit_op_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     if (getput_arg_fast(compiler, flags, reg, arg, argw))
         return compiler->error;
@@ -1592,7 +1592,7 @@
     return getput_arg(compiler, flags, reg, arg, argw, 0, 0);
 }


-static SLJIT_INLINE sljit_si emit_op_mem2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sljit_si arg2, sljit_sw arg2w)
+static SLJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg1, sljit_sw arg1w, sljit_s32 arg2, sljit_sw arg2w)
 {
     if (getput_arg_fast(compiler, flags, reg, arg1, arg1w))
         return compiler->error;
@@ -1599,10 +1599,10 @@
     return getput_arg(compiler, flags, reg, arg1, arg1w, arg2, arg2w);
 }


-static sljit_si emit_op(struct sljit_compiler *compiler, sljit_si op, sljit_si inp_flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 inp_flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     /* arg1 goes to TMP_REG1 or src reg
        arg2 goes to TMP_REG2, imm or src reg
@@ -1610,11 +1610,11 @@
        result goes to TMP_REG2, so put result can use TMP_REG1 and TMP_REG3. */


     /* We prefers register and simple consts. */
-    sljit_si dst_r;
-    sljit_si src1_r;
-    sljit_si src2_r = 0;
-    sljit_si sugg_src2_r = TMP_REG2;
-    sljit_si flags = GET_FLAGS(op) ? SET_FLAGS : 0;
+    sljit_s32 dst_r;
+    sljit_s32 src1_r;
+    sljit_s32 src2_r = 0;
+    sljit_s32 sugg_src2_r = TMP_REG2;
+    sljit_s32 flags = GET_FLAGS(op) ? SET_FLAGS : 0;


     compiler->cache_arg = 0;
     compiler->cache_argw = 0;
@@ -1621,7 +1621,7 @@


     /* Destination check. */
     if (SLJIT_UNLIKELY(dst == SLJIT_UNUSED)) {
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI && !(src2 & SLJIT_MEM))
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32 && !(src2 & SLJIT_MEM))
             return SLJIT_SUCCESS;
         dst_r = TMP_REG2;
     }
@@ -1628,7 +1628,7 @@
     else if (FAST_IS_REG(dst)) {
         dst_r = dst;
         flags |= REG_DEST;
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             sugg_src2_r = dst_r;
     }
     else {
@@ -1695,7 +1695,7 @@
         if (FAST_IS_REG(src2)) {
             src2_r = src2;
             flags |= REG_SOURCE;
-            if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+            if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
                 dst_r = src2_r;
         }
         else do { /* do { } while(0) is used because of breaks. */
@@ -1804,7 +1804,7 @@
 }
 #endif


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op0(compiler, op));
@@ -1866,9 +1866,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
@@ -1877,40 +1877,40 @@


     switch (GET_OPCODE(op)) {
     case SLJIT_MOV:
-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
     case SLJIT_MOV_P:
         return emit_op(compiler, SLJIT_MOV, ALLOW_ANY_IMM, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, ALLOW_ANY_IMM | BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub)srcw : srcw);
+    case SLJIT_MOV_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, ALLOW_ANY_IMM | BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8)srcw : srcw);


-    case SLJIT_MOV_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, ALLOW_ANY_IMM | SIGNED_DATA | BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb)srcw : srcw);
+    case SLJIT_MOV_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, ALLOW_ANY_IMM | SIGNED_DATA | BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8)srcw : srcw);


-    case SLJIT_MOV_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, ALLOW_ANY_IMM | HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh)srcw : srcw);
+    case SLJIT_MOV_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, ALLOW_ANY_IMM | HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16)srcw : srcw);


-    case SLJIT_MOV_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, ALLOW_ANY_IMM | SIGNED_DATA | HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh)srcw : srcw);
+    case SLJIT_MOV_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, ALLOW_ANY_IMM | SIGNED_DATA | HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16)srcw : srcw);


     case SLJIT_MOVU:
-    case SLJIT_MOVU_UI:
-    case SLJIT_MOVU_SI:
+    case SLJIT_MOVU_U32:
+    case SLJIT_MOVU_S32:
     case SLJIT_MOVU_P:
         return emit_op(compiler, SLJIT_MOV, ALLOW_ANY_IMM | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, ALLOW_ANY_IMM | BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub)srcw : srcw);
+    case SLJIT_MOVU_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, ALLOW_ANY_IMM | BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8)srcw : srcw);


-    case SLJIT_MOVU_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, ALLOW_ANY_IMM | SIGNED_DATA | BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb)srcw : srcw);
+    case SLJIT_MOVU_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, ALLOW_ANY_IMM | SIGNED_DATA | BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8)srcw : srcw);


-    case SLJIT_MOVU_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, ALLOW_ANY_IMM | HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh)srcw : srcw);
+    case SLJIT_MOVU_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, ALLOW_ANY_IMM | HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16)srcw : srcw);


-    case SLJIT_MOVU_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, ALLOW_ANY_IMM | SIGNED_DATA | HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh)srcw : srcw);
+    case SLJIT_MOVU_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, ALLOW_ANY_IMM | SIGNED_DATA | HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16)srcw : srcw);


     case SLJIT_NOT:
         return emit_op(compiler, op, ALLOW_ANY_IMM, dst, dstw, TMP_REG1, 0, src, srcw);
@@ -1929,10 +1929,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -1971,20 +1971,20 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_float_register_index(reg));
     return reg << 1;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));
@@ -2000,7 +2000,7 @@


 /* 0 - no fpu
    1 - vfp */
-static sljit_si arm_fpu_type = -1;
+static sljit_s32 arm_fpu_type = -1;


 static void init_compiler(void)
 {
@@ -2011,7 +2011,7 @@
     arm_fpu_type = 1;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
 #ifdef SLJIT_IS_FPU_AVAILABLE
     return SLJIT_IS_FPU_AVAILABLE;
@@ -2026,7 +2026,7 @@


#define arm_fpu_type 1

-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
     /* Always available. */
     return 1;
@@ -2040,7 +2040,7 @@
 #define EMIT_FPU_OPERATION(opcode, mode, dst, src1, src2) \
     ((opcode) | (mode) | ((dst) << 12) | (src1) | ((src2) << 16))


-static sljit_si emit_fop_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 emit_fop_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     sljit_sw tmp;
     sljit_uw imm;
@@ -2104,9 +2104,9 @@
     return push_inst(compiler, EMIT_FPU_DATA_TRANSFER(inst, 1, TMP_REG3, reg, 0));
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (src & SLJIT_MEM) {
         FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, TMP_FREG1, src, srcw));
@@ -2125,11 +2125,11 @@
     return emit_fop_mem(compiler, 0, TMP_FREG1, dst, dstw);
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;


     if (FAST_IS_REG(src))
         FAIL_IF(push_inst(compiler, VMOV | RD(src) | (TMP_FREG1 << 16)));
@@ -2149,9 +2149,9 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     if (src1 & SLJIT_MEM) {
         FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, TMP_FREG1, src1, src1w));
@@ -2167,11 +2167,11 @@
     return push_inst(compiler, VMRS);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     compiler->cache_arg = 0;
@@ -2215,12 +2215,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -2276,7 +2276,7 @@
 /*  Other instructions                                                   */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -2299,7 +2299,7 @@
     return getput_arg(compiler, WORD_DATA, TMP_REG2, dst, dstw, 0, 0);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -2326,7 +2326,7 @@
 /*  Conditional instructions                                             */
 /* --------------------------------------------------------------------- */


-static sljit_uw get_cc(sljit_si type)
+static sljit_uw get_cc(sljit_s32 type)
 {
     switch (type) {
     case SLJIT_EQUAL:
@@ -2397,7 +2397,7 @@
     return label;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     struct sljit_jump *jump;


@@ -2438,7 +2438,7 @@
     return jump;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
     struct sljit_jump *jump;


@@ -2475,12 +2475,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
-    sljit_si dst_r, flags = GET_ALL_FLAGS(op);
+    sljit_s32 dst_r, flags = GET_ALL_FLAGS(op);
     sljit_uw cc, ins;


     CHECK_ERROR();
@@ -2528,10 +2528,10 @@
     return (flags & SLJIT_SET_E) ? push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, SET_FLAGS, TMP_REG1, SLJIT_UNUSED, RM(dst_r))) : SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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_;
-    sljit_si reg;
+    sljit_s32 reg;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));


Modified: code/trunk/src/sljit/sljitNativeARM_64.c
===================================================================
--- code/trunk/src/sljit/sljitNativeARM_64.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeARM_64.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -24,13 +24,13 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */


-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
 {
     return "ARM-64" SLJIT_CPUINFO;
 }


/* Length of an instruction word */
-typedef sljit_ui sljit_ins;
+typedef sljit_u32 sljit_ins;

 #define TMP_ZERO    (0)


@@ -43,7 +43,7 @@
 #define TMP_FREG1    (0)
 #define TMP_FREG2    (SLJIT_NUMBER_OF_FLOAT_REGISTERS + 1)


-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 8] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 8] = {
31, 0, 1, 2, 3, 4, 5, 6, 7, 12, 13, 14, 15, 16, 17, 8, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 29, 9, 10, 11, 30, 31
};

@@ -124,7 +124,7 @@

 /* dest_reg is the absolute name of the register
    Useful for reordering instructions in the delay slot. */
-static sljit_si 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));
     FAIL_IF(!ptr);
@@ -133,7 +133,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_imm64_const(struct sljit_compiler *compiler, sljit_si dst, sljit_uw imm)
+static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_uw imm)
 {
     FAIL_IF(push_inst(compiler, MOVZ | RD(dst) | ((imm & 0xffff) << 5)));
     FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 16) & 0xffff) << 5) | (1 << 21)));
@@ -143,7 +143,7 @@


 static SLJIT_INLINE void modify_imm64_const(sljit_ins* inst, sljit_uw new_imm)
 {
-    sljit_si dst = inst[0] & 0x1f;
+    sljit_s32 dst = inst[0] & 0x1f;
     SLJIT_ASSERT((inst[0] & 0xffe00000) == MOVZ && (inst[1] & 0xffe00000) == (MOVK | (1 << 21)));
     inst[0] = MOVZ | dst | ((new_imm & 0xffff) << 5);
     inst[1] = MOVK | dst | (((new_imm >> 16) & 0xffff) << 5) | (1 << 21);
@@ -151,7 +151,7 @@
     inst[3] = MOVK | dst | ((new_imm >> 48) << 5) | (3 << 21);
 }


-static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code)
+static SLJIT_INLINE sljit_s32 detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code)
 {
     sljit_sw diff;
     sljit_uw target_addr;
@@ -212,7 +212,7 @@
     sljit_ins *buf_end;
     sljit_uw word_count;
     sljit_uw addr;
-    sljit_si dst;
+    sljit_s32 dst;


     struct sljit_label *label;
     struct sljit_jump *jump;
@@ -346,9 +346,9 @@


#define LOGICAL_IMM_CHECK 0x100

-static sljit_ins logical_imm(sljit_sw imm, sljit_si len)
+static sljit_ins logical_imm(sljit_sw imm, sljit_s32 len)
 {
-    sljit_si negated, ones, right;
+    sljit_s32 negated, ones, right;
     sljit_uw mask, uimm;
     sljit_ins ins;


@@ -356,12 +356,12 @@
         len &= ~LOGICAL_IMM_CHECK;
         if (len == 32 && (imm == 0 || imm == -1))
             return 0;
-        if (len == 16 && ((sljit_si)imm == 0 || (sljit_si)imm == -1))
+        if (len == 16 && ((sljit_s32)imm == 0 || (sljit_s32)imm == -1))
             return 0;
     }


     SLJIT_ASSERT((len == 32 && imm != 0 && imm != -1)
-        || (len == 16 && (sljit_si)imm != 0 && (sljit_si)imm != -1));
+        || (len == 16 && (sljit_s32)imm != 0 && (sljit_s32)imm != -1));
     uimm = (sljit_uw)imm;
     while (1) {
         if (len <= 0) {
@@ -410,10 +410,10 @@


#undef COUNT_TRAILING_ZERO

-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst, sljit_sw simm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw simm)
 {
     sljit_uw imm = (sljit_uw)simm;
-    sljit_si i, zeros, ones, first;
+    sljit_s32 i, zeros, ones, first;
     sljit_ins bitmask;


     if (imm <= 0xffff)
@@ -512,7 +512,7 @@
             dst = TMP_ZERO; \
     }


-static sljit_si emit_op_imm(struct sljit_compiler *compiler, sljit_si flags, sljit_si dst, sljit_sw arg1, sljit_sw arg2)
+static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit_sw arg1, sljit_sw arg2)
 {
     /* dst must be register, TMP_REG1
        arg1 must be register, TMP_REG1, imm
@@ -519,8 +519,8 @@
        arg2 must be register, TMP_REG2, imm */
     sljit_ins inv_bits = (flags & INT_OP) ? (1 << 31) : 0;
     sljit_ins inst_bits;
-    sljit_si op = (flags & 0xffff);
-    sljit_si reg;
+    sljit_s32 op = (flags & 0xffff);
+    sljit_s32 reg;
     sljit_sw imm, nimm;


     if (SLJIT_UNLIKELY((flags & (ARG1_IMM | ARG2_IMM)) == (ARG1_IMM | ARG2_IMM))) {
@@ -667,34 +667,34 @@
         if (dst == arg2)
             return SLJIT_SUCCESS;
         return push_inst(compiler, ORR | RD(dst) | RN(TMP_ZERO) | RM(arg2));
-    case SLJIT_MOV_UB:
-    case SLJIT_MOVU_UB:
+    case SLJIT_MOV_U8:
+    case SLJIT_MOVU_U8:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         return push_inst(compiler, (UBFM ^ (1 << 31)) | RD(dst) | RN(arg2) | (7 << 10));
-    case SLJIT_MOV_SB:
-    case SLJIT_MOVU_SB:
+    case SLJIT_MOV_S8:
+    case SLJIT_MOVU_S8:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if (!(flags & INT_OP))
             inv_bits |= 1 << 22;
         return push_inst(compiler, (SBFM ^ inv_bits) | RD(dst) | RN(arg2) | (7 << 10));
-    case SLJIT_MOV_UH:
-    case SLJIT_MOVU_UH:
+    case SLJIT_MOV_U16:
+    case SLJIT_MOVU_U16:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         return push_inst(compiler, (UBFM ^ (1 << 31)) | RD(dst) | RN(arg2) | (15 << 10));
-    case SLJIT_MOV_SH:
-    case SLJIT_MOVU_SH:
+    case SLJIT_MOV_S16:
+    case SLJIT_MOVU_S16:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if (!(flags & INT_OP))
             inv_bits |= 1 << 22;
         return push_inst(compiler, (SBFM ^ inv_bits) | RD(dst) | RN(arg2) | (15 << 10));
-    case SLJIT_MOV_UI:
-    case SLJIT_MOVU_UI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOVU_U32:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if ((flags & INT_OP) && dst == arg2)
             return SLJIT_SUCCESS;
         return push_inst(compiler, (ORR ^ (1 << 31)) | RD(dst) | RN(TMP_ZERO) | RM(arg2));
-    case SLJIT_MOV_SI:
-    case SLJIT_MOVU_SI:
+    case SLJIT_MOV_S32:
+    case SLJIT_MOVU_S32:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if ((flags & INT_OP) && dst == arg2)
             return SLJIT_SUCCESS;
@@ -777,7 +777,7 @@


#define MEM_SIZE_SHIFT(flags) ((flags) >> 8)

-static SLJIT_CONST sljit_ins sljit_mem_imm[4] = {
+static const sljit_ins sljit_mem_imm[4] = {
/* u l */ 0x39400000 /* ldrb [reg,imm] */,
/* u s */ 0x39000000 /* strb [reg,imm] */,
/* s l */ 0x39800000 /* ldrsb [reg,imm] */,
@@ -784,7 +784,7 @@
/* s s */ 0x39000000 /* strb [reg,imm] */,
};

-static SLJIT_CONST sljit_ins sljit_mem_simm[4] = {
+static const sljit_ins sljit_mem_simm[4] = {
/* u l */ 0x38400000 /* ldurb [reg,imm] */,
/* u s */ 0x38000000 /* sturb [reg,imm] */,
/* s l */ 0x38800000 /* ldursb [reg,imm] */,
@@ -791,7 +791,7 @@
/* s s */ 0x38000000 /* sturb [reg,imm] */,
};

-static SLJIT_CONST sljit_ins sljit_mem_pre_simm[4] = {
+static const sljit_ins sljit_mem_pre_simm[4] = {
/* u l */ 0x38400c00 /* ldrb [reg,imm]! */,
/* u s */ 0x38000c00 /* strb [reg,imm]! */,
/* s l */ 0x38800c00 /* ldrsb [reg,imm]! */,
@@ -798,7 +798,7 @@
/* s s */ 0x38000c00 /* strb [reg,imm]! */,
};

-static SLJIT_CONST sljit_ins sljit_mem_reg[4] = {
+static const sljit_ins sljit_mem_reg[4] = {
/* u l */ 0x38606800 /* ldrb [reg,reg] */,
/* u s */ 0x38206800 /* strb [reg,reg] */,
/* s l */ 0x38a06800 /* ldrsb [reg,reg] */,
@@ -806,7 +806,7 @@
};

 /* Helper function. Dst should be reg + value, using at most 1 instruction, flags does not set. */
-static sljit_si emit_set_delta(struct sljit_compiler *compiler, sljit_si dst, sljit_si reg, sljit_sw value)
+static sljit_s32 emit_set_delta(struct sljit_compiler *compiler, sljit_s32 dst, sljit_s32 reg, sljit_sw value)
 {
     if (value >= 0) {
         if (value <= 0xfff)
@@ -825,9 +825,9 @@
 }


 /* Can perform an operation using at most 1 instruction. */
-static sljit_si getput_arg_fast(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
-    sljit_ui shift = MEM_SIZE_SHIFT(flags);
+    sljit_u32 shift = MEM_SIZE_SHIFT(flags);


     SLJIT_ASSERT(arg & SLJIT_MEM);


@@ -882,7 +882,7 @@
 /* see getput_arg below.
    Note: can_cache is called only for binary operators. Those
    operators always uses word arguments without write back. */
-static sljit_si can_cache(sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
     sljit_sw diff;
     if ((arg & OFFS_REG_MASK) || !(next_arg & SLJIT_MEM))
@@ -906,11 +906,11 @@
 }


 /* Emit the necessary instructions. See can_cache above. */
-static sljit_si getput_arg(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg,
-    sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg,
+    sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
-    sljit_ui shift = MEM_SIZE_SHIFT(flags);
-    sljit_si tmp_r, other_r;
+    sljit_u32 shift = MEM_SIZE_SHIFT(flags);
+    sljit_s32 tmp_r, other_r;
     sljit_sw diff;


     SLJIT_ASSERT(arg & SLJIT_MEM);
@@ -1040,7 +1040,7 @@
     return push_inst(compiler, sljit_mem_imm[flags & 0x3] | (shift << 30) | RT(reg) | RN(TMP_REG3));
 }


-static SLJIT_INLINE sljit_si emit_op_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     if (getput_arg_fast(compiler, flags, reg, arg, argw))
         return compiler->error;
@@ -1049,7 +1049,7 @@
     return getput_arg(compiler, flags, reg, arg, argw, 0, 0);
 }


-static SLJIT_INLINE sljit_si emit_op_mem2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sljit_si arg2, sljit_sw arg2w)
+static SLJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg1, sljit_sw arg1w, sljit_s32 arg2, sljit_sw arg2w)
 {
     if (getput_arg_fast(compiler, flags, reg, arg1, arg1w))
         return compiler->error;
@@ -1060,11 +1060,11 @@
 /*  Entry, exit                                                          */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si i, tmp, offs, prev, saved_regs_size;
+    sljit_s32 i, tmp, offs, prev, saved_regs_size;


     CHECK_ERROR();
     CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -1148,9 +1148,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -1162,10 +1162,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si local_size;
-    sljit_si i, tmp, offs, prev, saved_regs_size;
+    sljit_s32 local_size;
+    sljit_s32 i, tmp, offs, prev, saved_regs_size;


     CHECK_ERROR();
     CHECK(check_sljit_emit_return(compiler, op, src, srcw));
@@ -1243,9 +1243,9 @@
 /*  Operators                                                            */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
-    sljit_ins inv_bits = (op & SLJIT_INT_OP) ? (1 << 31) : 0;
+    sljit_ins inv_bits = (op & SLJIT_I32_OP) ? (1 << 31) : 0;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op0(compiler, op));
@@ -1275,12 +1275,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r, flags, mem_flags;
-    sljit_si op_flags = GET_ALL_FLAGS(op);
+    sljit_s32 dst_r, flags, mem_flags;
+    sljit_s32 op_flags = GET_ALL_FLAGS(op);


     CHECK_ERROR();
     CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
@@ -1299,69 +1299,69 @@
         case SLJIT_MOV_P:
             flags = WORD_SIZE;
             break;
-        case SLJIT_MOV_UB:
+        case SLJIT_MOV_U8:
             flags = BYTE_SIZE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_ub)srcw;
+                srcw = (sljit_u8)srcw;
             break;
-        case SLJIT_MOV_SB:
+        case SLJIT_MOV_S8:
             flags = BYTE_SIZE | SIGNED;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sb)srcw;
+                srcw = (sljit_s8)srcw;
             break;
-        case SLJIT_MOV_UH:
+        case SLJIT_MOV_U16:
             flags = HALF_SIZE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_uh)srcw;
+                srcw = (sljit_u16)srcw;
             break;
-        case SLJIT_MOV_SH:
+        case SLJIT_MOV_S16:
             flags = HALF_SIZE | SIGNED;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sh)srcw;
+                srcw = (sljit_s16)srcw;
             break;
-        case SLJIT_MOV_UI:
+        case SLJIT_MOV_U32:
             flags = INT_SIZE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_ui)srcw;
+                srcw = (sljit_u32)srcw;
             break;
-        case SLJIT_MOV_SI:
+        case SLJIT_MOV_S32:
             flags = INT_SIZE | SIGNED;
             if (src & SLJIT_IMM)
-                srcw = (sljit_si)srcw;
+                srcw = (sljit_s32)srcw;
             break;
         case SLJIT_MOVU:
         case SLJIT_MOVU_P:
             flags = WORD_SIZE | UPDATE;
             break;
-        case SLJIT_MOVU_UB:
+        case SLJIT_MOVU_U8:
             flags = BYTE_SIZE | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_ub)srcw;
+                srcw = (sljit_u8)srcw;
             break;
-        case SLJIT_MOVU_SB:
+        case SLJIT_MOVU_S8:
             flags = BYTE_SIZE | SIGNED | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sb)srcw;
+                srcw = (sljit_s8)srcw;
             break;
-        case SLJIT_MOVU_UH:
+        case SLJIT_MOVU_U16:
             flags = HALF_SIZE | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_uh)srcw;
+                srcw = (sljit_u16)srcw;
             break;
-        case SLJIT_MOVU_SH:
+        case SLJIT_MOVU_S16:
             flags = HALF_SIZE | SIGNED | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sh)srcw;
+                srcw = (sljit_s16)srcw;
             break;
-        case SLJIT_MOVU_UI:
+        case SLJIT_MOVU_U32:
             flags = INT_SIZE | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_ui)srcw;
+                srcw = (sljit_u32)srcw;
             break;
-        case SLJIT_MOVU_SI:
+        case SLJIT_MOVU_S32:
             flags = INT_SIZE | SIGNED | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_si)srcw;
+                srcw = (sljit_s32)srcw;
             break;
         default:
             SLJIT_ASSERT_STOP();
@@ -1378,7 +1378,7 @@
                 FAIL_IF(getput_arg(compiler, flags, dst_r, src, srcw, dst, dstw));
         } else {
             if (dst_r != TMP_REG1)
-                return emit_op_imm(compiler, op | ((op_flags & SLJIT_INT_OP) ? INT_OP : 0), dst_r, TMP_REG1, src);
+                return emit_op_imm(compiler, op | ((op_flags & SLJIT_I32_OP) ? INT_OP : 0), dst_r, TMP_REG1, src);
             dst_r = src;
         }


@@ -1393,7 +1393,7 @@

     flags = GET_FLAGS(op_flags) ? SET_FLAGS : 0;
     mem_flags = WORD_SIZE;
-    if (op_flags & SLJIT_INT_OP) {
+    if (op_flags & SLJIT_I32_OP) {
         flags |= INT_OP;
         mem_flags = INT_SIZE;
     }
@@ -1411,8 +1411,8 @@


     if (src & SLJIT_IMM) {
         flags |= ARG2_IMM;
-        if (op_flags & SLJIT_INT_OP)
-            srcw = (sljit_si)srcw;
+        if (op_flags & SLJIT_I32_OP)
+            srcw = (sljit_s32)srcw;
     } else
         srcw = src;


@@ -1427,12 +1427,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r, flags, mem_flags;
+    sljit_s32 dst_r, flags, mem_flags;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -1446,7 +1446,7 @@
     dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1;
     flags = GET_FLAGS(op) ? SET_FLAGS : 0;
     mem_flags = WORD_SIZE;
-    if (op & SLJIT_INT_OP) {
+    if (op & SLJIT_I32_OP) {
         flags |= INT_OP;
         mem_flags = INT_SIZE;
     }
@@ -1512,20 +1512,20 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_float_register_index(reg));
     return reg;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));
@@ -1537,7 +1537,7 @@
 /*  Floating point operators                                             */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
 #ifdef SLJIT_IS_FPU_AVAILABLE
     return SLJIT_IS_FPU_AVAILABLE;
@@ -1547,11 +1547,11 @@
 #endif
 }


-static sljit_si emit_fop_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 emit_fop_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
-    sljit_ui shift = MEM_SIZE_SHIFT(flags);
+    sljit_u32 shift = MEM_SIZE_SHIFT(flags);
     sljit_ins ins_bits = (shift << 30);
-    sljit_si other_r;
+    sljit_s32 other_r;
     sljit_sw diff;


     SLJIT_ASSERT(arg & SLJIT_MEM);
@@ -1600,11 +1600,11 @@
     return push_inst(compiler, STR_FI | ins_bits | VT(reg) | RN(TMP_REG3));
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1;
+    sljit_s32 dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1;
     sljit_ins inv_bits = (op & SLJIT_SINGLE_OP) ? (1 << 22) : 0;


     if (GET_OPCODE(op) == SLJIT_CONVI_FROMD)
@@ -1622,11 +1622,11 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;
     sljit_ins inv_bits = (op & SLJIT_SINGLE_OP) ? (1 << 22) : 0;


     if (GET_OPCODE(op) == SLJIT_CONVD_FROMI)
@@ -1638,7 +1638,7 @@
     } else if (src & SLJIT_IMM) {
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
         if (GET_OPCODE(op) == SLJIT_CONVD_FROMI)
-            srcw = (sljit_si)srcw;
+            srcw = (sljit_s32)srcw;
 #endif
         FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
         src = TMP_REG1;
@@ -1651,11 +1651,11 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
+    sljit_s32 mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
     sljit_ins inv_bits = (op & SLJIT_SINGLE_OP) ? (1 << 22) : 0;


     if (src1 & SLJIT_MEM) {
@@ -1671,11 +1671,11 @@
     return push_inst(compiler, (FCMP ^ inv_bits) | VN(src1) | VM(src2));
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r, mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
+    sljit_s32 dst_r, mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
     sljit_ins inv_bits;


     CHECK_ERROR();
@@ -1718,12 +1718,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r, mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
+    sljit_s32 dst_r, mem_flags = (op & SLJIT_SINGLE_OP) ? INT_SIZE : WORD_SIZE;
     sljit_ins inv_bits = (op & SLJIT_SINGLE_OP) ? (1 << 22) : 0;


     CHECK_ERROR();
@@ -1769,7 +1769,7 @@
 /*  Other instructions                                                   */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -1786,7 +1786,7 @@
     return emit_op_mem(compiler, WORD_SIZE | STORE, TMP_LR, dst, dstw);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -1806,7 +1806,7 @@
 /*  Conditional instructions                                             */
 /* --------------------------------------------------------------------- */


-static sljit_uw get_cc(sljit_si type)
+static sljit_uw get_cc(sljit_s32 type)
 {
     switch (type) {
     case SLJIT_EQUAL:
@@ -1877,7 +1877,7 @@
     return label;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     struct sljit_jump *jump;


@@ -1903,11 +1903,11 @@
     return jump;
 }


-static SLJIT_INLINE struct sljit_jump* emit_cmp_to0(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE struct sljit_jump* emit_cmp_to0(struct sljit_compiler *compiler, sljit_s32 type,
+    sljit_s32 src, sljit_sw srcw)
 {
     struct sljit_jump *jump;
-    sljit_ins inv_bits = (type & SLJIT_INT_OP) ? (1 << 31) : 0;
+    sljit_ins inv_bits = (type & SLJIT_I32_OP) ? (1 << 31) : 0;


     SLJIT_ASSERT((type & 0xff) == SLJIT_EQUAL || (type & 0xff) == SLJIT_NOT_EQUAL);
     ADJUST_LOCAL_OFFSET(src, srcw);
@@ -1937,7 +1937,7 @@
     return jump;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
     struct sljit_jump *jump;


@@ -1964,12 +1964,12 @@
     return push_inst(compiler, ((type >= SLJIT_FAST_CALL) ? BLR : BR) | RN(TMP_REG1));
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
-    sljit_si dst_r, flags, mem_flags;
+    sljit_s32 dst_r, flags, mem_flags;
     sljit_ins cc;


     CHECK_ERROR();
@@ -1994,7 +1994,7 @@
     compiler->cache_argw = 0;
     flags = GET_FLAGS(op) ? SET_FLAGS : 0;
     mem_flags = WORD_SIZE;
-    if (op & SLJIT_INT_OP) {
+    if (op & SLJIT_I32_OP) {
         flags |= INT_OP;
         mem_flags = INT_SIZE;
     }
@@ -2014,10 +2014,10 @@
     return emit_op_mem2(compiler, mem_flags | STORE, TMP_REG1, dst, dstw, 0, 0);
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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_;
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));


Modified: code/trunk/src/sljit/sljitNativeARM_T2_32.c
===================================================================
--- code/trunk/src/sljit/sljitNativeARM_T2_32.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeARM_T2_32.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -24,13 +24,13 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */


-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
 {
     return "ARM-Thumb2" SLJIT_CPUINFO;
 }


/* Length of an instruction word. */
-typedef sljit_ui sljit_ins;
+typedef sljit_u32 sljit_ins;

 /* Last register + 1. */
 #define TMP_REG1    (SLJIT_NUMBER_OF_REGISTERS + 2)
@@ -42,7 +42,7 @@
 #define TMP_FREG2    (SLJIT_NUMBER_OF_FLOAT_REGISTERS + 1)


 /* See sljit_emit_enter and sljit_emit_op0 if you want to change them. */
-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
     0, 0, 1, 2, 12, 11, 10, 9, 8, 7, 6, 5, 13, 3, 4, 14, 15
 };


@@ -181,12 +181,12 @@
 #define VSTR_F32    0xed000a00
 #define VSUB_F32    0xee300a40


-static sljit_si push_inst16(struct sljit_compiler *compiler, sljit_ins inst)
+static sljit_s32 push_inst16(struct sljit_compiler *compiler, sljit_ins inst)
 {
-    sljit_uh *ptr;
+    sljit_u16 *ptr;
     SLJIT_ASSERT(!(inst & 0xffff0000));


-    ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_uh));
+    ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_u16));
     FAIL_IF(!ptr);
     *ptr = inst;
     compiler->size++;
@@ -193,9 +193,9 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_inst32(struct sljit_compiler *compiler, sljit_ins inst)
+static sljit_s32 push_inst32(struct sljit_compiler *compiler, sljit_ins inst)
 {
-    sljit_uh *ptr = (sljit_uh*)ensure_buf(compiler, sizeof(sljit_ins));
+    sljit_u16 *ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_ins));
     FAIL_IF(!ptr);
     *ptr++ = inst >> 16;
     *ptr = inst;
@@ -203,7 +203,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_imm32_const(struct sljit_compiler *compiler, sljit_si dst, sljit_uw imm)
+static SLJIT_INLINE sljit_s32 emit_imm32_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_uw imm)
 {
     FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) |
         COPY_BITS(imm, 12, 16, 4) | COPY_BITS(imm, 11, 26, 1) | COPY_BITS(imm, 8, 12, 3) | (imm & 0xff)));
@@ -211,9 +211,9 @@
         COPY_BITS(imm, 12 + 16, 16, 4) | COPY_BITS(imm, 11 + 16, 26, 1) | COPY_BITS(imm, 8 + 16, 12, 3) | ((imm & 0xff0000) >> 16));
 }


-static SLJIT_INLINE void modify_imm32_const(sljit_uh *inst, sljit_uw new_imm)
+static SLJIT_INLINE void modify_imm32_const(sljit_u16 *inst, sljit_uw new_imm)
 {
-    sljit_si dst = inst[1] & 0x0f00;
+    sljit_s32 dst = inst[1] & 0x0f00;
     SLJIT_ASSERT(((inst[0] & 0xfbf0) == (MOVW >> 16)) && ((inst[2] & 0xfbf0) == (MOVT >> 16)) && dst == (inst[3] & 0x0f00));
     inst[0] = (MOVW >> 16) | COPY_BITS(new_imm, 12, 0, 4) | COPY_BITS(new_imm, 11, 10, 1);
     inst[1] = dst | COPY_BITS(new_imm, 8, 12, 3) | (new_imm & 0xff);
@@ -221,7 +221,7 @@
     inst[3] = dst | COPY_BITS(new_imm, 8 + 16, 12, 3) | ((new_imm & 0xff0000) >> 16);
 }


-static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_uh *code_ptr, sljit_uh *code)
+static SLJIT_INLINE sljit_s32 detect_jump_type(struct sljit_jump *jump, sljit_u16 *code_ptr, sljit_u16 *code)
 {
     sljit_sw diff;


@@ -278,13 +278,13 @@

 static SLJIT_INLINE void set_jump_instruction(struct sljit_jump *jump)
 {
-    sljit_si type = (jump->flags >> 4) & 0xf;
+    sljit_s32 type = (jump->flags >> 4) & 0xf;
     sljit_sw diff;
-    sljit_uh *jump_inst;
-    sljit_si s, j1, j2;
+    sljit_u16 *jump_inst;
+    sljit_s32 s, j1, j2;


     if (SLJIT_UNLIKELY(type == 0)) {
-        modify_imm32_const((sljit_uh*)jump->addr, (jump->flags & JUMP_LABEL) ? jump->u.label->addr : jump->u.target);
+        modify_imm32_const((sljit_u16*)jump->addr, (jump->flags & JUMP_LABEL) ? jump->u.label->addr : jump->u.target);
         return;
     }


@@ -294,7 +294,7 @@
     }
     else
         diff = ((sljit_sw)(jump->u.label->addr) - (sljit_sw)(jump->addr + 4)) >> 1;
-    jump_inst = (sljit_uh*)jump->addr;
+    jump_inst = (sljit_u16*)jump->addr;


     switch (type) {
     case 1:
@@ -342,10 +342,10 @@
 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler)
 {
     struct sljit_memory_fragment *buf;
-    sljit_uh *code;
-    sljit_uh *code_ptr;
-    sljit_uh *buf_ptr;
-    sljit_uh *buf_end;
+    sljit_u16 *code;
+    sljit_u16 *code_ptr;
+    sljit_u16 *buf_ptr;
+    sljit_u16 *buf_end;
     sljit_uw half_count;


     struct sljit_label *label;
@@ -356,7 +356,7 @@
     CHECK_PTR(check_sljit_generate_code(compiler));
     reverse_buf(compiler);


-    code = (sljit_uh*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_uh));
+    code = (sljit_u16*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_u16));
     PTR_FAIL_WITH_EXEC_IF(code);
     buf = compiler->buf;


@@ -367,7 +367,7 @@
     const_ = compiler->consts;


     do {
-        buf_ptr = (sljit_uh*)buf->memory;
+        buf_ptr = (sljit_u16*)buf->memory;
         buf_end = buf_ptr + (buf->used_size >> 1);
         do {
             *code_ptr = *buf_ptr++;
@@ -414,7 +414,7 @@
     }


     compiler->error = SLJIT_ERR_COMPILED;
-    compiler->executable_size = (code_ptr - code) * sizeof(sljit_uh);
+    compiler->executable_size = (code_ptr - code) * sizeof(sljit_u16);
     SLJIT_CACHE_FLUSH(code, code_ptr);
     /* Set thumb mode flag. */
     return (void*)((sljit_uw)code | 0x1);
@@ -428,7 +428,7 @@
 static sljit_uw get_imm(sljit_uw imm)
 {
     /* Thumb immediate form. */
-    sljit_si counter;
+    sljit_s32 counter;


     if (imm <= 0xff)
         return imm;
@@ -474,7 +474,7 @@
     return ((imm >> 24) & 0x7f) | COPY_BITS(counter, 4, 26, 1) | COPY_BITS(counter, 1, 12, 3) | COPY_BITS(counter, 0, 7, 1);
 }


-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst, sljit_uw imm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst, sljit_uw imm)
 {
     sljit_uw tmp;


@@ -508,12 +508,12 @@
 #define SLOW_SRC1    0x0800000
 #define SLOW_SRC2    0x1000000


-static sljit_si emit_op_imm(struct sljit_compiler *compiler, sljit_si flags, sljit_si dst, sljit_uw arg1, sljit_uw arg2)
+static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit_uw arg1, sljit_uw arg2)
 {
     /* dst must be register, TMP_REG1
        arg1 must be register, TMP_REG1, imm
        arg2 must be register, TMP_REG2, imm */
-    sljit_si reg;
+    sljit_s32 reg;
     sljit_uw imm, nimm;


     if (SLJIT_UNLIKELY((flags & (ARG1_IMM | ARG2_IMM)) == (ARG1_IMM | ARG2_IMM))) {
@@ -677,37 +677,37 @@
     /* Both arguments are registers. */
     switch (flags & 0xffff) {
     case SLJIT_MOV:
-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
     case SLJIT_MOV_P:
     case SLJIT_MOVU:
-    case SLJIT_MOVU_UI:
-    case SLJIT_MOVU_SI:
+    case SLJIT_MOVU_U32:
+    case SLJIT_MOVU_S32:
     case SLJIT_MOVU_P:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if (dst == arg2)
             return SLJIT_SUCCESS;
         return push_inst16(compiler, MOV | SET_REGS44(dst, arg2));
-    case SLJIT_MOV_UB:
-    case SLJIT_MOVU_UB:
+    case SLJIT_MOV_U8:
+    case SLJIT_MOVU_U8:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if (IS_2_LO_REGS(dst, arg2))
             return push_inst16(compiler, UXTB | RD3(dst) | RN3(arg2));
         return push_inst32(compiler, UXTB_W | RD4(dst) | RM4(arg2));
-    case SLJIT_MOV_SB:
-    case SLJIT_MOVU_SB:
+    case SLJIT_MOV_S8:
+    case SLJIT_MOVU_S8:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if (IS_2_LO_REGS(dst, arg2))
             return push_inst16(compiler, SXTB | RD3(dst) | RN3(arg2));
         return push_inst32(compiler, SXTB_W | RD4(dst) | RM4(arg2));
-    case SLJIT_MOV_UH:
-    case SLJIT_MOVU_UH:
+    case SLJIT_MOV_U16:
+    case SLJIT_MOVU_U16:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if (IS_2_LO_REGS(dst, arg2))
             return push_inst16(compiler, UXTH | RD3(dst) | RN3(arg2));
         return push_inst32(compiler, UXTH_W | RD4(dst) | RM4(arg2));
-    case SLJIT_MOV_SH:
-    case SLJIT_MOVU_SH:
+    case SLJIT_MOV_S16:
+    case SLJIT_MOVU_S16:
         SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1);
         if (IS_2_LO_REGS(dst, arg2))
             return push_inst16(compiler, SXTH | RD3(dst) | RN3(arg2));
@@ -813,7 +813,7 @@
   s = store
 */


-static SLJIT_CONST sljit_ins sljit_mem16[12] = {
+static const sljit_ins sljit_mem16[12] = {
/* w u l */ 0x5800 /* ldr */,
/* w u s */ 0x5000 /* str */,
/* w s l */ 0x5800 /* ldr */,
@@ -830,7 +830,7 @@
/* h s s */ 0x5200 /* strh */,
};

-static SLJIT_CONST sljit_ins sljit_mem16_imm5[12] = {
+static const sljit_ins sljit_mem16_imm5[12] = {
/* w u l */ 0x6800 /* ldr imm5 */,
/* w u s */ 0x6000 /* str imm5 */,
/* w s l */ 0x6800 /* ldr imm5 */,
@@ -849,7 +849,7 @@

 #define MEM_IMM8    0xc00
 #define MEM_IMM12    0x800000
-static SLJIT_CONST sljit_ins sljit_mem32[12] = {
+static const sljit_ins sljit_mem32[12] = {
 /* w u l */ 0xf8500000 /* ldr.w */,
 /* w u s */ 0xf8400000 /* str.w */,
 /* w s l */ 0xf8500000 /* ldr.w */,
@@ -867,7 +867,7 @@
 };


 /* Helper function. Dst should be reg + value, using at most 1 instruction, flags does not set. */
-static sljit_si emit_set_delta(struct sljit_compiler *compiler, sljit_si dst, sljit_si reg, sljit_sw value)
+static sljit_s32 emit_set_delta(struct sljit_compiler *compiler, sljit_s32 dst, sljit_s32 reg, sljit_sw value)
 {
     if (value >= 0) {
         if (value <= 0xfff)
@@ -888,9 +888,9 @@
 }


 /* Can perform an operation using at most 1 instruction. */
-static sljit_si getput_arg_fast(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
-    sljit_si other_r, shift;
+    sljit_s32 other_r, shift;


     SLJIT_ASSERT(arg & SLJIT_MEM);


@@ -975,7 +975,7 @@
 /* see getput_arg below.
    Note: can_cache is called only for binary operators. Those
    operators always uses word arguments without write back. */
-static sljit_si can_cache(sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
     sljit_sw diff;
     if ((arg & OFFS_REG_MASK) || !(next_arg & SLJIT_MEM))
@@ -999,10 +999,10 @@
 }


 /* Emit the necessary instructions. See can_cache above. */
-static sljit_si getput_arg(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg,
-    sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg,
+    sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
-    sljit_si tmp_r, other_r;
+    sljit_s32 tmp_r, other_r;
     sljit_sw diff;


     SLJIT_ASSERT(arg & SLJIT_MEM);
@@ -1107,7 +1107,7 @@
     return push_inst32(compiler, sljit_mem32[flags] | MEM_IMM12 | RT4(reg) | RN4(TMP_REG3) | 0);
 }


-static SLJIT_INLINE sljit_si emit_op_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     if (getput_arg_fast(compiler, flags, reg, arg, argw))
         return compiler->error;
@@ -1116,7 +1116,7 @@
     return getput_arg(compiler, flags, reg, arg, argw, 0, 0);
 }


-static SLJIT_INLINE sljit_si emit_op_mem2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sljit_si arg2, sljit_sw arg2w)
+static SLJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg1, sljit_sw arg1w, sljit_s32 arg2, sljit_sw arg2w)
 {
     if (getput_arg_fast(compiler, flags, reg, arg1, arg1w))
         return compiler->error;
@@ -1127,11 +1127,11 @@
 /*  Entry, exit                                                          */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si size, i, tmp;
+    sljit_s32 size, i, tmp;
     sljit_ins push;


     CHECK_ERROR();
@@ -1172,11 +1172,11 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si size;
+    sljit_s32 size;


     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -1187,9 +1187,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si i, tmp;
+    sljit_s32 i, tmp;
     sljit_ins pop;


     CHECK_ERROR();
@@ -1237,7 +1237,7 @@
 }
 #endif


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
     sljit_sw saved_reg_list[3];
     sljit_sw saved_reg_count;
@@ -1311,12 +1311,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r, flags;
-    sljit_si op_flags = GET_ALL_FLAGS(op);
+    sljit_s32 dst_r, flags;
+    sljit_s32 op_flags = GET_ALL_FLAGS(op);


     CHECK_ERROR();
     CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
@@ -1332,56 +1332,56 @@
     if (op >= SLJIT_MOV && op <= SLJIT_MOVU_P) {
         switch (op) {
         case SLJIT_MOV:
-        case SLJIT_MOV_UI:
-        case SLJIT_MOV_SI:
+        case SLJIT_MOV_U32:
+        case SLJIT_MOV_S32:
         case SLJIT_MOV_P:
             flags = WORD_SIZE;
             break;
-        case SLJIT_MOV_UB:
+        case SLJIT_MOV_U8:
             flags = BYTE_SIZE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_ub)srcw;
+                srcw = (sljit_u8)srcw;
             break;
-        case SLJIT_MOV_SB:
+        case SLJIT_MOV_S8:
             flags = BYTE_SIZE | SIGNED;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sb)srcw;
+                srcw = (sljit_s8)srcw;
             break;
-        case SLJIT_MOV_UH:
+        case SLJIT_MOV_U16:
             flags = HALF_SIZE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_uh)srcw;
+                srcw = (sljit_u16)srcw;
             break;
-        case SLJIT_MOV_SH:
+        case SLJIT_MOV_S16:
             flags = HALF_SIZE | SIGNED;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sh)srcw;
+                srcw = (sljit_s16)srcw;
             break;
         case SLJIT_MOVU:
-        case SLJIT_MOVU_UI:
-        case SLJIT_MOVU_SI:
+        case SLJIT_MOVU_U32:
+        case SLJIT_MOVU_S32:
         case SLJIT_MOVU_P:
             flags = WORD_SIZE | UPDATE;
             break;
-        case SLJIT_MOVU_UB:
+        case SLJIT_MOVU_U8:
             flags = BYTE_SIZE | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_ub)srcw;
+                srcw = (sljit_u8)srcw;
             break;
-        case SLJIT_MOVU_SB:
+        case SLJIT_MOVU_S8:
             flags = BYTE_SIZE | SIGNED | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sb)srcw;
+                srcw = (sljit_s8)srcw;
             break;
-        case SLJIT_MOVU_UH:
+        case SLJIT_MOVU_U16:
             flags = HALF_SIZE | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_uh)srcw;
+                srcw = (sljit_u16)srcw;
             break;
-        case SLJIT_MOVU_SH:
+        case SLJIT_MOVU_S16:
             flags = HALF_SIZE | SIGNED | UPDATE;
             if (src & SLJIT_IMM)
-                srcw = (sljit_sh)srcw;
+                srcw = (sljit_s16)srcw;
             break;
         default:
             SLJIT_ASSERT_STOP();
@@ -1444,12 +1444,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r, flags;
+    sljit_s32 dst_r, flags;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -1523,26 +1523,26 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_float_register_index(reg));
     return reg << 1;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));


     if (size == 2)
-        return push_inst16(compiler, *(sljit_uh*)instruction);
+        return push_inst16(compiler, *(sljit_u16*)instruction);
     return push_inst32(compiler, *(sljit_ins*)instruction);
 }


@@ -1550,7 +1550,7 @@
 /*  Floating point operators                                             */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
 #ifdef SLJIT_IS_FPU_AVAILABLE
     return SLJIT_IS_FPU_AVAILABLE;
@@ -1562,7 +1562,7 @@


#define FPU_LOAD (1 << 20)

-static sljit_si emit_fop_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 emit_fop_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     sljit_sw tmp;
     sljit_uw imm;
@@ -1626,9 +1626,9 @@
     return push_inst32(compiler, inst | 0x800000 | RN4(TMP_REG3) | DD4(reg));
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (src & SLJIT_MEM) {
         FAIL_IF(emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, TMP_FREG1, src, srcw));
@@ -1647,11 +1647,11 @@
     return emit_fop_mem(compiler, 0, TMP_FREG1, dst, dstw);
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;


     if (FAST_IS_REG(src))
         FAIL_IF(push_inst32(compiler, VMOV | RT4(src) | DN4(TMP_FREG1)));
@@ -1671,9 +1671,9 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     if (src1 & SLJIT_MEM) {
         emit_fop_mem(compiler, (op & SLJIT_SINGLE_OP) | FPU_LOAD, TMP_FREG1, src1, src1w);
@@ -1689,11 +1689,11 @@
     return push_inst32(compiler, VMRS);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     compiler->cache_arg = 0;
@@ -1737,12 +1737,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -1790,7 +1790,7 @@
 /*  Other instructions                                                   */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -1813,7 +1813,7 @@
     return getput_arg(compiler, WORD_SIZE | STORE, TMP_REG2, dst, dstw, 0, 0);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -1840,7 +1840,7 @@
 /*  Conditional instructions                                             */
 /* --------------------------------------------------------------------- */


-static sljit_uw get_cc(sljit_si type)
+static sljit_uw get_cc(sljit_s32 type)
 {
     switch (type) {
     case SLJIT_EQUAL:
@@ -1911,7 +1911,7 @@
     return label;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     struct sljit_jump *jump;
     sljit_ins cc;
@@ -1944,7 +1944,7 @@
     return jump;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
     struct sljit_jump *jump;


@@ -1972,12 +1972,12 @@
     return push_inst16(compiler, (type <= SLJIT_JUMP ? BX : BLX) | RN3(TMP_REG1));
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
-    sljit_si dst_r, flags = GET_ALL_FLAGS(op);
+    sljit_s32 dst_r, flags = GET_ALL_FLAGS(op);
     sljit_ins cc, ins;


     CHECK_ERROR();
@@ -2054,10 +2054,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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_;
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));
@@ -2077,7 +2077,7 @@


 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_jump_addr(sljit_uw addr, sljit_uw new_addr)
 {
-    sljit_uh *inst = (sljit_uh*)addr;
+    sljit_u16 *inst = (sljit_u16*)addr;
     modify_imm32_const(inst, new_addr);
     SLJIT_CACHE_FLUSH(inst, inst + 4);
 }
@@ -2084,7 +2084,7 @@


 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant)
 {
-    sljit_uh *inst = (sljit_uh*)addr;
+    sljit_u16 *inst = (sljit_u16*)addr;
     modify_imm32_const(inst, new_constant);
     SLJIT_CACHE_FLUSH(inst, inst + 4);
 }


Modified: code/trunk/src/sljit/sljitNativeMIPS_32.c
===================================================================
--- code/trunk/src/sljit/sljitNativeMIPS_32.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeMIPS_32.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -26,7 +26,7 @@


/* mips 32-bit arch dependent functions. */

-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst_ar, sljit_sw imm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm)
 {
     if (!(imm & ~0xffff))
         return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar);
@@ -66,13 +66,13 @@
             FAIL_IF(push_inst(compiler, op_v | S(src2) | T(src1) | D(dst), DR(dst))); \
     }


-static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_si src1, sljit_sw src2)
+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)
 {
     switch (GET_OPCODE(op)) {
     case SLJIT_MOV:
-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
     case SLJIT_MOV_P:
         SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
         if (dst != src2)
@@ -79,11 +79,11 @@
             return push_inst(compiler, ADDU | S(src2) | TA(0) | D(dst), DR(dst));
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UB:
-    case SLJIT_MOV_SB:
+    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_SB) {
+            if (op == SLJIT_MOV_S8) {
 #if (defined SLJIT_MIPS_R1 && SLJIT_MIPS_R1)
                 return push_inst(compiler, SEB | T(src2) | D(dst), DR(dst));
 #else
@@ -97,11 +97,11 @@
             SLJIT_ASSERT_STOP();
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UH:
-    case SLJIT_MOV_SH:
+    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)) {
-            if (op == SLJIT_MOV_SH) {
+            if (op == SLJIT_MOV_S16) {
 #if (defined SLJIT_MIPS_R1 && SLJIT_MIPS_R1)
                 return push_inst(compiler, SEH | T(src2) | D(dst), DR(dst));
 #else
@@ -341,7 +341,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si 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)));
     return push_inst(compiler, ORI | S(dst) | T(dst) | IMM(init_value), DR(dst));


Modified: code/trunk/src/sljit/sljitNativeMIPS_64.c
===================================================================
--- code/trunk/src/sljit/sljitNativeMIPS_64.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeMIPS_64.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -26,11 +26,11 @@


/* mips 64-bit arch dependent functions. */

-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst_ar, sljit_sw imm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm)
 {
-    sljit_si shift = 32;
-    sljit_si shift2;
-    sljit_si inv = 0;
+    sljit_s32 shift = 32;
+    sljit_s32 shift2;
+    sljit_s32 inv = 0;
     sljit_ins ins;
     sljit_uw uimm;


@@ -119,7 +119,7 @@
}

 #define SELECT_OP(a, b) \
-    (!(op & SLJIT_INT_OP) ? a : b)
+    (!(op & SLJIT_I32_OP) ? a : b)


 #define EMIT_LOGICAL(op_imm, op_norm) \
     if (flags & SRC2_IMM) { \
@@ -138,12 +138,12 @@
 #define EMIT_SHIFT(op_dimm, op_dimm32, op_imm, op_dv, op_v) \
     if (flags & SRC2_IMM) { \
         if (src2 >= 32) { \
-            SLJIT_ASSERT(!(op & SLJIT_INT_OP)); \
+            SLJIT_ASSERT(!(op & SLJIT_I32_OP)); \
             ins = op_dimm32; \
             src2 -= 32; \
         } \
         else \
-            ins = (op & SLJIT_INT_OP) ? op_imm : op_dimm; \
+            ins = (op & SLJIT_I32_OP) ? op_imm : op_dimm; \
         if (op & SLJIT_SET_E) \
             FAIL_IF(push_inst(compiler, ins | T(src1) | DA(EQUAL_FLAG) | SH_IMM(src2), EQUAL_FLAG)); \
         if (CHECK_FLAGS(SLJIT_SET_E)) \
@@ -150,7 +150,7 @@
             FAIL_IF(push_inst(compiler, ins | T(src1) | D(dst) | SH_IMM(src2), DR(dst))); \
     } \
     else { \
-        ins = (op & SLJIT_INT_OP) ? op_v : op_dv; \
+        ins = (op & SLJIT_I32_OP) ? op_v : op_dv; \
         if (op & SLJIT_SET_E) \
             FAIL_IF(push_inst(compiler, ins | S(src2) | T(src1) | DA(EQUAL_FLAG), EQUAL_FLAG)); \
         if (CHECK_FLAGS(SLJIT_SET_E)) \
@@ -157,8 +157,8 @@
             FAIL_IF(push_inst(compiler, ins | S(src2) | T(src1) | D(dst), DR(dst))); \
     }


-static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_si src1, sljit_sw src2)
+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;


@@ -170,11 +170,11 @@
             return push_inst(compiler, SELECT_OP(DADDU, ADDU) | S(src2) | TA(0) | D(dst), DR(dst));
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UB:
-    case SLJIT_MOV_SB:
+    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_SB) {
+            if (op == SLJIT_MOV_S8) {
                 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));
             }
@@ -184,11 +184,11 @@
             SLJIT_ASSERT_STOP();
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UH:
-    case SLJIT_MOV_SH:
+    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)) {
-            if (op == SLJIT_MOV_SH) {
+            if (op == SLJIT_MOV_S16) {
                 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));
             }
@@ -198,12 +198,12 @@
             SLJIT_ASSERT_STOP();
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UI:
-        SLJIT_ASSERT(!(op & SLJIT_INT_OP));
+    case SLJIT_MOV_U32:
+        SLJIT_ASSERT(!(op & SLJIT_I32_OP));
         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));


-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_S32:
         SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
         return push_inst(compiler, SLL | T(src2) | D(dst) | SH_IMM(0), DR(dst));


@@ -231,7 +231,7 @@
         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_INT_OP) ? 32 : 64), UNMOVABLE_INS));
+        FAIL_IF(push_inst(compiler, ORI | SA(0) | T(dst) | IMM((op & SLJIT_I32_OP) ? 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)));
@@ -392,7 +392,7 @@
         SLJIT_ASSERT(!(flags & SRC2_IMM));
         if (!(op & SLJIT_SET_O)) {
 #if (defined SLJIT_MIPS_R1 && SLJIT_MIPS_R1)
-            if (op & SLJIT_INT_OP)
+            if (op & SLJIT_I32_OP)
                 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));
@@ -436,7 +436,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si 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, ORI | S(dst) | T(dst) | IMM(init_value >> 32), DR(dst)));


Modified: code/trunk/src/sljit/sljitNativeMIPS_common.c
===================================================================
--- code/trunk/src/sljit/sljitNativeMIPS_common.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeMIPS_common.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -27,7 +27,7 @@
 /* Latest MIPS architecture. */
 /* Automatically detect SLJIT_MIPS_R1 */


-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
{
#if (defined SLJIT_MIPS_R1 && SLJIT_MIPS_R1)
#if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
@@ -42,7 +42,7 @@

 /* Length of an instruction word
    Both for mips-32 and mips-64 */
-typedef sljit_ui sljit_ins;
+typedef sljit_u32 sljit_ins;


 #define TMP_REG1    (SLJIT_NUMBER_OF_REGISTERS + 2)
 #define TMP_REG2    (SLJIT_NUMBER_OF_REGISTERS + 3)
@@ -68,7 +68,7 @@
 #define TMP_FREG1    (0)
 #define TMP_FREG2    ((SLJIT_NUMBER_OF_FLOAT_REGISTERS + 1) << 1)


-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 5] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 5] = {
     0, 2, 5, 6, 7, 8, 9, 10, 11, 24, 23, 22, 21, 20, 19, 18, 17, 16, 29, 3, 25, 4
 };


@@ -201,7 +201,7 @@

 /* dest_reg is the absolute name of the register
    Useful for reordering instructions in the delay slot. */
-static sljit_si push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_si delay_slot)
+static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
 {
     SLJIT_ASSERT(delay_slot == MOVABLE_INS || delay_slot >= UNMOVABLE_INS
         || delay_slot == ((ins >> 11) & 0x1f) || delay_slot == ((ins >> 16) & 0x1f));
@@ -213,7 +213,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_ins invert_branch(sljit_si flags)
+static SLJIT_INLINE sljit_ins invert_branch(sljit_s32 flags)
 {
     return (flags & IS_BIT26_COND) ? (1 << 26) : (1 << 16);
 }
@@ -538,12 +538,12 @@
 #include "sljitNativeMIPS_64.c"
 #endif


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     sljit_ins base;
-    sljit_si i, tmp, offs;
+    sljit_s32 i, tmp, offs;


     CHECK_ERROR();
     CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -575,12 +575,12 @@


     tmp = saveds < SLJIT_NUMBER_OF_SAVED_REGISTERS ? (SLJIT_S0 + 1 - saveds) : SLJIT_FIRST_SAVED_REG;
     for (i = SLJIT_S0; i >= tmp; i--) {
-        offs -= (sljit_si)(sizeof(sljit_sw));
+        offs -= (sljit_s32)(sizeof(sljit_sw));
         FAIL_IF(push_inst(compiler, STACK_STORE | base | T(i) | IMM(offs), MOVABLE_INS));
     }


     for (i = scratches; i >= SLJIT_FIRST_SAVED_REG; i--) {
-        offs -= (sljit_si)(sizeof(sljit_sw));
+        offs -= (sljit_s32)(sizeof(sljit_sw));
         FAIL_IF(push_inst(compiler, STACK_STORE | base | T(i) | IMM(offs), MOVABLE_INS));
     }


@@ -594,9 +594,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -611,9 +611,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si local_size, i, tmp, offs;
+    sljit_s32 local_size, i, tmp, offs;
     sljit_ins base;


     CHECK_ERROR();
@@ -631,19 +631,19 @@
         local_size = 0;
     }


-    FAIL_IF(push_inst(compiler, STACK_LOAD | base | TA(RETURN_ADDR_REG) | IMM(local_size - (sljit_si)sizeof(sljit_sw)), RETURN_ADDR_REG));
-    offs = local_size - (sljit_si)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1);
+    FAIL_IF(push_inst(compiler, STACK_LOAD | base | TA(RETURN_ADDR_REG) | IMM(local_size - (sljit_s32)sizeof(sljit_sw)), RETURN_ADDR_REG));
+    offs = local_size - (sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1);


     tmp = compiler->scratches;
     for (i = SLJIT_FIRST_SAVED_REG; i <= tmp; i++) {
         FAIL_IF(push_inst(compiler, STACK_LOAD | base | T(i) | IMM(offs), DR(i)));
-        offs += (sljit_si)(sizeof(sljit_sw));
+        offs += (sljit_s32)(sizeof(sljit_sw));
     }


     tmp = compiler->saveds < SLJIT_NUMBER_OF_SAVED_REGISTERS ? (SLJIT_S0 + 1 - compiler->saveds) : SLJIT_FIRST_SAVED_REG;
     for (i = tmp; i <= SLJIT_S0; i++) {
         FAIL_IF(push_inst(compiler, STACK_LOAD | base | T(i) | IMM(offs), DR(i)));
-        offs += (sljit_si)(sizeof(sljit_sw));
+        offs += (sljit_s32)(sizeof(sljit_sw));
     }


     SLJIT_ASSERT(offs == local_size - (sljit_sw)(sizeof(sljit_sw)));
@@ -668,7 +668,7 @@
 #define ARCH_32_64(a, b)    b
 #endif


-static SLJIT_CONST sljit_ins data_transfer_insts[16 + 4] = {
+static const sljit_ins data_transfer_insts[16 + 4] = {
/* u w s */ ARCH_32_64(HI(43) /* sw */, HI(63) /* sd */),
/* u w l */ ARCH_32_64(HI(35) /* lw */, HI(55) /* ld */),
/* u b s */ HI(40) /* sb */,
@@ -698,7 +698,7 @@
/* reg_ar is an absoulute register! */

 /* Can perform an operation using at most 1 instruction. */
-static sljit_si getput_arg_fast(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg_ar, sljit_si arg, sljit_sw argw)
+static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw)
 {
     SLJIT_ASSERT(arg & SLJIT_MEM);


@@ -716,7 +716,7 @@
 /* See getput_arg below.
    Note: can_cache is called only for binary operators. Those
    operators always uses word arguments without write back. */
-static sljit_si can_cache(sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
     SLJIT_ASSERT((arg & SLJIT_MEM) && (next_arg & SLJIT_MEM));


@@ -739,9 +739,9 @@
}

 /* Emit the necessary instructions. See can_cache above. */
-static sljit_si getput_arg(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg_ar, sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
-    sljit_si tmp_ar, base, delay_slot;
+    sljit_s32 tmp_ar, base, delay_slot;


     SLJIT_ASSERT(arg & SLJIT_MEM);
     if (!(next_arg & SLJIT_MEM)) {
@@ -878,7 +878,7 @@
     return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | SA(tmp_ar) | TA(reg_ar), delay_slot);
 }


-static SLJIT_INLINE sljit_si emit_op_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg_ar, sljit_si arg, sljit_sw argw)
+static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw)
 {
     if (getput_arg_fast(compiler, flags, reg_ar, arg, argw))
         return compiler->error;
@@ -887,7 +887,7 @@
     return getput_arg(compiler, flags, reg_ar, arg, argw, 0, 0);
 }


-static SLJIT_INLINE sljit_si emit_op_mem2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sljit_si arg2, sljit_sw arg2w)
+static SLJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg1, sljit_sw arg1w, sljit_s32 arg2, sljit_sw arg2w)
 {
     if (getput_arg_fast(compiler, flags, reg, arg1, arg1w))
         return compiler->error;
@@ -894,19 +894,19 @@
     return getput_arg(compiler, flags, reg, arg1, arg1w, arg2, arg2w);
 }


-static sljit_si emit_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     /* arg1 goes to TMP_REG1 or src reg
        arg2 goes to TMP_REG2, imm or src reg
        TMP_REG3 can be used for caching
        result goes to TMP_REG2, so put result can use TMP_REG1 and TMP_REG3. */
-    sljit_si dst_r = TMP_REG2;
-    sljit_si src1_r;
+    sljit_s32 dst_r = TMP_REG2;
+    sljit_s32 src1_r;
     sljit_sw src2_r = 0;
-    sljit_si sugg_src2_r = TMP_REG2;
+    sljit_s32 sugg_src2_r = TMP_REG2;


     if (!(flags & ALT_KEEP_CACHE)) {
         compiler->cache_arg = 0;
@@ -914,7 +914,7 @@
     }


     if (SLJIT_UNLIKELY(dst == SLJIT_UNUSED)) {
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI && !(src2 & SLJIT_MEM))
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32 && !(src2 & SLJIT_MEM))
             return SLJIT_SUCCESS;
         if (GET_FLAGS(op))
             flags |= UNUSED_DEST;
@@ -922,7 +922,7 @@
     else if (FAST_IS_REG(dst)) {
         dst_r = dst;
         flags |= REG_DEST;
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             sugg_src2_r = dst_r;
     }
     else if ((dst & SLJIT_MEM) && !getput_arg_fast(compiler, flags | ARG_TEST, DR(TMP_REG1), dst, dstw))
@@ -976,7 +976,7 @@
     if (FAST_IS_REG(src2)) {
         src2_r = src2;
         flags |= REG2_SOURCE;
-        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             dst_r = src2_r;
     }
     else if (src2 & SLJIT_IMM) {
@@ -987,7 +987,7 @@
             }
             else {
                 src2_r = 0;
-                if ((op >= SLJIT_MOV && op <= SLJIT_MOVU_SI) && (dst & SLJIT_MEM))
+                if ((op >= SLJIT_MOV && op <= SLJIT_MOVU_S32) && (dst & SLJIT_MEM))
                     dst_r = 0;
             }
         }
@@ -1029,10 +1029,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
 #if (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
-    sljit_si int_op = op & SLJIT_INT_OP;
+    sljit_s32 int_op = op & SLJIT_I32_OP;
 #endif


     CHECK_ERROR();
@@ -1079,14 +1079,14 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
 #    define flags 0
 #else
-    sljit_si flags = 0;
+    sljit_s32 flags = 0;
 #endif


     CHECK_ERROR();
@@ -1095,10 +1095,10 @@
     ADJUST_LOCAL_OFFSET(src, srcw);


 #if (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
-    if ((op & SLJIT_INT_OP) && GET_OPCODE(op) >= SLJIT_NOT) {
+    if ((op & SLJIT_I32_OP) && GET_OPCODE(op) >= SLJIT_NOT) {
         flags |= INT_DATA | SIGNED_DATA;
         if (src & SLJIT_IMM)
-            srcw = (sljit_si)srcw;
+            srcw = (sljit_s32)srcw;
     }
 #endif


@@ -1107,61 +1107,61 @@
     case SLJIT_MOV_P:
         return emit_op(compiler, SLJIT_MOV, WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_UI:
+    case SLJIT_MOV_U32:
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
-        return emit_op(compiler, SLJIT_MOV_UI, INT_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
+        return emit_op(compiler, SLJIT_MOV_U32, INT_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
 #else
-        return emit_op(compiler, SLJIT_MOV_UI, INT_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ui)srcw : srcw);
+        return emit_op(compiler, SLJIT_MOV_U32, INT_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u32)srcw : srcw);
 #endif


-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_S32:
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
-        return emit_op(compiler, SLJIT_MOV_SI, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
+        return emit_op(compiler, SLJIT_MOV_S32, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
 #else
-        return emit_op(compiler, SLJIT_MOV_SI, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_si)srcw : srcw);
+        return emit_op(compiler, SLJIT_MOV_S32, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s32)srcw : srcw);
 #endif


-    case SLJIT_MOV_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub)srcw : srcw);
+    case SLJIT_MOV_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8)srcw : srcw);


-    case SLJIT_MOV_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, BYTE_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb)srcw : srcw);
+    case SLJIT_MOV_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, BYTE_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8)srcw : srcw);


-    case SLJIT_MOV_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh)srcw : srcw);
+    case SLJIT_MOV_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16)srcw : srcw);


-    case SLJIT_MOV_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, HALF_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh)srcw : srcw);
+    case SLJIT_MOV_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, HALF_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16)srcw : srcw);


     case SLJIT_MOVU:
     case SLJIT_MOVU_P:
         return emit_op(compiler, SLJIT_MOV, WORD_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_UI:
+    case SLJIT_MOVU_U32:
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
-        return emit_op(compiler, SLJIT_MOV_UI, INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
+        return emit_op(compiler, SLJIT_MOV_U32, INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
 #else
-        return emit_op(compiler, SLJIT_MOV_UI, INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ui)srcw : srcw);
+        return emit_op(compiler, SLJIT_MOV_U32, INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u32)srcw : srcw);
 #endif


-    case SLJIT_MOVU_SI:
+    case SLJIT_MOVU_S32:
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
-        return emit_op(compiler, SLJIT_MOV_SI, INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
+        return emit_op(compiler, SLJIT_MOV_S32, INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
 #else
-        return emit_op(compiler, SLJIT_MOV_SI, INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_si)srcw : srcw);
+        return emit_op(compiler, SLJIT_MOV_S32, INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s32)srcw : srcw);
 #endif


-    case SLJIT_MOVU_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub)srcw : srcw);
+    case SLJIT_MOVU_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8)srcw : srcw);


-    case SLJIT_MOVU_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, BYTE_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb)srcw : srcw);
+    case SLJIT_MOVU_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, BYTE_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8)srcw : srcw);


-    case SLJIT_MOVU_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh)srcw : srcw);
+    case SLJIT_MOVU_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16)srcw : srcw);


-    case SLJIT_MOVU_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, HALF_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh)srcw : srcw);
+    case SLJIT_MOVU_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, HALF_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16)srcw : srcw);


     case SLJIT_NOT:
         return emit_op(compiler, op, flags, dst, dstw, TMP_REG1, 0, src, srcw);
@@ -1180,15 +1180,15 @@
 #endif
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
 #    define flags 0
 #else
-    sljit_si flags = 0;
+    sljit_s32 flags = 0;
 #endif


     CHECK_ERROR();
@@ -1198,12 +1198,12 @@
     ADJUST_LOCAL_OFFSET(src2, src2w);


 #if (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
-    if (op & SLJIT_INT_OP) {
+    if (op & SLJIT_I32_OP) {
         flags |= INT_DATA | SIGNED_DATA;
         if (src1 & SLJIT_IMM)
-            src1w = (sljit_si)src1w;
+            src1w = (sljit_s32)src1w;
         if (src2 & SLJIT_IMM)
-            src2w = (sljit_si)src2w;
+            src2w = (sljit_s32)src2w;
     }
 #endif


@@ -1232,7 +1232,7 @@
             src2w &= 0x1f;
 #else
         if (src2 & SLJIT_IMM) {
-            if (op & SLJIT_INT_OP)
+            if (op & SLJIT_I32_OP)
                 src2w &= 0x1f;
             else
                 src2w &= 0x3f;
@@ -1248,20 +1248,20 @@
 #endif
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_float_register_index(reg));
     return reg << 1;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));
@@ -1273,7 +1273,7 @@
 /*  Floating point operators                                             */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
 #ifdef SLJIT_IS_FPU_AVAILABLE
     return SLJIT_IS_FPU_AVAILABLE;
@@ -1289,14 +1289,14 @@
 #define FLOAT_DATA(op) (DOUBLE_DATA | ((op & SLJIT_SINGLE_OP) >> 7))
 #define FMT(op) (((op & SLJIT_SINGLE_OP) ^ SLJIT_SINGLE_OP) << (21 - 8))


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
 #    define flags 0
 #else
-    sljit_si flags = (GET_OPCODE(op) == SLJIT_CONVW_FROMD) << 21;
+    sljit_s32 flags = (GET_OPCODE(op) == SLJIT_CONVW_FROMD) << 21;
 #endif


     if (src & SLJIT_MEM) {
@@ -1322,17 +1322,17 @@
 #endif
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
 #    define flags 0
 #else
-    sljit_si flags = (GET_OPCODE(op) == SLJIT_CONVD_FROMW) << 21;
+    sljit_s32 flags = (GET_OPCODE(op) == SLJIT_CONVD_FROMW) << 21;
 #endif


-    sljit_si dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;


     if (FAST_IS_REG(src))
         FAIL_IF(push_inst(compiler, MTC1 | flags | T(src) | FS(TMP_FREG1), MOVABLE_INS));
@@ -1343,7 +1343,7 @@
     else {
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
         if (GET_OPCODE(op) == SLJIT_CONVD_FROMI)
-            srcw = (sljit_si)srcw;
+            srcw = (sljit_s32)srcw;
 #endif
         FAIL_IF(load_immediate(compiler, DR(TMP_REG1), srcw));
         FAIL_IF(push_inst(compiler, MTC1 | flags | T(TMP_REG1) | FS(TMP_FREG1), MOVABLE_INS));
@@ -1360,9 +1360,9 @@
 #endif
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     if (src1 & SLJIT_MEM) {
         FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src1, src1w, src2, src2w));
@@ -1399,11 +1399,11 @@
     return push_inst(compiler, C_UN_S | FMT(op) | FT(src2) | FS(src1), FCSR_FCC);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     compiler->cache_arg = 0;
@@ -1450,12 +1450,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r, flags = 0;
+    sljit_s32 dst_r, flags = 0;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -1536,7 +1536,7 @@
 /*  Other instructions                                                   */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -1553,7 +1553,7 @@
     return emit_op_mem(compiler, WORD_DATA, RETURN_ADDR_REG, dst, dstw);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -1617,12 +1617,12 @@
     flags = IS_BIT16_COND; \
     delay_check = FCSR_FCC;


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     struct sljit_jump *jump;
     sljit_ins inst;
-    sljit_si flags = 0;
-    sljit_si delay_check = UNMOVABLE_INS;
+    sljit_s32 flags = 0;
+    sljit_s32 delay_check = UNMOVABLE_INS;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_jump(compiler, type));
@@ -1733,12 +1733,12 @@
             src2 = 0; \
     }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_cmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+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 src2, sljit_sw src2w)
 {
     struct sljit_jump *jump;
-    sljit_si flags;
+    sljit_s32 flags;
     sljit_ins inst;


     CHECK_ERROR_PTR();
@@ -1748,7 +1748,7 @@


     compiler->cache_arg = 0;
     compiler->cache_argw = 0;
-    flags = ((type & SLJIT_INT_OP) ? INT_DATA : WORD_DATA) | LOAD_DATA;
+    flags = ((type & SLJIT_I32_OP) ? INT_DATA : WORD_DATA) | LOAD_DATA;
     if (src1 & SLJIT_MEM) {
         PTR_FAIL_IF(emit_op_mem2(compiler, flags, DR(TMP_REG1), src1, src1w, src2, src2w));
         src1 = TMP_REG1;
@@ -1854,13 +1854,13 @@
 #undef RESOLVE_IMM1
 #undef RESOLVE_IMM2


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_fcmp(struct sljit_compiler *compiler, sljit_si type,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+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 src2, sljit_sw src2w)
 {
     struct sljit_jump *jump;
     sljit_ins inst;
-    sljit_si if_true;
+    sljit_s32 if_true;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_fcmp(compiler, type, src1, src1w, src2, src2w));
@@ -1943,9 +1943,9 @@
 #undef FLOAT_DATA
 #undef FMT


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
-    sljit_si src_r = TMP_REG2;
+    sljit_s32 src_r = TMP_REG2;
     struct sljit_jump *jump = NULL;


     CHECK_ERROR();
@@ -2001,17 +2001,17 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
-    sljit_si sugg_dst_ar, dst_ar;
-    sljit_si flags = GET_ALL_FLAGS(op);
+    sljit_s32 sugg_dst_ar, dst_ar;
+    sljit_s32 flags = GET_ALL_FLAGS(op);
 #if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32)
 #    define mem_type WORD_DATA
 #else
-    sljit_si mem_type = (op & SLJIT_INT_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA;
+    sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA;
 #endif


     CHECK_ERROR();
@@ -2023,7 +2023,7 @@


     op = GET_OPCODE(op);
 #if (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)
-    if (op == SLJIT_MOV_SI || op == SLJIT_MOV_UI)
+    if (op == SLJIT_MOV_S32 || op == SLJIT_MOV_U32)
         mem_type = INT_DATA | SIGNED_DATA;
 #endif
     sugg_dst_ar = DR((op < SLJIT_ADD && FAST_IS_REG(dst)) ? dst : TMP_REG2);
@@ -2115,10 +2115,10 @@
 #endif
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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_;
-    sljit_si reg;
+    sljit_s32 reg;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));


Modified: code/trunk/src/sljit/sljitNativePPC_32.c
===================================================================
--- code/trunk/src/sljit/sljitNativePPC_32.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativePPC_32.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -26,7 +26,7 @@


/* ppc 32-bit arch dependent functions. */

-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si reg, sljit_sw imm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm)
 {
     if (imm <= SIMM_MAX && imm >= SIMM_MIN)
         return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm));
@@ -41,13 +41,13 @@
 #define INS_CLEAR_LEFT(dst, src, from) \
     (RLWINM | S(src) | A(dst) | ((from) << 6) | (31 << 1))


-static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_si src1, sljit_si src2)
+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_s32 src2)
 {
     switch (op) {
     case SLJIT_MOV:
-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
     case SLJIT_MOV_P:
         SLJIT_ASSERT(src1 == TMP_REG1);
         if (dst != src2)
@@ -54,15 +54,15 @@
             return push_inst(compiler, OR | S(src2) | A(dst) | B(src2));
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UB:
-    case SLJIT_MOV_SB:
+    case SLJIT_MOV_U8:
+    case SLJIT_MOV_S8:
         SLJIT_ASSERT(src1 == TMP_REG1);
         if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
-            if (op == SLJIT_MOV_SB)
+            if (op == SLJIT_MOV_S8)
                 return push_inst(compiler, EXTSB | S(src2) | A(dst));
             return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24));
         }
-        else if ((flags & REG_DEST) && op == SLJIT_MOV_SB)
+        else if ((flags & REG_DEST) && op == SLJIT_MOV_S8)
             return push_inst(compiler, EXTSB | S(src2) | A(dst));
         else {
             SLJIT_ASSERT(dst == src2);
@@ -69,11 +69,11 @@
         }
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UH:
-    case SLJIT_MOV_SH:
+    case SLJIT_MOV_U16:
+    case SLJIT_MOV_S16:
         SLJIT_ASSERT(src1 == TMP_REG1);
         if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
-            if (op == SLJIT_MOV_SH)
+            if (op == SLJIT_MOV_S16)
                 return push_inst(compiler, EXTSH | S(src2) | A(dst));
             return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 16));
         }
@@ -244,7 +244,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si reg, sljit_sw init_value)
+static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value)
 {
     FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 16)));
     return push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value));


Modified: code/trunk/src/sljit/sljitNativePPC_64.c
===================================================================
--- code/trunk/src/sljit/sljitNativePPC_64.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativePPC_64.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -41,7 +41,7 @@
 #define PUSH_RLDICR(reg, shift) \
     push_inst(compiler, RLDI(reg, reg, 63 - shift, shift, 1))


-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si reg, sljit_sw imm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm)
 {
     sljit_uw tmp;
     sljit_uw shift;
@@ -145,8 +145,8 @@
         src1 = TMP_REG1; \
     }


-static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_si src1, sljit_si src2)
+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_s32 src2)
 {
     switch (op) {
     case SLJIT_MOV:
@@ -156,11 +156,11 @@
             return push_inst(compiler, OR | S(src2) | A(dst) | B(src2));
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
         SLJIT_ASSERT(src1 == TMP_REG1);
         if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
-            if (op == SLJIT_MOV_SI)
+            if (op == SLJIT_MOV_S32)
                 return push_inst(compiler, EXTSW | S(src2) | A(dst));
             return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 0));
         }
@@ -169,15 +169,15 @@
         }
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UB:
-    case SLJIT_MOV_SB:
+    case SLJIT_MOV_U8:
+    case SLJIT_MOV_S8:
         SLJIT_ASSERT(src1 == TMP_REG1);
         if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
-            if (op == SLJIT_MOV_SB)
+            if (op == SLJIT_MOV_S8)
                 return push_inst(compiler, EXTSB | S(src2) | A(dst));
             return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24));
         }
-        else if ((flags & REG_DEST) && op == SLJIT_MOV_SB)
+        else if ((flags & REG_DEST) && op == SLJIT_MOV_S8)
             return push_inst(compiler, EXTSB | S(src2) | A(dst));
         else {
             SLJIT_ASSERT(dst == src2);
@@ -184,11 +184,11 @@
         }
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UH:
-    case SLJIT_MOV_SH:
+    case SLJIT_MOV_U16:
+    case SLJIT_MOV_S16:
         SLJIT_ASSERT(src1 == TMP_REG1);
         if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
-            if (op == SLJIT_MOV_SH)
+            if (op == SLJIT_MOV_S16)
                 return push_inst(compiler, EXTSH | S(src2) | A(dst));
             return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 16));
         }
@@ -389,7 +389,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si reg, sljit_sw init_value)
+static SLJIT_INLINE sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw init_value)
 {
     FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(init_value >> 48)));
     FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(init_value >> 32)));


Modified: code/trunk/src/sljit/sljitNativePPC_common.c
===================================================================
--- code/trunk/src/sljit/sljitNativePPC_common.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativePPC_common.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -24,7 +24,7 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */


-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
 {
     return "PowerPC" SLJIT_CPUINFO;
 }
@@ -31,7 +31,7 @@


 /* Length of an instruction word.
    Both for ppc-32 and ppc-64. */
-typedef sljit_ui sljit_ins;
+typedef sljit_u32 sljit_ins;


 #if ((defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) && (defined _AIX)) \
     || (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
@@ -101,7 +101,7 @@
 #define TMP_FREG1    (0)
 #define TMP_FREG2    (SLJIT_NUMBER_OF_FLOAT_REGISTERS + 1)


-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 7] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 7] = {
     0, 3, 4, 5, 6, 7, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1, 8, 9, 10, 31, 12
 };


@@ -236,7 +236,7 @@
}
#endif

-static sljit_si 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));
     FAIL_IF(!ptr);
@@ -245,7 +245,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code)
+static SLJIT_INLINE sljit_s32 detect_jump_type(struct sljit_jump *jump, sljit_ins *code_ptr, sljit_ins *code)
 {
     sljit_sw diff;
     sljit_uw target_addr;
@@ -571,11 +571,11 @@
 #define STACK_LOAD    LD
 #endif


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si i, tmp, offs;
+    sljit_s32 i, tmp, offs;


     CHECK_ERROR();
     CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -582,21 +582,21 @@
     set_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size);


     FAIL_IF(push_inst(compiler, MFLR | D(0)));
-    offs = -(sljit_si)(sizeof(sljit_sw));
+    offs = -(sljit_s32)(sizeof(sljit_sw));
     FAIL_IF(push_inst(compiler, STACK_STORE | S(TMP_ZERO) | A(SLJIT_SP) | IMM(offs)));


     tmp = saveds < SLJIT_NUMBER_OF_SAVED_REGISTERS ? (SLJIT_S0 + 1 - saveds) : SLJIT_FIRST_SAVED_REG;
     for (i = SLJIT_S0; i >= tmp; i--) {
-        offs -= (sljit_si)(sizeof(sljit_sw));
+        offs -= (sljit_s32)(sizeof(sljit_sw));
         FAIL_IF(push_inst(compiler, STACK_STORE | S(i) | A(SLJIT_SP) | IMM(offs)));
     }


     for (i = scratches; i >= SLJIT_FIRST_SAVED_REG; i--) {
-        offs -= (sljit_si)(sizeof(sljit_sw));
+        offs -= (sljit_s32)(sizeof(sljit_sw));
         FAIL_IF(push_inst(compiler, STACK_STORE | S(i) | A(SLJIT_SP) | IMM(offs)));
     }


-    SLJIT_ASSERT(offs == -(sljit_si)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1));
+    SLJIT_ASSERT(offs == -(sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1));


 #if (defined SLJIT_PPC_STACK_FRAME_V2 && SLJIT_PPC_STACK_FRAME_V2)
     FAIL_IF(push_inst(compiler, STACK_STORE | S(0) | A(SLJIT_SP) | IMM(2 * sizeof(sljit_sw))));
@@ -635,9 +635,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -648,9 +648,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si i, tmp, offs;
+    sljit_s32 i, tmp, offs;


     CHECK_ERROR();
     CHECK(check_sljit_emit_return(compiler, op, src, srcw));
@@ -670,18 +670,18 @@
     FAIL_IF(push_inst(compiler, STACK_LOAD | D(0) | A(SLJIT_SP) | IMM(sizeof(sljit_sw))));
 #endif


-    offs = -(sljit_si)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1);
+    offs = -(sljit_s32)GET_SAVED_REGISTERS_SIZE(compiler->scratches, compiler->saveds, 1);


     tmp = compiler->scratches;
     for (i = SLJIT_FIRST_SAVED_REG; i <= tmp; i++) {
         FAIL_IF(push_inst(compiler, STACK_LOAD | D(i) | A(SLJIT_SP) | IMM(offs)));
-        offs += (sljit_si)(sizeof(sljit_sw));
+        offs += (sljit_s32)(sizeof(sljit_sw));
     }


     tmp = compiler->saveds < SLJIT_NUMBER_OF_SAVED_REGISTERS ? (SLJIT_S0 + 1 - compiler->saveds) : SLJIT_FIRST_SAVED_REG;
     for (i = tmp; i <= SLJIT_S0; i++) {
         FAIL_IF(push_inst(compiler, STACK_LOAD | D(i) | A(SLJIT_SP) | IMM(offs)));
-        offs += (sljit_si)(sizeof(sljit_sw));
+        offs += (sljit_s32)(sizeof(sljit_sw));
     }


     FAIL_IF(push_inst(compiler, STACK_LOAD | D(TMP_ZERO) | A(SLJIT_SP) | IMM(offs)));
@@ -722,7 +722,7 @@
     (((inst) & ~(INT_ALIGNED | UPDATE_REQ)) | (((flags) & MEM_MASK) <= GPR_REG ? D(reg) : FD(reg)))
 #endif


-static SLJIT_CONST sljit_ins data_transfer_insts[64 + 8] = {
+static const sljit_ins data_transfer_insts[64 + 8] = {

/* -------- Unsigned -------- */

@@ -841,7 +841,7 @@
#undef ARCH_32_64

 /* Simple cases, (no caching is required). */
-static sljit_si getput_arg_fast(struct sljit_compiler *compiler, sljit_si inp_flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     sljit_ins inst;


@@ -891,7 +891,7 @@
 /* See getput_arg below.
    Note: can_cache is called only for binary operators. Those operator always
    uses word arguments without write back. */
-static sljit_si can_cache(sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
     sljit_sw high_short, next_high_short;
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
@@ -940,9 +940,9 @@
 #endif


 /* Emit the necessary instructions. See can_cache above. */
-static sljit_si getput_arg(struct sljit_compiler *compiler, sljit_si inp_flags, sljit_si reg, sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
-    sljit_si tmp_r;
+    sljit_s32 tmp_r;
     sljit_ins inst;
     sljit_sw high_short, next_high_short;
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
@@ -992,7 +992,7 @@
 #endif


         arg &= REG_MASK;
-        high_short = (sljit_si)(argw + ((argw & 0x8000) << 1)) & ~0xffff;
+        high_short = (sljit_s32)(argw + ((argw & 0x8000) << 1)) & ~0xffff;
         /* The getput_arg_fast should handle this otherwise. */
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
         SLJIT_ASSERT(high_short && high_short <= 0x7fffffffl && high_short >= -0x80000000l);
@@ -1010,7 +1010,7 @@
         }
         else if (compiler->cache_arg != (SLJIT_MEM | arg) || high_short != compiler->cache_argw) {
             if ((next_arg & SLJIT_MEM) && !(next_arg & OFFS_REG_MASK)) {
-                next_high_short = (sljit_si)(next_argw + ((next_argw & 0x8000) << 1)) & ~0xffff;
+                next_high_short = (sljit_s32)(next_argw + ((next_argw & 0x8000) << 1)) & ~0xffff;
                 if (high_short == next_high_short) {
                     compiler->cache_arg = SLJIT_MEM | arg;
                     compiler->cache_argw = high_short;
@@ -1107,7 +1107,7 @@
 #endif
 }


-static SLJIT_INLINE sljit_si emit_op_mem2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sljit_si arg2, sljit_sw arg2w)
+static SLJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg1, sljit_sw arg1w, sljit_s32 arg2, sljit_sw arg2w)
 {
     if (getput_arg_fast(compiler, flags, reg, arg1, arg1w))
         return compiler->error;
@@ -1114,20 +1114,20 @@
     return getput_arg(compiler, flags, reg, arg1, arg1w, arg2, arg2w);
 }


-static sljit_si emit_op(struct sljit_compiler *compiler, sljit_si op, sljit_si input_flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 input_flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     /* arg1 goes to TMP_REG1 or src reg
        arg2 goes to TMP_REG2, imm or src reg
        TMP_REG3 can be used for caching
        result goes to TMP_REG2, so put result can use TMP_REG1 and TMP_REG3. */
-    sljit_si dst_r;
-    sljit_si src1_r;
-    sljit_si src2_r;
-    sljit_si sugg_src2_r = TMP_REG2;
-    sljit_si flags = input_flags & (ALT_FORM1 | ALT_FORM2 | ALT_FORM3 | ALT_FORM4 | ALT_FORM5 | ALT_FORM6 | ALT_SIGN_EXT | ALT_SET_FLAGS);
+    sljit_s32 dst_r;
+    sljit_s32 src1_r;
+    sljit_s32 src2_r;
+    sljit_s32 sugg_src2_r = TMP_REG2;
+    sljit_s32 flags = input_flags & (ALT_FORM1 | ALT_FORM2 | ALT_FORM3 | ALT_FORM4 | ALT_FORM5 | ALT_FORM6 | ALT_SIGN_EXT | ALT_SET_FLAGS);


     if (!(input_flags & ALT_KEEP_CACHE)) {
         compiler->cache_arg = 0;
@@ -1136,7 +1136,7 @@


     /* Destination check. */
     if (SLJIT_UNLIKELY(dst == SLJIT_UNUSED)) {
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI && !(src2 & SLJIT_MEM))
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32 && !(src2 & SLJIT_MEM))
             return SLJIT_SUCCESS;
         dst_r = TMP_REG2;
     }
@@ -1143,7 +1143,7 @@
     else if (FAST_IS_REG(dst)) {
         dst_r = dst;
         flags |= REG_DEST;
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             sugg_src2_r = dst_r;
     }
     else {
@@ -1178,7 +1178,7 @@
     if (FAST_IS_REG(src2)) {
         src2_r = src2;
         flags |= REG2_SOURCE;
-        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             dst_r = src2_r;
     }
     else if (src2 & SLJIT_IMM) {
@@ -1243,10 +1243,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-    sljit_si int_op = op & SLJIT_INT_OP;
+    sljit_s32 int_op = op & SLJIT_I32_OP;
 #endif


     CHECK_ERROR();
@@ -1293,12 +1293,12 @@
 #define EMIT_MOV(type, type_flags, type_cast) \
     emit_op(compiler, (src & SLJIT_IMM) ? SLJIT_MOV : type, flags | (type_flags), dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? type_cast srcw : srcw)


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si flags = GET_FLAGS(op) ? ALT_SET_FLAGS : 0;
-    sljit_si op_flags = GET_ALL_FLAGS(op);
+    sljit_s32 flags = GET_FLAGS(op) ? ALT_SET_FLAGS : 0;
+    sljit_s32 op_flags = GET_ALL_FLAGS(op);


     CHECK_ERROR();
     CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
@@ -1312,7 +1312,7 @@
     if (op_flags & SLJIT_SET_O)
         FAIL_IF(push_inst(compiler, MTXER | S(TMP_ZERO)));


-    if (op_flags & SLJIT_INT_OP) {
+    if (op_flags & SLJIT_I32_OP) {
         if (op < SLJIT_NOT) {
             if (FAST_IS_REG(src) && src == dst) {
                 if (!TYPE_CAST_NEEDED(op))
@@ -1319,14 +1319,14 @@
                     return SLJIT_SUCCESS;
             }
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-            if (op == SLJIT_MOV_SI && (src & SLJIT_MEM))
-                op = SLJIT_MOV_UI;
-            if (op == SLJIT_MOVU_SI && (src & SLJIT_MEM))
-                op = SLJIT_MOVU_UI;
-            if (op == SLJIT_MOV_UI && (src & SLJIT_IMM))
-                op = SLJIT_MOV_SI;
-            if (op == SLJIT_MOVU_UI && (src & SLJIT_IMM))
-                op = SLJIT_MOVU_SI;
+            if (op == SLJIT_MOV_S32 && (src & SLJIT_MEM))
+                op = SLJIT_MOV_U32;
+            if (op == SLJIT_MOVU_S32 && (src & SLJIT_MEM))
+                op = SLJIT_MOVU_U32;
+            if (op == SLJIT_MOV_U32 && (src & SLJIT_IMM))
+                op = SLJIT_MOV_S32;
+            if (op == SLJIT_MOVU_U32 && (src & SLJIT_IMM))
+                op = SLJIT_MOVU_S32;
 #endif
         }
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
@@ -1334,7 +1334,7 @@
             /* Most operations expect sign extended arguments. */
             flags |= INT_DATA | SIGNED_DATA;
             if (src & SLJIT_IMM)
-                srcw = (sljit_si)srcw;
+                srcw = (sljit_s32)srcw;
         }
 #endif
     }
@@ -1343,58 +1343,58 @@
     case SLJIT_MOV:
     case SLJIT_MOV_P:
 #if (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32)
-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
 #endif
         return emit_op(compiler, SLJIT_MOV, flags | WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-    case SLJIT_MOV_UI:
-        return EMIT_MOV(SLJIT_MOV_UI, INT_DATA, (sljit_ui));
+    case SLJIT_MOV_U32:
+        return EMIT_MOV(SLJIT_MOV_U32, INT_DATA, (sljit_u32));


-    case SLJIT_MOV_SI:
-        return EMIT_MOV(SLJIT_MOV_SI, INT_DATA | SIGNED_DATA, (sljit_si));
+    case SLJIT_MOV_S32:
+        return EMIT_MOV(SLJIT_MOV_S32, INT_DATA | SIGNED_DATA, (sljit_s32));
 #endif


-    case SLJIT_MOV_UB:
-        return EMIT_MOV(SLJIT_MOV_UB, BYTE_DATA, (sljit_ub));
+    case SLJIT_MOV_U8:
+        return EMIT_MOV(SLJIT_MOV_U8, BYTE_DATA, (sljit_u8));


-    case SLJIT_MOV_SB:
-        return EMIT_MOV(SLJIT_MOV_SB, BYTE_DATA | SIGNED_DATA, (sljit_sb));
+    case SLJIT_MOV_S8:
+        return EMIT_MOV(SLJIT_MOV_S8, BYTE_DATA | SIGNED_DATA, (sljit_s8));


-    case SLJIT_MOV_UH:
-        return EMIT_MOV(SLJIT_MOV_UH, HALF_DATA, (sljit_uh));
+    case SLJIT_MOV_U16:
+        return EMIT_MOV(SLJIT_MOV_U16, HALF_DATA, (sljit_u16));


-    case SLJIT_MOV_SH:
-        return EMIT_MOV(SLJIT_MOV_SH, HALF_DATA | SIGNED_DATA, (sljit_sh));
+    case SLJIT_MOV_S16:
+        return EMIT_MOV(SLJIT_MOV_S16, HALF_DATA | SIGNED_DATA, (sljit_s16));


     case SLJIT_MOVU:
     case SLJIT_MOVU_P:
 #if (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32)
-    case SLJIT_MOVU_UI:
-    case SLJIT_MOVU_SI:
+    case SLJIT_MOVU_U32:
+    case SLJIT_MOVU_S32:
 #endif
         return emit_op(compiler, SLJIT_MOV, flags | WORD_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-    case SLJIT_MOVU_UI:
-        return EMIT_MOV(SLJIT_MOV_UI, INT_DATA | WRITE_BACK, (sljit_ui));
+    case SLJIT_MOVU_U32:
+        return EMIT_MOV(SLJIT_MOV_U32, INT_DATA | WRITE_BACK, (sljit_u32));


-    case SLJIT_MOVU_SI:
-        return EMIT_MOV(SLJIT_MOV_SI, INT_DATA | SIGNED_DATA | WRITE_BACK, (sljit_si));
+    case SLJIT_MOVU_S32:
+        return EMIT_MOV(SLJIT_MOV_S32, INT_DATA | SIGNED_DATA | WRITE_BACK, (sljit_s32));
 #endif


-    case SLJIT_MOVU_UB:
-        return EMIT_MOV(SLJIT_MOV_UB, BYTE_DATA | WRITE_BACK, (sljit_ub));
+    case SLJIT_MOVU_U8:
+        return EMIT_MOV(SLJIT_MOV_U8, BYTE_DATA | WRITE_BACK, (sljit_u8));


-    case SLJIT_MOVU_SB:
-        return EMIT_MOV(SLJIT_MOV_SB, BYTE_DATA | SIGNED_DATA | WRITE_BACK, (sljit_sb));
+    case SLJIT_MOVU_S8:
+        return EMIT_MOV(SLJIT_MOV_S8, BYTE_DATA | SIGNED_DATA | WRITE_BACK, (sljit_s8));


-    case SLJIT_MOVU_UH:
-        return EMIT_MOV(SLJIT_MOV_UH, HALF_DATA | WRITE_BACK, (sljit_uh));
+    case SLJIT_MOVU_U16:
+        return EMIT_MOV(SLJIT_MOV_U16, HALF_DATA | WRITE_BACK, (sljit_u16));


-    case SLJIT_MOVU_SH:
-        return EMIT_MOV(SLJIT_MOV_SH, HALF_DATA | SIGNED_DATA | WRITE_BACK, (sljit_sh));
+    case SLJIT_MOVU_S16:
+        return EMIT_MOV(SLJIT_MOV_S16, HALF_DATA | SIGNED_DATA | WRITE_BACK, (sljit_s16));


     case SLJIT_NOT:
         return emit_op(compiler, SLJIT_NOT, flags, dst, dstw, TMP_REG1, 0, src, srcw);
@@ -1404,7 +1404,7 @@


     case SLJIT_CLZ:
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-        return emit_op(compiler, SLJIT_CLZ, flags | (!(op_flags & SLJIT_INT_OP) ? 0 : ALT_FORM1), dst, dstw, TMP_REG1, 0, src, srcw);
+        return emit_op(compiler, SLJIT_CLZ, flags | (!(op_flags & SLJIT_I32_OP) ? 0 : ALT_FORM1), dst, dstw, TMP_REG1, 0, src, srcw);
 #else
         return emit_op(compiler, SLJIT_CLZ, flags, dst, dstw, TMP_REG1, 0, src, srcw);
 #endif
@@ -1448,12 +1448,12 @@
     ((src) & SLJIT_IMM)
 #endif


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si flags = GET_FLAGS(op) ? ALT_SET_FLAGS : 0;
+    sljit_s32 flags = GET_FLAGS(op) ? ALT_SET_FLAGS : 0;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -1467,13 +1467,13 @@
         src2 = TMP_ZERO;


 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-    if (op & SLJIT_INT_OP) {
+    if (op & SLJIT_I32_OP) {
         /* Most operations expect sign extended arguments. */
         flags |= INT_DATA | SIGNED_DATA;
         if (src1 & SLJIT_IMM)
-            src1w = (sljit_si)(src1w);
+            src1w = (sljit_s32)(src1w);
         if (src2 & SLJIT_IMM)
-            src2w = (sljit_si)(src2w);
+            src2w = (sljit_s32)(src2w);
         if (GET_FLAGS(op))
             flags |= ALT_SIGN_EXT;
     }
@@ -1549,7 +1549,7 @@
         }
         if (dst == SLJIT_UNUSED && (op & (SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S)) && !(op & (SLJIT_SET_O | SLJIT_SET_C))) {
             if (!(op & SLJIT_SET_U)) {
-                /* We know ALT_SIGN_EXT is set if it is an SLJIT_INT_OP on 64 bit systems. */
+                /* We know ALT_SIGN_EXT is set if it is an SLJIT_I32_OP on 64 bit systems. */
                 if (TEST_SL_IMM(src2, src2w)) {
                     compiler->imm = src2w & 0xffff;
                     return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM2, dst, dstw, src1, src1w, TMP_REG2, 0);
@@ -1560,7 +1560,7 @@
                 }
             }
             if (!(op & (SLJIT_SET_E | SLJIT_SET_S))) {
-                /* We know ALT_SIGN_EXT is set if it is an SLJIT_INT_OP on 64 bit systems. */
+                /* We know ALT_SIGN_EXT is set if it is an SLJIT_I32_OP on 64 bit systems. */
                 if (TEST_UL_IMM(src2, src2w)) {
                     compiler->imm = src2w & 0xffff;
                     return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG2, 0);
@@ -1579,7 +1579,7 @@
                 return emit_op(compiler, SLJIT_ADD, flags | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG2, 0);
             }
         }
-        /* We know ALT_SIGN_EXT is set if it is an SLJIT_INT_OP on 64 bit systems. */
+        /* We know ALT_SIGN_EXT is set if it is an SLJIT_I32_OP on 64 bit systems. */
         return emit_op(compiler, SLJIT_SUB, flags | (!(op & SLJIT_SET_U) ? 0 : ALT_FORM6), dst, dstw, src1, src1w, src2, src2w);


     case SLJIT_SUBC:
@@ -1587,7 +1587,7 @@


     case SLJIT_MUL:
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-        if (op & SLJIT_INT_OP)
+        if (op & SLJIT_I32_OP)
             flags |= ALT_FORM2;
 #endif
         if (!GET_FLAGS(op)) {
@@ -1643,7 +1643,7 @@
     case SLJIT_SHL:
     case SLJIT_LSHR:
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-        if (op & SLJIT_INT_OP)
+        if (op & SLJIT_I32_OP)
             flags |= ALT_FORM2;
 #endif
         if (src2 & SLJIT_IMM) {
@@ -1656,20 +1656,20 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_float_register_index(reg));
     return reg;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));
@@ -1681,7 +1681,7 @@
 /*  Floating point operators                                             */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
 #ifdef SLJIT_IS_FPU_AVAILABLE
     return SLJIT_IS_FPU_AVAILABLE;
@@ -1709,9 +1709,9 @@


#endif /* SLJIT_CONFIG_PPC_64 */

-static SLJIT_INLINE sljit_si sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (src & SLJIT_MEM) {
         /* We can ignore the temporary data store on the stack from caching point of view. */
@@ -1777,17 +1777,17 @@
     return push_inst(compiler, STFIWX | FS(TMP_FREG1) | A(dst & REG_MASK) | B(dstw));
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)


-    sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;


     if (src & SLJIT_IMM) {
         if (GET_OPCODE(op) == SLJIT_CONVD_FROMI)
-            srcw = (sljit_si)srcw;
+            srcw = (sljit_s32)srcw;
         FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
         src = TMP_REG1;
     }
@@ -1816,8 +1816,8 @@


#else

-    sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;
-    sljit_si invert_sign = 1;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG1;
+    sljit_s32 invert_sign = 1;


     if (src & SLJIT_IMM) {
         FAIL_IF(load_immediate(compiler, TMP_REG1, srcw ^ 0x80000000));
@@ -1855,9 +1855,9 @@
 #endif
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     if (src1 & SLJIT_MEM) {
         FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src1, src1w, src2, src2w));
@@ -1872,11 +1872,11 @@
     return push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2));
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     compiler->cache_arg = 0;
@@ -1924,12 +1924,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r, flags = 0;
+    sljit_s32 dst_r, flags = 0;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -2009,7 +2009,7 @@
 /*  Other instructions                                                   */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -2027,7 +2027,7 @@
     return emit_op(compiler, SLJIT_MOV, WORD_DATA, dst, dstw, TMP_REG1, 0, TMP_REG2, 0);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -2065,7 +2065,7 @@
     return label;
 }


-static sljit_ins get_bo_bi_flags(sljit_si type)
+static sljit_ins get_bo_bi_flags(sljit_s32 type)
 {
     switch (type) {
     case SLJIT_EQUAL:
@@ -2128,7 +2128,7 @@
     }
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     struct sljit_jump *jump;
     sljit_ins bo_bi_flags;
@@ -2160,10 +2160,10 @@
     return jump;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
     struct sljit_jump *jump = NULL;
-    sljit_si src_r;
+    sljit_s32 src_r;


     CHECK_ERROR();
     CHECK(check_sljit_emit_ijump(compiler, type, src, srcw));
@@ -2211,13 +2211,13 @@
 #define INVERT_BIT(dst) \
     FAIL_IF(push_inst(compiler, XORI | S(dst) | A(dst) | 0x1));


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
-    sljit_si reg, input_flags;
-    sljit_si flags = GET_ALL_FLAGS(op);
+    sljit_s32 reg, input_flags;
+    sljit_s32 flags = GET_ALL_FLAGS(op);
     sljit_sw original_dstw = dstw;


     CHECK_ERROR();
@@ -2235,7 +2235,7 @@
     if (op >= SLJIT_ADD && (src & SLJIT_MEM)) {
         ADJUST_LOCAL_OFFSET(src, srcw);
 #if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-        input_flags = (flags & SLJIT_INT_OP) ? INT_DATA : WORD_DATA;
+        input_flags = (flags & SLJIT_I32_OP) ? INT_DATA : WORD_DATA;
 #else
         input_flags = WORD_DATA;
 #endif
@@ -2333,7 +2333,7 @@
         if (op == SLJIT_MOV)
             input_flags = WORD_DATA;
         else {
-            op = SLJIT_MOV_UI;
+            op = SLJIT_MOV_U32;
             input_flags = INT_DATA;
         }
 #else
@@ -2352,10 +2352,10 @@
     return sljit_emit_op2(compiler, op | flags, dst, original_dstw, src, srcw, TMP_REG2, 0);
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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_;
-    sljit_si reg;
+    sljit_s32 reg;


     CHECK_ERROR_PTR();
     CHECK_PTR(check_sljit_emit_const(compiler, dst, dstw, init_value));


Modified: code/trunk/src/sljit/sljitNativeSPARC_32.c
===================================================================
--- code/trunk/src/sljit/sljitNativeSPARC_32.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeSPARC_32.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -24,7 +24,7 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */


-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst, sljit_sw imm)
+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));
@@ -35,15 +35,15 @@


#define ARG2(flags, src2) ((flags & SRC2_IMM) ? IMM(src2) : S2(src2))

-static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_si src1, sljit_sw src2)
+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_COMPILE_ASSERT(ICC_IS_SET == SET_FLAGS, icc_is_set_and_set_flags_must_be_the_same);


     switch (op) {
     case SLJIT_MOV:
-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
     case SLJIT_MOV_P:
         SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
         if (dst != src2)
@@ -50,11 +50,11 @@
             return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst));
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UB:
-    case SLJIT_MOV_SB:
+    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_UB)
+            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));
@@ -63,12 +63,12 @@
             SLJIT_ASSERT_STOP();
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UH:
-    case SLJIT_MOV_SH:
+    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_SH ? SRA : SRL) | D(dst) | S1(dst) | IMM(16), DR(dst));
+            return push_inst(compiler, (op == SLJIT_MOV_S16 ? SRA : SRL) | D(dst) | S1(dst) | IMM(16), DR(dst));
         }
         else if (dst != src2)
             SLJIT_ASSERT_STOP();
@@ -139,7 +139,7 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_const(struct sljit_compiler *compiler, sljit_si 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, 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));


Modified: code/trunk/src/sljit/sljitNativeSPARC_common.c
===================================================================
--- code/trunk/src/sljit/sljitNativeSPARC_common.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeSPARC_common.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -24,7 +24,7 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */


-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
 {
     return "SPARC" SLJIT_CPUINFO;
 }
@@ -31,7 +31,7 @@


 /* Length of an instruction word
    Both for sparc-32 and sparc-64 */
-typedef sljit_ui sljit_ins;
+typedef sljit_u32 sljit_ins;


 static void sparc_cache_flush(sljit_ins *from, sljit_ins *to)
 {
@@ -91,7 +91,7 @@
 #define TMP_FREG1    (0)
 #define TMP_FREG2    ((SLJIT_NUMBER_OF_FLOAT_REGISTERS + 1) << 1)


-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
     0, 8, 9, 10, 13, 29, 28, 27, 23, 22, 21, 20, 19, 18, 17, 16, 26, 25, 24, 14, 1, 11, 12, 15
 };


@@ -181,7 +181,7 @@

 /* dest_reg is the absolute name of the register
    Useful for reordering instructions in the delay slot. */
-static sljit_si push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_si delay_slot)
+static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
 {
     sljit_ins *ptr;
     SLJIT_ASSERT((delay_slot & DST_INS_MASK) == UNMOVABLE_INS
@@ -340,7 +340,7 @@
     SLJIT_ASSERT(!label);
     SLJIT_ASSERT(!jump);
     SLJIT_ASSERT(!const_);
-    SLJIT_ASSERT(code_ptr - code <= (sljit_si)compiler->size);
+    SLJIT_ASSERT(code_ptr - code <= (sljit_s32)compiler->size);


     jump = compiler->jumps;
     while (jump) {
@@ -418,9 +418,9 @@
 #include "sljitNativeSPARC_64.c"
 #endif


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -442,9 +442,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -454,7 +454,7 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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(check_sljit_emit_return(compiler, op, src, srcw));
@@ -478,7 +478,7 @@
 #define ARCH_32_64(a, b)    b
 #endif


-static SLJIT_CONST sljit_ins data_transfer_insts[16 + 4] = {
+static const sljit_ins data_transfer_insts[16 + 4] = {
/* u w s */ ARCH_32_64(OPC1(3) | OPC3(0x04) /* stw */, OPC1(3) | OPC3(0x0e) /* stx */),
/* u w l */ ARCH_32_64(OPC1(3) | OPC3(0x00) /* lduw */, OPC1(3) | OPC3(0x0b) /* ldx */),
/* u b s */ OPC1(3) | OPC3(0x05) /* stb */,
@@ -506,7 +506,7 @@
#undef ARCH_32_64

 /* Can perform an operation using at most 1 instruction. */
-static sljit_si getput_arg_fast(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     SLJIT_ASSERT(arg & SLJIT_MEM);


@@ -529,7 +529,7 @@
 /* See getput_arg below.
    Note: can_cache is called only for binary operators. Those
    operators always uses word arguments without write back. */
-static sljit_si can_cache(sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
     SLJIT_ASSERT((arg & SLJIT_MEM) && (next_arg & SLJIT_MEM));


@@ -549,9 +549,9 @@
}

 /* Emit the necessary instructions. See can_cache above. */
-static sljit_si getput_arg(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
-    sljit_si base, arg2, delay_slot;
+    sljit_s32 base, arg2, delay_slot;
     sljit_ins dest;


     SLJIT_ASSERT(arg & SLJIT_MEM);
@@ -613,7 +613,7 @@
     return push_inst(compiler, ADD | D(base) | S1(base) | S2(arg2), DR(base));
 }


-static SLJIT_INLINE sljit_si emit_op_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg, sljit_sw argw)
+static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg, sljit_sw argw)
 {
     if (getput_arg_fast(compiler, flags, reg, arg, argw))
         return compiler->error;
@@ -622,7 +622,7 @@
     return getput_arg(compiler, flags, reg, arg, argw, 0, 0);
 }


-static SLJIT_INLINE sljit_si emit_op_mem2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sljit_si arg2, sljit_sw arg2w)
+static SLJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg1, sljit_sw arg1w, sljit_s32 arg2, sljit_sw arg2w)
 {
     if (getput_arg_fast(compiler, flags, reg, arg1, arg1w))
         return compiler->error;
@@ -629,19 +629,19 @@
     return getput_arg(compiler, flags, reg, arg1, arg1w, arg2, arg2w);
 }


-static sljit_si emit_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     /* arg1 goes to TMP_REG1 or src reg
        arg2 goes to TMP_REG2, imm or src reg
        TMP_REG3 can be used for caching
        result goes to TMP_REG2, so put result can use TMP_REG1 and TMP_REG3. */
-    sljit_si dst_r = TMP_REG2;
-    sljit_si src1_r;
+    sljit_s32 dst_r = TMP_REG2;
+    sljit_s32 src1_r;
     sljit_sw src2_r = 0;
-    sljit_si sugg_src2_r = TMP_REG2;
+    sljit_s32 sugg_src2_r = TMP_REG2;


     if (!(flags & ALT_KEEP_CACHE)) {
         compiler->cache_arg = 0;
@@ -649,13 +649,13 @@
     }


     if (SLJIT_UNLIKELY(dst == SLJIT_UNUSED)) {
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI && !(src2 & SLJIT_MEM))
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32 && !(src2 & SLJIT_MEM))
             return SLJIT_SUCCESS;
     }
     else if (FAST_IS_REG(dst)) {
         dst_r = dst;
         flags |= REG_DEST;
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             sugg_src2_r = dst_r;
     }
     else if ((dst & SLJIT_MEM) && !getput_arg_fast(compiler, flags | ARG_TEST, TMP_REG1, dst, dstw))
@@ -705,7 +705,7 @@
     if (FAST_IS_REG(src2)) {
         src2_r = src2;
         flags |= REG2_SOURCE;
-        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             dst_r = src2_r;
     }
     else if (src2 & SLJIT_IMM) {
@@ -716,7 +716,7 @@
             }
             else {
                 src2_r = 0;
-                if ((op >= SLJIT_MOV && op <= SLJIT_MOVU_SI) && (dst & SLJIT_MEM))
+                if ((op >= SLJIT_MOV && op <= SLJIT_MOVU_S32) && (dst & SLJIT_MEM))
                     dst_r = 0;
             }
         }
@@ -758,7 +758,7 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op0(compiler, op));
@@ -804,11 +804,11 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si flags = GET_FLAGS(op) ? SET_FLAGS : 0;
+    sljit_s32 flags = GET_FLAGS(op) ? SET_FLAGS : 0;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
@@ -821,45 +821,45 @@
     case SLJIT_MOV_P:
         return emit_op(compiler, SLJIT_MOV, flags | WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_UI:
-        return emit_op(compiler, SLJIT_MOV_UI, flags | INT_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOV_U32:
+        return emit_op(compiler, SLJIT_MOV_U32, flags | INT_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_SI:
-        return emit_op(compiler, SLJIT_MOV_SI, flags | INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOV_S32:
+        return emit_op(compiler, SLJIT_MOV_S32, flags | INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, flags | BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub)srcw : srcw);
+    case SLJIT_MOV_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, flags | BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8)srcw : srcw);


-    case SLJIT_MOV_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, flags | BYTE_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb)srcw : srcw);
+    case SLJIT_MOV_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, flags | BYTE_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8)srcw : srcw);


-    case SLJIT_MOV_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, flags | HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh)srcw : srcw);
+    case SLJIT_MOV_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, flags | HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16)srcw : srcw);


-    case SLJIT_MOV_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, flags | HALF_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh)srcw : srcw);
+    case SLJIT_MOV_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, flags | HALF_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16)srcw : srcw);


     case SLJIT_MOVU:
     case SLJIT_MOVU_P:
         return emit_op(compiler, SLJIT_MOV, flags | WORD_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_UI:
-        return emit_op(compiler, SLJIT_MOV_UI, flags | INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOVU_U32:
+        return emit_op(compiler, SLJIT_MOV_U32, flags | INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_SI:
-        return emit_op(compiler, SLJIT_MOV_SI, flags | INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOVU_S32:
+        return emit_op(compiler, SLJIT_MOV_S32, flags | INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, flags | BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub)srcw : srcw);
+    case SLJIT_MOVU_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, flags | BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8)srcw : srcw);


-    case SLJIT_MOVU_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, flags | BYTE_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb)srcw : srcw);
+    case SLJIT_MOVU_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, flags | BYTE_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8)srcw : srcw);


-    case SLJIT_MOVU_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, flags | HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh)srcw : srcw);
+    case SLJIT_MOVU_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, flags | HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16)srcw : srcw);


-    case SLJIT_MOVU_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, flags | HALF_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh)srcw : srcw);
+    case SLJIT_MOVU_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, flags | HALF_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16)srcw : srcw);


     case SLJIT_NOT:
     case SLJIT_CLZ:
@@ -872,12 +872,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si flags = GET_FLAGS(op) ? SET_FLAGS : 0;
+    sljit_s32 flags = GET_FLAGS(op) ? SET_FLAGS : 0;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -914,20 +914,20 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_float_register_index(reg));
     return reg << 1;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));
@@ -939,7 +939,7 @@
 /*  Floating point operators                                             */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
 #ifdef SLJIT_IS_FPU_AVAILABLE
     return SLJIT_IS_FPU_AVAILABLE;
@@ -953,9 +953,9 @@
 #define SELECT_FOP(op, single, double) ((op & SLJIT_SINGLE_OP) ? single : double)
 #define FLOAT_TMP_MEM_OFFSET (22 * sizeof(sljit_sw))


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
     if (src & SLJIT_MEM) {
         FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src, srcw, dst, dstw));
@@ -978,16 +978,16 @@
     return emit_op_mem2(compiler, SINGLE_DATA, TMP_FREG1, dst, dstw, 0, 0);
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? (dst << 1) : TMP_FREG1;


     if (src & SLJIT_IMM) {
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
         if (GET_OPCODE(op) == SLJIT_CONVD_FROMI)
-            srcw = (sljit_si)srcw;
+            srcw = (sljit_s32)srcw;
 #endif
         FAIL_IF(load_immediate(compiler, TMP_REG1, srcw));
         src = TMP_REG1;
@@ -1008,9 +1008,9 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     if (src1 & SLJIT_MEM) {
         FAIL_IF(emit_op_mem2(compiler, FLOAT_DATA(op) | LOAD_DATA, TMP_FREG1, src1, src1w, src2, src2w));
@@ -1029,11 +1029,11 @@
     return push_inst(compiler, SELECT_FOP(op, FCMPS, FCMPD) | S1A(src1) | S2A(src2), FCC_IS_SET | MOVABLE_INS);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     compiler->cache_arg = 0;
@@ -1087,12 +1087,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r, flags = 0;
+    sljit_s32 dst_r, flags = 0;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -1176,7 +1176,7 @@
 /*  Other instructions                                                   */
 /* --------------------------------------------------------------------- */


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -1193,7 +1193,7 @@
     return emit_op_mem(compiler, WORD_DATA, TMP_LINK, dst, dstw);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -1231,7 +1231,7 @@
     return label;
 }


-static sljit_ins get_cc(sljit_si type)
+static sljit_ins get_cc(sljit_s32 type)
 {
     switch (type) {
     case SLJIT_EQUAL:
@@ -1286,7 +1286,7 @@
     }
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     struct sljit_jump *jump;


@@ -1332,10 +1332,10 @@
     return jump;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
     struct sljit_jump *jump = NULL;
-    sljit_si src_r;
+    sljit_s32 src_r;


     CHECK_ERROR();
     CHECK(check_sljit_emit_ijump(compiler, type, src, srcw));
@@ -1367,12 +1367,12 @@
     return push_inst(compiler, NOP, UNMOVABLE_INS);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
-    sljit_si reg, flags = (GET_FLAGS(op) ? SET_FLAGS : 0);
+    sljit_s32 reg, flags = (GET_FLAGS(op) ? SET_FLAGS : 0);


     CHECK_ERROR();
     CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type));
@@ -1412,9 +1412,9 @@
 #endif
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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)
 {
-    sljit_si reg;
+    sljit_s32 reg;
     struct sljit_const *const_;


     CHECK_ERROR_PTR();


Modified: code/trunk/src/sljit/sljitNativeTILEGX_64.c
===================================================================
--- code/trunk/src/sljit/sljitNativeTILEGX_64.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeTILEGX_64.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -49,7 +49,7 @@
 #define ADDR_TMP (SLJIT_NUMBER_OF_REGISTERS + 5)
 #define PIC_ADDR_REG TMP_REG2


-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 6] = {
     63, 0, 1, 2, 3, 4, 30, 31, 32, 33, 34, 54, 5, 16, 6, 7
 };


@@ -106,7 +106,7 @@
*/
#define CHECK_FLAGS(list) (!(flags & UNUSED_DEST) || (op & GET_FLAGS(~(list))))

-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char *sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char *sljit_get_platform_name(void)
 {
     return "TileGX" SLJIT_CPUINFO;
 }
@@ -307,7 +307,7 @@
 #define JOFF_X1(x) create_JumpOff_X1(x)
 #define BOFF_X1(x) create_BrOff_X1(x)


-static SLJIT_CONST tilegx_mnemonic data_transfer_insts[16] = {
+static const tilegx_mnemonic data_transfer_insts[16] = {
     /* u w s */ TILEGX_OPC_ST   /* st */,
     /* u w l */ TILEGX_OPC_LD   /* ld */,
     /* u b s */ TILEGX_OPC_ST1  /* st1 */,
@@ -327,7 +327,7 @@
 };


 #ifdef TILEGX_JIT_DEBUG
-static sljit_si push_inst_debug(struct sljit_compiler *compiler, sljit_ins ins, int line)
+static sljit_s32 push_inst_debug(struct sljit_compiler *compiler, sljit_ins ins, int line)
 {
     sljit_ins *ptr = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins));
     FAIL_IF(!ptr);
@@ -338,7 +338,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_inst_nodebug(struct sljit_compiler *compiler, sljit_ins ins)
+static sljit_s32 push_inst_nodebug(struct sljit_compiler *compiler, sljit_ins ins)
 {
     sljit_ins *ptr = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins));
     FAIL_IF(!ptr);
@@ -349,7 +349,7 @@


 #define push_inst(a, b) push_inst_debug(a, b, __LINE__)
 #else
-static sljit_si 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));
     FAIL_IF(!ptr);
@@ -557,7 +557,7 @@
     return match;
 }


-sljit_si assign_pipes()
+sljit_s32 assign_pipes()
 {
     unsigned long output_registers = 0;
     unsigned int i = 0;
@@ -621,7 +621,7 @@
     return bits;
 }


-static sljit_si update_buffer(struct sljit_compiler *compiler)
+static sljit_s32 update_buffer(struct sljit_compiler *compiler)
 {
     int i;
     int orig_index = inst_buf_index;
@@ -733,7 +733,7 @@
     SLJIT_ASSERT_STOP();
 }


-static sljit_si flush_buffer(struct sljit_compiler *compiler)
+static sljit_s32 flush_buffer(struct sljit_compiler *compiler)
 {
     while (inst_buf_index != 0) {
         FAIL_IF(update_buffer(compiler));
@@ -741,7 +741,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_4_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int op2, int op3, int line)
+static sljit_s32 push_4_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int op2, int op3, int line)
 {
     if (inst_buf_index == TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE)
         FAIL_IF(update_buffer(compiler));
@@ -761,7 +761,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_3_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int op2, int line)
+static sljit_s32 push_3_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int op2, int line)
 {
     if (inst_buf_index == TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE)
         FAIL_IF(update_buffer(compiler));
@@ -822,7 +822,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_2_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int line)
+static sljit_s32 push_2_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int op1, int line)
 {
     if (inst_buf_index == TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE)
         FAIL_IF(update_buffer(compiler));
@@ -867,7 +867,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_0_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int line)
+static sljit_s32 push_0_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int line)
 {
     if (inst_buf_index == TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE)
         FAIL_IF(update_buffer(compiler));
@@ -883,7 +883,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si push_jr_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int line)
+static sljit_s32 push_jr_buffer(struct sljit_compiler *compiler, tilegx_mnemonic opc, int op0, int line)
 {
     if (inst_buf_index == TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE)
         FAIL_IF(update_buffer(compiler));
@@ -1117,7 +1117,7 @@
     return code;
 }


-static sljit_si load_immediate(struct sljit_compiler *compiler, sljit_si dst_ar, sljit_sw imm)
+static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm)
{

     if (imm <= SIMM_16BIT_MAX && imm >= SIMM_16BIT_MIN)
@@ -1140,7 +1140,7 @@
     return SHL16INSLI(dst_ar, dst_ar, imm);
 }


-static sljit_si emit_const(struct sljit_compiler *compiler, sljit_si dst_ar, sljit_sw imm, int flush)
+static sljit_s32 emit_const(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm, int flush)
 {
     /* Should *not* be optimized as load_immediate, as pcre relocation
        mechanism will match this fixed 4-instruction pattern. */
@@ -1155,7 +1155,7 @@
     return SHL16INSLI(dst_ar, dst_ar, imm);
 }


-static sljit_si emit_const_64(struct sljit_compiler *compiler, sljit_si dst_ar, sljit_sw imm, int flush)
+static sljit_s32 emit_const_64(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm, int flush)
 {
     /* Should *not* be optimized as load_immediate, as pcre relocation
        mechanism will match this fixed 4-instruction pattern. */
@@ -1172,12 +1172,12 @@
     return SHL16INSLI(reg_map[dst_ar], reg_map[dst_ar], imm);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     sljit_ins base;
-    sljit_si i, tmp;
+    sljit_s32 i, tmp;


     CHECK_ERROR();
     CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -1222,9 +1222,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -1236,12 +1236,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si local_size;
+    sljit_s32 local_size;
     sljit_ins base;
-    sljit_si i, tmp;
-    sljit_si saveds;
+    sljit_s32 i, tmp;
+    sljit_s32 saveds;


     CHECK_ERROR();
     CHECK(check_sljit_emit_return(compiler, op, src, srcw));
@@ -1285,7 +1285,7 @@
 /* reg_ar is an absoulute register! */


 /* Can perform an operation using at most 1 instruction. */
-static sljit_si getput_arg_fast(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg_ar, sljit_si arg, sljit_sw argw)
+static sljit_s32 getput_arg_fast(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw)
 {
     SLJIT_ASSERT(arg & SLJIT_MEM);


@@ -1311,7 +1311,7 @@
 /* See getput_arg below.
    Note: can_cache is called only for binary operators. Those
    operators always uses word arguments without write back. */
-static sljit_si can_cache(sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 can_cache(sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
     SLJIT_ASSERT((arg & SLJIT_MEM) && (next_arg & SLJIT_MEM));


@@ -1337,9 +1337,9 @@
}

 /* Emit the necessary instructions. See can_cache above. */
-static sljit_si getput_arg(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg_ar, sljit_si arg, sljit_sw argw, sljit_si next_arg, sljit_sw next_argw)
+static sljit_s32 getput_arg(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw, sljit_s32 next_arg, sljit_sw next_argw)
 {
-    sljit_si tmp_ar, base;
+    sljit_s32 tmp_ar, base;


     SLJIT_ASSERT(arg & SLJIT_MEM);
     if (!(next_arg & SLJIT_MEM)) {
@@ -1530,7 +1530,7 @@
         return PB2(data_transfer_insts[flags & MEM_MASK], tmp_ar, reg_ar);
 }


-static SLJIT_INLINE sljit_si emit_op_mem(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg_ar, sljit_si arg, sljit_sw argw)
+static SLJIT_INLINE sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg_ar, sljit_s32 arg, sljit_sw argw)
 {
     if (getput_arg_fast(compiler, flags, reg_ar, arg, argw))
         return compiler->error;
@@ -1540,7 +1540,7 @@
     return getput_arg(compiler, flags, reg_ar, arg, argw, 0, 0);
 }


-static SLJIT_INLINE sljit_si emit_op_mem2(struct sljit_compiler *compiler, sljit_si flags, sljit_si reg, sljit_si arg1, sljit_sw arg1w, sljit_si arg2, sljit_sw arg2w)
+static SLJIT_INLINE sljit_s32 emit_op_mem2(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 reg, sljit_s32 arg1, sljit_sw arg1w, sljit_s32 arg2, sljit_sw arg2w)
 {
     if (getput_arg_fast(compiler, flags, reg, arg1, arg1w))
         return compiler->error;
@@ -1547,7 +1547,7 @@
     return getput_arg(compiler, flags, reg, arg1, arg1w, arg2, arg2w);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -1564,7 +1564,7 @@
     return emit_op_mem(compiler, WORD_DATA, RA, dst, dstw);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -1582,9 +1582,9 @@
     return JR(RA);
 }


-static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags, sljit_si dst, sljit_si src1, sljit_sw src2)
+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_si overflow_ra = 0;
+    sljit_s32 overflow_ra = 0;


     switch (GET_OPCODE(op)) {
     case SLJIT_MOV:
@@ -1594,11 +1594,11 @@
             return ADD(reg_map[dst], reg_map[src2], ZERO);
         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UI:
-    case SLJIT_MOV_SI:
+    case SLJIT_MOV_U32:
+    case SLJIT_MOV_S32:
         SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
         if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
-            if (op == SLJIT_MOV_SI)
+            if (op == SLJIT_MOV_S32)
                 return BFEXTS(reg_map[dst], reg_map[src2], 0, 31);


             return BFEXTU(reg_map[dst], reg_map[src2], 0, 31);
@@ -1609,11 +1609,11 @@


         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UB:
-    case SLJIT_MOV_SB:
+    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_SB)
+            if (op == SLJIT_MOV_S8)
                 return BFEXTS(reg_map[dst], reg_map[src2], 0, 7);


             return BFEXTU(reg_map[dst], reg_map[src2], 0, 7);
@@ -1624,11 +1624,11 @@


         return SLJIT_SUCCESS;


-    case SLJIT_MOV_UH:
-    case SLJIT_MOV_SH:
+    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)) {
-            if (op == SLJIT_MOV_SH)
+            if (op == SLJIT_MOV_S16)
                 return BFEXTS(reg_map[dst], reg_map[src2], 0, 15);


             return BFEXTU(reg_map[dst], reg_map[src2], 0, 15);
@@ -1956,16 +1956,16 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags, sljit_si dst, sljit_sw dstw, sljit_si src1, sljit_sw src1w, sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags, sljit_s32 dst, sljit_sw dstw, sljit_s32 src1, sljit_sw src1w, sljit_s32 src2, sljit_sw src2w)
 {
     /* arg1 goes to TMP_REG1 or src reg.
        arg2 goes to TMP_REG2, imm or src reg.
        TMP_REG3 can be used for caching.
        result goes to TMP_REG2, so put result can use TMP_REG1 and TMP_REG3. */
-    sljit_si dst_r = TMP_REG2;
-    sljit_si src1_r;
+    sljit_s32 dst_r = TMP_REG2;
+    sljit_s32 src1_r;
     sljit_sw src2_r = 0;
-    sljit_si sugg_src2_r = TMP_REG2;
+    sljit_s32 sugg_src2_r = TMP_REG2;


     if (!(flags & ALT_KEEP_CACHE)) {
         compiler->cache_arg = 0;
@@ -1973,7 +1973,7 @@
     }


     if (SLJIT_UNLIKELY(dst == SLJIT_UNUSED)) {
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI && !(src2 & SLJIT_MEM))
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32 && !(src2 & SLJIT_MEM))
             return SLJIT_SUCCESS;
         if (GET_FLAGS(op))
             flags |= UNUSED_DEST;
@@ -1980,7 +1980,7 @@
     } else if (FAST_IS_REG(dst)) {
         dst_r = dst;
         flags |= REG_DEST;
-        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             sugg_src2_r = dst_r;
     } else if ((dst & SLJIT_MEM) && !getput_arg_fast(compiler, flags | ARG_TEST, TMP_REG1_mapped, dst, dstw))
         flags |= SLOW_DEST;
@@ -2033,7 +2033,7 @@
     if (FAST_IS_REG(src2)) {
         src2_r = src2;
         flags |= REG2_SOURCE;
-        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_SI)
+        if (!(flags & REG_DEST) && op >= SLJIT_MOV && op <= SLJIT_MOVU_S32)
             dst_r = src2_r;
     } else if (src2 & SLJIT_IMM) {
         if (!(flags & SRC2_IMM)) {
@@ -2042,7 +2042,7 @@
                 src2_r = sugg_src2_r;
             } else {
                 src2_r = 0;
-                if ((op >= SLJIT_MOV && op <= SLJIT_MOVU_SI) && (dst & SLJIT_MEM))
+                if ((op >= SLJIT_MOV && op <= SLJIT_MOVU_S32) && (dst & SLJIT_MEM))
                     dst_r = 0;
             }
         }
@@ -2082,11 +2082,11 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op, sljit_si dst, sljit_sw dstw, sljit_si src, sljit_sw srcw, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src, sljit_sw srcw, sljit_s32 type)
 {
-    sljit_si sugg_dst_ar, dst_ar;
-    sljit_si flags = GET_ALL_FLAGS(op);
-    sljit_si mem_type = (op & SLJIT_INT_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA;
+    sljit_s32 sugg_dst_ar, dst_ar;
+    sljit_s32 flags = GET_ALL_FLAGS(op);
+    sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op_flags(compiler, op, dst, dstw, src, srcw, type));
@@ -2096,7 +2096,7 @@
         return SLJIT_SUCCESS;


     op = GET_OPCODE(op);
-    if (op == SLJIT_MOV_SI || op == SLJIT_MOV_UI)
+    if (op == SLJIT_MOV_S32 || op == SLJIT_MOV_U32)
         mem_type = INT_DATA | SIGNED_DATA;
     sugg_dst_ar = reg_map[(op < SLJIT_ADD && FAST_IS_REG(dst)) ? dst : TMP_REG2];


@@ -2168,7 +2168,7 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op) {
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op) {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op0(compiler, op));


@@ -2190,7 +2190,7 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op, sljit_si dst, sljit_sw dstw, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src, sljit_sw srcw)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op1(compiler, op, dst, dstw, src, srcw));
@@ -2202,45 +2202,45 @@
     case SLJIT_MOV_P:
         return emit_op(compiler, SLJIT_MOV, WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_UI:
-        return emit_op(compiler, SLJIT_MOV_UI, INT_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOV_U32:
+        return emit_op(compiler, SLJIT_MOV_U32, INT_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_SI:
-        return emit_op(compiler, SLJIT_MOV_SI, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOV_S32:
+        return emit_op(compiler, SLJIT_MOV_S32, INT_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOV_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub) srcw : srcw);
+    case SLJIT_MOV_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, BYTE_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8) srcw : srcw);


-    case SLJIT_MOV_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, BYTE_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb) srcw : srcw);
+    case SLJIT_MOV_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, BYTE_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8) srcw : srcw);


-    case SLJIT_MOV_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh) srcw : srcw);
+    case SLJIT_MOV_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, HALF_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16) srcw : srcw);


-    case SLJIT_MOV_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, HALF_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh) srcw : srcw);
+    case SLJIT_MOV_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, HALF_DATA | SIGNED_DATA, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16) srcw : srcw);


     case SLJIT_MOVU:
     case SLJIT_MOVU_P:
         return emit_op(compiler, SLJIT_MOV, WORD_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_UI:
-        return emit_op(compiler, SLJIT_MOV_UI, INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOVU_U32:
+        return emit_op(compiler, SLJIT_MOV_U32, INT_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_SI:
-        return emit_op(compiler, SLJIT_MOV_SI, INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);
+    case SLJIT_MOVU_S32:
+        return emit_op(compiler, SLJIT_MOV_S32, INT_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, srcw);


-    case SLJIT_MOVU_UB:
-        return emit_op(compiler, SLJIT_MOV_UB, BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_ub) srcw : srcw);
+    case SLJIT_MOVU_U8:
+        return emit_op(compiler, SLJIT_MOV_U8, BYTE_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u8) srcw : srcw);


-    case SLJIT_MOVU_SB:
-        return emit_op(compiler, SLJIT_MOV_SB, BYTE_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sb) srcw : srcw);
+    case SLJIT_MOVU_S8:
+        return emit_op(compiler, SLJIT_MOV_S8, BYTE_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s8) srcw : srcw);


-    case SLJIT_MOVU_UH:
-        return emit_op(compiler, SLJIT_MOV_UH, HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_uh) srcw : srcw);
+    case SLJIT_MOVU_U16:
+        return emit_op(compiler, SLJIT_MOV_U16, HALF_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_u16) srcw : srcw);


-    case SLJIT_MOVU_SH:
-        return emit_op(compiler, SLJIT_MOV_SH, HALF_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_sh) srcw : srcw);
+    case SLJIT_MOVU_S16:
+        return emit_op(compiler, SLJIT_MOV_S16, HALF_DATA | SIGNED_DATA | WRITE_BACK, dst, dstw, TMP_REG1, 0, src, (src & SLJIT_IMM) ? (sljit_s16) srcw : srcw);


     case SLJIT_NOT:
         return emit_op(compiler, op, 0, dst, dstw, TMP_REG1, 0, src, srcw);
@@ -2249,13 +2249,13 @@
         return emit_op(compiler, SLJIT_SUB | GET_ALL_FLAGS(op), IMM_OP, dst, dstw, SLJIT_IMM, 0, src, srcw);


     case SLJIT_CLZ:
-        return emit_op(compiler, op, (op & SLJIT_INT_OP) ? INT_DATA : WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
+        return emit_op(compiler, op, (op & SLJIT_I32_OP) ? INT_DATA : WORD_DATA, dst, dstw, TMP_REG1, 0, src, srcw);
     }


     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op, sljit_si dst, sljit_sw dstw, sljit_si src1, sljit_sw src1w, sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src1, sljit_sw src1w, sljit_s32 src2, sljit_sw src2w)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -2285,7 +2285,7 @@
     case SLJIT_ASHR:
         if (src2 & SLJIT_IMM)
             src2w &= 0x3f;
-        if (op & SLJIT_INT_OP)
+        if (op & SLJIT_I32_OP)
             src2w &= 0x1f;


         return emit_op(compiler, op, IMM_OP, dst, dstw, src1, src1w, src2, src2w);
@@ -2312,9 +2312,9 @@
     return label;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
-    sljit_si src_r = TMP_REG2;
+    sljit_s32 src_r = TMP_REG2;
     struct sljit_jump *jump = NULL;


     flush_buffer(compiler);
@@ -2401,11 +2401,11 @@
     inst = BNEZ_X1 | SRCA_X1(src); \
     flags = IS_COND;


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump * sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump * sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
     struct sljit_jump *jump;
     sljit_ins inst;
-    sljit_si flags = 0;
+    sljit_s32 flags = 0;


     flush_buffer(compiler);


@@ -2485,25 +2485,25 @@
     return jump;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
     return 0;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op, sljit_si dst, sljit_sw dstw, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src, sljit_sw srcw)
 {
     SLJIT_ASSERT_STOP();
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op, sljit_si dst, sljit_sw dstw, sljit_si src1, sljit_sw src1w, sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src1, sljit_sw src1w, sljit_s32 src2, sljit_sw src2w)
 {
     SLJIT_ASSERT_STOP();
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const * sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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_;
-    sljit_si reg;
+    sljit_s32 reg;


     flush_buffer(compiler);


@@ -2545,14 +2545,14 @@
     SLJIT_CACHE_FLUSH(inst, inst + 4);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));


Modified: code/trunk/src/sljit/sljitNativeX86_32.c
===================================================================
--- code/trunk/src/sljit/sljitNativeX86_32.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeX86_32.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -26,11 +26,11 @@


/* x86 32-bit arch dependent functions. */

-static sljit_si emit_do_imm(struct sljit_compiler *compiler, sljit_ub opcode, sljit_sw imm)
+static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw));
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw));
     FAIL_IF(!inst);
     INC_SIZE(1 + sizeof(sljit_sw));
     *inst++ = opcode;
@@ -38,7 +38,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type)
+static sljit_u8* generate_far_jump_code(struct sljit_jump *jump, sljit_u8 *code_ptr, sljit_s32 type)
 {
     if (type == SLJIT_JUMP) {
         *code_ptr++ = JMP_i32;
@@ -63,12 +63,12 @@
     return code_ptr;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si size;
-    sljit_ub *inst;
+    sljit_s32 size;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -83,7 +83,7 @@
 #else
     size += (args > 0 ? (2 + args * 3) : 0);
 #endif
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
     FAIL_IF(!inst);


     INC_SIZE(size);
@@ -143,7 +143,7 @@
     if (options & SLJIT_DOUBLE_ALIGNMENT) {
         local_size = SLJIT_LOCALS_OFFSET + ((local_size + 7) & ~7);


-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 17);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 17);
         FAIL_IF(!inst);


         INC_SIZE(17);
@@ -183,9 +183,9 @@
         SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, local_size);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -205,10 +205,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si size;
-    sljit_ub *inst;
+    sljit_s32 size;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_return(compiler, op, src, srcw));
@@ -223,7 +223,7 @@


 #if !defined(__APPLE__)
     if (compiler->options & SLJIT_DOUBLE_ALIGNMENT) {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 3);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 3);
         FAIL_IF(!inst);


         INC_SIZE(3);
@@ -242,7 +242,7 @@
     if (compiler->args > 0)
         size += 2;
 #endif
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
     FAIL_IF(!inst);


     INC_SIZE(size);
@@ -271,16 +271,16 @@
 /* --------------------------------------------------------------------- */


 /* Size contains the flags as well. */
-static sljit_ub* emit_x86_instruction(struct sljit_compiler *compiler, sljit_si size,
+static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_s32 size,
     /* The register or immediate operand. */
-    sljit_si a, sljit_sw imma,
+    sljit_s32 a, sljit_sw imma,
     /* The general operand (not immediate). */
-    sljit_si b, sljit_sw immb)
+    sljit_s32 b, sljit_sw immb)
 {
-    sljit_ub *inst;
-    sljit_ub *buf_ptr;
-    sljit_si flags = size & ~0xf;
-    sljit_si inst_size;
+    sljit_u8 *inst;
+    sljit_u8 *buf_ptr;
+    sljit_s32 flags = size & ~0xf;
+    sljit_s32 inst_size;


     /* Both cannot be switched on. */
     SLJIT_ASSERT((flags & (EX86_BIN_INS | EX86_SHIFT_INS)) != (EX86_BIN_INS | EX86_SHIFT_INS));
@@ -310,7 +310,7 @@
         else if (immb != 0 && !(b & OFFS_REG_MASK)) {
             /* Immediate operand. */
             if (immb <= 127 && immb >= -128)
-                inst_size += sizeof(sljit_sb);
+                inst_size += sizeof(sljit_s8);
             else
                 inst_size += sizeof(sljit_sw);
         }
@@ -347,7 +347,7 @@
     else
         SLJIT_ASSERT(!(flags & EX86_SHIFT_INS) || a == SLJIT_PREF_SHIFT_REG);


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + inst_size);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + inst_size);
     PTR_FAIL_IF(!inst);


     /* Encoding the byte. */
@@ -438,12 +438,12 @@
 /*  Call / return instructions                                           */
 /* --------------------------------------------------------------------- */


-static SLJIT_INLINE sljit_si call_with_args(struct sljit_compiler *compiler, sljit_si type)
+static SLJIT_INLINE sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 type)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


 #if (defined SLJIT_X86_32_FASTCALL && SLJIT_X86_32_FASTCALL)
-    inst = (sljit_ub*)ensure_buf(compiler, type >= SLJIT_CALL3 ? 1 + 2 + 1 : 1 + 2);
+    inst = (sljit_u8*)ensure_buf(compiler, type >= SLJIT_CALL3 ? 1 + 2 + 1 : 1 + 2);
     FAIL_IF(!inst);
     INC_SIZE(type >= SLJIT_CALL3 ? 2 + 1 : 2);


@@ -452,7 +452,7 @@
     *inst++ = MOV_r_rm;
     *inst++ = MOD_REG | (reg_map[SLJIT_R2] << 3) | reg_map[SLJIT_R0];
 #else
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 4 * (type - SLJIT_CALL0));
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 4 * (type - SLJIT_CALL0));
     FAIL_IF(!inst);
     INC_SIZE(4 * (type - SLJIT_CALL0));


@@ -476,9 +476,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -492,7 +492,7 @@


     if (FAST_IS_REG(dst)) {
         /* Unused dest is possible here. */
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
         FAIL_IF(!inst);


         INC_SIZE(1);
@@ -507,9 +507,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -518,7 +518,7 @@
     CHECK_EXTRA_REGS(src, srcw, (void)0);


     if (FAST_IS_REG(src)) {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + 1);
         FAIL_IF(!inst);


         INC_SIZE(1 + 1);
@@ -530,13 +530,13 @@
         *inst++ = GROUP_FF;
         *inst |= PUSH_rm;


-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
         FAIL_IF(!inst);
         INC_SIZE(1);
     }
     else {
         /* SLJIT_IMM. */
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 5 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 5 + 1);
         FAIL_IF(!inst);


         INC_SIZE(5 + 1);


Modified: code/trunk/src/sljit/sljitNativeX86_64.c
===================================================================
--- code/trunk/src/sljit/sljitNativeX86_64.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeX86_64.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -26,11 +26,11 @@


/* x86 64-bit arch dependent functions. */

-static sljit_si emit_load_imm64(struct sljit_compiler *compiler, sljit_si reg, sljit_sw imm)
+static sljit_s32 emit_load_imm64(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_sw));
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_sw));
     FAIL_IF(!inst);
     INC_SIZE(2 + sizeof(sljit_sw));
     *inst++ = REX_W | ((reg_map[reg] <= 7) ? 0 : REX_B);
@@ -39,7 +39,7 @@
     return SLJIT_SUCCESS;
 }


-static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type)
+static sljit_u8* generate_far_jump_code(struct sljit_jump *jump, sljit_u8 *code_ptr, sljit_s32 type)
 {
     if (type < SLJIT_JUMP) {
         /* Invert type. */
@@ -65,9 +65,9 @@
     return code_ptr;
 }


-static sljit_ub* generate_fixed_jump(sljit_ub *code_ptr, sljit_sw addr, sljit_si type)
+static sljit_u8* generate_fixed_jump(sljit_u8 *code_ptr, sljit_sw addr, sljit_s32 type)
 {
-    sljit_sw delta = addr - ((sljit_sw)code_ptr + 1 + sizeof(sljit_si));
+    sljit_sw delta = addr - ((sljit_sw)code_ptr + 1 + sizeof(sljit_s32));


     if (delta <= HALFWORD_MAX && delta >= HALFWORD_MIN) {
         *code_ptr++ = (type == 2) ? CALL_i32 : JMP_i32;
@@ -87,12 +87,12 @@
     return code_ptr;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_enter(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si i, tmp, size, saved_register_size;
-    sljit_ub *inst;
+    sljit_s32 i, tmp, size, saved_register_size;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_enter(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -106,7 +106,7 @@
     tmp = saveds < SLJIT_NUMBER_OF_SAVED_REGISTERS ? (SLJIT_S0 + 1 - saveds) : SLJIT_FIRST_SAVED_REG;
     for (i = SLJIT_S0; i >= tmp; i--) {
         size = reg_map[i] >= 8 ? 2 : 1;
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
         FAIL_IF(!inst);
         INC_SIZE(size);
         if (reg_map[i] >= 8)
@@ -116,7 +116,7 @@


     for (i = scratches; i >= SLJIT_FIRST_SAVED_REG; i--) {
         size = reg_map[i] >= 8 ? 2 : 1;
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
         FAIL_IF(!inst);
         INC_SIZE(size);
         if (reg_map[i] >= 8)
@@ -126,7 +126,7 @@


     if (args > 0) {
         size = args * 3;
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
         FAIL_IF(!inst);


         INC_SIZE(size);
@@ -172,9 +172,9 @@
 #ifdef _WIN64
     if (local_size > 1024) {
         /* Allocate stack for the callback, which grows the stack. */
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 4 + (3 + sizeof(sljit_si)));
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 4 + (3 + sizeof(sljit_s32)));
         FAIL_IF(!inst);
-        INC_SIZE(4 + (3 + sizeof(sljit_si)));
+        INC_SIZE(4 + (3 + sizeof(sljit_s32)));
         *inst++ = REX_W;
         *inst++ = GROUP_BINARY_83;
         *inst++ = MOD_REG | SUB | 4;
@@ -193,7 +193,7 @@
         *inst++ = REX_W;
         *inst++ = MOV_rm_i32;
         *inst++ = MOD_REG | reg_lmap[SLJIT_R0];
-        *(sljit_si*)inst = local_size;
+        *(sljit_s32*)inst = local_size;
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
             || (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
         compiler->skip_checks = 1;
@@ -204,7 +204,7 @@


     SLJIT_ASSERT(local_size > 0);
     if (local_size <= 127) {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 4);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 4);
         FAIL_IF(!inst);
         INC_SIZE(4);
         *inst++ = REX_W;
@@ -213,24 +213,24 @@
         *inst++ = local_size;
     }
     else {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 7);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 7);
         FAIL_IF(!inst);
         INC_SIZE(7);
         *inst++ = REX_W;
         *inst++ = GROUP_BINARY_81;
         *inst++ = MOD_REG | SUB | 4;
-        *(sljit_si*)inst = local_size;
-        inst += sizeof(sljit_si);
+        *(sljit_s32*)inst = local_size;
+        inst += sizeof(sljit_s32);
     }


 #ifdef _WIN64
     /* Save xmm6 register: movaps [rsp + 0x20], xmm6 */
     if (fscratches >= 6 || fsaveds >= 1) {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 5);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 5);
         FAIL_IF(!inst);
         INC_SIZE(5);
         *inst++ = GROUP_0F;
-        *(sljit_si*)inst = 0x20247429;
+        *(sljit_s32*)inst = 0x20247429;
     }
 #endif


@@ -237,11 +237,11 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_set_context(struct sljit_compiler *compiler,
-    sljit_si options, sljit_si args, sljit_si scratches, sljit_si saveds,
-    sljit_si fscratches, sljit_si fsaveds, sljit_si local_size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_set_context(struct sljit_compiler *compiler,
+    sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds,
+    sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size)
 {
-    sljit_si saved_register_size;
+    sljit_s32 saved_register_size;


     CHECK_ERROR();
     CHECK(check_sljit_set_context(compiler, options, args, scratches, saveds, fscratches, fsaveds, local_size));
@@ -253,10 +253,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_return(struct sljit_compiler *compiler, sljit_si op, sljit_si 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)
 {
-    sljit_si i, tmp, size;
-    sljit_ub *inst;
+    sljit_s32 i, tmp, size;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_return(compiler, op, src, srcw));
@@ -267,17 +267,17 @@
 #ifdef _WIN64
     /* Restore xmm6 register: movaps xmm6, [rsp + 0x20] */
     if (compiler->fscratches >= 6 || compiler->fsaveds >= 1) {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 5);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 5);
         FAIL_IF(!inst);
         INC_SIZE(5);
         *inst++ = GROUP_0F;
-        *(sljit_si*)inst = 0x20247428;
+        *(sljit_s32*)inst = 0x20247428;
     }
 #endif


     SLJIT_ASSERT(compiler->local_size > 0);
     if (compiler->local_size <= 127) {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 4);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 4);
         FAIL_IF(!inst);
         INC_SIZE(4);
         *inst++ = REX_W;
@@ -286,19 +286,19 @@
         *inst = compiler->local_size;
     }
     else {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 7);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 7);
         FAIL_IF(!inst);
         INC_SIZE(7);
         *inst++ = REX_W;
         *inst++ = GROUP_BINARY_81;
         *inst++ = MOD_REG | ADD | 4;
-        *(sljit_si*)inst = compiler->local_size;
+        *(sljit_s32*)inst = compiler->local_size;
     }


     tmp = compiler->scratches;
     for (i = SLJIT_FIRST_SAVED_REG; i <= tmp; i++) {
         size = reg_map[i] >= 8 ? 2 : 1;
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
         FAIL_IF(!inst);
         INC_SIZE(size);
         if (reg_map[i] >= 8)
@@ -309,7 +309,7 @@
     tmp = compiler->saveds < SLJIT_NUMBER_OF_SAVED_REGISTERS ? (SLJIT_S0 + 1 - compiler->saveds) : SLJIT_FIRST_SAVED_REG;
     for (i = tmp; i <= SLJIT_S0; i++) {
         size = reg_map[i] >= 8 ? 2 : 1;
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
         FAIL_IF(!inst);
         INC_SIZE(size);
         if (reg_map[i] >= 8)
@@ -317,7 +317,7 @@
         POP_REG(reg_lmap[i]);
     }


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
     FAIL_IF(!inst);
     INC_SIZE(1);
     RET();
@@ -328,32 +328,32 @@
 /*  Operators                                                            */
 /* --------------------------------------------------------------------- */


-static sljit_si emit_do_imm32(struct sljit_compiler *compiler, sljit_ub rex, sljit_ub opcode, sljit_sw imm)
+static sljit_s32 emit_do_imm32(struct sljit_compiler *compiler, sljit_u8 rex, sljit_u8 opcode, sljit_sw imm)
 {
-    sljit_ub *inst;
-    sljit_si length = 1 + (rex ? 1 : 0) + sizeof(sljit_si);
+    sljit_u8 *inst;
+    sljit_s32 length = 1 + (rex ? 1 : 0) + sizeof(sljit_s32);


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + length);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + length);
     FAIL_IF(!inst);
     INC_SIZE(length);
     if (rex)
         *inst++ = rex;
     *inst++ = opcode;
-    *(sljit_si*)inst = imm;
+    *(sljit_s32*)inst = imm;
     return SLJIT_SUCCESS;
 }


-static sljit_ub* emit_x86_instruction(struct sljit_compiler *compiler, sljit_si size,
+static sljit_u8* emit_x86_instruction(struct sljit_compiler *compiler, sljit_s32 size,
     /* The register or immediate operand. */
-    sljit_si a, sljit_sw imma,
+    sljit_s32 a, sljit_sw imma,
     /* The general operand (not immediate). */
-    sljit_si b, sljit_sw immb)
+    sljit_s32 b, sljit_sw immb)
 {
-    sljit_ub *inst;
-    sljit_ub *buf_ptr;
-    sljit_ub rex = 0;
-    sljit_si flags = size & ~0xf;
-    sljit_si inst_size;
+    sljit_u8 *inst;
+    sljit_u8 *buf_ptr;
+    sljit_u8 rex = 0;
+    sljit_s32 flags = size & ~0xf;
+    sljit_s32 inst_size;


     /* The immediate operand must be 32 bit. */
     SLJIT_ASSERT(!(a & SLJIT_IMM) || compiler->mode32 || IS_HALFWORD(imma));
@@ -400,7 +400,7 @@
         }


         if ((b & REG_MASK) == SLJIT_UNUSED)
-            inst_size += 1 + sizeof(sljit_si); /* SIB byte required to avoid RIP based addressing. */
+            inst_size += 1 + sizeof(sljit_s32); /* SIB byte required to avoid RIP based addressing. */
         else {
             if (reg_map[b & REG_MASK] >= 8)
                 rex |= REX_B;
@@ -408,12 +408,12 @@
             if (immb != 0 && (!(b & OFFS_REG_MASK) || (b & OFFS_REG_MASK) == TO_OFFS_REG(SLJIT_SP))) {
                 /* Immediate operand. */
                 if (immb <= 127 && immb >= -128)
-                    inst_size += sizeof(sljit_sb);
+                    inst_size += sizeof(sljit_s8);
                 else
-                    inst_size += sizeof(sljit_si);
+                    inst_size += sizeof(sljit_s32);
             }
             else if (reg_lmap[b & REG_MASK] == 5)
-                inst_size += sizeof(sljit_sb);
+                inst_size += sizeof(sljit_s8);


             if ((b & OFFS_REG_MASK) != SLJIT_UNUSED) {
                 inst_size += 1; /* SIB byte. */
@@ -444,7 +444,7 @@
         else if (flags & EX86_HALF_ARG)
             inst_size += sizeof(short);
         else
-            inst_size += sizeof(sljit_si);
+            inst_size += sizeof(sljit_s32);
     }
     else {
         SLJIT_ASSERT(!(flags & EX86_SHIFT_INS) || a == SLJIT_PREF_SHIFT_REG);
@@ -456,7 +456,7 @@
     if (rex)
         inst_size++;


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + inst_size);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + inst_size);
     PTR_FAIL_IF(!inst);


     /* Encoding the byte. */
@@ -516,8 +516,8 @@
                 if (immb <= 127 && immb >= -128)
                     *buf_ptr++ = immb; /* 8 bit displacement. */
                 else {
-                    *(sljit_si*)buf_ptr = immb; /* 32 bit displacement. */
-                    buf_ptr += sizeof(sljit_si);
+                    *(sljit_s32*)buf_ptr = immb; /* 32 bit displacement. */
+                    buf_ptr += sizeof(sljit_s32);
                 }
             }
         }
@@ -533,8 +533,8 @@
     else {
         *buf_ptr++ |= 0x04;
         *buf_ptr++ = 0x25;
-        *(sljit_si*)buf_ptr = immb; /* 32 bit displacement. */
-        buf_ptr += sizeof(sljit_si);
+        *(sljit_s32*)buf_ptr = immb; /* 32 bit displacement. */
+        buf_ptr += sizeof(sljit_s32);
     }


     if (a & SLJIT_IMM) {
@@ -543,7 +543,7 @@
         else if (flags & EX86_HALF_ARG)
             *(short*)buf_ptr = imma;
         else if (!(flags & EX86_SHIFT_INS))
-            *(sljit_si*)buf_ptr = imma;
+            *(sljit_s32*)buf_ptr = imma;
     }


     return !(flags & EX86_SHIFT_INS) ? inst : (inst + 1);
@@ -553,14 +553,14 @@
 /*  Call / return instructions                                           */
 /* --------------------------------------------------------------------- */


-static SLJIT_INLINE sljit_si call_with_args(struct sljit_compiler *compiler, sljit_si type)
+static SLJIT_INLINE sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 type)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


 #ifndef _WIN64
     SLJIT_COMPILE_ASSERT(reg_map[SLJIT_R1] == 6 && reg_map[SLJIT_R0] < 8 && reg_map[SLJIT_R2] < 8, args_registers);


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + ((type < SLJIT_CALL3) ? 3 : 6));
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + ((type < SLJIT_CALL3) ? 3 : 6));
     FAIL_IF(!inst);
     INC_SIZE((type < SLJIT_CALL3) ? 3 : 6);
     if (type >= SLJIT_CALL3) {
@@ -574,7 +574,7 @@
 #else
     SLJIT_COMPILE_ASSERT(reg_map[SLJIT_R1] == 2 && reg_map[SLJIT_R0] < 8 && reg_map[SLJIT_R2] < 8, args_registers);


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + ((type < SLJIT_CALL3) ? 3 : 6));
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + ((type < SLJIT_CALL3) ? 3 : 6));
     FAIL_IF(!inst);
     INC_SIZE((type < SLJIT_CALL3) ? 3 : 6);
     if (type >= SLJIT_CALL3) {
@@ -589,9 +589,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_enter(compiler, dst, dstw));
@@ -603,7 +603,7 @@


     if (FAST_IS_REG(dst)) {
         if (reg_map[dst] < 8) {
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
             FAIL_IF(!inst);
             INC_SIZE(1);
             POP_REG(reg_lmap[dst]);
@@ -610,7 +610,7 @@
             return SLJIT_SUCCESS;
         }


-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 2);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 2);
         FAIL_IF(!inst);
         INC_SIZE(2);
         *inst++ = REX_B;
@@ -626,9 +626,9 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fast_return(struct sljit_compiler *compiler, sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fast_return(compiler, src, srcw));
@@ -641,7 +641,7 @@


     if (FAST_IS_REG(src)) {
         if (reg_map[src] < 8) {
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 1 + 1);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + 1);
             FAIL_IF(!inst);


             INC_SIZE(1 + 1);
@@ -648,7 +648,7 @@
             PUSH_REG(reg_lmap[src]);
         }
         else {
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 2 + 1);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + 1);
             FAIL_IF(!inst);


             INC_SIZE(2 + 1);
@@ -664,7 +664,7 @@
         *inst++ = GROUP_FF;
         *inst |= PUSH_rm;


-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
         FAIL_IF(!inst);
         INC_SIZE(1);
     }
@@ -671,13 +671,13 @@
     else {
         SLJIT_ASSERT(IS_HALFWORD(srcw));
         /* SLJIT_IMM. */
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 5 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 5 + 1);
         FAIL_IF(!inst);


         INC_SIZE(5 + 1);
         *inst++ = PUSH_i32;
-        *(sljit_si*)inst = srcw;
-        inst += sizeof(sljit_si);
+        *(sljit_s32*)inst = srcw;
+        inst += sizeof(sljit_s32);
     }


     RET();
@@ -689,12 +689,12 @@
 /*  Extend input                                                         */
 /* --------------------------------------------------------------------- */


-static sljit_si emit_mov_int(struct sljit_compiler *compiler, sljit_si sign,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static sljit_s32 emit_mov_int(struct sljit_compiler *compiler, sljit_s32 sign,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
-    sljit_si dst_r;
+    sljit_u8* inst;
+    sljit_s32 dst_r;


     compiler->mode32 = 0;


@@ -704,7 +704,7 @@
     if (src & SLJIT_IMM) {
         if (FAST_IS_REG(dst)) {
             if (sign || ((sljit_uw)srcw <= 0x7fffffff)) {
-                inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_si)srcw, dst, dstw);
+                inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_s32)srcw, dst, dstw);
                 FAIL_IF(!inst);
                 *inst = MOV_rm_i32;
                 return SLJIT_SUCCESS;
@@ -712,7 +712,7 @@
             return emit_load_imm64(compiler, dst, srcw);
         }
         compiler->mode32 = 1;
-        inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_si)srcw, dst, dstw);
+        inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_s32)srcw, dst, dstw);
         FAIL_IF(!inst);
         *inst = MOV_rm_i32;
         compiler->mode32 = 0;


Modified: code/trunk/src/sljit/sljitNativeX86_common.c
===================================================================
--- code/trunk/src/sljit/sljitNativeX86_common.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitNativeX86_common.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -24,7 +24,7 @@
  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */


-SLJIT_API_FUNC_ATTRIBUTE SLJIT_CONST char* sljit_get_platform_name(void)
+SLJIT_API_FUNC_ATTRIBUTE const char* sljit_get_platform_name(void)
 {
     return "x86" SLJIT_CPUINFO;
 }
@@ -66,7 +66,7 @@
 /* Last register + 1. */
 #define TMP_REG1    (SLJIT_NUMBER_OF_REGISTERS + 2)


-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 3] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 3] = {
     0, 0, 2, 1, 0, 0, 0, 0, 7, 6, 3, 4, 5
 };


@@ -89,20 +89,20 @@
    therefore r12 is better for SAVED_EREG than SAVED_REG. */
 #ifndef _WIN64
 /* 1st passed in rdi, 2nd argument passed in rsi, 3rd in rdx. */
-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 5] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 5] = {
     0, 0, 6, 1, 8, 11, 10, 12, 5, 13, 14, 15, 3, 4, 2, 7, 9
 };
 /* low-map. reg_map & 0x7. */
-static SLJIT_CONST sljit_ub reg_lmap[SLJIT_NUMBER_OF_REGISTERS + 5] = {
+static const sljit_u8 reg_lmap[SLJIT_NUMBER_OF_REGISTERS + 5] = {
     0, 0, 6, 1, 0, 3,  2,  4,  5,  5,  6,  7, 3, 4, 2, 7, 1
 };
 #else
 /* 1st passed in rcx, 2nd argument passed in rdx, 3rd in r8. */
-static SLJIT_CONST sljit_ub reg_map[SLJIT_NUMBER_OF_REGISTERS + 5] = {
+static const sljit_u8 reg_map[SLJIT_NUMBER_OF_REGISTERS + 5] = {
     0, 0, 2, 1, 11, 12, 5, 13, 14, 15, 7, 6, 3, 4, 10, 8, 9
 };
 /* low-map. reg_map & 0x7. */
-static SLJIT_CONST sljit_ub reg_lmap[SLJIT_NUMBER_OF_REGISTERS + 5] = {
+static const sljit_u8 reg_lmap[SLJIT_NUMBER_OF_REGISTERS + 5] = {
     0, 0, 2, 1, 3,  4,  5,  5, 6,  7,  7, 6, 3, 4, 2,  0, 1
 };
 #endif
@@ -269,9 +269,9 @@
    built-in CPU features. Therefore they can be overwritten by different threads
    if they detect the CPU features in the same time. */
 #if (defined SLJIT_DETECT_SSE2 && SLJIT_DETECT_SSE2)
-static sljit_si cpu_has_sse2 = -1;
+static sljit_s32 cpu_has_sse2 = -1;
 #endif
-static sljit_si cpu_has_cmov = -1;
+static sljit_s32 cpu_has_cmov = -1;


#ifdef _WIN32_WCE
#include <cmnintrin.h>
@@ -281,13 +281,13 @@

 static void get_cpu_features(void)
 {
-    sljit_ui features;
+    sljit_u32 features;


#if defined(_MSC_VER) && _MSC_VER >= 1400

     int CPUInfo[4];
     __cpuid(CPUInfo, 1);
-    features = (sljit_ui)CPUInfo[3];
+    features = (sljit_u32)CPUInfo[3];


#elif defined(__GNUC__) || defined(__INTEL_COMPILER) || defined(__SUNPRO_C)

@@ -330,7 +330,7 @@
     cpu_has_cmov = (features >> 15) & 0x1;
 }


-static sljit_ub get_jump_code(sljit_si type)
+static sljit_u8 get_jump_code(sljit_s32 type)
 {
     switch (type) {
     case SLJIT_EQUAL:
@@ -386,15 +386,15 @@
     return 0;
 }


-static sljit_ub* generate_far_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_si type);
+static sljit_u8* generate_far_jump_code(struct sljit_jump *jump, sljit_u8 *code_ptr, sljit_s32 type);

#if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-static sljit_ub* generate_fixed_jump(sljit_ub *code_ptr, sljit_sw addr, sljit_si type);
+static sljit_u8* generate_fixed_jump(sljit_u8 *code_ptr, sljit_sw addr, sljit_s32 type);
#endif

-static sljit_ub* generate_near_jump_code(struct sljit_jump *jump, sljit_ub *code_ptr, sljit_ub *code, sljit_si type)
+static sljit_u8* generate_near_jump_code(struct sljit_jump *jump, sljit_u8 *code_ptr, sljit_u8 *code, sljit_s32 type)
 {
-    sljit_si short_jump;
+    sljit_s32 short_jump;
     sljit_uw label_addr;


     if (jump->flags & JUMP_LABEL)
@@ -432,13 +432,13 @@


     if (short_jump) {
         jump->flags |= PATCH_MB;
-        code_ptr += sizeof(sljit_sb);
+        code_ptr += sizeof(sljit_s8);
     } else {
         jump->flags |= PATCH_MW;
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
         code_ptr += sizeof(sljit_sw);
 #else
-        code_ptr += sizeof(sljit_si);
+        code_ptr += sizeof(sljit_s32);
 #endif
     }


@@ -448,11 +448,11 @@
 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler)
 {
     struct sljit_memory_fragment *buf;
-    sljit_ub *code;
-    sljit_ub *code_ptr;
-    sljit_ub *buf_ptr;
-    sljit_ub *buf_end;
-    sljit_ub len;
+    sljit_u8 *code;
+    sljit_u8 *code_ptr;
+    sljit_u8 *buf_ptr;
+    sljit_u8 *buf_end;
+    sljit_u8 len;


     struct sljit_label *label;
     struct sljit_jump *jump;
@@ -463,7 +463,7 @@
     reverse_buf(compiler);


     /* Second code generation pass. */
-    code = (sljit_ub*)SLJIT_MALLOC_EXEC(compiler->size);
+    code = (sljit_u8*)SLJIT_MALLOC_EXEC(compiler->size);
     PTR_FAIL_WITH_EXEC_IF(code);
     buf = compiler->buf;


@@ -526,15 +526,15 @@
     jump = compiler->jumps;
     while (jump) {
         if (jump->flags & PATCH_MB) {
-            SLJIT_ASSERT((sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_sb))) >= -128 && (sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_sb))) <= 127);
-            *(sljit_ub*)jump->addr = (sljit_ub)(jump->u.label->addr - (jump->addr + sizeof(sljit_sb)));
+            SLJIT_ASSERT((sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_s8))) >= -128 && (sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_s8))) <= 127);
+            *(sljit_u8*)jump->addr = (sljit_u8)(jump->u.label->addr - (jump->addr + sizeof(sljit_s8)));
         } else if (jump->flags & PATCH_MW) {
             if (jump->flags & JUMP_LABEL) {
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
                 *(sljit_sw*)jump->addr = (sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_sw)));
 #else
-                SLJIT_ASSERT((sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_si))) >= HALFWORD_MIN && (sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_si))) <= HALFWORD_MAX);
-                *(sljit_si*)jump->addr = (sljit_si)(jump->u.label->addr - (jump->addr + sizeof(sljit_si)));
+                SLJIT_ASSERT((sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_s32))) >= HALFWORD_MIN && (sljit_sw)(jump->u.label->addr - (jump->addr + sizeof(sljit_s32))) <= HALFWORD_MAX);
+                *(sljit_s32*)jump->addr = (sljit_s32)(jump->u.label->addr - (jump->addr + sizeof(sljit_s32)));
 #endif
             }
             else {
@@ -541,8 +541,8 @@
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
                 *(sljit_sw*)jump->addr = (sljit_sw)(jump->u.target - (jump->addr + sizeof(sljit_sw)));
 #else
-                SLJIT_ASSERT((sljit_sw)(jump->u.target - (jump->addr + sizeof(sljit_si))) >= HALFWORD_MIN && (sljit_sw)(jump->u.target - (jump->addr + sizeof(sljit_si))) <= HALFWORD_MAX);
-                *(sljit_si*)jump->addr = (sljit_si)(jump->u.target - (jump->addr + sizeof(sljit_si)));
+                SLJIT_ASSERT((sljit_sw)(jump->u.target - (jump->addr + sizeof(sljit_s32))) >= HALFWORD_MIN && (sljit_sw)(jump->u.target - (jump->addr + sizeof(sljit_s32))) <= HALFWORD_MAX);
+                *(sljit_s32*)jump->addr = (sljit_s32)(jump->u.target - (jump->addr + sizeof(sljit_s32)));
 #endif
             }
         }
@@ -565,32 +565,32 @@
 /*  Operators                                                            */
 /* --------------------------------------------------------------------- */


-static sljit_si emit_cum_binary(struct sljit_compiler *compiler,
-    sljit_ub op_rm, sljit_ub op_mr, sljit_ub op_imm, sljit_ub op_eax_imm,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w);
+static sljit_s32 emit_cum_binary(struct sljit_compiler *compiler,
+    sljit_u8 op_rm, sljit_u8 op_mr, sljit_u8 op_imm, sljit_u8 op_eax_imm,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w);


-static sljit_si emit_non_cum_binary(struct sljit_compiler *compiler,
-    sljit_ub op_rm, sljit_ub op_mr, sljit_ub op_imm, sljit_ub op_eax_imm,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w);
+static sljit_s32 emit_non_cum_binary(struct sljit_compiler *compiler,
+    sljit_u8 op_rm, sljit_u8 op_mr, sljit_u8 op_imm, sljit_u8 op_eax_imm,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w);


-static sljit_si emit_mov(struct sljit_compiler *compiler,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw);
+static sljit_s32 emit_mov(struct sljit_compiler *compiler,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw);


-static SLJIT_INLINE sljit_si emit_save_flags(struct sljit_compiler *compiler)
+static SLJIT_INLINE sljit_s32 emit_save_flags(struct sljit_compiler *compiler)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 5);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 5);
     FAIL_IF(!inst);
     INC_SIZE(5);
 #else
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 6);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 6);
     FAIL_IF(!inst);
     INC_SIZE(6);
     *inst++ = REX_W;
@@ -598,23 +598,23 @@
     *inst++ = LEA_r_m; /* lea esp/rsp, [esp/rsp + sizeof(sljit_sw)] */
     *inst++ = 0x64;
     *inst++ = 0x24;
-    *inst++ = (sljit_ub)sizeof(sljit_sw);
+    *inst++ = (sljit_u8)sizeof(sljit_sw);
     *inst++ = PUSHF;
     compiler->flags_saved = 1;
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_restore_flags(struct sljit_compiler *compiler, sljit_si keep_flags)
+static SLJIT_INLINE sljit_s32 emit_restore_flags(struct sljit_compiler *compiler, sljit_s32 keep_flags)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 5);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 5);
     FAIL_IF(!inst);
     INC_SIZE(5);
     *inst++ = POPF;
 #else
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 6);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 6);
     FAIL_IF(!inst);
     INC_SIZE(6);
     *inst++ = POPF;
@@ -623,7 +623,7 @@
     *inst++ = LEA_r_m; /* lea esp/rsp, [esp/rsp - sizeof(sljit_sw)] */
     *inst++ = 0x64;
     *inst++ = 0x24;
-    *inst++ = (sljit_ub)-(sljit_sb)sizeof(sljit_sw);
+    *inst++ = (sljit_u8)(-(sljit_s8)sizeof(sljit_sw));
     compiler->flags_saved = keep_flags;
     return SLJIT_SUCCESS;
 }
@@ -640,7 +640,7 @@
     CPU cycles if the stack is large enough. However, you don't know it in
     advance, so it must always be called. I think this is a bad design in
     general even if it has some reasons. */
-    *(volatile sljit_si*)alloca(local_size) = 0;
+    *(volatile sljit_s32*)alloca(local_size) = 0;
 }


#endif
@@ -651,11 +651,11 @@
#include "sljitNativeX86_64.c"
#endif

-static sljit_si emit_mov(struct sljit_compiler *compiler,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static sljit_s32 emit_mov(struct sljit_compiler *compiler,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


     if (dst == SLJIT_UNUSED) {
         /* No destination, doesn't need to setup flags. */
@@ -719,11 +719,11 @@
 #define EMIT_MOV(compiler, dst, dstw, src, srcw) \
     FAIL_IF(emit_mov(compiler, dst, dstw, src, srcw));


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op0(struct sljit_compiler *compiler, sljit_si op)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op0(struct sljit_compiler *compiler, sljit_s32 op)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-    sljit_si size;
+    sljit_s32 size;
 #endif


     CHECK_ERROR();
@@ -731,13 +731,13 @@


     switch (GET_OPCODE(op)) {
     case SLJIT_BREAKPOINT:
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
         FAIL_IF(!inst);
         INC_SIZE(1);
         *inst = INT3;
         break;
     case SLJIT_NOP:
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
         FAIL_IF(!inst);
         INC_SIZE(1);
         *inst = NOP;
@@ -763,7 +763,7 @@
             && reg_map[TMP_REG1] == 2,
             invalid_register_assignment_for_div_mul);
 #endif
-        compiler->mode32 = op & SLJIT_INT_OP;
+        compiler->mode32 = op & SLJIT_I32_OP;
 #endif
         SLJIT_COMPILE_ASSERT((SLJIT_UDIVMOD & 0x2) == 0 && SLJIT_UDIVI - 0x2 == SLJIT_UDIVMOD, bad_div_opcode_assignments);


@@ -785,18 +785,18 @@
#endif

 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
             FAIL_IF(!inst);
             INC_SIZE(1);
             *inst = CDQ;
 #else
             if (compiler->mode32) {
-                inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+                inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
                 FAIL_IF(!inst);
                 INC_SIZE(1);
                 *inst = CDQ;
             } else {
-                inst = (sljit_ub*)ensure_buf(compiler, 1 + 2);
+                inst = (sljit_u8*)ensure_buf(compiler, 1 + 2);
                 FAIL_IF(!inst);
                 INC_SIZE(2);
                 *inst++ = REX_W;
@@ -806,7 +806,7 @@
         }


 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 2);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 2);
         FAIL_IF(!inst);
         INC_SIZE(2);
         *inst++ = GROUP_F7;
@@ -817,7 +817,7 @@
 #else
         size = (!compiler->mode32) ? 3 : 2;
 #endif
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
         FAIL_IF(!inst);
         INC_SIZE(size);
 #ifdef _WIN64
@@ -865,20 +865,20 @@


 #define ENCODE_PREFIX(prefix) \
     do { \
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1); \
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1); \
         FAIL_IF(!inst); \
         INC_SIZE(1); \
         *inst = (prefix); \
     } while (0)


-static sljit_si emit_mov_byte(struct sljit_compiler *compiler, sljit_si sign,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static sljit_s32 emit_mov_byte(struct sljit_compiler *compiler, sljit_s32 sign,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
-    sljit_si dst_r;
+    sljit_u8* inst;
+    sljit_s32 dst_r;
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-    sljit_si work_r;
+    sljit_s32 work_r;
 #endif


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
@@ -1016,12 +1016,12 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_mov_half(struct sljit_compiler *compiler, sljit_si sign,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static sljit_s32 emit_mov_half(struct sljit_compiler *compiler, sljit_s32 sign,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
-    sljit_si dst_r;
+    sljit_u8* inst;
+    sljit_s32 dst_r;


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
     compiler->mode32 = 0;
@@ -1067,11 +1067,11 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_unary(struct sljit_compiler *compiler, sljit_ub opcode,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static sljit_s32 emit_unary(struct sljit_compiler *compiler, sljit_u8 opcode,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


     if (dst == SLJIT_UNUSED) {
         EMIT_MOV(compiler, TMP_REG1, 0, src, srcw);
@@ -1106,11 +1106,11 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_not_with_flags(struct sljit_compiler *compiler,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static sljit_s32 emit_not_with_flags(struct sljit_compiler *compiler,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


     if (dst == SLJIT_UNUSED) {
         EMIT_MOV(compiler, TMP_REG1, 0, src, srcw);
@@ -1146,12 +1146,12 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_clz(struct sljit_compiler *compiler, sljit_si op_flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static sljit_s32 emit_clz(struct sljit_compiler *compiler, sljit_s32 op_flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
-    sljit_si dst_r;
+    sljit_u8* inst;
+    sljit_s32 dst_r;


     SLJIT_UNUSED_ARG(op_flags);
     if (SLJIT_UNLIKELY(dst == SLJIT_UNUSED)) {
@@ -1164,7 +1164,7 @@
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
         inst = emit_x86_instruction(compiler, 1 | EX86_SHIFT_INS, SLJIT_IMM, 31, TMP_REG1, 0);
 #else
-        inst = emit_x86_instruction(compiler, 1 | EX86_SHIFT_INS, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 63 : 31, TMP_REG1, 0);
+        inst = emit_x86_instruction(compiler, 1 | EX86_SHIFT_INS, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? 63 : 31, TMP_REG1, 0);
 #endif
         FAIL_IF(!inst);
         *inst |= SHR;
@@ -1199,8 +1199,8 @@
 #else
     dst_r = FAST_IS_REG(dst) ? dst : TMP_REG2;
     compiler->mode32 = 0;
-    EMIT_MOV(compiler, dst_r, 0, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 64 + 63 : 32 + 31);
-    compiler->mode32 = op_flags & SLJIT_INT_OP;
+    EMIT_MOV(compiler, dst_r, 0, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? 64 + 63 : 32 + 31);
+    compiler->mode32 = op_flags & SLJIT_I32_OP;
 #endif


     if (cpu_has_cmov == -1)
@@ -1213,7 +1213,7 @@
         *inst = CMOVNE_r_rm;
     } else {
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 4);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 4);
         FAIL_IF(!inst);
         INC_SIZE(4);


@@ -1222,7 +1222,7 @@
         *inst++ = MOV_r_rm;
         *inst++ = MOD_REG | (reg_map[dst_r] << 3) | reg_map[TMP_REG1];
 #else
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 5);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 5);
         FAIL_IF(!inst);
         INC_SIZE(5);


@@ -1237,7 +1237,7 @@
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
     inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, 31, dst_r, 0);
 #else
-    inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 63 : 31, dst_r, 0);
+    inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? 63 : 31, dst_r, 0);
 #endif
     FAIL_IF(!inst);
     *(inst + 1) |= XOR;
@@ -1255,16 +1255,16 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
-    sljit_si update = 0;
-    sljit_si op_flags = GET_ALL_FLAGS(op);
+    sljit_u8* inst;
+    sljit_s32 update = 0;
+    sljit_s32 op_flags = GET_ALL_FLAGS(op);
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-    sljit_si dst_is_ereg = 0;
-    sljit_si src_is_ereg = 0;
+    sljit_s32 dst_is_ereg = 0;
+    sljit_s32 src_is_ereg = 0;
 #else
 #    define src_is_ereg 0
 #endif
@@ -1277,7 +1277,7 @@
     CHECK_EXTRA_REGS(dst, dstw, dst_is_ereg = 1);
     CHECK_EXTRA_REGS(src, srcw, src_is_ereg = 1);
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-    compiler->mode32 = op_flags & SLJIT_INT_OP;
+    compiler->mode32 = op_flags & SLJIT_I32_OP;
 #endif


     op = GET_OPCODE(op);
@@ -1286,20 +1286,20 @@
         compiler->mode32 = 0;
 #endif


-        if (op_flags & SLJIT_INT_OP) {
+        if (op_flags & SLJIT_I32_OP) {
             if (FAST_IS_REG(src) && src == dst) {
                 if (!TYPE_CAST_NEEDED(op))
                     return SLJIT_SUCCESS;
             }
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-            if (op == SLJIT_MOV_SI && (src & SLJIT_MEM))
-                op = SLJIT_MOV_UI;
-            if (op == SLJIT_MOVU_SI && (src & SLJIT_MEM))
-                op = SLJIT_MOVU_UI;
-            if (op == SLJIT_MOV_UI && (src & SLJIT_IMM))
-                op = SLJIT_MOV_SI;
-            if (op == SLJIT_MOVU_UI && (src & SLJIT_IMM))
-                op = SLJIT_MOVU_SI;
+            if (op == SLJIT_MOV_S32 && (src & SLJIT_MEM))
+                op = SLJIT_MOV_U32;
+            if (op == SLJIT_MOVU_S32 && (src & SLJIT_MEM))
+                op = SLJIT_MOVU_U32;
+            if (op == SLJIT_MOV_U32 && (src & SLJIT_IMM))
+                op = SLJIT_MOV_S32;
+            if (op == SLJIT_MOVU_U32 && (src & SLJIT_IMM))
+                op = SLJIT_MOVU_S32;
 #endif
         }


@@ -1311,24 +1311,24 @@

         if (src & SLJIT_IMM) {
             switch (op) {
-            case SLJIT_MOV_UB:
-                srcw = (sljit_ub)srcw;
+            case SLJIT_MOV_U8:
+                srcw = (sljit_u8)srcw;
                 break;
-            case SLJIT_MOV_SB:
-                srcw = (sljit_sb)srcw;
+            case SLJIT_MOV_S8:
+                srcw = (sljit_s8)srcw;
                 break;
-            case SLJIT_MOV_UH:
-                srcw = (sljit_uh)srcw;
+            case SLJIT_MOV_U16:
+                srcw = (sljit_u16)srcw;
                 break;
-            case SLJIT_MOV_SH:
-                srcw = (sljit_sh)srcw;
+            case SLJIT_MOV_S16:
+                srcw = (sljit_s16)srcw;
                 break;
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-            case SLJIT_MOV_UI:
-                srcw = (sljit_ui)srcw;
+            case SLJIT_MOV_U32:
+                srcw = (sljit_u32)srcw;
                 break;
-            case SLJIT_MOV_SI:
-                srcw = (sljit_si)srcw;
+            case SLJIT_MOV_S32:
+                srcw = (sljit_s32)srcw;
                 break;
 #endif
             }
@@ -1347,7 +1347,7 @@
         }


 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-        if (SLJIT_UNLIKELY(dst_is_ereg) && (!(op == SLJIT_MOV || op == SLJIT_MOV_UI || op == SLJIT_MOV_SI || op == SLJIT_MOV_P) || (src & SLJIT_MEM))) {
+        if (SLJIT_UNLIKELY(dst_is_ereg) && (!(op == SLJIT_MOV || op == SLJIT_MOV_U32 || op == SLJIT_MOV_S32 || op == SLJIT_MOV_P) || (src & SLJIT_MEM))) {
             SLJIT_ASSERT(dst == SLJIT_MEM1(SLJIT_SP));
             dst = TMP_REG1;
         }
@@ -1357,28 +1357,28 @@
         case SLJIT_MOV:
         case SLJIT_MOV_P:
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
-        case SLJIT_MOV_UI:
-        case SLJIT_MOV_SI:
+        case SLJIT_MOV_U32:
+        case SLJIT_MOV_S32:
 #endif
             FAIL_IF(emit_mov(compiler, dst, dstw, src, srcw));
             break;
-        case SLJIT_MOV_UB:
+        case SLJIT_MOV_U8:
             FAIL_IF(emit_mov_byte(compiler, 0, dst, dstw, src, srcw));
             break;
-        case SLJIT_MOV_SB:
+        case SLJIT_MOV_S8:
             FAIL_IF(emit_mov_byte(compiler, 1, dst, dstw, src, srcw));
             break;
-        case SLJIT_MOV_UH:
+        case SLJIT_MOV_U16:
             FAIL_IF(emit_mov_half(compiler, 0, dst, dstw, src, srcw));
             break;
-        case SLJIT_MOV_SH:
+        case SLJIT_MOV_S16:
             FAIL_IF(emit_mov_half(compiler, 1, dst, dstw, src, srcw));
             break;
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-        case SLJIT_MOV_UI:
+        case SLJIT_MOV_U32:
             FAIL_IF(emit_mov_int(compiler, 0, dst, dstw, src, srcw));
             break;
-        case SLJIT_MOV_SI:
+        case SLJIT_MOV_S32:
             FAIL_IF(emit_mov_int(compiler, 1, dst, dstw, src, srcw));
             break;
 #endif
@@ -1454,13 +1454,13 @@


#endif

-static sljit_si emit_cum_binary(struct sljit_compiler *compiler,
-    sljit_ub op_rm, sljit_ub op_mr, sljit_ub op_imm, sljit_ub op_eax_imm,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_cum_binary(struct sljit_compiler *compiler,
+    sljit_u8 op_rm, sljit_u8 op_mr, sljit_u8 op_imm, sljit_u8 op_eax_imm,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


     if (dst == SLJIT_UNUSED) {
         EMIT_MOV(compiler, TMP_REG1, 0, src1, src1w);
@@ -1570,13 +1570,13 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_non_cum_binary(struct sljit_compiler *compiler,
-    sljit_ub op_rm, sljit_ub op_mr, sljit_ub op_imm, sljit_ub op_eax_imm,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_non_cum_binary(struct sljit_compiler *compiler,
+    sljit_u8 op_rm, sljit_u8 op_mr, sljit_u8 op_imm, sljit_u8 op_eax_imm,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


     if (dst == SLJIT_UNUSED) {
         EMIT_MOV(compiler, TMP_REG1, 0, src1, src1w);
@@ -1652,13 +1652,13 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_mul(struct sljit_compiler *compiler,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_mul(struct sljit_compiler *compiler,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_ub* inst;
-    sljit_si dst_r;
+    sljit_u8* inst;
+    sljit_s32 dst_r;


     dst_r = FAST_IS_REG(dst) ? dst : TMP_REG1;


@@ -1686,10 +1686,10 @@
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, src2, src2w);
             FAIL_IF(!inst);
             *inst = IMUL_r_rm_i8;
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
             FAIL_IF(!inst);
             INC_SIZE(1);
-            *inst = (sljit_sb)src1w;
+            *inst = (sljit_s8)src1w;
         }
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
         else {
@@ -1696,7 +1696,7 @@
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, src2, src2w);
             FAIL_IF(!inst);
             *inst = IMUL_r_rm_i32;
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 4);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 4);
             FAIL_IF(!inst);
             INC_SIZE(4);
             *(sljit_sw*)inst = src1w;
@@ -1706,10 +1706,10 @@
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, src2, src2w);
             FAIL_IF(!inst);
             *inst = IMUL_r_rm_i32;
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 4);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 4);
             FAIL_IF(!inst);
             INC_SIZE(4);
-            *(sljit_si*)inst = (sljit_si)src1w;
+            *(sljit_s32*)inst = (sljit_s32)src1w;
         }
         else {
             EMIT_MOV(compiler, TMP_REG2, 0, SLJIT_IMM, src1w);
@@ -1729,10 +1729,10 @@
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, src1, src1w);
             FAIL_IF(!inst);
             *inst = IMUL_r_rm_i8;
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 1);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 1);
             FAIL_IF(!inst);
             INC_SIZE(1);
-            *inst = (sljit_sb)src2w;
+            *inst = (sljit_s8)src2w;
         }
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
         else {
@@ -1739,7 +1739,7 @@
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, src1, src1w);
             FAIL_IF(!inst);
             *inst = IMUL_r_rm_i32;
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 4);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 4);
             FAIL_IF(!inst);
             INC_SIZE(4);
             *(sljit_sw*)inst = src2w;
@@ -1749,10 +1749,10 @@
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, src1, src1w);
             FAIL_IF(!inst);
             *inst = IMUL_r_rm_i32;
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 4);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 4);
             FAIL_IF(!inst);
             INC_SIZE(4);
-            *(sljit_si*)inst = (sljit_si)src2w;
+            *(sljit_s32*)inst = (sljit_s32)src2w;
         }
         else {
             EMIT_MOV(compiler, TMP_REG2, 0, SLJIT_IMM, src2w);
@@ -1782,13 +1782,13 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_lea_binary(struct sljit_compiler *compiler, sljit_si keep_flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_lea_binary(struct sljit_compiler *compiler, sljit_s32 keep_flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_ub* inst;
-    sljit_si dst_r, done = 0;
+    sljit_u8* inst;
+    sljit_s32 dst_r, done = 0;


     /* These cases better be left to handled by normal way. */
     if (!keep_flags) {
@@ -1809,7 +1809,7 @@
         }
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
         if ((src2 & SLJIT_IMM) && (compiler->mode32 || IS_HALFWORD(src2w))) {
-            inst = emit_x86_instruction(compiler, 1, dst_r, 0, SLJIT_MEM1(src1), (sljit_si)src2w);
+            inst = emit_x86_instruction(compiler, 1, dst_r, 0, SLJIT_MEM1(src1), (sljit_s32)src2w);
 #else
         if (src2 & SLJIT_IMM) {
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, SLJIT_MEM1(src1), src2w);
@@ -1822,7 +1822,7 @@
     else if (FAST_IS_REG(src2)) {
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
         if ((src1 & SLJIT_IMM) && (compiler->mode32 || IS_HALFWORD(src1w))) {
-            inst = emit_x86_instruction(compiler, 1, dst_r, 0, SLJIT_MEM1(src2), (sljit_si)src1w);
+            inst = emit_x86_instruction(compiler, 1, dst_r, 0, SLJIT_MEM1(src2), (sljit_s32)src1w);
 #else
         if (src1 & SLJIT_IMM) {
             inst = emit_x86_instruction(compiler, 1, dst_r, 0, SLJIT_MEM1(src2), src1w);
@@ -1841,11 +1841,11 @@
     return SLJIT_ERR_UNSUPPORTED;
 }


-static sljit_si emit_cmp_binary(struct sljit_compiler *compiler,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_cmp_binary(struct sljit_compiler *compiler,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
     if (src1 == SLJIT_R0 && (src2 & SLJIT_IMM) && (src2w > 127 || src2w < -128) && (compiler->mode32 || IS_HALFWORD(src2w))) {
@@ -1892,11 +1892,11 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_test_binary(struct sljit_compiler *compiler,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_test_binary(struct sljit_compiler *compiler,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
     if (src1 == SLJIT_R0 && (src2 & SLJIT_IMM) && (src2w > 127 || src2w < -128) && (compiler->mode32 || IS_HALFWORD(src2w))) {
@@ -2002,13 +2002,13 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_shift(struct sljit_compiler *compiler,
-    sljit_ub mode,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_shift(struct sljit_compiler *compiler,
+    sljit_u8 mode,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


     if ((src2 & SLJIT_IMM) || (src2 == SLJIT_PREF_SHIFT_REG)) {
         if (dst == src1 && dstw == src1w) {
@@ -2091,11 +2091,11 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_shift_with_flags(struct sljit_compiler *compiler,
-    sljit_ub mode, sljit_si set_flags,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static sljit_s32 emit_shift_with_flags(struct sljit_compiler *compiler,
+    sljit_u8 mode, sljit_s32 set_flags,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     /* The CPU does not set flags if the shift count is 0. */
     if (src2 & SLJIT_IMM) {
@@ -2126,10 +2126,10 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     CHECK_ERROR();
     CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -2141,7 +2141,7 @@
     CHECK_EXTRA_REGS(src1, src1w, (void)0);
     CHECK_EXTRA_REGS(src2, src2w, (void)0);
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-    compiler->mode32 = op & SLJIT_INT_OP;
+    compiler->mode32 = op & SLJIT_I32_OP;
 #endif


     if (GET_OPCODE(op) >= SLJIT_MUL) {
@@ -2221,7 +2221,7 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_register_index(reg));
 #if (defined SLJIT_CONFIG_X86_32 && SLJIT_CONFIG_X86_32)
@@ -2231,21 +2231,21 @@
     return reg_map[reg];
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_float_register_index(sljit_si reg)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_float_register_index(sljit_s32 reg)
 {
     CHECK_REG_INDEX(check_sljit_get_float_register_index(reg));
     return reg;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_custom(struct sljit_compiler *compiler,
-    void *instruction, sljit_si size)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_custom(struct sljit_compiler *compiler,
+    void *instruction, sljit_s32 size)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


     CHECK_ERROR();
     CHECK(check_sljit_emit_op_custom(compiler, instruction, size));


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + size);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + size);
     FAIL_IF(!inst);
     INC_SIZE(size);
     SLJIT_MEMMOVE(inst, instruction, size);
@@ -2257,12 +2257,12 @@
 /* --------------------------------------------------------------------- */


/* Alignment + 2 * 16 bytes. */
-static sljit_si sse2_data[3 + (4 + 4) * 2];
-static sljit_si *sse2_buffer;
+static sljit_s32 sse2_data[3 + (4 + 4) * 2];
+static sljit_s32 *sse2_buffer;

 static void init_compiler(void)
 {
-    sse2_buffer = (sljit_si*)(((sljit_uw)sse2_data + 15) & ~0xf);
+    sse2_buffer = (sljit_s32*)(((sljit_uw)sse2_data + 15) & ~0xf);
     /* Single precision constants. */
     sse2_buffer[0] = 0x80000000;
     sse2_buffer[4] = 0x7fffffff;
@@ -2273,7 +2273,7 @@
     sse2_buffer[13] = 0x7fffffff;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_is_fpu_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_is_fpu_available(void)
 {
 #ifdef SLJIT_IS_FPU_AVAILABLE
     return SLJIT_IS_FPU_AVAILABLE;
@@ -2286,10 +2286,10 @@
 #endif /* SLJIT_DETECT_SSE2 */
 }


-static sljit_si emit_sse2(struct sljit_compiler *compiler, sljit_ub opcode,
-    sljit_si single, sljit_si xmm1, sljit_si xmm2, sljit_sw xmm2w)
+static sljit_s32 emit_sse2(struct sljit_compiler *compiler, sljit_u8 opcode,
+    sljit_s32 single, sljit_s32 xmm1, sljit_s32 xmm2, sljit_sw xmm2w)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


     inst = emit_x86_instruction(compiler, 2 | (single ? EX86_PREF_F3 : EX86_PREF_F2) | EX86_SSE2, xmm1, 0, xmm2, xmm2w);
     FAIL_IF(!inst);
@@ -2298,10 +2298,10 @@
     return SLJIT_SUCCESS;
 }


-static sljit_si emit_sse2_logic(struct sljit_compiler *compiler, sljit_ub opcode,
-    sljit_si pref66, sljit_si xmm1, sljit_si xmm2, sljit_sw xmm2w)
+static sljit_s32 emit_sse2_logic(struct sljit_compiler *compiler, sljit_u8 opcode,
+    sljit_s32 pref66, sljit_s32 xmm1, sljit_s32 xmm2, sljit_sw xmm2w)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;


     inst = emit_x86_instruction(compiler, 2 | (pref66 ? EX86_PREF_66 : 0) | EX86_SSE2, xmm1, 0, xmm2, xmm2w);
     FAIL_IF(!inst);
@@ -2310,24 +2310,24 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si emit_sse2_load(struct sljit_compiler *compiler,
-    sljit_si single, sljit_si dst, sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 emit_sse2_load(struct sljit_compiler *compiler,
+    sljit_s32 single, sljit_s32 dst, sljit_s32 src, sljit_sw srcw)
 {
     return emit_sse2(compiler, MOVSD_x_xm, single, dst, src, srcw);
 }


-static SLJIT_INLINE sljit_si emit_sse2_store(struct sljit_compiler *compiler,
-    sljit_si single, sljit_si dst, sljit_sw dstw, sljit_si src)
+static SLJIT_INLINE sljit_s32 emit_sse2_store(struct sljit_compiler *compiler,
+    sljit_s32 single, sljit_s32 dst, sljit_sw dstw, sljit_s32 src)
 {
     return emit_sse2(compiler, MOVSD_xm_x, single, src, dst, dstw);
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convw_fromd(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1;
-    sljit_ub *inst;
+    sljit_s32 dst_r = SLOW_IS_REG(dst) ? dst : TMP_REG1;
+    sljit_u8 *inst;


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
     if (GET_OPCODE(op) == SLJIT_CONVW_FROMD)
@@ -2344,12 +2344,12 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_convd_fromw(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG;
-    sljit_ub *inst;
+    sljit_s32 dst_r = FAST_IS_REG(dst) ? dst : TMP_FREG;
+    sljit_u8 *inst;


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
     if (GET_OPCODE(op) == SLJIT_CONVD_FROMW)
@@ -2359,7 +2359,7 @@
     if (src & SLJIT_IMM) {
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
         if (GET_OPCODE(op) == SLJIT_CONVD_FROMI)
-            srcw = (sljit_si)srcw;
+            srcw = (sljit_s32)srcw;
 #endif
         EMIT_MOV(compiler, TMP_REG1, 0, src, srcw);
         src = TMP_REG1;
@@ -2379,9 +2379,9 @@
     return SLJIT_SUCCESS;
 }


-static SLJIT_INLINE sljit_si sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+static SLJIT_INLINE sljit_s32 sljit_emit_fop1_cmp(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
     compiler->flags_saved = 0;
     if (!FAST_IS_REG(src1)) {
@@ -2391,11 +2391,11 @@
     return emit_sse2_logic(compiler, UCOMISD_x_xm, !(op & SLJIT_SINGLE_OP), src1, src2, src2w);
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop1(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
     compiler->mode32 = 1;
@@ -2457,12 +2457,12 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fop2(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src1, sljit_sw src1w,
-    sljit_si src2, sljit_sw src2w)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src1, sljit_sw src1w,
+    sljit_s32 src2, sljit_sw src2w)
 {
-    sljit_si dst_r;
+    sljit_s32 dst_r;


     CHECK_ERROR();
     CHECK(check_sljit_emit_fop2(compiler, op, dst, dstw, src1, src1w, src2, src2w));
@@ -2524,7 +2524,7 @@


 SLJIT_API_FUNC_ATTRIBUTE struct sljit_label* sljit_emit_label(struct sljit_compiler *compiler)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;
     struct sljit_label *label;


     CHECK_ERROR_PTR();
@@ -2542,7 +2542,7 @@
     PTR_FAIL_IF(!label);
     set_label(label, compiler);


-    inst = (sljit_ub*)ensure_buf(compiler, 2);
+    inst = (sljit_u8*)ensure_buf(compiler, 2);
     PTR_FAIL_IF(!inst);


     *inst++ = 0;
@@ -2551,9 +2551,9 @@
     return label;
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE struct sljit_jump* sljit_emit_jump(struct sljit_compiler *compiler, sljit_s32 type)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;
     struct sljit_jump *jump;


     CHECK_ERROR_PTR();
@@ -2580,7 +2580,7 @@
     compiler->size += (type >= SLJIT_JUMP) ? (10 + 3) : (2 + 10 + 3);
 #endif


-    inst = (sljit_ub*)ensure_buf(compiler, 2);
+    inst = (sljit_u8*)ensure_buf(compiler, 2);
     PTR_FAIL_IF_NULL(inst);


     *inst++ = 0;
@@ -2588,9 +2588,9 @@
     return jump;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_ijump(struct sljit_compiler *compiler, sljit_si type, sljit_si 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)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;
     struct sljit_jump *jump;


     CHECK_ERROR();
@@ -2638,7 +2638,7 @@
         compiler->size += 10 + 3;
 #endif


-        inst = (sljit_ub*)ensure_buf(compiler, 2);
+        inst = (sljit_u8*)ensure_buf(compiler, 2);
         FAIL_IF_NULL(inst);


         *inst++ = 0;
@@ -2657,18 +2657,18 @@
     return SLJIT_SUCCESS;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_si op,
-    sljit_si dst, sljit_sw dstw,
-    sljit_si src, sljit_sw srcw,
-    sljit_si type)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op,
+    sljit_s32 dst, sljit_sw dstw,
+    sljit_s32 src, sljit_sw srcw,
+    sljit_s32 type)
 {
-    sljit_ub *inst;
-    sljit_ub cond_set = 0;
+    sljit_u8 *inst;
+    sljit_u8 cond_set = 0;
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-    sljit_si reg;
+    sljit_s32 reg;
 #else
     /* CHECK_EXTRA_REGS migh overwrite these values. */
-    sljit_si dst_save = dst;
+    sljit_s32 dst_save = dst;
     sljit_sw dstw_save = dstw;
 #endif


@@ -2690,7 +2690,7 @@

 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
     if (GET_OPCODE(op) == SLJIT_OR && !GET_ALL_FLAGS(op) && FAST_IS_REG(dst) && dst == src) {
-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 4 + 3);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 4 + 3);
         FAIL_IF(!inst);
         INC_SIZE(4 + 3);
         /* Set low register to conditional flag. */
@@ -2706,7 +2706,7 @@


     reg = (op == SLJIT_MOV && FAST_IS_REG(dst)) ? dst : TMP_REG1;


-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 4 + 4);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 4 + 4);
     FAIL_IF(!inst);
     INC_SIZE(4 + 4);
     /* Set low register to conditional flag. */
@@ -2735,7 +2735,7 @@
     if (GET_OPCODE(op) < SLJIT_ADD && FAST_IS_REG(dst)) {
         if (reg_map[dst] <= 4) {
             /* Low byte is accessible. */
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 3 + 3);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 3 + 3);
             FAIL_IF(!inst);
             INC_SIZE(3 + 3);
             /* Set low byte to conditional flag. */
@@ -2758,7 +2758,7 @@
             /* a xor reg, reg operation would overwrite the flags. */
             EMIT_MOV(compiler, dst, 0, SLJIT_IMM, 0);


-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 3);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 3);
             FAIL_IF(!inst);
             INC_SIZE(3);


@@ -2769,7 +2769,7 @@
             return SLJIT_SUCCESS;
         }


-        inst = (sljit_ub*)ensure_buf(compiler, 1 + 1 + 3 + 3 + 1);
+        inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + 3 + 3 + 1);
         FAIL_IF(!inst);
         INC_SIZE(1 + 3 + 3 + 1);
         *inst++ = XCHG_EAX_r + reg_map[TMP_REG1];
@@ -2788,7 +2788,7 @@
     if (GET_OPCODE(op) == SLJIT_OR && !GET_ALL_FLAGS(op) && FAST_IS_REG(dst) && dst == src && reg_map[dst] <= 4) {
         SLJIT_COMPILE_ASSERT(reg_map[SLJIT_R0] == 0, scratch_reg1_must_be_eax);
         if (dst != SLJIT_R0) {
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 1 + 3 + 2 + 1);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + 3 + 2 + 1);
             FAIL_IF(!inst);
             INC_SIZE(1 + 3 + 2 + 1);
             /* Set low register to conditional flag. */
@@ -2801,7 +2801,7 @@
             *inst++ = XCHG_EAX_r + reg_map[TMP_REG1];
         }
         else {
-            inst = (sljit_ub*)ensure_buf(compiler, 1 + 2 + 3 + 2 + 2);
+            inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + 3 + 2 + 2);
             FAIL_IF(!inst);
             INC_SIZE(2 + 3 + 2 + 2);
             /* Set low register to conditional flag. */
@@ -2819,7 +2819,7 @@
     }


     /* Set TMP_REG1 to the bit. */
-    inst = (sljit_ub*)ensure_buf(compiler, 1 + 1 + 3 + 3 + 1);
+    inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + 3 + 3 + 1);
     FAIL_IF(!inst);
     INC_SIZE(1 + 3 + 3 + 1);
     *inst++ = XCHG_EAX_r + reg_map[TMP_REG1];
@@ -2845,7 +2845,7 @@
 #endif /* SLJIT_CONFIG_X86_64 */
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_get_local_base(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw offset)
 {
     CHECK_ERROR();
     CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset));
@@ -2876,12 +2876,12 @@
     return emit_mov(compiler, dst, dstw, SLJIT_SP, 0);
 }


-SLJIT_API_FUNC_ATTRIBUTE struct sljit_const* sljit_emit_const(struct sljit_compiler *compiler, sljit_si 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)
 {
-    sljit_ub *inst;
+    sljit_u8 *inst;
     struct sljit_const *const_;
 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-    sljit_si reg;
+    sljit_s32 reg;
 #endif


     CHECK_ERROR_PTR();
@@ -2908,7 +2908,7 @@
         return NULL;
 #endif


-    inst = (sljit_ub*)ensure_buf(compiler, 2);
+    inst = (sljit_u8*)ensure_buf(compiler, 2);
     PTR_FAIL_IF(!inst);


     *inst++ = 0;
@@ -2937,7 +2937,7 @@
     *(sljit_sw*)addr = new_constant;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_x86_is_sse2_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_x86_is_sse2_available(void)
 {
 #if (defined SLJIT_DETECT_SSE2 && SLJIT_DETECT_SSE2)
     if (cpu_has_sse2 == -1)
@@ -2948,7 +2948,7 @@
 #endif
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_x86_is_cmov_available(void)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_x86_is_cmov_available(void)
 {
     if (cpu_has_cmov == -1)
         get_cpu_features();
@@ -2955,27 +2955,27 @@
     return cpu_has_cmov;
 }


-SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_x86_emit_cmov(struct sljit_compiler *compiler,
-    sljit_si type,
-    sljit_si dst_reg,
-    sljit_si src, sljit_sw srcw)
+SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_x86_emit_cmov(struct sljit_compiler *compiler,
+    sljit_s32 type,
+    sljit_s32 dst_reg,
+    sljit_s32 src, sljit_sw srcw)
 {
-    sljit_ub* inst;
+    sljit_u8* inst;


     CHECK_ERROR();
 #if (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
     CHECK_ARGUMENT(sljit_x86_is_cmov_available());
-    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_INT_OP)));
+    CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_I32_OP)));
     CHECK_ARGUMENT((type & 0xff) >= SLJIT_EQUAL && (type & 0xff) <= SLJIT_D_ORDERED);
-    CHECK_ARGUMENT(FUNCTION_CHECK_IS_REG(dst_reg & ~SLJIT_INT_OP));
+    CHECK_ARGUMENT(FUNCTION_CHECK_IS_REG(dst_reg & ~SLJIT_I32_OP));
     FUNCTION_CHECK_SRC(src, srcw);
 #endif
 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE)
     if (SLJIT_UNLIKELY(!!compiler->verbose)) {
         fprintf(compiler->verbose, "  x86_cmov%s %s%s, ",
-            !(dst_reg & SLJIT_INT_OP) ? "" : ".i",
+            !(dst_reg & SLJIT_I32_OP) ? "" : ".i",
             JUMP_PREFIX(type), jump_names[type & 0xff]);
-        sljit_verbose_reg(compiler, dst_reg & ~SLJIT_INT_OP);
+        sljit_verbose_reg(compiler, dst_reg & ~SLJIT_I32_OP);
         fprintf(compiler->verbose, ", ");
         sljit_verbose_param(compiler, src, srcw);
         fprintf(compiler->verbose, "\n");
@@ -2986,9 +2986,9 @@
     CHECK_EXTRA_REGS(src, srcw, (void)0);


 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
-    compiler->mode32 = dst_reg & SLJIT_INT_OP;
+    compiler->mode32 = dst_reg & SLJIT_I32_OP;
 #endif
-    dst_reg &= ~SLJIT_INT_OP;
+    dst_reg &= ~SLJIT_I32_OP;


     if (SLJIT_UNLIKELY(src & SLJIT_IMM)) {
         EMIT_MOV(compiler, TMP_REG1, 0, SLJIT_IMM, srcw);


Modified: code/trunk/src/sljit/sljitUtils.c
===================================================================
--- code/trunk/src/sljit/sljitUtils.c    2016-02-28 14:56:50 UTC (rev 500)
+++ code/trunk/src/sljit/sljitUtils.c    2016-02-29 09:09:40 UTC (rev 501)
@@ -163,11 +163,11 @@
 #include <fcntl.h>


/* Some old systems does not have MAP_ANON. */
-static sljit_si dev_zero = -1;
+static sljit_s32 dev_zero = -1;

#if (defined SLJIT_SINGLE_THREADED && SLJIT_SINGLE_THREADED)

-static SLJIT_INLINE sljit_si open_dev_zero(void)
+static SLJIT_INLINE sljit_s32 open_dev_zero(void)
 {
     dev_zero = open("/dev/zero", O_RDWR);
     return dev_zero < 0;
@@ -179,7 +179,7 @@


static pthread_mutex_t dev_zero_mutex = PTHREAD_MUTEX_INITIALIZER;

-static SLJIT_INLINE sljit_si open_dev_zero(void)
+static SLJIT_INLINE sljit_s32 open_dev_zero(void)
 {
     pthread_mutex_lock(&dev_zero_mutex);
     dev_zero = open("/dev/zero", O_RDWR);