diff options
author | Mike Pall <mike> | 2016-12-07 18:38:32 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2016-12-07 18:38:32 +0100 |
commit | 2ac2cd4699d2e3a2eaa55417eae901216204fb37 (patch) | |
tree | 0cc8f57bc388c45f155c6e71a14288c1daa595e8 /src/lj_target_arm64.h | |
parent | 48b00297b3b37fe77f59f2f4b6fa63358b442f15 (diff) | |
download | luajit-2ac2cd4699d2e3a2eaa55417eae901216204fb37.tar.gz luajit-2ac2cd4699d2e3a2eaa55417eae901216204fb37.tar.bz2 luajit-2ac2cd4699d2e3a2eaa55417eae901216204fb37.zip |
ARM64: Reorganize operand extension definitions.
Diffstat (limited to 'src/lj_target_arm64.h')
-rw-r--r-- | src/lj_target_arm64.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lj_target_arm64.h b/src/lj_target_arm64.h index 6c8771c6..e1210045 100644 --- a/src/lj_target_arm64.h +++ b/src/lj_target_arm64.h | |||
@@ -147,8 +147,11 @@ typedef enum A64Ins { | |||
147 | A64I_LS_U = 0x01000000, | 147 | A64I_LS_U = 0x01000000, |
148 | A64I_LS_S = 0x00800000, | 148 | A64I_LS_S = 0x00800000, |
149 | A64I_LS_R = 0x01200800, | 149 | A64I_LS_R = 0x01200800, |
150 | A64I_LS_UXTWx = 0x00005000, | 150 | A64I_LS_SH = 0x00001000, |
151 | A64I_LS_LSLx = 0x00007000, | 151 | A64I_LS_UXTWx = 0x00004000, |
152 | A64I_LS_SXTWx = 0x0000c000, | ||
153 | A64I_LS_SXTXx = 0x0000e000, | ||
154 | A64I_LS_LSLx = 0x00006000, | ||
152 | 155 | ||
153 | A64I_ADDw = 0x0b000000, | 156 | A64I_ADDw = 0x0b000000, |
154 | A64I_ADDx = 0x8b000000, | 157 | A64I_ADDx = 0x8b000000, |