aboutsummaryrefslogtreecommitdiff
path: root/src/lj_arch.h
diff options
context:
space:
mode:
authorMike Pall <mike>2011-05-23 20:20:34 +0200
committerMike Pall <mike>2011-05-23 20:20:34 +0200
commit185554b682c1e3dab74d4fa310797033a32815ef (patch)
tree86469fab270d8de92d48b6829c386a09407408a3 /src/lj_arch.h
parent7b21a660a89367db4ab50a85aa32a1ffd5a88623 (diff)
downloadluajit-185554b682c1e3dab74d4fa310797033a32815ef.tar.gz
luajit-185554b682c1e3dab74d4fa310797033a32815ef.tar.bz2
luajit-185554b682c1e3dab74d4fa310797033a32815ef.zip
ARM: Unify rotates to simplify assembler backend.
Diffstat (limited to 'src/lj_arch.h')
-rw-r--r--src/lj_arch.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_arch.h b/src/lj_arch.h
index 978ccd1f..a234a400 100644
--- a/src/lj_arch.h
+++ b/src/lj_arch.h
@@ -137,6 +137,7 @@
137#define LJ_TARGET_JUMPRANGE 25 /* +-2^25 = +-32MB */ 137#define LJ_TARGET_JUMPRANGE 25 /* +-2^25 = +-32MB */
138#define LJ_TARGET_MASKSHIFT 0 138#define LJ_TARGET_MASKSHIFT 0
139#define LJ_TARGET_MASKROT 1 139#define LJ_TARGET_MASKROT 1
140#define LJ_TARGET_UNIFYROT 2 /* Want only IR_BROR. */
140#define LJ_ARCH_DUALNUM 2 141#define LJ_ARCH_DUALNUM 2
141#define LJ_ARCH_NOJIT 1 142#define LJ_ARCH_NOJIT 1
142 143
@@ -158,6 +159,7 @@
158#define LJ_TARGET_JUMPRANGE 25 /* +-2^25 = +-32MB */ 159#define LJ_TARGET_JUMPRANGE 25 /* +-2^25 = +-32MB */
159#define LJ_TARGET_MASKSHIFT 0 160#define LJ_TARGET_MASKSHIFT 0
160#define LJ_TARGET_MASKROT 1 161#define LJ_TARGET_MASKROT 1
162#define LJ_TARGET_UNIFYROT 1 /* Want only IR_BROL. */
161#define LJ_ARCH_DUALNUM 0 163#define LJ_ARCH_DUALNUM 0
162#define LJ_ARCH_NOFFI 1 /* NYI: comparisons, calls. */ 164#define LJ_ARCH_NOFFI 1 /* NYI: comparisons, calls. */
163#define LJ_ARCH_NOJIT 1 165#define LJ_ARCH_NOJIT 1