summaryrefslogtreecommitdiff
path: root/sljit/sljitLir.c
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-03-13 11:16:17 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2014-03-13 11:16:17 +0000
commitc3bb607d2b110034cd260416a8fc75ea9bfd6628 (patch)
treef12de7407532b9ce0b7c2ab0a867c397a254f447 /sljit/sljitLir.c
parent2c970c22d75c6b2fda321a918b607766a0c2d4f3 (diff)
downloadpcre-c3bb607d2b110034cd260416a8fc75ea9bfd6628.tar.gz
JIT compiler update.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1463 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'sljit/sljitLir.c')
-rw-r--r--sljit/sljitLir.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/sljit/sljitLir.c b/sljit/sljitLir.c
index 382eeeb..1acecba 100644
--- a/sljit/sljitLir.c
+++ b/sljit/sljitLir.c
@@ -163,14 +163,15 @@
#endif
#if (defined SLJIT_CONFIG_PPC_32 && SLJIT_CONFIG_PPC_32) || (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-# define COND_B 0x04
-# define PATCH_B 0x08
-# define ABSOLUTE_B 0x10
-# define REMOVE_COND 0x20
+# define IS_COND 0x004
+# define IS_CALL 0x008
+# define PATCH_B 0x010
+# define PATCH_ABS_B 0x020
#if (defined SLJIT_CONFIG_PPC_64 && SLJIT_CONFIG_PPC_64)
-# define PATCH_ABS32 0x40
-# define PATCH_ABS48 0x80
+# define PATCH_ABS32 0x040
+# define PATCH_ABS48 0x080
#endif
+# define REMOVE_COND 0x100
#endif
#if (defined SLJIT_CONFIG_MIPS_32 && SLJIT_CONFIG_MIPS_32) || (defined SLJIT_CONFIG_MIPS_64 && SLJIT_CONFIG_MIPS_64)