2 * Stack-less Just-In-Time compiler
4 * Copyright Zoltan Herczeg (hzmester@freemail.hu). All rights reserved.
6 * Redistribution and use in source and binary forms, with or without modification, are
7 * permitted provided that the following conditions are met:
9 * 1. Redistributions of source code must retain the above copyright notice, this list of
10 * conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright notice, this list
13 * of conditions and the following disclaimer in the documentation and/or other materials
14 * provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
19 * SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
21 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
22 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
24 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 SLJIT_API_FUNC_ATTRIBUTE
const char* sljit_get_platform_name(void)
29 return "ARM-64" SLJIT_CPUINFO
;
32 /* Length of an instruction word */
33 typedef sljit_u32 sljit_ins
;
37 #define TMP_REG1 (SLJIT_NUMBER_OF_REGISTERS + 2)
38 #define TMP_REG2 (SLJIT_NUMBER_OF_REGISTERS + 3)
39 #define TMP_LR (SLJIT_NUMBER_OF_REGISTERS + 4)
40 #define TMP_FP (SLJIT_NUMBER_OF_REGISTERS + 5)
42 #define TMP_FREG1 (SLJIT_NUMBER_OF_FLOAT_REGISTERS + 1)
43 #define TMP_FREG2 (SLJIT_NUMBER_OF_FLOAT_REGISTERS + 2)
45 /* r18 - platform register, currently not used */
46 static const sljit_u8 reg_map
[SLJIT_NUMBER_OF_REGISTERS
+ 8] = {
47 31, 0, 1, 2, 3, 4, 5, 6, 7, 11, 12, 13, 14, 15, 16, 17, 8, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 31, 9, 10, 30, 29
50 static const sljit_u8 freg_map
[SLJIT_NUMBER_OF_FLOAT_REGISTERS
+ 3] = {
51 0, 0, 1, 2, 3, 4, 5, 6, 7, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 15, 14, 13, 12, 11, 10, 9, 8, 30, 31
54 #define W_OP ((sljit_ins)1 << 31)
55 #define RD(rd) ((sljit_ins)reg_map[rd])
56 #define RT(rt) ((sljit_ins)reg_map[rt])
57 #define RN(rn) ((sljit_ins)reg_map[rn] << 5)
58 #define RT2(rt2) ((sljit_ins)reg_map[rt2] << 10)
59 #define RM(rm) ((sljit_ins)reg_map[rm] << 16)
60 #define VD(vd) ((sljit_ins)freg_map[vd])
61 #define VT(vt) ((sljit_ins)freg_map[vt])
62 #define VT2(vt) ((sljit_ins)freg_map[vt] << 10)
63 #define VN(vn) ((sljit_ins)freg_map[vn] << 5)
64 #define VM(vm) ((sljit_ins)freg_map[vm] << 16)
66 /* --------------------------------------------------------------------- */
67 /* Instrucion forms */
68 /* --------------------------------------------------------------------- */
70 #define ADC 0x9a000000
71 #define ADD 0x8b000000
72 #define ADDE 0x8b200000
73 #define ADDI 0x91000000
74 #define AND 0x8a000000
75 #define ANDI 0x92000000
76 #define ASRV 0x9ac02800
78 #define B_CC 0x54000000
80 #define BLR 0xd63f0000
82 #define BRK 0xd4200000
83 #define CBZ 0xb4000000
84 #define CLZ 0xdac01000
85 #define CSEL 0x9a800000
86 #define CSINC 0x9a800400
87 #define EOR 0xca000000
88 #define EORI 0xd2000000
89 #define FABS 0x1e60c000
90 #define FADD 0x1e602800
91 #define FCMP 0x1e602000
92 #define FCVT 0x1e224000
93 #define FCVTZS 0x9e780000
94 #define FDIV 0x1e601800
95 #define FMOV 0x1e604000
96 #define FMUL 0x1e600800
97 #define FNEG 0x1e614000
98 #define FSUB 0x1e603800
99 #define LDRI 0xf9400000
100 #define LDRI_F64 0xfd400000
101 #define LDP 0xa9400000
102 #define LDP_F64 0x6d400000
103 #define LDP_POST 0xa8c00000
104 #define LDR_PRE 0xf8400c00
105 #define LSLV 0x9ac02000
106 #define LSRV 0x9ac02400
107 #define MADD 0x9b000000
108 #define MOVK 0xf2800000
109 #define MOVN 0x92800000
110 #define MOVZ 0xd2800000
111 #define NOP 0xd503201f
112 #define ORN 0xaa200000
113 #define ORR 0xaa000000
114 #define ORRI 0xb2000000
115 #define RET 0xd65f0000
116 #define SBC 0xda000000
117 #define SBFM 0x93000000
118 #define SCVTF 0x9e620000
119 #define SDIV 0x9ac00c00
120 #define SMADDL 0x9b200000
121 #define SMULH 0x9b403c00
122 #define STP 0xa9000000
123 #define STP_F64 0x6d000000
124 #define STP_PRE 0xa9800000
125 #define STRB 0x38206800
126 #define STRBI 0x39000000
127 #define STRI 0xf9000000
128 #define STRI_F64 0xfd000000
129 #define STR_FI 0x3d000000
130 #define STR_FR 0x3c206800
131 #define STUR_FI 0x3c000000
132 #define STURBI 0x38000000
133 #define SUB 0xcb000000
134 #define SUBI 0xd1000000
135 #define SUBS 0xeb000000
136 #define UBFM 0xd3000000
137 #define UDIV 0x9ac00800
138 #define UMULH 0x9bc03c00
140 /* dest_reg is the absolute name of the register
141 Useful for reordering instructions in the delay slot. */
142 static sljit_s32
push_inst(struct sljit_compiler
*compiler
, sljit_ins ins
)
144 sljit_ins
*ptr
= (sljit_ins
*)ensure_buf(compiler
, sizeof(sljit_ins
));
148 return SLJIT_SUCCESS
;
151 static SLJIT_INLINE sljit_s32
emit_imm64_const(struct sljit_compiler
*compiler
, sljit_s32 dst
, sljit_uw imm
)
153 FAIL_IF(push_inst(compiler
, MOVZ
| RD(dst
) | ((sljit_ins
)(imm
& 0xffff) << 5)));
154 FAIL_IF(push_inst(compiler
, MOVK
| RD(dst
) | (((sljit_ins
)(imm
>> 16) & 0xffff) << 5) | (1 << 21)));
155 FAIL_IF(push_inst(compiler
, MOVK
| RD(dst
) | (((sljit_ins
)(imm
>> 32) & 0xffff) << 5) | (2 << 21)));
156 return push_inst(compiler
, MOVK
| RD(dst
) | ((sljit_ins
)(imm
>> 48) << 5) | (3 << 21));
159 static SLJIT_INLINE sljit_sw
detect_jump_type(struct sljit_jump
*jump
, sljit_ins
*code_ptr
, sljit_ins
*code
, sljit_sw executable_offset
)
162 sljit_uw target_addr
;
164 if (jump
->flags
& SLJIT_REWRITABLE_JUMP
) {
165 jump
->flags
|= PATCH_ABS64
;
169 if (jump
->flags
& JUMP_ADDR
)
170 target_addr
= jump
->u
.target
;
172 SLJIT_ASSERT(jump
->flags
& JUMP_LABEL
);
173 target_addr
= (sljit_uw
)(code
+ jump
->u
.label
->size
) + (sljit_uw
)executable_offset
;
176 diff
= (sljit_sw
)target_addr
- (sljit_sw
)(code_ptr
+ 4) - executable_offset
;
178 if (jump
->flags
& IS_COND
) {
179 diff
+= SSIZE_OF(ins
);
180 if (diff
<= 0xfffff && diff
>= -0x100000) {
181 code_ptr
[-5] ^= (jump
->flags
& IS_CBZ
) ? (0x1 << 24) : 0x1;
182 jump
->addr
-= sizeof(sljit_ins
);
183 jump
->flags
|= PATCH_COND
;
186 diff
-= SSIZE_OF(ins
);
189 if (diff
<= 0x7ffffff && diff
>= -0x8000000) {
190 jump
->flags
|= PATCH_B
;
194 if (target_addr
< 0x100000000l
) {
195 if (jump
->flags
& IS_COND
)
196 code_ptr
[-5] -= (2 << 5);
197 code_ptr
[-2] = code_ptr
[0];
201 if (target_addr
< 0x1000000000000l
) {
202 if (jump
->flags
& IS_COND
)
203 code_ptr
[-5] -= (1 << 5);
204 jump
->flags
|= PATCH_ABS48
;
205 code_ptr
[-1] = code_ptr
[0];
209 jump
->flags
|= PATCH_ABS64
;
213 static SLJIT_INLINE sljit_sw
put_label_get_length(struct sljit_put_label
*put_label
, sljit_uw max_label
)
215 if (max_label
< 0x100000000l
) {
216 put_label
->flags
= 0;
220 if (max_label
< 0x1000000000000l
) {
221 put_label
->flags
= 1;
225 put_label
->flags
= 2;
229 SLJIT_API_FUNC_ATTRIBUTE
void* sljit_generate_code(struct sljit_compiler
*compiler
)
231 struct sljit_memory_fragment
*buf
;
238 sljit_sw executable_offset
;
242 struct sljit_label
*label
;
243 struct sljit_jump
*jump
;
244 struct sljit_const
*const_
;
245 struct sljit_put_label
*put_label
;
248 CHECK_PTR(check_sljit_generate_code(compiler
));
249 reverse_buf(compiler
);
251 code
= (sljit_ins
*)SLJIT_MALLOC_EXEC(compiler
->size
* sizeof(sljit_ins
), compiler
->exec_allocator_data
);
252 PTR_FAIL_WITH_EXEC_IF(code
);
258 executable_offset
= SLJIT_EXEC_OFFSET(code
);
260 label
= compiler
->labels
;
261 jump
= compiler
->jumps
;
262 const_
= compiler
->consts
;
263 put_label
= compiler
->put_labels
;
266 buf_ptr
= (sljit_ins
*)buf
->memory
;
267 buf_end
= buf_ptr
+ (buf
->used_size
>> 2);
269 *code_ptr
= *buf_ptr
++;
270 if (next_addr
== word_count
) {
271 SLJIT_ASSERT(!label
|| label
->size
>= word_count
);
272 SLJIT_ASSERT(!jump
|| jump
->addr
>= word_count
);
273 SLJIT_ASSERT(!const_
|| const_
->addr
>= word_count
);
274 SLJIT_ASSERT(!put_label
|| put_label
->addr
>= word_count
);
276 /* These structures are ordered by their address. */
277 if (label
&& label
->size
== word_count
) {
278 label
->addr
= (sljit_uw
)SLJIT_ADD_EXEC_OFFSET(code_ptr
, executable_offset
);
279 label
->size
= (sljit_uw
)(code_ptr
- code
);
282 if (jump
&& jump
->addr
== word_count
) {
283 jump
->addr
= (sljit_uw
)(code_ptr
- 4);
284 code_ptr
-= detect_jump_type(jump
, code_ptr
, code
, executable_offset
);
287 if (const_
&& const_
->addr
== word_count
) {
288 const_
->addr
= (sljit_uw
)code_ptr
;
289 const_
= const_
->next
;
291 if (put_label
&& put_label
->addr
== word_count
) {
292 SLJIT_ASSERT(put_label
->label
);
293 put_label
->addr
= (sljit_uw
)(code_ptr
- 3);
294 code_ptr
-= put_label_get_length(put_label
, (sljit_uw
)(SLJIT_ADD_EXEC_OFFSET(code
, executable_offset
) + put_label
->label
->size
));
295 put_label
= put_label
->next
;
297 next_addr
= compute_next_addr(label
, jump
, const_
, put_label
);
301 } while (buf_ptr
< buf_end
);
306 if (label
&& label
->size
== word_count
) {
307 label
->addr
= (sljit_uw
)SLJIT_ADD_EXEC_OFFSET(code_ptr
, executable_offset
);
308 label
->size
= (sljit_uw
)(code_ptr
- code
);
312 SLJIT_ASSERT(!label
);
314 SLJIT_ASSERT(!const_
);
315 SLJIT_ASSERT(!put_label
);
316 SLJIT_ASSERT(code_ptr
- code
<= (sljit_sw
)compiler
->size
);
318 jump
= compiler
->jumps
;
321 addr
= (sljit_sw
)((jump
->flags
& JUMP_LABEL
) ? jump
->u
.label
->addr
: jump
->u
.target
);
322 buf_ptr
= (sljit_ins
*)jump
->addr
;
324 if (jump
->flags
& PATCH_B
) {
325 addr
= (addr
- (sljit_sw
)SLJIT_ADD_EXEC_OFFSET(buf_ptr
, executable_offset
)) >> 2;
326 SLJIT_ASSERT(addr
<= 0x1ffffff && addr
>= -0x2000000);
327 buf_ptr
[0] = ((jump
->flags
& IS_BL
) ? BL
: B
) | (sljit_ins
)(addr
& 0x3ffffff);
328 if (jump
->flags
& IS_COND
)
329 buf_ptr
[-1] -= (4 << 5);
332 if (jump
->flags
& PATCH_COND
) {
333 addr
= (addr
- (sljit_sw
)SLJIT_ADD_EXEC_OFFSET(buf_ptr
, executable_offset
)) >> 2;
334 SLJIT_ASSERT(addr
<= 0x3ffff && addr
>= -0x40000);
335 buf_ptr
[0] = (buf_ptr
[0] & ~(sljit_ins
)0xffffe0) | (sljit_ins
)((addr
& 0x7ffff) << 5);
339 SLJIT_ASSERT((jump
->flags
& (PATCH_ABS48
| PATCH_ABS64
)) || (sljit_uw
)addr
<= (sljit_uw
)0xffffffff);
340 SLJIT_ASSERT((jump
->flags
& PATCH_ABS64
) || (sljit_uw
)addr
<= (sljit_uw
)0xffffffffffff);
342 dst
= buf_ptr
[0] & 0x1f;
343 buf_ptr
[0] = MOVZ
| dst
| (((sljit_ins
)addr
& 0xffff) << 5);
344 buf_ptr
[1] = MOVK
| dst
| (((sljit_ins
)(addr
>> 16) & 0xffff) << 5) | (1 << 21);
345 if (jump
->flags
& (PATCH_ABS48
| PATCH_ABS64
))
346 buf_ptr
[2] = MOVK
| dst
| (((sljit_ins
)(addr
>> 32) & 0xffff) << 5) | (2 << 21);
347 if (jump
->flags
& PATCH_ABS64
)
348 buf_ptr
[3] = MOVK
| dst
| ((sljit_ins
)(addr
>> 48) << 5) | (3 << 21);
353 put_label
= compiler
->put_labels
;
355 addr
= (sljit_sw
)put_label
->label
->addr
;
356 buf_ptr
= (sljit_ins
*)put_label
->addr
;
358 buf_ptr
[0] |= ((sljit_ins
)addr
& 0xffff) << 5;
359 buf_ptr
[1] |= ((sljit_ins
)(addr
>> 16) & 0xffff) << 5;
361 if (put_label
->flags
>= 1)
362 buf_ptr
[2] |= ((sljit_ins
)(addr
>> 32) & 0xffff) << 5;
364 if (put_label
->flags
>= 2)
365 buf_ptr
[3] |= (sljit_ins
)(addr
>> 48) << 5;
367 put_label
= put_label
->next
;
370 compiler
->error
= SLJIT_ERR_COMPILED
;
371 compiler
->executable_offset
= executable_offset
;
372 compiler
->executable_size
= (sljit_uw
)(code_ptr
- code
) * sizeof(sljit_ins
);
374 code
= (sljit_ins
*)SLJIT_ADD_EXEC_OFFSET(code
, executable_offset
);
375 code_ptr
= (sljit_ins
*)SLJIT_ADD_EXEC_OFFSET(code_ptr
, executable_offset
);
377 SLJIT_CACHE_FLUSH(code
, code_ptr
);
378 SLJIT_UPDATE_WX_FLAGS(code
, code_ptr
, 1);
382 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_has_cpu_feature(sljit_s32 feature_type
)
384 switch (feature_type
) {
386 #ifdef SLJIT_IS_FPU_AVAILABLE
387 return SLJIT_IS_FPU_AVAILABLE
;
389 /* Available by default. */
395 case SLJIT_HAS_PREFETCH
:
403 /* --------------------------------------------------------------------- */
404 /* Core code generator functions. */
405 /* --------------------------------------------------------------------- */
407 #define COUNT_TRAILING_ZERO(value, result) \
409 if (!(value & 0xffffffff)) { \
413 if (!(value & 0xffff)) { \
417 if (!(value & 0xff)) { \
421 if (!(value & 0xf)) { \
425 if (!(value & 0x3)) { \
429 if (!(value & 0x1)) { \
434 #define LOGICAL_IMM_CHECK (sljit_ins)0x100
436 static sljit_ins
logical_imm(sljit_sw imm
, sljit_u32 len
)
439 sljit_u32 ones
, right
;
443 if (len
& LOGICAL_IMM_CHECK
) {
444 len
&= ~LOGICAL_IMM_CHECK
;
445 if (len
== 32 && (imm
== 0 || imm
== -1))
447 if (len
== 16 && ((sljit_s32
)imm
== 0 || (sljit_s32
)imm
== -1))
451 SLJIT_ASSERT((len
== 32 && imm
!= 0 && imm
!= -1)
452 || (len
== 16 && (sljit_s32
)imm
!= 0 && (sljit_s32
)imm
!= -1));
454 uimm
= (sljit_uw
)imm
;
461 mask
= ((sljit_uw
)1 << len
) - 1;
462 if ((uimm
& mask
) != ((uimm
>> len
) & mask
))
476 uimm
&= ((sljit_uw
)1 << len
) - 1;
478 /* Unsigned right shift. */
479 COUNT_TRAILING_ZERO(uimm
, right
);
481 /* Signed shift. We also know that the highest bit is set. */
482 imm
= (sljit_sw
)~uimm
;
483 SLJIT_ASSERT(imm
< 0);
485 COUNT_TRAILING_ZERO(imm
, ones
);
493 ins
= (0x3f - ((len
<< 1) - 1)) << 10;
496 return ins
| ((len
- ones
- 1) << 10) | ((len
- ones
- right
) << 16);
498 return ins
| ((ones
- 1) << 10) | ((len
- right
) << 16);
501 #undef COUNT_TRAILING_ZERO
503 static sljit_s32
load_immediate(struct sljit_compiler
*compiler
, sljit_s32 dst
, sljit_sw simm
)
505 sljit_uw imm
= (sljit_uw
)simm
;
506 sljit_u32 i
, zeros
, ones
, first
;
509 /* Handling simple immediates first. */
511 return push_inst(compiler
, MOVZ
| RD(dst
) | ((sljit_ins
)imm
<< 5));
513 if (simm
< 0 && simm
>= -0x10000)
514 return push_inst(compiler
, MOVN
| RD(dst
) | (((sljit_ins
)~imm
& 0xffff) << 5));
516 if (imm
<= 0xffffffffl
) {
517 if ((imm
& 0xffff) == 0)
518 return push_inst(compiler
, MOVZ
| RD(dst
) | ((sljit_ins
)(imm
>> 16) << 5) | (1 << 21));
519 if ((imm
& 0xffff0000l
) == 0xffff0000)
520 return push_inst(compiler
, (MOVN
^ W_OP
) | RD(dst
) | (((sljit_ins
)~imm
& 0xffff) << 5));
521 if ((imm
& 0xffff) == 0xffff)
522 return push_inst(compiler
, (MOVN
^ W_OP
) | RD(dst
) | (((sljit_ins
)~imm
& 0xffff0000u
) >> (16 - 5)) | (1 << 21));
524 bitmask
= logical_imm(simm
, 16);
526 return push_inst(compiler
, (ORRI
^ W_OP
) | RD(dst
) | RN(TMP_ZERO
) | bitmask
);
528 FAIL_IF(push_inst(compiler
, MOVZ
| RD(dst
) | (((sljit_ins
)imm
& 0xffff) << 5)));
529 return push_inst(compiler
, MOVK
| RD(dst
) | (((sljit_ins
)imm
& 0xffff0000u
) >> (16 - 5)) | (1 << 21));
532 bitmask
= logical_imm(simm
, 32);
534 return push_inst(compiler
, ORRI
| RD(dst
) | RN(TMP_ZERO
) | bitmask
);
536 if (simm
< 0 && simm
>= -0x100000000l
) {
537 if ((imm
& 0xffff) == 0xffff)
538 return push_inst(compiler
, MOVN
| RD(dst
) | (((sljit_ins
)~imm
& 0xffff0000u
) >> (16 - 5)) | (1 << 21));
540 FAIL_IF(push_inst(compiler
, MOVN
| RD(dst
) | (((sljit_ins
)~imm
& 0xffff) << 5)));
541 return push_inst(compiler
, MOVK
| RD(dst
) | (((sljit_ins
)imm
& 0xffff0000u
) >> (16 - 5)) | (1 << 21));
544 /* A large amount of number can be constructed from ORR and MOVx, but computing them is costly. */
548 for (i
= 4; i
> 0; i
--) {
549 if ((simm
& 0xffff) == 0)
551 if ((simm
& 0xffff) == 0xffff)
556 simm
= (sljit_sw
)imm
;
560 for (i
= 0; i
< 4; i
++) {
561 if (!(simm
& 0xffff)) {
567 FAIL_IF(push_inst(compiler
, MOVN
| RD(dst
) | (((sljit_ins
)simm
& 0xffff) << 5) | (i
<< 21)));
570 FAIL_IF(push_inst(compiler
, MOVK
| RD(dst
) | (((sljit_ins
)~simm
& 0xffff) << 5) | (i
<< 21)));
573 return SLJIT_SUCCESS
;
576 for (i
= 0; i
< 4; i
++) {
577 if (!(simm
& 0xffff)) {
583 FAIL_IF(push_inst(compiler
, MOVZ
| RD(dst
) | (((sljit_ins
)simm
& 0xffff) << 5) | (i
<< 21)));
586 FAIL_IF(push_inst(compiler
, MOVK
| RD(dst
) | (((sljit_ins
)simm
& 0xffff) << 5) | (i
<< 21)));
589 return SLJIT_SUCCESS
;
592 #define ARG1_IMM 0x0010000
593 #define ARG2_IMM 0x0020000
594 #define INT_OP 0x0040000
595 #define SET_FLAGS 0x0080000
596 #define UNUSED_RETURN 0x0100000
598 #define CHECK_FLAGS(flag_bits) \
599 if (flags & SET_FLAGS) { \
600 inv_bits |= flag_bits; \
601 if (flags & UNUSED_RETURN) \
605 static sljit_s32
emit_op_imm(struct sljit_compiler
*compiler
, sljit_s32 flags
, sljit_s32 dst
, sljit_sw arg1
, sljit_sw arg2
)
607 /* dst must be register, TMP_REG1
608 arg1 must be register, TMP_REG1, imm
609 arg2 must be register, TMP_REG2, imm */
610 sljit_ins inv_bits
= (flags
& INT_OP
) ? W_OP
: 0;
612 sljit_s32 op
= (flags
& 0xffff);
616 if (SLJIT_UNLIKELY((flags
& (ARG1_IMM
| ARG2_IMM
)) == (ARG1_IMM
| ARG2_IMM
))) {
617 /* Both are immediates. */
619 if (arg1
== 0 && op
!= SLJIT_ADD
&& op
!= SLJIT_SUB
)
622 FAIL_IF(load_immediate(compiler
, TMP_REG1
, arg1
));
627 if (flags
& (ARG1_IMM
| ARG2_IMM
)) {
628 reg
= (sljit_s32
)((flags
& ARG2_IMM
) ? arg1
: arg2
);
629 imm
= (flags
& ARG2_IMM
) ? arg2
: arg1
;
637 /* No form with immediate operand (except imm 0, which
638 is represented by a ZERO register). */
641 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && (flags
& ARG2_IMM
) && arg1
== TMP_REG1
);
642 return load_immediate(compiler
, dst
, imm
);
644 SLJIT_ASSERT(flags
& ARG2_IMM
);
645 FAIL_IF(load_immediate(compiler
, dst
, (flags
& INT_OP
) ? (~imm
& 0xffffffff) : ~imm
));
648 if (flags
& ARG1_IMM
)
653 compiler
->status_flags_state
= SLJIT_CURRENT_FLAGS_ADD_SUB
;
655 CHECK_FLAGS(1 << 29);
656 return push_inst(compiler
, ((op
== SLJIT_ADD
? ADDI
: SUBI
) ^ inv_bits
) | RD(dst
) | RN(reg
));
658 if (imm
> 0 && imm
<= 0xfff) {
659 CHECK_FLAGS(1 << 29);
660 return push_inst(compiler
, (ADDI
^ inv_bits
) | RD(dst
) | RN(reg
) | ((sljit_ins
)imm
<< 10));
663 if (nimm
> 0 && nimm
<= 0xfff) {
664 CHECK_FLAGS(1 << 29);
665 return push_inst(compiler
, (SUBI
^ inv_bits
) | RD(dst
) | RN(reg
) | ((sljit_ins
)nimm
<< 10));
667 if (imm
> 0 && imm
<= 0xffffff && !(imm
& 0xfff)) {
668 CHECK_FLAGS(1 << 29);
669 return push_inst(compiler
, (ADDI
^ inv_bits
) | RD(dst
) | RN(reg
) | (((sljit_ins
)imm
>> 12) << 10) | (1 << 22));
671 if (nimm
> 0 && nimm
<= 0xffffff && !(nimm
& 0xfff)) {
672 CHECK_FLAGS(1 << 29);
673 return push_inst(compiler
, (SUBI
^ inv_bits
) | RD(dst
) | RN(reg
) | (((sljit_ins
)nimm
>> 12) << 10) | (1 << 22));
675 if (imm
> 0 && imm
<= 0xffffff && !(flags
& SET_FLAGS
)) {
676 FAIL_IF(push_inst(compiler
, (ADDI
^ inv_bits
) | RD(dst
) | RN(reg
) | (((sljit_ins
)imm
>> 12) << 10) | (1 << 22)));
677 return push_inst(compiler
, (ADDI
^ inv_bits
) | RD(dst
) | RN(dst
) | (((sljit_ins
)imm
& 0xfff) << 10));
679 if (nimm
> 0 && nimm
<= 0xffffff && !(flags
& SET_FLAGS
)) {
680 FAIL_IF(push_inst(compiler
, (SUBI
^ inv_bits
) | RD(dst
) | RN(reg
) | (((sljit_ins
)nimm
>> 12) << 10) | (1 << 22)));
681 return push_inst(compiler
, (SUBI
^ inv_bits
) | RD(dst
) | RN(dst
) | (((sljit_ins
)nimm
& 0xfff) << 10));
685 inst_bits
= logical_imm(imm
, LOGICAL_IMM_CHECK
| ((flags
& INT_OP
) ? 16 : 32));
688 CHECK_FLAGS(3 << 29);
689 return push_inst(compiler
, (ANDI
^ inv_bits
) | RD(dst
) | RN(reg
) | inst_bits
);
692 inst_bits
= logical_imm(imm
, LOGICAL_IMM_CHECK
| ((flags
& INT_OP
) ? 16 : 32));
699 FAIL_IF(push_inst(compiler
, (inst_bits
^ inv_bits
) | RD(dst
) | RN(reg
)));
702 if (flags
& ARG1_IMM
)
704 if (flags
& INT_OP
) {
706 FAIL_IF(push_inst(compiler
, (UBFM
^ inv_bits
) | RD(dst
) | RN(arg1
)
707 | (((sljit_ins
)-imm
& 0x1f) << 16) | ((31 - (sljit_ins
)imm
) << 10)));
711 FAIL_IF(push_inst(compiler
, (UBFM
^ inv_bits
) | RD(dst
) | RN(arg1
) | (1 << 22)
712 | (((sljit_ins
)-imm
& 0x3f) << 16) | ((63 - (sljit_ins
)imm
) << 10)));
717 if (flags
& ARG1_IMM
)
719 if (op
== SLJIT_ASHR
)
721 if (flags
& INT_OP
) {
723 FAIL_IF(push_inst(compiler
, (UBFM
^ inv_bits
) | RD(dst
) | RN(arg1
)
724 | ((sljit_ins
)imm
<< 16) | (31 << 10)));
728 FAIL_IF(push_inst(compiler
, (UBFM
^ inv_bits
) | RD(dst
) | RN(arg1
)
729 | (1 << 22) | ((sljit_ins
)imm
<< 16) | (63 << 10)));
737 if (flags
& ARG2_IMM
) {
741 FAIL_IF(load_immediate(compiler
, TMP_REG2
, arg2
));
749 FAIL_IF(load_immediate(compiler
, TMP_REG1
, arg1
));
755 /* Both arguments are registers. */
759 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
761 return SLJIT_SUCCESS
;
762 return push_inst(compiler
, ORR
| RD(dst
) | RN(TMP_ZERO
) | RM(arg2
));
764 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
765 return push_inst(compiler
, (UBFM
^ W_OP
) | RD(dst
) | RN(arg2
) | (7 << 10));
767 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
768 if (!(flags
& INT_OP
))
770 return push_inst(compiler
, (SBFM
^ inv_bits
) | RD(dst
) | RN(arg2
) | (7 << 10));
772 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
773 return push_inst(compiler
, (UBFM
^ W_OP
) | RD(dst
) | RN(arg2
) | (15 << 10));
775 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
776 if (!(flags
& INT_OP
))
778 return push_inst(compiler
, (SBFM
^ inv_bits
) | RD(dst
) | RN(arg2
) | (15 << 10));
780 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
782 return SLJIT_SUCCESS
;
785 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
786 return push_inst(compiler
, (ORR
^ W_OP
) | RD(dst
) | RN(TMP_ZERO
) | RM(arg2
));
788 SLJIT_ASSERT(!(flags
& SET_FLAGS
) && arg1
== TMP_REG1
);
789 return push_inst(compiler
, SBFM
| (1 << 22) | RD(dst
) | RN(arg2
) | (31 << 10));
791 SLJIT_ASSERT(arg1
== TMP_REG1
);
792 FAIL_IF(push_inst(compiler
, (ORN
^ inv_bits
) | RD(dst
) | RN(TMP_ZERO
) | RM(arg2
)));
793 break; /* Set flags. */
795 SLJIT_ASSERT(arg1
== TMP_REG1
);
796 compiler
->status_flags_state
= SLJIT_CURRENT_FLAGS_ADD_SUB
;
797 if (flags
& SET_FLAGS
)
799 return push_inst(compiler
, (SUB
^ inv_bits
) | RD(dst
) | RN(TMP_ZERO
) | RM(arg2
));
801 SLJIT_ASSERT(arg1
== TMP_REG1
);
802 return push_inst(compiler
, (CLZ
^ inv_bits
) | RD(dst
) | RN(arg2
));
804 CHECK_FLAGS(1 << 29);
805 compiler
->status_flags_state
= SLJIT_CURRENT_FLAGS_ADD_SUB
;
806 return push_inst(compiler
, (ADD
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
));
808 CHECK_FLAGS(1 << 29);
809 return push_inst(compiler
, (ADC
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
));
811 CHECK_FLAGS(1 << 29);
812 compiler
->status_flags_state
= SLJIT_CURRENT_FLAGS_ADD_SUB
;
813 return push_inst(compiler
, (SUB
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
));
815 CHECK_FLAGS(1 << 29);
816 return push_inst(compiler
, (SBC
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
));
818 compiler
->status_flags_state
= 0;
819 if (!(flags
& SET_FLAGS
))
820 return push_inst(compiler
, (MADD
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
) | RT2(TMP_ZERO
));
821 if (flags
& INT_OP
) {
822 FAIL_IF(push_inst(compiler
, SMADDL
| RD(dst
) | RN(arg1
) | RM(arg2
) | (31 << 10)));
823 FAIL_IF(push_inst(compiler
, ADD
| RD(TMP_LR
) | RN(TMP_ZERO
) | RM(dst
) | (2 << 22) | (31 << 10)));
824 return push_inst(compiler
, SUBS
| RD(TMP_ZERO
) | RN(TMP_LR
) | RM(dst
) | (2 << 22) | (63 << 10));
826 FAIL_IF(push_inst(compiler
, SMULH
| RD(TMP_LR
) | RN(arg1
) | RM(arg2
)));
827 FAIL_IF(push_inst(compiler
, MADD
| RD(dst
) | RN(arg1
) | RM(arg2
) | RT2(TMP_ZERO
)));
828 return push_inst(compiler
, SUBS
| RD(TMP_ZERO
) | RN(TMP_LR
) | RM(dst
) | (2 << 22) | (63 << 10));
830 CHECK_FLAGS(3 << 29);
831 return push_inst(compiler
, (AND
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
));
833 FAIL_IF(push_inst(compiler
, (ORR
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
)));
834 break; /* Set flags. */
836 FAIL_IF(push_inst(compiler
, (EOR
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
)));
837 break; /* Set flags. */
839 FAIL_IF(push_inst(compiler
, (LSLV
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
)));
840 break; /* Set flags. */
842 FAIL_IF(push_inst(compiler
, (LSRV
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
)));
843 break; /* Set flags. */
845 FAIL_IF(push_inst(compiler
, (ASRV
^ inv_bits
) | RD(dst
) | RN(arg1
) | RM(arg2
)));
846 break; /* Set flags. */
849 return SLJIT_SUCCESS
;
853 if (flags
& SET_FLAGS
)
854 return push_inst(compiler
, (SUBS
^ inv_bits
) | RD(TMP_ZERO
) | RN(dst
) | RM(TMP_ZERO
));
855 return SLJIT_SUCCESS
;
861 #define BYTE_SIZE 0x0
862 #define HALF_SIZE 0x1
864 #define WORD_SIZE 0x3
866 #define MEM_SIZE_SHIFT(flags) ((sljit_ins)(flags) & 0x3)
868 static sljit_s32
emit_op_mem(struct sljit_compiler
*compiler
, sljit_s32 flags
, sljit_s32 reg
,
869 sljit_s32 arg
, sljit_sw argw
, sljit_s32 tmp_reg
)
871 sljit_u32 shift
= MEM_SIZE_SHIFT(flags
);
872 sljit_u32 type
= (shift
<< 30);
874 if (!(flags
& STORE
))
875 type
|= (flags
& SIGNED
) ? 0x00800000 : 0x00400000;
877 SLJIT_ASSERT(arg
& SLJIT_MEM
);
879 if (SLJIT_UNLIKELY(arg
& OFFS_REG_MASK
)) {
882 if (argw
== 0 || argw
== shift
)
883 return push_inst(compiler
, STRB
| type
| RT(reg
)
884 | RN(arg
& REG_MASK
) | RM(OFFS_REG(arg
)) | (argw
? (1 << 12) : 0));
886 FAIL_IF(push_inst(compiler
, ADD
| RD(tmp_reg
) | RN(arg
& REG_MASK
) | RM(OFFS_REG(arg
)) | ((sljit_ins
)argw
<< 10)));
887 return push_inst(compiler
, STRBI
| type
| RT(reg
) | RN(tmp_reg
));
893 FAIL_IF(load_immediate(compiler
, tmp_reg
, argw
& ~(0xfff << shift
)));
895 argw
= (argw
>> shift
) & 0xfff;
897 return push_inst(compiler
, STRBI
| type
| RT(reg
) | RN(tmp_reg
) | ((sljit_ins
)argw
<< 10));
900 if (argw
>= 0 && (argw
& ((1 << shift
) - 1)) == 0) {
901 if ((argw
>> shift
) <= 0xfff)
902 return push_inst(compiler
, STRBI
| type
| RT(reg
) | RN(arg
) | ((sljit_ins
)argw
<< (10 - shift
)));
904 if (argw
<= 0xffffff) {
905 FAIL_IF(push_inst(compiler
, ADDI
| (1 << 22) | RD(tmp_reg
) | RN(arg
) | (((sljit_ins
)argw
>> 12) << 10)));
907 argw
= ((argw
& 0xfff) >> shift
);
908 return push_inst(compiler
, STRBI
| type
| RT(reg
) | RN(tmp_reg
) | ((sljit_ins
)argw
<< 10));
912 if (argw
<= 255 && argw
>= -256)
913 return push_inst(compiler
, STURBI
| type
| RT(reg
) | RN(arg
) | (((sljit_ins
)argw
& 0x1ff) << 12));
915 FAIL_IF(load_immediate(compiler
, tmp_reg
, argw
));
917 return push_inst(compiler
, STRB
| type
| RT(reg
) | RN(arg
) | RM(tmp_reg
));
920 /* --------------------------------------------------------------------- */
922 /* --------------------------------------------------------------------- */
924 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_enter(struct sljit_compiler
*compiler
,
925 sljit_s32 options
, sljit_s32 arg_types
, sljit_s32 scratches
, sljit_s32 saveds
,
926 sljit_s32 fscratches
, sljit_s32 fsaveds
, sljit_s32 local_size
)
928 sljit_s32 prev
, fprev
, saved_regs_size
, i
, tmp
;
929 sljit_s32 word_arg_count
= 0;
933 CHECK(check_sljit_emit_enter(compiler
, options
, arg_types
, scratches
, saveds
, fscratches
, fsaveds
, local_size
));
934 set_emit_enter(compiler
, options
, arg_types
, scratches
, saveds
, fscratches
, fsaveds
, local_size
);
936 saved_regs_size
= GET_SAVED_REGISTERS_SIZE(scratches
, saveds
, 2);
937 saved_regs_size
+= GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches
, fsaveds
, SSIZE_OF(f64
));
939 local_size
= (local_size
+ saved_regs_size
+ 0xf) & ~0xf;
940 compiler
->local_size
= local_size
;
942 if (local_size
<= 512) {
943 FAIL_IF(push_inst(compiler
, STP_PRE
| RT(TMP_FP
) | RT2(TMP_LR
)
944 | RN(SLJIT_SP
) | (sljit_ins
)((-(local_size
>> 3) & 0x7f) << 15)));
945 offs
= (sljit_ins
)(local_size
- 2 * SSIZE_OF(sw
)) << (15 - 3);
948 saved_regs_size
= ((saved_regs_size
- 2 * SSIZE_OF(sw
)) + 0xf) & ~0xf;
950 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | ((sljit_ins
)saved_regs_size
<< 10)));
951 offs
= (sljit_ins
)(saved_regs_size
- 2 * SSIZE_OF(sw
)) << (15 - 3);
952 local_size
-= saved_regs_size
;
953 SLJIT_ASSERT(local_size
> 0);
958 tmp
= SLJIT_S0
- saveds
;
959 for (i
= SLJIT_S0
; i
> tmp
; i
--) {
964 FAIL_IF(push_inst(compiler
, STP
| RT(prev
) | RT2(i
) | RN(SLJIT_SP
) | offs
));
965 offs
-= (sljit_ins
)2 << 15;
969 for (i
= scratches
; i
>= SLJIT_FIRST_SAVED_REG
; i
--) {
974 FAIL_IF(push_inst(compiler
, STP
| RT(prev
) | RT2(i
) | RN(SLJIT_SP
) | offs
));
975 offs
-= (sljit_ins
)2 << 15;
981 tmp
= SLJIT_FS0
- fsaveds
;
982 for (i
= SLJIT_FS0
; i
> tmp
; i
--) {
987 FAIL_IF(push_inst(compiler
, STP_F64
| VT(fprev
) | VT2(i
) | RN(SLJIT_SP
) | offs
));
988 offs
-= (sljit_ins
)2 << 15;
992 for (i
= fscratches
; i
>= SLJIT_FIRST_SAVED_FLOAT_REG
; i
--) {
997 FAIL_IF(push_inst(compiler
, STP_F64
| VT(fprev
) | VT2(i
) | RN(SLJIT_SP
) | offs
));
998 offs
-= (sljit_ins
)2 << 15;
1003 FAIL_IF(push_inst(compiler
, STRI_F64
| VT(fprev
) | RN(SLJIT_SP
) | (offs
>> 5) | (1 << 10)));
1006 FAIL_IF(push_inst(compiler
, STRI
| RT(prev
) | RN(SLJIT_SP
) | (offs
>> 5) | ((fprev
== -1) ? (1 << 10) : 0)));
1008 arg_types
>>= SLJIT_ARG_SHIFT
;
1011 if (local_size
> 4096)
1012 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | (1 << 10) | (1 << 22)));
1015 while (arg_types
> 0) {
1016 if ((arg_types
& SLJIT_ARG_MASK
) < SLJIT_ARG_TYPE_F64
) {
1017 FAIL_IF(push_inst(compiler
, ORR
| RD(SLJIT_S0
- word_arg_count
) | RN(TMP_ZERO
) | RM(SLJIT_R0
+ word_arg_count
)));
1020 arg_types
>>= SLJIT_ARG_SHIFT
;
1024 if (local_size
> 4096) {
1025 if (local_size
< 4 * 4096) {
1026 /* No need for a loop. */
1028 if (local_size
>= 2 * 4096) {
1029 if (local_size
>= 3 * 4096) {
1030 FAIL_IF(push_inst(compiler
, LDRI
| RT(TMP_ZERO
) | RN(SLJIT_SP
)));
1031 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | (1 << 10) | (1 << 22)));
1034 FAIL_IF(push_inst(compiler
, LDRI
| RT(TMP_ZERO
) | RN(SLJIT_SP
)));
1035 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | (1 << 10) | (1 << 22)));
1039 FAIL_IF(push_inst(compiler
, MOVZ
| RD(TMP_REG1
) | ((((sljit_ins
)local_size
>> 12) - 1) << 5)));
1040 FAIL_IF(push_inst(compiler
, LDRI
| RT(TMP_ZERO
) | RN(SLJIT_SP
)));
1041 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | (1 << 10) | (1 << 22)));
1042 FAIL_IF(push_inst(compiler
, SUBI
| (1 << 29) | RD(TMP_REG1
) | RN(TMP_REG1
) | (1 << 10)));
1043 FAIL_IF(push_inst(compiler
, B_CC
| ((((sljit_ins
) -3) & 0x7ffff) << 5) | 0x1 /* not-equal */));
1046 local_size
&= 0xfff;
1049 FAIL_IF(push_inst(compiler
, LDRI
| RT(TMP_ZERO
) | RN(SLJIT_SP
)));
1051 FAIL_IF(push_inst(compiler
, STP
| RT(TMP_FP
) | RT2(TMP_LR
) | RN(SLJIT_SP
)));
1054 if (local_size
> 0) {
1055 if (local_size
<= 512)
1056 FAIL_IF(push_inst(compiler
, STP_PRE
| RT(TMP_FP
) | RT2(TMP_LR
)
1057 | RN(SLJIT_SP
) | (sljit_ins
)((-(local_size
>> 3) & 0x7f) << 15)));
1059 if (local_size
>= 4096)
1060 local_size
= (1 << (22 - 10));
1062 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | ((sljit_ins
)local_size
<< 10)));
1063 FAIL_IF(push_inst(compiler
, STP
| RT(TMP_FP
) | RT2(TMP_LR
) | RN(SLJIT_SP
)));
1069 /* The local_size does not include saved registers size. */
1070 if (local_size
!= 0) {
1071 if (local_size
> 0xfff) {
1072 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | (((sljit_ins
)local_size
>> 12) << 10) | (1 << 22)));
1073 local_size
&= 0xfff;
1076 if (local_size
> 512 || local_size
== 0) {
1077 if (local_size
!= 0)
1078 FAIL_IF(push_inst(compiler
, SUBI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | ((sljit_ins
)local_size
<< 10)));
1080 FAIL_IF(push_inst(compiler
, STP
| RT(TMP_FP
) | RT2(TMP_LR
) | RN(SLJIT_SP
)));
1082 FAIL_IF(push_inst(compiler
, STP_PRE
| RT(TMP_FP
) | RT2(TMP_LR
)
1083 | RN(SLJIT_SP
) | (sljit_ins
)((-(local_size
>> 3) & 0x7f) << 15)));
1088 return push_inst(compiler
, ADDI
| RD(TMP_FP
) | RN(SLJIT_SP
) | (0 << 10));
1091 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_set_context(struct sljit_compiler
*compiler
,
1092 sljit_s32 options
, sljit_s32 arg_types
, sljit_s32 scratches
, sljit_s32 saveds
,
1093 sljit_s32 fscratches
, sljit_s32 fsaveds
, sljit_s32 local_size
)
1095 sljit_s32 saved_regs_size
;
1098 CHECK(check_sljit_set_context(compiler
, options
, arg_types
, scratches
, saveds
, fscratches
, fsaveds
, local_size
));
1099 set_set_context(compiler
, options
, arg_types
, scratches
, saveds
, fscratches
, fsaveds
, local_size
);
1101 saved_regs_size
= GET_SAVED_REGISTERS_SIZE(scratches
, saveds
, 2);
1102 saved_regs_size
+= GET_SAVED_FLOAT_REGISTERS_SIZE(fscratches
, fsaveds
, SSIZE_OF(f64
));
1104 compiler
->local_size
= (local_size
+ saved_regs_size
+ 0xf) & ~0xf;
1105 return SLJIT_SUCCESS
;
1108 static sljit_s32
emit_stack_frame_release(struct sljit_compiler
*compiler
)
1110 sljit_s32 local_size
, prev
, fprev
, i
, tmp
;
1113 local_size
= compiler
->local_size
;
1115 if (local_size
> 512 && local_size
<= 512 + 496) {
1116 FAIL_IF(push_inst(compiler
, LDP_POST
| RT(TMP_FP
) | RT2(TMP_LR
)
1117 | RN(SLJIT_SP
) | ((sljit_ins
)(local_size
- 512) << (15 - 3))));
1120 FAIL_IF(push_inst(compiler
, LDP
| RT(TMP_FP
) | RT2(TMP_LR
) | RN(SLJIT_SP
)));
1122 if (local_size
> 512) {
1124 if (local_size
> 0xfff) {
1125 FAIL_IF(push_inst(compiler
, ADDI
| RD(SLJIT_SP
) | RN(SLJIT_SP
)
1126 | (((sljit_ins
)local_size
>> 12) << 10) | (1 << 22)));
1127 local_size
&= 0xfff;
1130 FAIL_IF(push_inst(compiler
, ADDI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | ((sljit_ins
)local_size
<< 10)));
1134 offs
= (sljit_ins
)(local_size
- 2 * SSIZE_OF(sw
)) << (15 - 3);
1137 tmp
= SLJIT_S0
- compiler
->saveds
;
1138 for (i
= SLJIT_S0
; i
> tmp
; i
--) {
1143 FAIL_IF(push_inst(compiler
, LDP
| RT(prev
) | RT2(i
) | RN(SLJIT_SP
) | offs
));
1144 offs
-= (sljit_ins
)2 << 15;
1148 for (i
= compiler
->scratches
; i
>= SLJIT_FIRST_SAVED_REG
; i
--) {
1153 FAIL_IF(push_inst(compiler
, LDP
| RT(prev
) | RT2(i
) | RN(SLJIT_SP
) | offs
));
1154 offs
-= (sljit_ins
)2 << 15;
1160 tmp
= SLJIT_FS0
- compiler
->fsaveds
;
1161 for (i
= SLJIT_FS0
; i
> tmp
; i
--) {
1166 FAIL_IF(push_inst(compiler
, LDP_F64
| VT(fprev
) | VT2(i
) | RN(SLJIT_SP
) | offs
));
1167 offs
-= (sljit_ins
)2 << 15;
1171 for (i
= compiler
->fscratches
; i
>= SLJIT_FIRST_SAVED_FLOAT_REG
; i
--) {
1176 FAIL_IF(push_inst(compiler
, LDP_F64
| VT(fprev
) | VT2(i
) | RN(SLJIT_SP
) | offs
));
1177 offs
-= (sljit_ins
)2 << 15;
1182 FAIL_IF(push_inst(compiler
, LDRI_F64
| VT(fprev
) | RN(SLJIT_SP
) | (offs
>> 5) | (1 << 10)));
1185 FAIL_IF(push_inst(compiler
, LDRI
| RT(prev
) | RN(SLJIT_SP
) | (offs
>> 5) | ((fprev
== -1) ? (1 << 10) : 0)));
1187 /* This and the next call/jump instruction can be executed parallelly. */
1188 return push_inst(compiler
, ADDI
| RD(SLJIT_SP
) | RN(SLJIT_SP
) | (sljit_ins
)(local_size
<< 10));
1191 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_return_void(struct sljit_compiler
*compiler
)
1194 CHECK(check_sljit_emit_return_void(compiler
));
1196 FAIL_IF(emit_stack_frame_release(compiler
));
1198 return push_inst(compiler
, RET
| RN(TMP_LR
));
1201 /* --------------------------------------------------------------------- */
1203 /* --------------------------------------------------------------------- */
1205 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_op0(struct sljit_compiler
*compiler
, sljit_s32 op
)
1207 sljit_ins inv_bits
= (op
& SLJIT_32
) ? W_OP
: 0;
1210 CHECK(check_sljit_emit_op0(compiler
, op
));
1212 op
= GET_OPCODE(op
);
1214 case SLJIT_BREAKPOINT
:
1215 return push_inst(compiler
, BRK
);
1217 return push_inst(compiler
, NOP
);
1220 FAIL_IF(push_inst(compiler
, ORR
| RD(TMP_REG1
) | RN(TMP_ZERO
) | RM(SLJIT_R0
)));
1221 FAIL_IF(push_inst(compiler
, MADD
| RD(SLJIT_R0
) | RN(SLJIT_R0
) | RM(SLJIT_R1
) | RT2(TMP_ZERO
)));
1222 return push_inst(compiler
, (op
== SLJIT_LMUL_UW
? UMULH
: SMULH
) | RD(SLJIT_R1
) | RN(TMP_REG1
) | RM(SLJIT_R1
));
1223 case SLJIT_DIVMOD_UW
:
1224 case SLJIT_DIVMOD_SW
:
1225 FAIL_IF(push_inst(compiler
, (ORR
^ inv_bits
) | RD(TMP_REG1
) | RN(TMP_ZERO
) | RM(SLJIT_R0
)));
1226 FAIL_IF(push_inst(compiler
, ((op
== SLJIT_DIVMOD_UW
? UDIV
: SDIV
) ^ inv_bits
) | RD(SLJIT_R0
) | RN(SLJIT_R0
) | RM(SLJIT_R1
)));
1227 FAIL_IF(push_inst(compiler
, (MADD
^ inv_bits
) | RD(SLJIT_R1
) | RN(SLJIT_R0
) | RM(SLJIT_R1
) | RT2(TMP_ZERO
)));
1228 return push_inst(compiler
, (SUB
^ inv_bits
) | RD(SLJIT_R1
) | RN(TMP_REG1
) | RM(SLJIT_R1
));
1231 return push_inst(compiler
, ((op
== SLJIT_DIV_UW
? UDIV
: SDIV
) ^ inv_bits
) | RD(SLJIT_R0
) | RN(SLJIT_R0
) | RM(SLJIT_R1
));
1233 case SLJIT_SKIP_FRAMES_BEFORE_RETURN
:
1234 return SLJIT_SUCCESS
;
1237 return SLJIT_SUCCESS
;
1240 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_op1(struct sljit_compiler
*compiler
, sljit_s32 op
,
1241 sljit_s32 dst
, sljit_sw dstw
,
1242 sljit_s32 src
, sljit_sw srcw
)
1244 sljit_s32 dst_r
, flags
, mem_flags
;
1245 sljit_s32 op_flags
= GET_ALL_FLAGS(op
);
1248 CHECK(check_sljit_emit_op1(compiler
, op
, dst
, dstw
, src
, srcw
));
1249 ADJUST_LOCAL_OFFSET(dst
, dstw
);
1250 ADJUST_LOCAL_OFFSET(src
, srcw
);
1252 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_REG1
;
1254 op
= GET_OPCODE(op
);
1255 if (op
>= SLJIT_MOV
&& op
<= SLJIT_MOV_P
) {
1256 /* Both operands are registers. */
1257 if (dst_r
!= TMP_REG1
&& FAST_IS_REG(src
))
1258 return emit_op_imm(compiler
, op
| ((op_flags
& SLJIT_32
) ? INT_OP
: 0), dst_r
, TMP_REG1
, src
);
1263 mem_flags
= WORD_SIZE
;
1266 mem_flags
= BYTE_SIZE
;
1267 if (src
& SLJIT_IMM
)
1268 srcw
= (sljit_u8
)srcw
;
1271 mem_flags
= BYTE_SIZE
| SIGNED
;
1272 if (src
& SLJIT_IMM
)
1273 srcw
= (sljit_s8
)srcw
;
1276 mem_flags
= HALF_SIZE
;
1277 if (src
& SLJIT_IMM
)
1278 srcw
= (sljit_u16
)srcw
;
1281 mem_flags
= HALF_SIZE
| SIGNED
;
1282 if (src
& SLJIT_IMM
)
1283 srcw
= (sljit_s16
)srcw
;
1286 mem_flags
= INT_SIZE
;
1287 if (src
& SLJIT_IMM
)
1288 srcw
= (sljit_u32
)srcw
;
1292 mem_flags
= INT_SIZE
| SIGNED
;
1293 if (src
& SLJIT_IMM
)
1294 srcw
= (sljit_s32
)srcw
;
1297 SLJIT_UNREACHABLE();
1302 if (src
& SLJIT_IMM
)
1303 FAIL_IF(emit_op_imm(compiler
, SLJIT_MOV
| ARG2_IMM
, dst_r
, TMP_REG1
, srcw
));
1304 else if (!(src
& SLJIT_MEM
))
1307 FAIL_IF(emit_op_mem(compiler
, mem_flags
, dst_r
, src
, srcw
, TMP_REG1
));
1309 if (dst
& SLJIT_MEM
)
1310 return emit_op_mem(compiler
, mem_flags
| STORE
, dst_r
, dst
, dstw
, TMP_REG2
);
1311 return SLJIT_SUCCESS
;
1314 flags
= HAS_FLAGS(op_flags
) ? SET_FLAGS
: 0;
1315 mem_flags
= WORD_SIZE
;
1317 if (op_flags
& SLJIT_32
) {
1319 mem_flags
= INT_SIZE
;
1322 if (src
& SLJIT_MEM
) {
1323 FAIL_IF(emit_op_mem(compiler
, mem_flags
, TMP_REG2
, src
, srcw
, TMP_REG2
));
1327 emit_op_imm(compiler
, flags
| op
, dst_r
, TMP_REG1
, src
);
1329 if (SLJIT_UNLIKELY(dst
& SLJIT_MEM
))
1330 return emit_op_mem(compiler
, mem_flags
| STORE
, dst_r
, dst
, dstw
, TMP_REG2
);
1331 return SLJIT_SUCCESS
;
1334 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_op2(struct sljit_compiler
*compiler
, sljit_s32 op
,
1335 sljit_s32 dst
, sljit_sw dstw
,
1336 sljit_s32 src1
, sljit_sw src1w
,
1337 sljit_s32 src2
, sljit_sw src2w
)
1339 sljit_s32 dst_r
, flags
, mem_flags
;
1342 CHECK(check_sljit_emit_op2(compiler
, op
, 0, dst
, dstw
, src1
, src1w
, src2
, src2w
));
1343 ADJUST_LOCAL_OFFSET(dst
, dstw
);
1344 ADJUST_LOCAL_OFFSET(src1
, src1w
);
1345 ADJUST_LOCAL_OFFSET(src2
, src2w
);
1347 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_REG1
;
1348 flags
= HAS_FLAGS(op
) ? SET_FLAGS
: 0;
1349 mem_flags
= WORD_SIZE
;
1351 if (op
& SLJIT_32
) {
1353 mem_flags
= INT_SIZE
;
1356 if (dst
== TMP_REG1
)
1357 flags
|= UNUSED_RETURN
;
1359 if (src1
& SLJIT_MEM
) {
1360 FAIL_IF(emit_op_mem(compiler
, mem_flags
, TMP_REG1
, src1
, src1w
, TMP_REG1
));
1364 if (src2
& SLJIT_MEM
) {
1365 FAIL_IF(emit_op_mem(compiler
, mem_flags
, TMP_REG2
, src2
, src2w
, TMP_REG2
));
1369 if (src1
& SLJIT_IMM
)
1374 if (src2
& SLJIT_IMM
)
1379 emit_op_imm(compiler
, flags
| GET_OPCODE(op
), dst_r
, src1w
, src2w
);
1381 if (dst
& SLJIT_MEM
)
1382 return emit_op_mem(compiler
, mem_flags
| STORE
, dst_r
, dst
, dstw
, TMP_REG2
);
1383 return SLJIT_SUCCESS
;
1386 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_op2u(struct sljit_compiler
*compiler
, sljit_s32 op
,
1387 sljit_s32 src1
, sljit_sw src1w
,
1388 sljit_s32 src2
, sljit_sw src2w
)
1391 CHECK(check_sljit_emit_op2(compiler
, op
, 1, 0, 0, src1
, src1w
, src2
, src2w
));
1393 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
1394 || (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
1395 compiler
->skip_checks
= 1;
1397 return sljit_emit_op2(compiler
, op
, TMP_REG1
, 0, src1
, src1w
, src2
, src2w
);
1400 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_op_src(struct sljit_compiler
*compiler
, sljit_s32 op
,
1401 sljit_s32 src
, sljit_sw srcw
)
1404 CHECK(check_sljit_emit_op_src(compiler
, op
, src
, srcw
));
1405 ADJUST_LOCAL_OFFSET(src
, srcw
);
1408 case SLJIT_FAST_RETURN
:
1409 if (FAST_IS_REG(src
))
1410 FAIL_IF(push_inst(compiler
, ORR
| RD(TMP_LR
) | RN(TMP_ZERO
) | RM(src
)));
1412 FAIL_IF(emit_op_mem(compiler
, WORD_SIZE
, TMP_LR
, src
, srcw
, TMP_REG1
));
1414 return push_inst(compiler
, RET
| RN(TMP_LR
));
1415 case SLJIT_SKIP_FRAMES_BEFORE_FAST_RETURN
:
1416 return SLJIT_SUCCESS
;
1417 case SLJIT_PREFETCH_L1
:
1418 case SLJIT_PREFETCH_L2
:
1419 case SLJIT_PREFETCH_L3
:
1420 case SLJIT_PREFETCH_ONCE
:
1421 SLJIT_ASSERT(reg_map
[1] == 0 && reg_map
[3] == 2 && reg_map
[5] == 4);
1423 /* The reg_map[op] should provide the appropriate constant. */
1424 if (op
== SLJIT_PREFETCH_L1
)
1426 else if (op
== SLJIT_PREFETCH_L2
)
1428 else if (op
== SLJIT_PREFETCH_L3
)
1433 /* Signed word sized load is the prefetch instruction. */
1434 return emit_op_mem(compiler
, WORD_SIZE
| SIGNED
, op
, src
, srcw
, TMP_REG1
);
1437 return SLJIT_SUCCESS
;
1440 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_get_register_index(sljit_s32 reg
)
1442 CHECK_REG_INDEX(check_sljit_get_register_index(reg
));
1443 return reg_map
[reg
];
1446 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_get_float_register_index(sljit_s32 reg
)
1448 CHECK_REG_INDEX(check_sljit_get_float_register_index(reg
));
1449 return freg_map
[reg
];
1452 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_op_custom(struct sljit_compiler
*compiler
,
1453 void *instruction
, sljit_u32 size
)
1456 CHECK(check_sljit_emit_op_custom(compiler
, instruction
, size
));
1458 return push_inst(compiler
, *(sljit_ins
*)instruction
);
1461 /* --------------------------------------------------------------------- */
1462 /* Floating point operators */
1463 /* --------------------------------------------------------------------- */
1465 static sljit_s32
emit_fop_mem(struct sljit_compiler
*compiler
, sljit_s32 flags
, sljit_s32 reg
, sljit_s32 arg
, sljit_sw argw
)
1467 sljit_u32 shift
= MEM_SIZE_SHIFT(flags
);
1468 sljit_ins type
= (shift
<< 30);
1470 SLJIT_ASSERT(arg
& SLJIT_MEM
);
1472 if (!(flags
& STORE
))
1475 if (arg
& OFFS_REG_MASK
) {
1477 if (argw
== 0 || argw
== shift
)
1478 return push_inst(compiler
, STR_FR
| type
| VT(reg
)
1479 | RN(arg
& REG_MASK
) | RM(OFFS_REG(arg
)) | (argw
? (1 << 12) : 0));
1481 FAIL_IF(push_inst(compiler
, ADD
| RD(TMP_REG1
) | RN(arg
& REG_MASK
) | RM(OFFS_REG(arg
)) | ((sljit_ins
)argw
<< 10)));
1482 return push_inst(compiler
, STR_FI
| type
| VT(reg
) | RN(TMP_REG1
));
1488 FAIL_IF(load_immediate(compiler
, TMP_REG1
, argw
& ~(0xfff << shift
)));
1490 argw
= (argw
>> shift
) & 0xfff;
1492 return push_inst(compiler
, STR_FI
| type
| VT(reg
) | RN(TMP_REG1
) | ((sljit_ins
)argw
<< 10));
1495 if (argw
>= 0 && (argw
& ((1 << shift
) - 1)) == 0) {
1496 if ((argw
>> shift
) <= 0xfff)
1497 return push_inst(compiler
, STR_FI
| type
| VT(reg
) | RN(arg
) | ((sljit_ins
)argw
<< (10 - shift
)));
1499 if (argw
<= 0xffffff) {
1500 FAIL_IF(push_inst(compiler
, ADDI
| (1 << 22) | RD(TMP_REG1
) | RN(arg
) | (((sljit_ins
)argw
>> 12) << 10)));
1502 argw
= ((argw
& 0xfff) >> shift
);
1503 return push_inst(compiler
, STR_FI
| type
| VT(reg
) | RN(TMP_REG1
) | ((sljit_ins
)argw
<< 10));
1507 if (argw
<= 255 && argw
>= -256)
1508 return push_inst(compiler
, STUR_FI
| type
| VT(reg
) | RN(arg
) | (((sljit_ins
)argw
& 0x1ff) << 12));
1510 FAIL_IF(load_immediate(compiler
, TMP_REG1
, argw
));
1511 return push_inst(compiler
, STR_FR
| type
| VT(reg
) | RN(arg
) | RM(TMP_REG1
));
1514 static SLJIT_INLINE sljit_s32
sljit_emit_fop1_conv_sw_from_f64(struct sljit_compiler
*compiler
, sljit_s32 op
,
1515 sljit_s32 dst
, sljit_sw dstw
,
1516 sljit_s32 src
, sljit_sw srcw
)
1518 sljit_s32 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_REG1
;
1519 sljit_ins inv_bits
= (op
& SLJIT_32
) ? (1 << 22) : 0;
1521 if (GET_OPCODE(op
) == SLJIT_CONV_S32_FROM_F64
)
1524 if (src
& SLJIT_MEM
) {
1525 emit_fop_mem(compiler
, (op
& SLJIT_32
) ? INT_SIZE
: WORD_SIZE
, TMP_FREG1
, src
, srcw
);
1529 FAIL_IF(push_inst(compiler
, (FCVTZS
^ inv_bits
) | RD(dst_r
) | VN(src
)));
1531 if (dst
& SLJIT_MEM
)
1532 return emit_op_mem(compiler
, ((GET_OPCODE(op
) == SLJIT_CONV_S32_FROM_F64
) ? INT_SIZE
: WORD_SIZE
) | STORE
, TMP_REG1
, dst
, dstw
, TMP_REG2
);
1533 return SLJIT_SUCCESS
;
1536 static SLJIT_INLINE sljit_s32
sljit_emit_fop1_conv_f64_from_sw(struct sljit_compiler
*compiler
, sljit_s32 op
,
1537 sljit_s32 dst
, sljit_sw dstw
,
1538 sljit_s32 src
, sljit_sw srcw
)
1540 sljit_s32 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_FREG1
;
1541 sljit_ins inv_bits
= (op
& SLJIT_32
) ? (1 << 22) : 0;
1543 if (GET_OPCODE(op
) == SLJIT_CONV_F64_FROM_S32
)
1546 if (src
& SLJIT_MEM
) {
1547 emit_op_mem(compiler
, ((GET_OPCODE(op
) == SLJIT_CONV_F64_FROM_S32
) ? INT_SIZE
: WORD_SIZE
), TMP_REG1
, src
, srcw
, TMP_REG1
);
1549 } else if (src
& SLJIT_IMM
) {
1550 #if (defined SLJIT_CONFIG_X86_64 && SLJIT_CONFIG_X86_64)
1551 if (GET_OPCODE(op
) == SLJIT_CONV_F64_FROM_S32
)
1552 srcw
= (sljit_s32
)srcw
;
1554 FAIL_IF(load_immediate(compiler
, TMP_REG1
, srcw
));
1558 FAIL_IF(push_inst(compiler
, (SCVTF
^ inv_bits
) | VD(dst_r
) | RN(src
)));
1560 if (dst
& SLJIT_MEM
)
1561 return emit_fop_mem(compiler
, ((op
& SLJIT_32
) ? INT_SIZE
: WORD_SIZE
) | STORE
, TMP_FREG1
, dst
, dstw
);
1562 return SLJIT_SUCCESS
;
1565 static SLJIT_INLINE sljit_s32
sljit_emit_fop1_cmp(struct sljit_compiler
*compiler
, sljit_s32 op
,
1566 sljit_s32 src1
, sljit_sw src1w
,
1567 sljit_s32 src2
, sljit_sw src2w
)
1569 sljit_s32 mem_flags
= (op
& SLJIT_32
) ? INT_SIZE
: WORD_SIZE
;
1570 sljit_ins inv_bits
= (op
& SLJIT_32
) ? (1 << 22) : 0;
1572 if (src1
& SLJIT_MEM
) {
1573 emit_fop_mem(compiler
, mem_flags
, TMP_FREG1
, src1
, src1w
);
1577 if (src2
& SLJIT_MEM
) {
1578 emit_fop_mem(compiler
, mem_flags
, TMP_FREG2
, src2
, src2w
);
1582 return push_inst(compiler
, (FCMP
^ inv_bits
) | VN(src1
) | VM(src2
));
1585 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_fop1(struct sljit_compiler
*compiler
, sljit_s32 op
,
1586 sljit_s32 dst
, sljit_sw dstw
,
1587 sljit_s32 src
, sljit_sw srcw
)
1589 sljit_s32 dst_r
, mem_flags
= (op
& SLJIT_32
) ? INT_SIZE
: WORD_SIZE
;
1594 SLJIT_COMPILE_ASSERT((INT_SIZE
^ 0x1) == WORD_SIZE
, must_be_one_bit_difference
);
1595 SELECT_FOP1_OPERATION_WITH_CHECKS(compiler
, op
, dst
, dstw
, src
, srcw
);
1597 inv_bits
= (op
& SLJIT_32
) ? (1 << 22) : 0;
1598 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_FREG1
;
1600 if (src
& SLJIT_MEM
) {
1601 emit_fop_mem(compiler
, (GET_OPCODE(op
) == SLJIT_CONV_F64_FROM_F32
) ? (mem_flags
^ 0x1) : mem_flags
, dst_r
, src
, srcw
);
1605 switch (GET_OPCODE(op
)) {
1608 if (dst_r
!= TMP_FREG1
)
1609 FAIL_IF(push_inst(compiler
, (FMOV
^ inv_bits
) | VD(dst_r
) | VN(src
)));
1615 FAIL_IF(push_inst(compiler
, (FNEG
^ inv_bits
) | VD(dst_r
) | VN(src
)));
1618 FAIL_IF(push_inst(compiler
, (FABS
^ inv_bits
) | VD(dst_r
) | VN(src
)));
1620 case SLJIT_CONV_F64_FROM_F32
:
1621 FAIL_IF(push_inst(compiler
, FCVT
| (sljit_ins
)((op
& SLJIT_32
) ? (1 << 22) : (1 << 15)) | VD(dst_r
) | VN(src
)));
1625 if (dst
& SLJIT_MEM
)
1626 return emit_fop_mem(compiler
, mem_flags
| STORE
, dst_r
, dst
, dstw
);
1627 return SLJIT_SUCCESS
;
1630 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_fop2(struct sljit_compiler
*compiler
, sljit_s32 op
,
1631 sljit_s32 dst
, sljit_sw dstw
,
1632 sljit_s32 src1
, sljit_sw src1w
,
1633 sljit_s32 src2
, sljit_sw src2w
)
1635 sljit_s32 dst_r
, mem_flags
= (op
& SLJIT_32
) ? INT_SIZE
: WORD_SIZE
;
1636 sljit_ins inv_bits
= (op
& SLJIT_32
) ? (1 << 22) : 0;
1639 CHECK(check_sljit_emit_fop2(compiler
, op
, dst
, dstw
, src1
, src1w
, src2
, src2w
));
1640 ADJUST_LOCAL_OFFSET(dst
, dstw
);
1641 ADJUST_LOCAL_OFFSET(src1
, src1w
);
1642 ADJUST_LOCAL_OFFSET(src2
, src2w
);
1644 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_FREG1
;
1645 if (src1
& SLJIT_MEM
) {
1646 emit_fop_mem(compiler
, mem_flags
, TMP_FREG1
, src1
, src1w
);
1649 if (src2
& SLJIT_MEM
) {
1650 emit_fop_mem(compiler
, mem_flags
, TMP_FREG2
, src2
, src2w
);
1654 switch (GET_OPCODE(op
)) {
1656 FAIL_IF(push_inst(compiler
, (FADD
^ inv_bits
) | VD(dst_r
) | VN(src1
) | VM(src2
)));
1659 FAIL_IF(push_inst(compiler
, (FSUB
^ inv_bits
) | VD(dst_r
) | VN(src1
) | VM(src2
)));
1662 FAIL_IF(push_inst(compiler
, (FMUL
^ inv_bits
) | VD(dst_r
) | VN(src1
) | VM(src2
)));
1665 FAIL_IF(push_inst(compiler
, (FDIV
^ inv_bits
) | VD(dst_r
) | VN(src1
) | VM(src2
)));
1669 if (!(dst
& SLJIT_MEM
))
1670 return SLJIT_SUCCESS
;
1671 return emit_fop_mem(compiler
, mem_flags
| STORE
, TMP_FREG1
, dst
, dstw
);
1674 /* --------------------------------------------------------------------- */
1675 /* Other instructions */
1676 /* --------------------------------------------------------------------- */
1678 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_fast_enter(struct sljit_compiler
*compiler
, sljit_s32 dst
, sljit_sw dstw
)
1681 CHECK(check_sljit_emit_fast_enter(compiler
, dst
, dstw
));
1682 ADJUST_LOCAL_OFFSET(dst
, dstw
);
1684 if (FAST_IS_REG(dst
))
1685 return push_inst(compiler
, ORR
| RD(dst
) | RN(TMP_ZERO
) | RM(TMP_LR
));
1688 return emit_op_mem(compiler
, WORD_SIZE
| STORE
, TMP_LR
, dst
, dstw
, TMP_REG1
);
1691 /* --------------------------------------------------------------------- */
1692 /* Conditional instructions */
1693 /* --------------------------------------------------------------------- */
1695 static sljit_ins
get_cc(struct sljit_compiler
*compiler
, sljit_s32 type
)
1699 case SLJIT_EQUAL_F64
:
1702 case SLJIT_NOT_EQUAL
:
1703 case SLJIT_NOT_EQUAL_F64
:
1707 case SLJIT_LESS_F64
:
1710 case SLJIT_GREATER_EQUAL
:
1711 case SLJIT_GREATER_EQUAL_F64
:
1715 case SLJIT_GREATER_F64
:
1718 case SLJIT_LESS_EQUAL
:
1719 case SLJIT_LESS_EQUAL_F64
:
1722 case SLJIT_SIG_LESS
:
1725 case SLJIT_SIG_GREATER_EQUAL
:
1728 case SLJIT_SIG_GREATER
:
1731 case SLJIT_SIG_LESS_EQUAL
:
1734 case SLJIT_OVERFLOW
:
1735 if (!(compiler
->status_flags_state
& SLJIT_CURRENT_FLAGS_ADD_SUB
))
1739 case SLJIT_UNORDERED_F64
:
1742 case SLJIT_NOT_OVERFLOW
:
1743 if (!(compiler
->status_flags_state
& SLJIT_CURRENT_FLAGS_ADD_SUB
))
1747 case SLJIT_ORDERED_F64
:
1751 SLJIT_UNREACHABLE();
1756 SLJIT_API_FUNC_ATTRIBUTE
struct sljit_label
* sljit_emit_label(struct sljit_compiler
*compiler
)
1758 struct sljit_label
*label
;
1761 CHECK_PTR(check_sljit_emit_label(compiler
));
1763 if (compiler
->last_label
&& compiler
->last_label
->size
== compiler
->size
)
1764 return compiler
->last_label
;
1766 label
= (struct sljit_label
*)ensure_abuf(compiler
, sizeof(struct sljit_label
));
1767 PTR_FAIL_IF(!label
);
1768 set_label(label
, compiler
);
1772 SLJIT_API_FUNC_ATTRIBUTE
struct sljit_jump
* sljit_emit_jump(struct sljit_compiler
*compiler
, sljit_s32 type
)
1774 struct sljit_jump
*jump
;
1777 CHECK_PTR(check_sljit_emit_jump(compiler
, type
));
1779 jump
= (struct sljit_jump
*)ensure_abuf(compiler
, sizeof(struct sljit_jump
));
1781 set_jump(jump
, compiler
, type
& SLJIT_REWRITABLE_JUMP
);
1784 if (type
< SLJIT_JUMP
) {
1785 jump
->flags
|= IS_COND
;
1786 PTR_FAIL_IF(push_inst(compiler
, B_CC
| (6 << 5) | get_cc(compiler
, type
)));
1788 else if (type
>= SLJIT_FAST_CALL
)
1789 jump
->flags
|= IS_BL
;
1791 PTR_FAIL_IF(emit_imm64_const(compiler
, TMP_REG1
, 0));
1792 jump
->addr
= compiler
->size
;
1793 PTR_FAIL_IF(push_inst(compiler
, ((type
>= SLJIT_FAST_CALL
) ? BLR
: BR
) | RN(TMP_REG1
)));
1798 SLJIT_API_FUNC_ATTRIBUTE
struct sljit_jump
* sljit_emit_call(struct sljit_compiler
*compiler
, sljit_s32 type
,
1799 sljit_s32 arg_types
)
1802 CHECK_PTR(check_sljit_emit_call(compiler
, type
, arg_types
));
1804 if (type
& SLJIT_TAIL_CALL
) {
1805 PTR_FAIL_IF(emit_stack_frame_release(compiler
));
1806 type
= SLJIT_JUMP
| (type
& SLJIT_REWRITABLE_JUMP
);
1809 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
1810 || (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
1811 compiler
->skip_checks
= 1;
1814 return sljit_emit_jump(compiler
, type
);
1817 static SLJIT_INLINE
struct sljit_jump
* emit_cmp_to0(struct sljit_compiler
*compiler
, sljit_s32 type
,
1818 sljit_s32 src
, sljit_sw srcw
)
1820 struct sljit_jump
*jump
;
1821 sljit_ins inv_bits
= (type
& SLJIT_32
) ? W_OP
: 0;
1823 SLJIT_ASSERT((type
& 0xff) == SLJIT_EQUAL
|| (type
& 0xff) == SLJIT_NOT_EQUAL
);
1824 ADJUST_LOCAL_OFFSET(src
, srcw
);
1826 jump
= (struct sljit_jump
*)ensure_abuf(compiler
, sizeof(struct sljit_jump
));
1828 set_jump(jump
, compiler
, type
& SLJIT_REWRITABLE_JUMP
);
1829 jump
->flags
|= IS_CBZ
| IS_COND
;
1831 if (src
& SLJIT_MEM
) {
1832 PTR_FAIL_IF(emit_op_mem(compiler
, inv_bits
? INT_SIZE
: WORD_SIZE
, TMP_REG1
, src
, srcw
, TMP_REG1
));
1835 else if (src
& SLJIT_IMM
) {
1836 PTR_FAIL_IF(load_immediate(compiler
, TMP_REG1
, srcw
));
1840 SLJIT_ASSERT(FAST_IS_REG(src
));
1842 if ((type
& 0xff) == SLJIT_EQUAL
)
1843 inv_bits
|= 1 << 24;
1845 PTR_FAIL_IF(push_inst(compiler
, (CBZ
^ inv_bits
) | (6 << 5) | RT(src
)));
1846 PTR_FAIL_IF(emit_imm64_const(compiler
, TMP_REG1
, 0));
1847 jump
->addr
= compiler
->size
;
1848 PTR_FAIL_IF(push_inst(compiler
, BR
| RN(TMP_REG1
)));
1852 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_ijump(struct sljit_compiler
*compiler
, sljit_s32 type
, sljit_s32 src
, sljit_sw srcw
)
1854 struct sljit_jump
*jump
;
1857 CHECK(check_sljit_emit_ijump(compiler
, type
, src
, srcw
));
1858 ADJUST_LOCAL_OFFSET(src
, srcw
);
1860 if (!(src
& SLJIT_IMM
)) {
1861 if (src
& SLJIT_MEM
) {
1862 FAIL_IF(emit_op_mem(compiler
, WORD_SIZE
, TMP_REG1
, src
, srcw
, TMP_REG1
));
1865 return push_inst(compiler
, ((type
>= SLJIT_FAST_CALL
) ? BLR
: BR
) | RN(src
));
1868 /* These jumps are converted to jump/call instructions when possible. */
1869 jump
= (struct sljit_jump
*)ensure_abuf(compiler
, sizeof(struct sljit_jump
));
1871 set_jump(jump
, compiler
, JUMP_ADDR
| ((type
>= SLJIT_FAST_CALL
) ? IS_BL
: 0));
1872 jump
->u
.target
= (sljit_uw
)srcw
;
1874 FAIL_IF(emit_imm64_const(compiler
, TMP_REG1
, 0));
1875 jump
->addr
= compiler
->size
;
1876 return push_inst(compiler
, ((type
>= SLJIT_FAST_CALL
) ? BLR
: BR
) | RN(TMP_REG1
));
1879 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_icall(struct sljit_compiler
*compiler
, sljit_s32 type
,
1880 sljit_s32 arg_types
,
1881 sljit_s32 src
, sljit_sw srcw
)
1884 CHECK(check_sljit_emit_icall(compiler
, type
, arg_types
, src
, srcw
));
1885 ADJUST_LOCAL_OFFSET(src
, srcw
);
1887 if (src
& SLJIT_MEM
) {
1888 FAIL_IF(emit_op_mem(compiler
, WORD_SIZE
, TMP_REG1
, src
, srcw
, TMP_REG1
));
1892 if (type
& SLJIT_TAIL_CALL
) {
1893 if (src
>= SLJIT_FIRST_SAVED_REG
&& src
<= SLJIT_S0
) {
1894 FAIL_IF(push_inst(compiler
, ORR
| RD(TMP_REG1
) | RN(TMP_ZERO
) | RM(src
)));
1898 FAIL_IF(emit_stack_frame_release(compiler
));
1902 #if (defined SLJIT_VERBOSE && SLJIT_VERBOSE) \
1903 || (defined SLJIT_ARGUMENT_CHECKS && SLJIT_ARGUMENT_CHECKS)
1904 compiler
->skip_checks
= 1;
1907 return sljit_emit_ijump(compiler
, type
, src
, srcw
);
1910 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_op_flags(struct sljit_compiler
*compiler
, sljit_s32 op
,
1911 sljit_s32 dst
, sljit_sw dstw
,
1914 sljit_s32 dst_r
, src_r
, flags
, mem_flags
;
1918 CHECK(check_sljit_emit_op_flags(compiler
, op
, dst
, dstw
, type
));
1919 ADJUST_LOCAL_OFFSET(dst
, dstw
);
1921 cc
= get_cc(compiler
, type
& 0xff);
1922 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_REG1
;
1924 if (GET_OPCODE(op
) < SLJIT_ADD
) {
1925 FAIL_IF(push_inst(compiler
, CSINC
| (cc
<< 12) | RD(dst_r
) | RN(TMP_ZERO
) | RM(TMP_ZERO
)));
1927 if (dst_r
== TMP_REG1
) {
1928 mem_flags
= (GET_OPCODE(op
) == SLJIT_MOV
? WORD_SIZE
: INT_SIZE
) | STORE
;
1929 return emit_op_mem(compiler
, mem_flags
, TMP_REG1
, dst
, dstw
, TMP_REG2
);
1932 return SLJIT_SUCCESS
;
1935 flags
= HAS_FLAGS(op
) ? SET_FLAGS
: 0;
1936 mem_flags
= WORD_SIZE
;
1938 if (op
& SLJIT_32
) {
1940 mem_flags
= INT_SIZE
;
1945 if (dst
& SLJIT_MEM
) {
1946 FAIL_IF(emit_op_mem(compiler
, mem_flags
, TMP_REG1
, dst
, dstw
, TMP_REG1
));
1950 FAIL_IF(push_inst(compiler
, CSINC
| (cc
<< 12) | RD(TMP_REG2
) | RN(TMP_ZERO
) | RM(TMP_ZERO
)));
1951 emit_op_imm(compiler
, flags
| GET_OPCODE(op
), dst_r
, src_r
, TMP_REG2
);
1953 if (dst
& SLJIT_MEM
)
1954 return emit_op_mem(compiler
, mem_flags
| STORE
, TMP_REG1
, dst
, dstw
, TMP_REG2
);
1955 return SLJIT_SUCCESS
;
1958 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_cmov(struct sljit_compiler
*compiler
, sljit_s32 type
,
1960 sljit_s32 src
, sljit_sw srcw
)
1962 sljit_ins inv_bits
= (dst_reg
& SLJIT_32
) ? W_OP
: 0;
1966 CHECK(check_sljit_emit_cmov(compiler
, type
, dst_reg
, src
, srcw
));
1968 if (SLJIT_UNLIKELY(src
& SLJIT_IMM
)) {
1969 if (dst_reg
& SLJIT_32
)
1970 srcw
= (sljit_s32
)srcw
;
1971 FAIL_IF(load_immediate(compiler
, TMP_REG1
, srcw
));
1976 cc
= get_cc(compiler
, type
& 0xff);
1977 dst_reg
&= ~SLJIT_32
;
1979 return push_inst(compiler
, (CSEL
^ inv_bits
) | (cc
<< 12) | RD(dst_reg
) | RN(dst_reg
) | RM(src
));
1982 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_mem(struct sljit_compiler
*compiler
, sljit_s32 type
,
1984 sljit_s32 mem
, sljit_sw memw
)
1986 sljit_u32 sign
= 0, inst
;
1989 CHECK(check_sljit_emit_mem(compiler
, type
, reg
, mem
, memw
));
1991 if ((mem
& OFFS_REG_MASK
) || (memw
> 255 || memw
< -256))
1992 return SLJIT_ERR_UNSUPPORTED
;
1994 if (type
& SLJIT_MEM_SUPP
)
1995 return SLJIT_SUCCESS
;
1997 switch (type
& 0xff) {
2000 inst
= STURBI
| (MEM_SIZE_SHIFT(WORD_SIZE
) << 30) | 0x400;
2006 inst
= STURBI
| (MEM_SIZE_SHIFT(BYTE_SIZE
) << 30) | 0x400;
2012 inst
= STURBI
| (MEM_SIZE_SHIFT(HALF_SIZE
) << 30) | 0x400;
2019 inst
= STURBI
| (MEM_SIZE_SHIFT(INT_SIZE
) << 30) | 0x400;
2022 SLJIT_UNREACHABLE();
2023 inst
= STURBI
| (MEM_SIZE_SHIFT(WORD_SIZE
) << 30) | 0x400;
2027 if (!(type
& SLJIT_MEM_STORE
))
2028 inst
|= sign
? 0x00800000 : 0x00400000;
2030 if (type
& SLJIT_MEM_PRE
)
2033 return push_inst(compiler
, inst
| RT(reg
) | RN(mem
& REG_MASK
) | (sljit_ins
)((memw
& 0x1ff) << 12));
2036 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_emit_fmem(struct sljit_compiler
*compiler
, sljit_s32 type
,
2038 sljit_s32 mem
, sljit_sw memw
)
2043 CHECK(check_sljit_emit_fmem(compiler
, type
, freg
, mem
, memw
));
2045 if ((mem
& OFFS_REG_MASK
) || (memw
> 255 || memw
< -256))
2046 return SLJIT_ERR_UNSUPPORTED
;
2048 if (type
& SLJIT_MEM_SUPP
)
2049 return SLJIT_SUCCESS
;
2051 inst
= STUR_FI
| 0x80000400;
2053 if (!(type
& SLJIT_32
))
2056 if (!(type
& SLJIT_MEM_STORE
))
2059 if (type
& SLJIT_MEM_PRE
)
2062 return push_inst(compiler
, inst
| VT(freg
) | RN(mem
& REG_MASK
) | (sljit_ins
)((memw
& 0x1ff) << 12));
2065 SLJIT_API_FUNC_ATTRIBUTE sljit_s32
sljit_get_local_base(struct sljit_compiler
*compiler
, sljit_s32 dst
, sljit_sw dstw
, sljit_sw offset
)
2071 CHECK(check_sljit_get_local_base(compiler
, dst
, dstw
, offset
));
2072 ADJUST_LOCAL_OFFSET(SLJIT_MEM1(SLJIT_SP
), offset
);
2074 dst_reg
= FAST_IS_REG(dst
) ? dst
: TMP_REG1
;
2076 if (offset
<= 0xffffff && offset
>= -0xffffff) {
2083 if (offset
<= 0xfff)
2084 FAIL_IF(push_inst(compiler
, ins
| RD(dst_reg
) | RN(SLJIT_SP
) | (sljit_ins
)(offset
<< 10)));
2086 FAIL_IF(push_inst(compiler
, ins
| RD(dst_reg
) | RN(SLJIT_SP
) | (sljit_ins
)((offset
& 0xfff000) >> (12 - 10)) | (1 << 22)));
2090 FAIL_IF(push_inst(compiler
, ins
| RD(dst_reg
) | RN(dst_reg
) | (sljit_ins
)(offset
<< 10)));
2094 FAIL_IF(load_immediate (compiler
, dst_reg
, offset
));
2095 /* Add extended register form. */
2096 FAIL_IF(push_inst(compiler
, ADDE
| (0x3 << 13) | RD(dst_reg
) | RN(SLJIT_SP
) | RM(dst_reg
)));
2099 if (SLJIT_UNLIKELY(dst
& SLJIT_MEM
))
2100 return emit_op_mem(compiler
, WORD_SIZE
| STORE
, dst_reg
, dst
, dstw
, TMP_REG1
);
2101 return SLJIT_SUCCESS
;
2104 SLJIT_API_FUNC_ATTRIBUTE
struct sljit_const
* sljit_emit_const(struct sljit_compiler
*compiler
, sljit_s32 dst
, sljit_sw dstw
, sljit_sw init_value
)
2106 struct sljit_const
*const_
;
2110 CHECK_PTR(check_sljit_emit_const(compiler
, dst
, dstw
, init_value
));
2111 ADJUST_LOCAL_OFFSET(dst
, dstw
);
2113 const_
= (struct sljit_const
*)ensure_abuf(compiler
, sizeof(struct sljit_const
));
2114 PTR_FAIL_IF(!const_
);
2115 set_const(const_
, compiler
);
2117 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_REG1
;
2118 PTR_FAIL_IF(emit_imm64_const(compiler
, dst_r
, (sljit_uw
)init_value
));
2120 if (dst
& SLJIT_MEM
)
2121 PTR_FAIL_IF(emit_op_mem(compiler
, WORD_SIZE
| STORE
, dst_r
, dst
, dstw
, TMP_REG2
));
2125 SLJIT_API_FUNC_ATTRIBUTE
struct sljit_put_label
* sljit_emit_put_label(struct sljit_compiler
*compiler
, sljit_s32 dst
, sljit_sw dstw
)
2127 struct sljit_put_label
*put_label
;
2131 CHECK_PTR(check_sljit_emit_put_label(compiler
, dst
, dstw
));
2132 ADJUST_LOCAL_OFFSET(dst
, dstw
);
2134 dst_r
= FAST_IS_REG(dst
) ? dst
: TMP_REG1
;
2135 PTR_FAIL_IF(emit_imm64_const(compiler
, dst_r
, 0));
2137 put_label
= (struct sljit_put_label
*)ensure_abuf(compiler
, sizeof(struct sljit_put_label
));
2138 PTR_FAIL_IF(!put_label
);
2139 set_put_label(put_label
, compiler
, 1);
2141 if (dst
& SLJIT_MEM
)
2142 PTR_FAIL_IF(emit_op_mem(compiler
, WORD_SIZE
| STORE
, dst_r
, dst
, dstw
, TMP_REG2
));
2147 SLJIT_API_FUNC_ATTRIBUTE
void sljit_set_jump_addr(sljit_uw addr
, sljit_uw new_target
, sljit_sw executable_offset
)
2149 sljit_ins
* inst
= (sljit_ins
*)addr
;
2151 SLJIT_UNUSED_ARG(executable_offset
);
2153 SLJIT_UPDATE_WX_FLAGS(inst
, inst
+ 4, 0);
2155 dst
= inst
[0] & 0x1f;
2156 SLJIT_ASSERT((inst
[0] & 0xffe00000) == MOVZ
&& (inst
[1] & 0xffe00000) == (MOVK
| (1 << 21)));
2157 inst
[0] = MOVZ
| dst
| (((sljit_u32
)new_target
& 0xffff) << 5);
2158 inst
[1] = MOVK
| dst
| (((sljit_u32
)(new_target
>> 16) & 0xffff) << 5) | (1 << 21);
2159 inst
[2] = MOVK
| dst
| (((sljit_u32
)(new_target
>> 32) & 0xffff) << 5) | (2 << 21);
2160 inst
[3] = MOVK
| dst
| ((sljit_u32
)(new_target
>> 48) << 5) | (3 << 21);
2162 SLJIT_UPDATE_WX_FLAGS(inst
, inst
+ 4, 1);
2163 inst
= (sljit_ins
*)SLJIT_ADD_EXEC_OFFSET(inst
, executable_offset
);
2164 SLJIT_CACHE_FLUSH(inst
, inst
+ 4);
2167 SLJIT_API_FUNC_ATTRIBUTE
void sljit_set_const(sljit_uw addr
, sljit_sw new_constant
, sljit_sw executable_offset
)
2169 sljit_set_jump_addr(addr
, (sljit_uw
)new_constant
, executable_offset
);