MIPS: Fix calls to floor/ceil/trunc.
[luajit-2.0/celess22.git] / src / lj_asm.c
blob8d2cafb30b7cd75a70eaf79d5ca97b2a0352cdfe
1 /*
2 ** IR assembler (SSA IR -> machine code).
3 ** Copyright (C) 2005-2012 Mike Pall. See Copyright Notice in luajit.h
4 */
6 #define lj_asm_c
7 #define LUA_CORE
9 #include "lj_obj.h"
11 #if LJ_HASJIT
13 #include "lj_gc.h"
14 #include "lj_str.h"
15 #include "lj_tab.h"
16 #include "lj_frame.h"
17 #if LJ_HASFFI
18 #include "lj_ctype.h"
19 #endif
20 #include "lj_ir.h"
21 #include "lj_jit.h"
22 #include "lj_ircall.h"
23 #include "lj_iropt.h"
24 #include "lj_mcode.h"
25 #include "lj_iropt.h"
26 #include "lj_trace.h"
27 #include "lj_snap.h"
28 #include "lj_asm.h"
29 #include "lj_dispatch.h"
30 #include "lj_vm.h"
31 #include "lj_target.h"
33 /* -- Assembler state and common macros ----------------------------------- */
35 /* Assembler state. */
36 typedef struct ASMState {
37 RegCost cost[RID_MAX]; /* Reference and blended allocation cost for regs. */
39 MCode *mcp; /* Current MCode pointer (grows down). */
40 MCode *mclim; /* Lower limit for MCode memory + red zone. */
42 IRIns *ir; /* Copy of pointer to IR instructions/constants. */
43 jit_State *J; /* JIT compiler state. */
45 #if LJ_TARGET_X86ORX64
46 x86ModRM mrm; /* Fused x86 address operand. */
47 #endif
49 RegSet freeset; /* Set of free registers. */
50 RegSet modset; /* Set of registers modified inside the loop. */
51 RegSet weakset; /* Set of weakly referenced registers. */
52 RegSet phiset; /* Set of PHI registers. */
54 uint32_t flags; /* Copy of JIT compiler flags. */
55 int loopinv; /* Loop branch inversion (0:no, 1:yes, 2:yes+CC_P). */
57 int32_t evenspill; /* Next even spill slot. */
58 int32_t oddspill; /* Next odd spill slot (or 0). */
60 IRRef curins; /* Reference of current instruction. */
61 IRRef stopins; /* Stop assembly before hitting this instruction. */
62 IRRef orignins; /* Original T->nins. */
64 IRRef snapref; /* Current snapshot is active after this reference. */
65 IRRef snaprename; /* Rename highwater mark for snapshot check. */
66 SnapNo snapno; /* Current snapshot number. */
67 SnapNo loopsnapno; /* Loop snapshot number. */
69 IRRef fuseref; /* Fusion limit (loopref, 0 or FUSE_DISABLED). */
70 IRRef sectref; /* Section base reference (loopref or 0). */
71 IRRef loopref; /* Reference of LOOP instruction (or 0). */
73 BCReg topslot; /* Number of slots for stack check (unless 0). */
74 int32_t gcsteps; /* Accumulated number of GC steps (per section). */
76 GCtrace *T; /* Trace to assemble. */
77 GCtrace *parent; /* Parent trace (or NULL). */
79 MCode *mcbot; /* Bottom of reserved MCode. */
80 MCode *mctop; /* Top of generated MCode. */
81 MCode *mcloop; /* Pointer to loop MCode (or NULL). */
82 MCode *invmcp; /* Points to invertible loop branch (or NULL). */
83 MCode *flagmcp; /* Pending opportunity to merge flag setting ins. */
84 MCode *realign; /* Realign loop if not NULL. */
86 #ifdef RID_NUM_KREF
87 int32_t krefk[RID_NUM_KREF];
88 #endif
89 IRRef1 phireg[RID_MAX]; /* PHI register references. */
90 uint16_t parentmap[LJ_MAX_JSLOTS]; /* Parent instruction to RegSP map. */
91 } ASMState;
93 #define IR(ref) (&as->ir[(ref)])
95 #define ASMREF_TMP1 REF_TRUE /* Temp. register. */
96 #define ASMREF_TMP2 REF_FALSE /* Temp. register. */
97 #define ASMREF_L REF_NIL /* Stores register for L. */
99 /* Check for variant to invariant references. */
100 #define iscrossref(as, ref) ((ref) < as->sectref)
102 /* Inhibit memory op fusion from variant to invariant references. */
103 #define FUSE_DISABLED (~(IRRef)0)
104 #define mayfuse(as, ref) ((ref) > as->fuseref)
105 #define neverfuse(as) (as->fuseref == FUSE_DISABLED)
106 #define canfuse(as, ir) (!neverfuse(as) && !irt_isphi((ir)->t))
107 #define opisfusableload(o) \
108 ((o) == IR_ALOAD || (o) == IR_HLOAD || (o) == IR_ULOAD || \
109 (o) == IR_FLOAD || (o) == IR_XLOAD || (o) == IR_SLOAD || (o) == IR_VLOAD)
111 /* Sparse limit checks using a red zone before the actual limit. */
112 #define MCLIM_REDZONE 64
113 #define checkmclim(as) \
114 if (LJ_UNLIKELY(as->mcp < as->mclim)) asm_mclimit(as)
116 static LJ_NORET LJ_NOINLINE void asm_mclimit(ASMState *as)
118 lj_mcode_limiterr(as->J, (size_t)(as->mctop - as->mcp + 4*MCLIM_REDZONE));
121 #ifdef RID_NUM_KREF
122 #define ra_iskref(ref) ((ref) < RID_NUM_KREF)
123 #define ra_krefreg(ref) ((Reg)(RID_MIN_KREF + (Reg)(ref)))
124 #define ra_krefk(as, ref) (as->krefk[(ref)])
126 static LJ_AINLINE void ra_setkref(ASMState *as, Reg r, int32_t k)
128 IRRef ref = (IRRef)(r - RID_MIN_KREF);
129 as->krefk[ref] = k;
130 as->cost[r] = REGCOST(ref, ref);
133 #else
134 #define ra_iskref(ref) 0
135 #define ra_krefreg(ref) RID_MIN_GPR
136 #define ra_krefk(as, ref) 0
137 #endif
139 /* Arch-specific field offsets. */
140 static const uint8_t field_ofs[IRFL__MAX+1] = {
141 #define FLOFS(name, ofs) (uint8_t)(ofs),
142 IRFLDEF(FLOFS)
143 #undef FLOFS
147 /* -- Target-specific instruction emitter --------------------------------- */
149 #if LJ_TARGET_X86ORX64
150 #include "lj_emit_x86.h"
151 #elif LJ_TARGET_ARM
152 #include "lj_emit_arm.h"
153 #elif LJ_TARGET_PPC
154 #include "lj_emit_ppc.h"
155 #elif LJ_TARGET_MIPS
156 #include "lj_emit_mips.h"
157 #else
158 #error "Missing instruction emitter for target CPU"
159 #endif
161 /* -- Register allocator debugging ---------------------------------------- */
163 /* #define LUAJIT_DEBUG_RA */
165 #ifdef LUAJIT_DEBUG_RA
167 #include <stdio.h>
168 #include <stdarg.h>
170 #define RIDNAME(name) #name,
171 static const char *const ra_regname[] = {
172 GPRDEF(RIDNAME)
173 FPRDEF(RIDNAME)
174 VRIDDEF(RIDNAME)
175 NULL
177 #undef RIDNAME
179 static char ra_dbg_buf[65536];
180 static char *ra_dbg_p;
181 static char *ra_dbg_merge;
182 static MCode *ra_dbg_mcp;
184 static void ra_dstart(void)
186 ra_dbg_p = ra_dbg_buf;
187 ra_dbg_merge = NULL;
188 ra_dbg_mcp = NULL;
191 static void ra_dflush(void)
193 fwrite(ra_dbg_buf, 1, (size_t)(ra_dbg_p-ra_dbg_buf), stdout);
194 ra_dstart();
197 static void ra_dprintf(ASMState *as, const char *fmt, ...)
199 char *p;
200 va_list argp;
201 va_start(argp, fmt);
202 p = ra_dbg_mcp == as->mcp ? ra_dbg_merge : ra_dbg_p;
203 ra_dbg_mcp = NULL;
204 p += sprintf(p, "%08x \e[36m%04d ", (uintptr_t)as->mcp, as->curins-REF_BIAS);
205 for (;;) {
206 const char *e = strchr(fmt, '$');
207 if (e == NULL) break;
208 memcpy(p, fmt, (size_t)(e-fmt));
209 p += e-fmt;
210 if (e[1] == 'r') {
211 Reg r = va_arg(argp, Reg) & RID_MASK;
212 if (r <= RID_MAX) {
213 const char *q;
214 for (q = ra_regname[r]; *q; q++)
215 *p++ = *q >= 'A' && *q <= 'Z' ? *q + 0x20 : *q;
216 } else {
217 *p++ = '?';
218 lua_assert(0);
220 } else if (e[1] == 'f' || e[1] == 'i') {
221 IRRef ref;
222 if (e[1] == 'f')
223 ref = va_arg(argp, IRRef);
224 else
225 ref = va_arg(argp, IRIns *) - as->ir;
226 if (ref >= REF_BIAS)
227 p += sprintf(p, "%04d", ref - REF_BIAS);
228 else
229 p += sprintf(p, "K%03d", REF_BIAS - ref);
230 } else if (e[1] == 's') {
231 uint32_t slot = va_arg(argp, uint32_t);
232 p += sprintf(p, "[sp+0x%x]", sps_scale(slot));
233 } else if (e[1] == 'x') {
234 p += sprintf(p, "%08x", va_arg(argp, int32_t));
235 } else {
236 lua_assert(0);
238 fmt = e+2;
240 va_end(argp);
241 while (*fmt)
242 *p++ = *fmt++;
243 *p++ = '\e'; *p++ = '['; *p++ = 'm'; *p++ = '\n';
244 if (p > ra_dbg_buf+sizeof(ra_dbg_buf)-256) {
245 fwrite(ra_dbg_buf, 1, (size_t)(p-ra_dbg_buf), stdout);
246 p = ra_dbg_buf;
248 ra_dbg_p = p;
251 #define RA_DBG_START() ra_dstart()
252 #define RA_DBG_FLUSH() ra_dflush()
253 #define RA_DBG_REF() \
254 do { char *_p = ra_dbg_p; ra_dprintf(as, ""); \
255 ra_dbg_merge = _p; ra_dbg_mcp = as->mcp; } while (0)
256 #define RA_DBGX(x) ra_dprintf x
258 #else
259 #define RA_DBG_START() ((void)0)
260 #define RA_DBG_FLUSH() ((void)0)
261 #define RA_DBG_REF() ((void)0)
262 #define RA_DBGX(x) ((void)0)
263 #endif
265 /* -- Register allocator -------------------------------------------------- */
267 #define ra_free(as, r) rset_set(as->freeset, (r))
268 #define ra_modified(as, r) rset_set(as->modset, (r))
269 #define ra_weak(as, r) rset_set(as->weakset, (r))
270 #define ra_noweak(as, r) rset_clear(as->weakset, (r))
272 #define ra_used(ir) (ra_hasreg((ir)->r) || ra_hasspill((ir)->s))
274 /* Setup register allocator. */
275 static void ra_setup(ASMState *as)
277 Reg r;
278 /* Initially all regs (except the stack pointer) are free for use. */
279 as->freeset = RSET_INIT;
280 as->modset = RSET_EMPTY;
281 as->weakset = RSET_EMPTY;
282 as->phiset = RSET_EMPTY;
283 memset(as->phireg, 0, sizeof(as->phireg));
284 for (r = RID_MIN_GPR; r < RID_MAX; r++)
285 as->cost[r] = REGCOST(~0u, 0u);
288 /* Rematerialize constants. */
289 static Reg ra_rematk(ASMState *as, IRRef ref)
291 IRIns *ir;
292 Reg r;
293 if (ra_iskref(ref)) {
294 r = ra_krefreg(ref);
295 lua_assert(!rset_test(as->freeset, r));
296 ra_free(as, r);
297 ra_modified(as, r);
298 emit_loadi(as, r, ra_krefk(as, ref));
299 return r;
301 ir = IR(ref);
302 r = ir->r;
303 lua_assert(ra_hasreg(r) && !ra_hasspill(ir->s));
304 ra_free(as, r);
305 ra_modified(as, r);
306 ir->r = RID_INIT; /* Do not keep any hint. */
307 RA_DBGX((as, "remat $i $r", ir, r));
308 #if !LJ_SOFTFP
309 if (ir->o == IR_KNUM) {
310 emit_loadn(as, r, ir_knum(ir));
311 } else
312 #endif
313 if (emit_canremat(REF_BASE) && ir->o == IR_BASE) {
314 ra_sethint(ir->r, RID_BASE); /* Restore BASE register hint. */
315 emit_getgl(as, r, jit_base);
316 } else if (emit_canremat(ASMREF_L) && ir->o == IR_KPRI) {
317 lua_assert(irt_isnil(ir->t)); /* REF_NIL stores ASMREF_L register. */
318 emit_getgl(as, r, jit_L);
319 #if LJ_64
320 } else if (ir->o == IR_KINT64) {
321 emit_loadu64(as, r, ir_kint64(ir)->u64);
322 #endif
323 } else {
324 lua_assert(ir->o == IR_KINT || ir->o == IR_KGC ||
325 ir->o == IR_KPTR || ir->o == IR_KKPTR || ir->o == IR_KNULL);
326 emit_loadi(as, r, ir->i);
328 return r;
331 /* Force a spill. Allocate a new spill slot if needed. */
332 static int32_t ra_spill(ASMState *as, IRIns *ir)
334 int32_t slot = ir->s;
335 if (!ra_hasspill(slot)) {
336 if (irt_is64(ir->t)) {
337 slot = as->evenspill;
338 as->evenspill += 2;
339 } else if (as->oddspill) {
340 slot = as->oddspill;
341 as->oddspill = 0;
342 } else {
343 slot = as->evenspill;
344 as->oddspill = slot+1;
345 as->evenspill += 2;
347 if (as->evenspill > 256)
348 lj_trace_err(as->J, LJ_TRERR_SPILLOV);
349 ir->s = (uint8_t)slot;
351 return sps_scale(slot);
354 /* Release the temporarily allocated register in ASMREF_TMP1/ASMREF_TMP2. */
355 static Reg ra_releasetmp(ASMState *as, IRRef ref)
357 IRIns *ir = IR(ref);
358 Reg r = ir->r;
359 lua_assert(ra_hasreg(r) && !ra_hasspill(ir->s));
360 ra_free(as, r);
361 ra_modified(as, r);
362 ir->r = RID_INIT;
363 return r;
366 /* Restore a register (marked as free). Rematerialize or force a spill. */
367 static Reg ra_restore(ASMState *as, IRRef ref)
369 if (emit_canremat(ref)) {
370 return ra_rematk(as, ref);
371 } else {
372 IRIns *ir = IR(ref);
373 int32_t ofs = ra_spill(as, ir); /* Force a spill slot. */
374 Reg r = ir->r;
375 lua_assert(ra_hasreg(r));
376 ra_sethint(ir->r, r); /* Keep hint. */
377 ra_free(as, r);
378 if (!rset_test(as->weakset, r)) { /* Only restore non-weak references. */
379 ra_modified(as, r);
380 RA_DBGX((as, "restore $i $r", ir, r));
381 emit_spload(as, ir, r, ofs);
383 return r;
387 /* Save a register to a spill slot. */
388 static void ra_save(ASMState *as, IRIns *ir, Reg r)
390 RA_DBGX((as, "save $i $r", ir, r));
391 emit_spstore(as, ir, r, sps_scale(ir->s));
394 #define MINCOST(name) \
395 if (rset_test(RSET_ALL, RID_##name) && \
396 LJ_LIKELY(allow&RID2RSET(RID_##name)) && as->cost[RID_##name] < cost) \
397 cost = as->cost[RID_##name];
399 /* Evict the register with the lowest cost, forcing a restore. */
400 static Reg ra_evict(ASMState *as, RegSet allow)
402 IRRef ref;
403 RegCost cost = ~(RegCost)0;
404 lua_assert(allow != RSET_EMPTY);
405 if (RID_NUM_FPR == 0 || allow < RID2RSET(RID_MAX_GPR)) {
406 GPRDEF(MINCOST)
407 } else {
408 FPRDEF(MINCOST)
410 ref = regcost_ref(cost);
411 lua_assert(ra_iskref(ref) || (ref >= as->T->nk && ref < as->T->nins));
412 /* Preferably pick any weak ref instead of a non-weak, non-const ref. */
413 if (!irref_isk(ref) && (as->weakset & allow)) {
414 IRIns *ir = IR(ref);
415 if (!rset_test(as->weakset, ir->r))
416 ref = regcost_ref(as->cost[rset_pickbot((as->weakset & allow))]);
418 return ra_restore(as, ref);
421 /* Pick any register (marked as free). Evict on-demand. */
422 static Reg ra_pick(ASMState *as, RegSet allow)
424 RegSet pick = as->freeset & allow;
425 if (!pick)
426 return ra_evict(as, allow);
427 else
428 return rset_picktop(pick);
431 /* Get a scratch register (marked as free). */
432 static Reg ra_scratch(ASMState *as, RegSet allow)
434 Reg r = ra_pick(as, allow);
435 ra_modified(as, r);
436 RA_DBGX((as, "scratch $r", r));
437 return r;
440 /* Evict all registers from a set (if not free). */
441 static void ra_evictset(ASMState *as, RegSet drop)
443 RegSet work;
444 as->modset |= drop;
445 #if !LJ_SOFTFP
446 work = (drop & ~as->freeset) & RSET_FPR;
447 while (work) {
448 Reg r = rset_pickbot(work);
449 ra_restore(as, regcost_ref(as->cost[r]));
450 rset_clear(work, r);
451 checkmclim(as);
453 #endif
454 work = (drop & ~as->freeset) & RSET_GPR;
455 while (work) {
456 Reg r = rset_pickbot(work);
457 ra_restore(as, regcost_ref(as->cost[r]));
458 rset_clear(work, r);
459 checkmclim(as);
463 /* Evict (rematerialize) all registers allocated to constants. */
464 static void ra_evictk(ASMState *as)
466 RegSet work;
467 #if !LJ_SOFTFP
468 work = ~as->freeset & RSET_FPR;
469 while (work) {
470 Reg r = rset_pickbot(work);
471 IRRef ref = regcost_ref(as->cost[r]);
472 if (emit_canremat(ref) && irref_isk(ref)) {
473 ra_rematk(as, ref);
474 checkmclim(as);
476 rset_clear(work, r);
478 #endif
479 work = ~as->freeset & RSET_GPR;
480 while (work) {
481 Reg r = rset_pickbot(work);
482 IRRef ref = regcost_ref(as->cost[r]);
483 if (emit_canremat(ref) && irref_isk(ref)) {
484 ra_rematk(as, ref);
485 checkmclim(as);
487 rset_clear(work, r);
491 #ifdef RID_NUM_KREF
492 /* Allocate a register for a constant. */
493 static Reg ra_allock(ASMState *as, int32_t k, RegSet allow)
495 /* First try to find a register which already holds the same constant. */
496 RegSet pick, work = ~as->freeset & RSET_GPR;
497 Reg r;
498 while (work) {
499 IRRef ref;
500 r = rset_pickbot(work);
501 ref = regcost_ref(as->cost[r]);
502 if (ref < ASMREF_L &&
503 k == (ra_iskref(ref) ? ra_krefk(as, ref) : IR(ref)->i))
504 return r;
505 rset_clear(work, r);
507 pick = as->freeset & allow;
508 if (pick) {
509 /* Constants should preferably get unmodified registers. */
510 if ((pick & ~as->modset))
511 pick &= ~as->modset;
512 r = rset_pickbot(pick); /* Reduce conflicts with inverse allocation. */
513 } else {
514 r = ra_evict(as, allow);
516 RA_DBGX((as, "allock $x $r", k, r));
517 ra_setkref(as, r, k);
518 rset_clear(as->freeset, r);
519 ra_noweak(as, r);
520 return r;
523 /* Allocate a specific register for a constant. */
524 static void ra_allockreg(ASMState *as, int32_t k, Reg r)
526 Reg kr = ra_allock(as, k, RID2RSET(r));
527 if (kr != r) {
528 IRIns irdummy;
529 irdummy.t.irt = IRT_INT;
530 ra_scratch(as, RID2RSET(r));
531 emit_movrr(as, &irdummy, r, kr);
534 #else
535 #define ra_allockreg(as, k, r) emit_loadi(as, (r), (k))
536 #endif
538 /* Allocate a register for ref from the allowed set of registers.
539 ** Note: this function assumes the ref does NOT have a register yet!
540 ** Picks an optimal register, sets the cost and marks the register as non-free.
542 static Reg ra_allocref(ASMState *as, IRRef ref, RegSet allow)
544 IRIns *ir = IR(ref);
545 RegSet pick = as->freeset & allow;
546 Reg r;
547 lua_assert(ra_noreg(ir->r));
548 if (pick) {
549 /* First check register hint from propagation or PHI. */
550 if (ra_hashint(ir->r)) {
551 r = ra_gethint(ir->r);
552 if (rset_test(pick, r)) /* Use hint register if possible. */
553 goto found;
554 /* Rematerialization is cheaper than missing a hint. */
555 if (rset_test(allow, r) && emit_canremat(regcost_ref(as->cost[r]))) {
556 ra_rematk(as, regcost_ref(as->cost[r]));
557 goto found;
559 RA_DBGX((as, "hintmiss $f $r", ref, r));
561 /* Invariants should preferably get unmodified registers. */
562 if (ref < as->loopref && !irt_isphi(ir->t)) {
563 if ((pick & ~as->modset))
564 pick &= ~as->modset;
565 r = rset_pickbot(pick); /* Reduce conflicts with inverse allocation. */
566 } else {
567 /* We've got plenty of regs, so get callee-save regs if possible. */
568 if (RID_NUM_GPR > 8 && (pick & ~RSET_SCRATCH))
569 pick &= ~RSET_SCRATCH;
570 r = rset_picktop(pick);
572 } else {
573 r = ra_evict(as, allow);
575 found:
576 RA_DBGX((as, "alloc $f $r", ref, r));
577 ir->r = (uint8_t)r;
578 rset_clear(as->freeset, r);
579 ra_noweak(as, r);
580 as->cost[r] = REGCOST_REF_T(ref, irt_t(ir->t));
581 return r;
584 /* Allocate a register on-demand. */
585 static Reg ra_alloc1(ASMState *as, IRRef ref, RegSet allow)
587 Reg r = IR(ref)->r;
588 /* Note: allow is ignored if the register is already allocated. */
589 if (ra_noreg(r)) r = ra_allocref(as, ref, allow);
590 ra_noweak(as, r);
591 return r;
594 /* Rename register allocation and emit move. */
595 static void ra_rename(ASMState *as, Reg down, Reg up)
597 IRRef ren, ref = regcost_ref(as->cost[up] = as->cost[down]);
598 IRIns *ir = IR(ref);
599 ir->r = (uint8_t)up;
600 as->cost[down] = 0;
601 lua_assert((down < RID_MAX_GPR) == (up < RID_MAX_GPR));
602 lua_assert(!rset_test(as->freeset, down) && rset_test(as->freeset, up));
603 ra_free(as, down); /* 'down' is free ... */
604 ra_modified(as, down);
605 rset_clear(as->freeset, up); /* ... and 'up' is now allocated. */
606 ra_noweak(as, up);
607 RA_DBGX((as, "rename $f $r $r", regcost_ref(as->cost[up]), down, up));
608 emit_movrr(as, ir, down, up); /* Backwards codegen needs inverse move. */
609 if (!ra_hasspill(IR(ref)->s)) { /* Add the rename to the IR. */
610 lj_ir_set(as->J, IRT(IR_RENAME, IRT_NIL), ref, as->snapno);
611 ren = tref_ref(lj_ir_emit(as->J));
612 as->ir = as->T->ir; /* The IR may have been reallocated. */
613 IR(ren)->r = (uint8_t)down;
614 IR(ren)->s = SPS_NONE;
618 /* Pick a destination register (marked as free).
619 ** Caveat: allow is ignored if there's already a destination register.
620 ** Use ra_destreg() to get a specific register.
622 static Reg ra_dest(ASMState *as, IRIns *ir, RegSet allow)
624 Reg dest = ir->r;
625 if (ra_hasreg(dest)) {
626 ra_free(as, dest);
627 ra_modified(as, dest);
628 } else {
629 if (ra_hashint(dest) && rset_test((as->freeset&allow), ra_gethint(dest))) {
630 dest = ra_gethint(dest);
631 ra_modified(as, dest);
632 RA_DBGX((as, "dest $r", dest));
633 } else {
634 dest = ra_scratch(as, allow);
636 ir->r = dest;
638 if (LJ_UNLIKELY(ra_hasspill(ir->s))) ra_save(as, ir, dest);
639 return dest;
642 /* Force a specific destination register (marked as free). */
643 static void ra_destreg(ASMState *as, IRIns *ir, Reg r)
645 Reg dest = ra_dest(as, ir, RID2RSET(r));
646 if (dest != r) {
647 ra_scratch(as, RID2RSET(r));
648 emit_movrr(as, ir, dest, r);
652 #if LJ_TARGET_X86ORX64
653 /* Propagate dest register to left reference. Emit moves as needed.
654 ** This is a required fixup step for all 2-operand machine instructions.
656 static void ra_left(ASMState *as, Reg dest, IRRef lref)
658 IRIns *ir = IR(lref);
659 Reg left = ir->r;
660 if (ra_noreg(left)) {
661 if (irref_isk(lref)) {
662 if (ir->o == IR_KNUM) {
663 cTValue *tv = ir_knum(ir);
664 /* FP remat needs a load except for +0. Still better than eviction. */
665 if (tvispzero(tv) || !(as->freeset & RSET_FPR)) {
666 emit_loadn(as, dest, tv);
667 return;
669 #if LJ_64
670 } else if (ir->o == IR_KINT64) {
671 emit_loadu64(as, dest, ir_kint64(ir)->u64);
672 return;
673 #endif
674 } else {
675 lua_assert(ir->o == IR_KINT || ir->o == IR_KGC ||
676 ir->o == IR_KPTR || ir->o == IR_KKPTR || ir->o == IR_KNULL);
677 emit_loadi(as, dest, ir->i);
678 return;
681 if (!ra_hashint(left) && !iscrossref(as, lref))
682 ra_sethint(ir->r, dest); /* Propagate register hint. */
683 left = ra_allocref(as, lref, dest < RID_MAX_GPR ? RSET_GPR : RSET_FPR);
685 ra_noweak(as, left);
686 /* Move needed for true 3-operand instruction: y=a+b ==> y=a; y+=b. */
687 if (dest != left) {
688 /* Use register renaming if dest is the PHI reg. */
689 if (irt_isphi(ir->t) && as->phireg[dest] == lref) {
690 ra_modified(as, left);
691 ra_rename(as, left, dest);
692 } else {
693 emit_movrr(as, ir, dest, left);
697 #else
698 /* Similar to ra_left, except we override any hints. */
699 static void ra_leftov(ASMState *as, Reg dest, IRRef lref)
701 IRIns *ir = IR(lref);
702 Reg left = ir->r;
703 if (ra_noreg(left)) {
704 ra_sethint(ir->r, dest); /* Propagate register hint. */
705 left = ra_allocref(as, lref,
706 (LJ_SOFTFP || dest < RID_MAX_GPR) ? RSET_GPR : RSET_FPR);
708 ra_noweak(as, left);
709 if (dest != left) {
710 /* Use register renaming if dest is the PHI reg. */
711 if (irt_isphi(ir->t) && as->phireg[dest] == lref) {
712 ra_modified(as, left);
713 ra_rename(as, left, dest);
714 } else {
715 emit_movrr(as, ir, dest, left);
719 #endif
721 #if !LJ_TARGET_X86ORX64
722 /* Force a RID_RETLO/RID_RETHI destination register pair (marked as free). */
723 static void ra_destpair(ASMState *as, IRIns *ir)
725 Reg destlo = ir->r, desthi = (ir+1)->r;
726 /* First spill unrelated refs blocking the destination registers. */
727 if (!rset_test(as->freeset, RID_RETLO) &&
728 destlo != RID_RETLO && desthi != RID_RETLO)
729 ra_restore(as, regcost_ref(as->cost[RID_RETLO]));
730 if (!rset_test(as->freeset, RID_RETHI) &&
731 destlo != RID_RETHI && desthi != RID_RETHI)
732 ra_restore(as, regcost_ref(as->cost[RID_RETHI]));
733 /* Next free the destination registers (if any). */
734 if (ra_hasreg(destlo)) {
735 ra_free(as, destlo);
736 ra_modified(as, destlo);
737 } else {
738 destlo = RID_RETLO;
740 if (ra_hasreg(desthi)) {
741 ra_free(as, desthi);
742 ra_modified(as, desthi);
743 } else {
744 desthi = RID_RETHI;
746 /* Check for conflicts and shuffle the registers as needed. */
747 if (destlo == RID_RETHI) {
748 if (desthi == RID_RETLO) {
749 emit_movrr(as, ir, RID_RETHI, RID_TMP);
750 emit_movrr(as, ir, RID_RETLO, RID_RETHI);
751 emit_movrr(as, ir, RID_TMP, RID_RETLO);
752 } else {
753 emit_movrr(as, ir, RID_RETHI, RID_RETLO);
754 if (desthi != RID_RETHI) emit_movrr(as, ir, desthi, RID_RETHI);
756 } else if (desthi == RID_RETLO) {
757 emit_movrr(as, ir, RID_RETLO, RID_RETHI);
758 if (destlo != RID_RETLO) emit_movrr(as, ir, destlo, RID_RETLO);
759 } else {
760 if (desthi != RID_RETHI) emit_movrr(as, ir, desthi, RID_RETHI);
761 if (destlo != RID_RETLO) emit_movrr(as, ir, destlo, RID_RETLO);
763 /* Restore spill slots (if any). */
764 if (ra_hasspill((ir+1)->s)) ra_save(as, ir+1, RID_RETHI);
765 if (ra_hasspill(ir->s)) ra_save(as, ir, RID_RETLO);
767 #endif
769 /* -- Snapshot handling --------- ----------------------------------------- */
771 /* Can we rematerialize a KNUM instead of forcing a spill? */
772 static int asm_snap_canremat(ASMState *as)
774 Reg r;
775 for (r = RID_MIN_FPR; r < RID_MAX_FPR; r++)
776 if (irref_isk(regcost_ref(as->cost[r])))
777 return 1;
778 return 0;
781 /* Check whether a sunk store corresponds to an allocation. */
782 static int asm_sunk_store(ASMState *as, IRIns *ira, IRIns *irs)
784 if (irs->s == 255) {
785 if (irs->o == IR_ASTORE || irs->o == IR_HSTORE ||
786 irs->o == IR_FSTORE || irs->o == IR_XSTORE) {
787 IRIns *irk = IR(irs->op1);
788 if (irk->o == IR_AREF || irk->o == IR_HREFK)
789 irk = IR(irk->op1);
790 return (IR(irk->op1) == ira);
792 return 0;
793 } else {
794 return (ira + irs->s == irs); /* Quick check. */
798 /* Allocate register or spill slot for a ref that escapes to a snapshot. */
799 static void asm_snap_alloc1(ASMState *as, IRRef ref)
801 IRIns *ir = IR(ref);
802 if (!irref_isk(ref) && (!(ra_used(ir) || ir->r == RID_SUNK))) {
803 if (ir->r == RID_SINK) {
804 ir->r = RID_SUNK;
805 #if LJ_HASFFI
806 if (ir->o == IR_CNEWI) { /* Allocate CNEWI value. */
807 asm_snap_alloc1(as, ir->op2);
808 if (LJ_32 && (ir+1)->o == IR_HIOP)
809 asm_snap_alloc1(as, (ir+1)->op2);
811 #endif
812 else { /* Allocate stored values for TNEW, TDUP and CNEW. */
813 IRIns *irs;
814 lua_assert(ir->o == IR_TNEW || ir->o == IR_TDUP || ir->o == IR_CNEW);
815 for (irs = IR(as->snapref-1); irs > ir; irs--)
816 if (irs->r == RID_SINK && asm_sunk_store(as, ir, irs)) {
817 lua_assert(irs->o == IR_ASTORE || irs->o == IR_HSTORE ||
818 irs->o == IR_FSTORE || irs->o == IR_XSTORE);
819 asm_snap_alloc1(as, irs->op2);
820 if (LJ_32 && (irs+1)->o == IR_HIOP)
821 asm_snap_alloc1(as, (irs+1)->op2);
824 } else if (ir->o == IR_CONV && ir->op2 == IRCONV_NUM_INT) {
825 asm_snap_alloc1(as, ir->op1);
826 } else {
827 RegSet allow = (!LJ_SOFTFP && irt_isfp(ir->t)) ? RSET_FPR : RSET_GPR;
828 if ((as->freeset & allow) ||
829 (allow == RSET_FPR && asm_snap_canremat(as))) {
830 /* Get a weak register if we have a free one or can rematerialize. */
831 Reg r = ra_allocref(as, ref, allow); /* Allocate a register. */
832 if (!irt_isphi(ir->t))
833 ra_weak(as, r); /* But mark it as weakly referenced. */
834 checkmclim(as);
835 RA_DBGX((as, "snapreg $f $r", ref, ir->r));
836 } else {
837 ra_spill(as, ir); /* Otherwise force a spill slot. */
838 RA_DBGX((as, "snapspill $f $s", ref, ir->s));
844 /* Allocate refs escaping to a snapshot. */
845 static void asm_snap_alloc(ASMState *as)
847 SnapShot *snap = &as->T->snap[as->snapno];
848 SnapEntry *map = &as->T->snapmap[snap->mapofs];
849 MSize n, nent = snap->nent;
850 for (n = 0; n < nent; n++) {
851 SnapEntry sn = map[n];
852 IRRef ref = snap_ref(sn);
853 if (!irref_isk(ref)) {
854 asm_snap_alloc1(as, ref);
855 if (LJ_SOFTFP && (sn & SNAP_SOFTFPNUM)) {
856 lua_assert(irt_type(IR(ref+1)->t) == IRT_SOFTFP);
857 asm_snap_alloc1(as, ref+1);
863 /* All guards for a snapshot use the same exitno. This is currently the
864 ** same as the snapshot number. Since the exact origin of the exit cannot
865 ** be determined, all guards for the same snapshot must exit with the same
866 ** RegSP mapping.
867 ** A renamed ref which has been used in a prior guard for the same snapshot
868 ** would cause an inconsistency. The easy way out is to force a spill slot.
870 static int asm_snap_checkrename(ASMState *as, IRRef ren)
872 SnapShot *snap = &as->T->snap[as->snapno];
873 SnapEntry *map = &as->T->snapmap[snap->mapofs];
874 MSize n, nent = snap->nent;
875 for (n = 0; n < nent; n++) {
876 SnapEntry sn = map[n];
877 IRRef ref = snap_ref(sn);
878 if (ref == ren || (LJ_SOFTFP && (sn & SNAP_SOFTFPNUM) && ++ref == ren)) {
879 IRIns *ir = IR(ref);
880 ra_spill(as, ir); /* Register renamed, so force a spill slot. */
881 RA_DBGX((as, "snaprensp $f $s", ref, ir->s));
882 return 1; /* Found. */
885 return 0; /* Not found. */
888 /* Prepare snapshot for next guard instruction. */
889 static void asm_snap_prep(ASMState *as)
891 if (as->curins < as->snapref) {
892 do {
893 if (as->snapno == 0) return; /* Called by sunk stores before snap #0. */
894 as->snapno--;
895 as->snapref = as->T->snap[as->snapno].ref;
896 } while (as->curins < as->snapref);
897 asm_snap_alloc(as);
898 as->snaprename = as->T->nins;
899 } else {
900 /* Process any renames above the highwater mark. */
901 for (; as->snaprename < as->T->nins; as->snaprename++) {
902 IRIns *ir = IR(as->snaprename);
903 if (asm_snap_checkrename(as, ir->op1))
904 ir->op2 = REF_BIAS-1; /* Kill rename. */
909 /* -- Miscellaneous helpers ----------------------------------------------- */
911 /* Collect arguments from CALL* and CARG instructions. */
912 static void asm_collectargs(ASMState *as, IRIns *ir,
913 const CCallInfo *ci, IRRef *args)
915 uint32_t n = CCI_NARGS(ci);
916 lua_assert(n <= CCI_NARGS_MAX);
917 if ((ci->flags & CCI_L)) { *args++ = ASMREF_L; n--; }
918 while (n-- > 1) {
919 ir = IR(ir->op1);
920 lua_assert(ir->o == IR_CARG);
921 args[n] = ir->op2 == REF_NIL ? 0 : ir->op2;
923 args[0] = ir->op1 == REF_NIL ? 0 : ir->op1;
924 lua_assert(IR(ir->op1)->o != IR_CARG);
927 /* Reconstruct CCallInfo flags for CALLX*. */
928 static uint32_t asm_callx_flags(ASMState *as, IRIns *ir)
930 uint32_t nargs = 0;
931 if (ir->op1 != REF_NIL) { /* Count number of arguments first. */
932 IRIns *ira = IR(ir->op1);
933 nargs++;
934 while (ira->o == IR_CARG) { nargs++; ira = IR(ira->op1); }
936 #if LJ_HASFFI
937 if (IR(ir->op2)->o == IR_CARG) { /* Copy calling convention info. */
938 CTypeID id = (CTypeID)IR(IR(ir->op2)->op2)->i;
939 CType *ct = ctype_get(ctype_ctsG(J2G(as->J)), id);
940 nargs |= ((ct->info & CTF_VARARG) ? CCI_VARARG : 0);
941 #if LJ_TARGET_X86
942 nargs |= (ctype_cconv(ct->info) << CCI_CC_SHIFT);
943 #endif
945 #endif
946 return (nargs | (ir->t.irt << CCI_OTSHIFT));
949 /* Calculate stack adjustment. */
950 static int32_t asm_stack_adjust(ASMState *as)
952 if (as->evenspill <= SPS_FIXED)
953 return 0;
954 return sps_scale(sps_align(as->evenspill));
957 /* Must match with hash*() in lj_tab.c. */
958 static uint32_t ir_khash(IRIns *ir)
960 uint32_t lo, hi;
961 if (irt_isstr(ir->t)) {
962 return ir_kstr(ir)->hash;
963 } else if (irt_isnum(ir->t)) {
964 lo = ir_knum(ir)->u32.lo;
965 hi = ir_knum(ir)->u32.hi << 1;
966 } else if (irt_ispri(ir->t)) {
967 lua_assert(!irt_isnil(ir->t));
968 return irt_type(ir->t)-IRT_FALSE;
969 } else {
970 lua_assert(irt_isgcv(ir->t));
971 lo = u32ptr(ir_kgc(ir));
972 hi = lo + HASH_BIAS;
974 return hashrot(lo, hi);
977 /* -- Allocations --------------------------------------------------------- */
979 static void asm_gencall(ASMState *as, const CCallInfo *ci, IRRef *args);
980 static void asm_setupresult(ASMState *as, IRIns *ir, const CCallInfo *ci);
982 static void asm_snew(ASMState *as, IRIns *ir)
984 const CCallInfo *ci = &lj_ir_callinfo[IRCALL_lj_str_new];
985 IRRef args[3];
986 args[0] = ASMREF_L; /* lua_State *L */
987 args[1] = ir->op1; /* const char *str */
988 args[2] = ir->op2; /* size_t len */
989 as->gcsteps++;
990 asm_setupresult(as, ir, ci); /* GCstr * */
991 asm_gencall(as, ci, args);
994 static void asm_tnew(ASMState *as, IRIns *ir)
996 const CCallInfo *ci = &lj_ir_callinfo[IRCALL_lj_tab_new1];
997 IRRef args[2];
998 args[0] = ASMREF_L; /* lua_State *L */
999 args[1] = ASMREF_TMP1; /* uint32_t ahsize */
1000 as->gcsteps++;
1001 asm_setupresult(as, ir, ci); /* GCtab * */
1002 asm_gencall(as, ci, args);
1003 ra_allockreg(as, ir->op1 | (ir->op2 << 24), ra_releasetmp(as, ASMREF_TMP1));
1006 static void asm_tdup(ASMState *as, IRIns *ir)
1008 const CCallInfo *ci = &lj_ir_callinfo[IRCALL_lj_tab_dup];
1009 IRRef args[2];
1010 args[0] = ASMREF_L; /* lua_State *L */
1011 args[1] = ir->op1; /* const GCtab *kt */
1012 as->gcsteps++;
1013 asm_setupresult(as, ir, ci); /* GCtab * */
1014 asm_gencall(as, ci, args);
1017 static void asm_gc_check(ASMState *as);
1019 /* Explicit GC step. */
1020 static void asm_gcstep(ASMState *as, IRIns *ir)
1022 IRIns *ira;
1023 for (ira = IR(as->stopins+1); ira < ir; ira++)
1024 if ((ira->o == IR_TNEW || ira->o == IR_TDUP ||
1025 (LJ_HASFFI && (ira->o == IR_CNEW || ira->o == IR_CNEWI))) &&
1026 ra_used(ira))
1027 as->gcsteps++;
1028 if (as->gcsteps)
1029 asm_gc_check(as);
1030 as->gcsteps = 0x80000000; /* Prevent implicit GC check further up. */
1033 /* -- PHI and loop handling ----------------------------------------------- */
1035 /* Break a PHI cycle by renaming to a free register (evict if needed). */
1036 static void asm_phi_break(ASMState *as, RegSet blocked, RegSet blockedby,
1037 RegSet allow)
1039 RegSet candidates = blocked & allow;
1040 if (candidates) { /* If this register file has candidates. */
1041 /* Note: the set for ra_pick cannot be empty, since each register file
1042 ** has some registers never allocated to PHIs.
1044 Reg down, up = ra_pick(as, ~blocked & allow); /* Get a free register. */
1045 if (candidates & ~blockedby) /* Optimize shifts, else it's a cycle. */
1046 candidates = candidates & ~blockedby;
1047 down = rset_picktop(candidates); /* Pick candidate PHI register. */
1048 ra_rename(as, down, up); /* And rename it to the free register. */
1052 /* PHI register shuffling.
1054 ** The allocator tries hard to preserve PHI register assignments across
1055 ** the loop body. Most of the time this loop does nothing, since there
1056 ** are no register mismatches.
1058 ** If a register mismatch is detected and ...
1059 ** - the register is currently free: rename it.
1060 ** - the register is blocked by an invariant: restore/remat and rename it.
1061 ** - Otherwise the register is used by another PHI, so mark it as blocked.
1063 ** The renames are order-sensitive, so just retry the loop if a register
1064 ** is marked as blocked, but has been freed in the meantime. A cycle is
1065 ** detected if all of the blocked registers are allocated. To break the
1066 ** cycle rename one of them to a free register and retry.
1068 ** Note that PHI spill slots are kept in sync and don't need to be shuffled.
1070 static void asm_phi_shuffle(ASMState *as)
1072 RegSet work;
1074 /* Find and resolve PHI register mismatches. */
1075 for (;;) {
1076 RegSet blocked = RSET_EMPTY;
1077 RegSet blockedby = RSET_EMPTY;
1078 RegSet phiset = as->phiset;
1079 while (phiset) { /* Check all left PHI operand registers. */
1080 Reg r = rset_pickbot(phiset);
1081 IRIns *irl = IR(as->phireg[r]);
1082 Reg left = irl->r;
1083 if (r != left) { /* Mismatch? */
1084 if (!rset_test(as->freeset, r)) { /* PHI register blocked? */
1085 IRRef ref = regcost_ref(as->cost[r]);
1086 /* Blocked by other PHI (w/reg)? */
1087 if (!ra_iskref(ref) && irt_ismarked(IR(ref)->t)) {
1088 rset_set(blocked, r);
1089 if (ra_hasreg(left))
1090 rset_set(blockedby, left);
1091 left = RID_NONE;
1092 } else { /* Otherwise grab register from invariant. */
1093 ra_restore(as, ref);
1094 checkmclim(as);
1097 if (ra_hasreg(left)) {
1098 ra_rename(as, left, r);
1099 checkmclim(as);
1102 rset_clear(phiset, r);
1104 if (!blocked) break; /* Finished. */
1105 if (!(as->freeset & blocked)) { /* Break cycles if none are free. */
1106 asm_phi_break(as, blocked, blockedby, RSET_GPR);
1107 if (!LJ_SOFTFP) asm_phi_break(as, blocked, blockedby, RSET_FPR);
1108 checkmclim(as);
1109 } /* Else retry some more renames. */
1112 /* Restore/remat invariants whose registers are modified inside the loop. */
1113 work = as->modset & ~(as->freeset | as->phiset);
1114 while (work) {
1115 Reg r = rset_pickbot(work);
1116 ra_restore(as, regcost_ref(as->cost[r]));
1117 rset_clear(work, r);
1118 checkmclim(as);
1121 /* Allocate and save all unsaved PHI regs and clear marks. */
1122 work = as->phiset;
1123 while (work) {
1124 Reg r = rset_picktop(work);
1125 IRRef lref = as->phireg[r];
1126 IRIns *ir = IR(lref);
1127 if (ra_hasspill(ir->s)) { /* Left PHI gained a spill slot? */
1128 irt_clearmark(ir->t); /* Handled here, so clear marker now. */
1129 ra_alloc1(as, lref, RID2RSET(r));
1130 ra_save(as, ir, r); /* Save to spill slot inside the loop. */
1131 checkmclim(as);
1133 rset_clear(work, r);
1137 /* Copy unsynced left/right PHI spill slots. Rarely needed. */
1138 static void asm_phi_copyspill(ASMState *as)
1140 int need = 0;
1141 IRIns *ir;
1142 for (ir = IR(as->orignins-1); ir->o == IR_PHI; ir--)
1143 if (ra_hasspill(ir->s) && ra_hasspill(IR(ir->op1)->s))
1144 need |= irt_isfp(ir->t) ? 2 : 1; /* Unsynced spill slot? */
1145 if ((need & 1)) { /* Copy integer spill slots. */
1146 #if !LJ_TARGET_X86ORX64
1147 Reg r = RID_TMP;
1148 #else
1149 Reg r = RID_RET;
1150 if ((as->freeset & RSET_GPR))
1151 r = rset_pickbot((as->freeset & RSET_GPR));
1152 else
1153 emit_spload(as, IR(regcost_ref(as->cost[r])), r, SPOFS_TMP);
1154 #endif
1155 for (ir = IR(as->orignins-1); ir->o == IR_PHI; ir--) {
1156 if (ra_hasspill(ir->s)) {
1157 IRIns *irl = IR(ir->op1);
1158 if (ra_hasspill(irl->s) && !irt_isfp(ir->t)) {
1159 emit_spstore(as, irl, r, sps_scale(irl->s));
1160 emit_spload(as, ir, r, sps_scale(ir->s));
1164 #if LJ_TARGET_X86ORX64
1165 if (!rset_test(as->freeset, r))
1166 emit_spstore(as, IR(regcost_ref(as->cost[r])), r, SPOFS_TMP);
1167 #endif
1169 #if !LJ_SOFTFP
1170 if ((need & 2)) { /* Copy FP spill slots. */
1171 #if LJ_TARGET_X86
1172 Reg r = RID_XMM0;
1173 #else
1174 Reg r = RID_FPRET;
1175 #endif
1176 if ((as->freeset & RSET_FPR))
1177 r = rset_pickbot((as->freeset & RSET_FPR));
1178 if (!rset_test(as->freeset, r))
1179 emit_spload(as, IR(regcost_ref(as->cost[r])), r, SPOFS_TMP);
1180 for (ir = IR(as->orignins-1); ir->o == IR_PHI; ir--) {
1181 if (ra_hasspill(ir->s)) {
1182 IRIns *irl = IR(ir->op1);
1183 if (ra_hasspill(irl->s) && irt_isfp(ir->t)) {
1184 emit_spstore(as, irl, r, sps_scale(irl->s));
1185 emit_spload(as, ir, r, sps_scale(ir->s));
1189 if (!rset_test(as->freeset, r))
1190 emit_spstore(as, IR(regcost_ref(as->cost[r])), r, SPOFS_TMP);
1192 #endif
1195 /* Emit renames for left PHIs which are only spilled outside the loop. */
1196 static void asm_phi_fixup(ASMState *as)
1198 RegSet work = as->phiset;
1199 while (work) {
1200 Reg r = rset_picktop(work);
1201 IRRef lref = as->phireg[r];
1202 IRIns *ir = IR(lref);
1203 /* Left PHI gained a spill slot before the loop? */
1204 if (irt_ismarked(ir->t) && ra_hasspill(ir->s)) {
1205 IRRef ren;
1206 lj_ir_set(as->J, IRT(IR_RENAME, IRT_NIL), lref, as->loopsnapno);
1207 ren = tref_ref(lj_ir_emit(as->J));
1208 as->ir = as->T->ir; /* The IR may have been reallocated. */
1209 IR(ren)->r = (uint8_t)r;
1210 IR(ren)->s = SPS_NONE;
1212 irt_clearmark(ir->t); /* Always clear marker. */
1213 rset_clear(work, r);
1217 /* Setup right PHI reference. */
1218 static void asm_phi(ASMState *as, IRIns *ir)
1220 RegSet allow = ((!LJ_SOFTFP && irt_isfp(ir->t)) ? RSET_FPR : RSET_GPR) &
1221 ~as->phiset;
1222 RegSet afree = (as->freeset & allow);
1223 IRIns *irl = IR(ir->op1);
1224 IRIns *irr = IR(ir->op2);
1225 if (ir->r == RID_SINK) /* Sink PHI. */
1226 return;
1227 /* Spill slot shuffling is not implemented yet (but rarely needed). */
1228 if (ra_hasspill(irl->s) || ra_hasspill(irr->s))
1229 lj_trace_err(as->J, LJ_TRERR_NYIPHI);
1230 /* Leave at least one register free for non-PHIs (and PHI cycle breaking). */
1231 if ((afree & (afree-1))) { /* Two or more free registers? */
1232 Reg r;
1233 if (ra_noreg(irr->r)) { /* Get a register for the right PHI. */
1234 r = ra_allocref(as, ir->op2, allow);
1235 } else { /* Duplicate right PHI, need a copy (rare). */
1236 r = ra_scratch(as, allow);
1237 emit_movrr(as, irr, r, irr->r);
1239 ir->r = (uint8_t)r;
1240 rset_set(as->phiset, r);
1241 as->phireg[r] = (IRRef1)ir->op1;
1242 irt_setmark(irl->t); /* Marks left PHIs _with_ register. */
1243 if (ra_noreg(irl->r))
1244 ra_sethint(irl->r, r); /* Set register hint for left PHI. */
1245 } else { /* Otherwise allocate a spill slot. */
1246 /* This is overly restrictive, but it triggers only on synthetic code. */
1247 if (ra_hasreg(irl->r) || ra_hasreg(irr->r))
1248 lj_trace_err(as->J, LJ_TRERR_NYIPHI);
1249 ra_spill(as, ir);
1250 irr->s = ir->s; /* Set right PHI spill slot. Sync left slot later. */
1254 static void asm_loop_fixup(ASMState *as);
1256 /* Middle part of a loop. */
1257 static void asm_loop(ASMState *as)
1259 MCode *mcspill;
1260 /* LOOP is a guard, so the snapno is up to date. */
1261 as->loopsnapno = as->snapno;
1262 if (as->gcsteps)
1263 asm_gc_check(as);
1264 /* LOOP marks the transition from the variant to the invariant part. */
1265 as->flagmcp = as->invmcp = NULL;
1266 as->sectref = 0;
1267 if (!neverfuse(as)) as->fuseref = 0;
1268 asm_phi_shuffle(as);
1269 mcspill = as->mcp;
1270 asm_phi_copyspill(as);
1271 asm_loop_fixup(as);
1272 as->mcloop = as->mcp;
1273 RA_DBGX((as, "===== LOOP ====="));
1274 if (!as->realign) RA_DBG_FLUSH();
1275 if (as->mcp != mcspill)
1276 emit_jmp(as, mcspill);
1279 /* -- Target-specific assembler ------------------------------------------- */
1281 #if LJ_TARGET_X86ORX64
1282 #include "lj_asm_x86.h"
1283 #elif LJ_TARGET_ARM
1284 #include "lj_asm_arm.h"
1285 #elif LJ_TARGET_PPC
1286 #include "lj_asm_ppc.h"
1287 #elif LJ_TARGET_MIPS
1288 #include "lj_asm_mips.h"
1289 #else
1290 #error "Missing assembler for target CPU"
1291 #endif
1293 /* -- Head of trace ------------------------------------------------------- */
1295 /* Head of a root trace. */
1296 static void asm_head_root(ASMState *as)
1298 int32_t spadj;
1299 asm_head_root_base(as);
1300 emit_setvmstate(as, (int32_t)as->T->traceno);
1301 spadj = asm_stack_adjust(as);
1302 as->T->spadjust = (uint16_t)spadj;
1303 emit_spsub(as, spadj);
1304 /* Root traces assume a checked stack for the starting proto. */
1305 as->T->topslot = gcref(as->T->startpt)->pt.framesize;
1308 /* Head of a side trace.
1310 ** The current simplistic algorithm requires that all slots inherited
1311 ** from the parent are live in a register between pass 2 and pass 3. This
1312 ** avoids the complexity of stack slot shuffling. But of course this may
1313 ** overflow the register set in some cases and cause the dreaded error:
1314 ** "NYI: register coalescing too complex". A refined algorithm is needed.
1316 static void asm_head_side(ASMState *as)
1318 IRRef1 sloadins[RID_MAX];
1319 RegSet allow = RSET_ALL; /* Inverse of all coalesced registers. */
1320 RegSet live = RSET_EMPTY; /* Live parent registers. */
1321 IRIns *irp = &as->parent->ir[REF_BASE]; /* Parent base. */
1322 int32_t spadj, spdelta;
1323 int pass2 = 0;
1324 int pass3 = 0;
1325 IRRef i;
1327 allow = asm_head_side_base(as, irp, allow);
1329 /* Scan all parent SLOADs and collect register dependencies. */
1330 for (i = as->stopins; i > REF_BASE; i--) {
1331 IRIns *ir = IR(i);
1332 RegSP rs;
1333 lua_assert((ir->o == IR_SLOAD && (ir->op2 & IRSLOAD_PARENT)) ||
1334 (LJ_SOFTFP && ir->o == IR_HIOP) || ir->o == IR_PVAL);
1335 rs = as->parentmap[i - REF_FIRST];
1336 if (ra_hasreg(ir->r)) {
1337 rset_clear(allow, ir->r);
1338 if (ra_hasspill(ir->s)) {
1339 ra_save(as, ir, ir->r);
1340 checkmclim(as);
1342 } else if (ra_hasspill(ir->s)) {
1343 irt_setmark(ir->t);
1344 pass2 = 1;
1346 if (ir->r == rs) { /* Coalesce matching registers right now. */
1347 ra_free(as, ir->r);
1348 } else if (ra_hasspill(regsp_spill(rs))) {
1349 if (ra_hasreg(ir->r))
1350 pass3 = 1;
1351 } else if (ra_used(ir)) {
1352 sloadins[rs] = (IRRef1)i;
1353 rset_set(live, rs); /* Block live parent register. */
1357 /* Calculate stack frame adjustment. */
1358 spadj = asm_stack_adjust(as);
1359 spdelta = spadj - (int32_t)as->parent->spadjust;
1360 if (spdelta < 0) { /* Don't shrink the stack frame. */
1361 spadj = (int32_t)as->parent->spadjust;
1362 spdelta = 0;
1364 as->T->spadjust = (uint16_t)spadj;
1366 /* Reload spilled target registers. */
1367 if (pass2) {
1368 for (i = as->stopins; i > REF_BASE; i--) {
1369 IRIns *ir = IR(i);
1370 if (irt_ismarked(ir->t)) {
1371 RegSet mask;
1372 Reg r;
1373 RegSP rs;
1374 irt_clearmark(ir->t);
1375 rs = as->parentmap[i - REF_FIRST];
1376 if (!ra_hasspill(regsp_spill(rs)))
1377 ra_sethint(ir->r, rs); /* Hint may be gone, set it again. */
1378 else if (sps_scale(regsp_spill(rs))+spdelta == sps_scale(ir->s))
1379 continue; /* Same spill slot, do nothing. */
1380 mask = ((!LJ_SOFTFP && irt_isnum(ir->t)) ? RSET_FPR : RSET_GPR) & allow;
1381 if (mask == RSET_EMPTY)
1382 lj_trace_err(as->J, LJ_TRERR_NYICOAL);
1383 r = ra_allocref(as, i, mask);
1384 ra_save(as, ir, r);
1385 rset_clear(allow, r);
1386 if (r == rs) { /* Coalesce matching registers right now. */
1387 ra_free(as, r);
1388 rset_clear(live, r);
1389 } else if (ra_hasspill(regsp_spill(rs))) {
1390 pass3 = 1;
1392 checkmclim(as);
1397 /* Store trace number and adjust stack frame relative to the parent. */
1398 emit_setvmstate(as, (int32_t)as->T->traceno);
1399 emit_spsub(as, spdelta);
1401 #if !LJ_TARGET_X86ORX64
1402 /* Restore BASE register from parent spill slot. */
1403 if (ra_hasspill(irp->s))
1404 emit_spload(as, IR(REF_BASE), IR(REF_BASE)->r, sps_scale(irp->s));
1405 #endif
1407 /* Restore target registers from parent spill slots. */
1408 if (pass3) {
1409 RegSet work = ~as->freeset & RSET_ALL;
1410 while (work) {
1411 Reg r = rset_pickbot(work);
1412 IRRef ref = regcost_ref(as->cost[r]);
1413 RegSP rs = as->parentmap[ref - REF_FIRST];
1414 rset_clear(work, r);
1415 if (ra_hasspill(regsp_spill(rs))) {
1416 int32_t ofs = sps_scale(regsp_spill(rs));
1417 ra_free(as, r);
1418 emit_spload(as, IR(ref), r, ofs);
1419 checkmclim(as);
1424 /* Shuffle registers to match up target regs with parent regs. */
1425 for (;;) {
1426 RegSet work;
1428 /* Repeatedly coalesce free live registers by moving to their target. */
1429 while ((work = as->freeset & live) != RSET_EMPTY) {
1430 Reg rp = rset_pickbot(work);
1431 IRIns *ir = IR(sloadins[rp]);
1432 rset_clear(live, rp);
1433 rset_clear(allow, rp);
1434 ra_free(as, ir->r);
1435 emit_movrr(as, ir, ir->r, rp);
1436 checkmclim(as);
1439 /* We're done if no live registers remain. */
1440 if (live == RSET_EMPTY)
1441 break;
1443 /* Break cycles by renaming one target to a temp. register. */
1444 if (live & RSET_GPR) {
1445 RegSet tmpset = as->freeset & ~live & allow & RSET_GPR;
1446 if (tmpset == RSET_EMPTY)
1447 lj_trace_err(as->J, LJ_TRERR_NYICOAL);
1448 ra_rename(as, rset_pickbot(live & RSET_GPR), rset_pickbot(tmpset));
1450 if (!LJ_SOFTFP && (live & RSET_FPR)) {
1451 RegSet tmpset = as->freeset & ~live & allow & RSET_FPR;
1452 if (tmpset == RSET_EMPTY)
1453 lj_trace_err(as->J, LJ_TRERR_NYICOAL);
1454 ra_rename(as, rset_pickbot(live & RSET_FPR), rset_pickbot(tmpset));
1456 checkmclim(as);
1457 /* Continue with coalescing to fix up the broken cycle(s). */
1460 /* Inherit top stack slot already checked by parent trace. */
1461 as->T->topslot = as->parent->topslot;
1462 if (as->topslot > as->T->topslot) { /* Need to check for higher slot? */
1463 #ifdef EXITSTATE_CHECKEXIT
1464 /* Highest exit + 1 indicates stack check. */
1465 ExitNo exitno = as->T->nsnap;
1466 #else
1467 /* Reuse the parent exit in the context of the parent trace. */
1468 ExitNo exitno = as->J->exitno;
1469 #endif
1470 as->T->topslot = (uint8_t)as->topslot; /* Remember for child traces. */
1471 asm_stack_check(as, as->topslot, irp, allow & RSET_GPR, exitno);
1475 /* -- Tail of trace ------------------------------------------------------- */
1477 /* Get base slot for a snapshot. */
1478 static BCReg asm_baseslot(ASMState *as, SnapShot *snap, int *gotframe)
1480 SnapEntry *map = &as->T->snapmap[snap->mapofs];
1481 MSize n;
1482 for (n = snap->nent; n > 0; n--) {
1483 SnapEntry sn = map[n-1];
1484 if ((sn & SNAP_FRAME)) {
1485 *gotframe = 1;
1486 return snap_slot(sn);
1489 return 0;
1492 /* Link to another trace. */
1493 static void asm_tail_link(ASMState *as)
1495 SnapNo snapno = as->T->nsnap-1; /* Last snapshot. */
1496 SnapShot *snap = &as->T->snap[snapno];
1497 int gotframe = 0;
1498 BCReg baseslot = asm_baseslot(as, snap, &gotframe);
1500 as->topslot = snap->topslot;
1501 checkmclim(as);
1502 ra_allocref(as, REF_BASE, RID2RSET(RID_BASE));
1504 if (as->T->link == 0) {
1505 /* Setup fixed registers for exit to interpreter. */
1506 const BCIns *pc = snap_pc(as->T->snapmap[snap->mapofs + snap->nent]);
1507 int32_t mres;
1508 if (bc_op(*pc) == BC_JLOOP) { /* NYI: find a better way to do this. */
1509 BCIns *retpc = &traceref(as->J, bc_d(*pc))->startins;
1510 if (bc_isret(bc_op(*retpc)))
1511 pc = retpc;
1513 ra_allockreg(as, i32ptr(J2GG(as->J)->dispatch), RID_DISPATCH);
1514 ra_allockreg(as, i32ptr(pc), RID_LPC);
1515 mres = (int32_t)(snap->nslots - baseslot);
1516 switch (bc_op(*pc)) {
1517 case BC_CALLM: case BC_CALLMT:
1518 mres -= (int32_t)(1 + bc_a(*pc) + bc_c(*pc)); break;
1519 case BC_RETM: mres -= (int32_t)(bc_a(*pc) + bc_d(*pc)); break;
1520 case BC_TSETM: mres -= (int32_t)bc_a(*pc); break;
1521 default: if (bc_op(*pc) < BC_FUNCF) mres = 0; break;
1523 ra_allockreg(as, mres, RID_RET); /* Return MULTRES or 0. */
1524 } else if (baseslot) {
1525 /* Save modified BASE for linking to trace with higher start frame. */
1526 emit_setgl(as, RID_BASE, jit_base);
1528 emit_addptr(as, RID_BASE, 8*(int32_t)baseslot);
1530 /* Sync the interpreter state with the on-trace state. */
1531 asm_stack_restore(as, snap);
1533 /* Root traces that add frames need to check the stack at the end. */
1534 if (!as->parent && gotframe)
1535 asm_stack_check(as, as->topslot, NULL, as->freeset & RSET_GPR, snapno);
1538 /* -- Trace setup --------------------------------------------------------- */
1540 /* Clear reg/sp for all instructions and add register hints. */
1541 static void asm_setup_regsp(ASMState *as)
1543 GCtrace *T = as->T;
1544 int sink = T->sinktags;
1545 IRRef nins = T->nins;
1546 IRIns *ir, *lastir;
1547 int inloop;
1548 #if LJ_TARGET_ARM
1549 uint32_t rload = 0xa6402a64;
1550 #endif
1552 ra_setup(as);
1554 /* Clear reg/sp for constants. */
1555 for (ir = IR(T->nk), lastir = IR(REF_BASE); ir < lastir; ir++)
1556 ir->prev = REGSP_INIT;
1558 /* REF_BASE is used for implicit references to the BASE register. */
1559 lastir->prev = REGSP_HINT(RID_BASE);
1561 ir = IR(nins-1);
1562 if (ir->o == IR_RENAME) {
1563 do { ir--; nins--; } while (ir->o == IR_RENAME);
1564 T->nins = nins; /* Remove any renames left over from ASM restart. */
1566 as->snaprename = nins;
1567 as->snapref = nins;
1568 as->snapno = T->nsnap;
1570 as->stopins = REF_BASE;
1571 as->orignins = nins;
1572 as->curins = nins;
1574 /* Setup register hints for parent link instructions. */
1575 ir = IR(REF_FIRST);
1576 if (as->parent) {
1577 uint16_t *p;
1578 lastir = lj_snap_regspmap(as->parent, as->J->exitno, ir);
1579 if (lastir - ir > LJ_MAX_JSLOTS)
1580 lj_trace_err(as->J, LJ_TRERR_NYICOAL);
1581 as->stopins = (IRRef)((lastir-1) - as->ir);
1582 for (p = as->parentmap; ir < lastir; ir++) {
1583 RegSP rs = ir->prev;
1584 *p++ = (uint16_t)rs; /* Copy original parent RegSP to parentmap. */
1585 if (!ra_hasspill(regsp_spill(rs)))
1586 ir->prev = (uint16_t)REGSP_HINT(regsp_reg(rs));
1587 else
1588 ir->prev = REGSP_INIT;
1592 inloop = 0;
1593 as->evenspill = SPS_FIRST;
1594 for (lastir = IR(nins); ir < lastir; ir++) {
1595 if (sink) {
1596 if (ir->r == RID_SINK)
1597 continue;
1598 if (ir->r == RID_SUNK) { /* Revert after ASM restart. */
1599 ir->r = RID_SINK;
1600 continue;
1603 switch (ir->o) {
1604 case IR_LOOP:
1605 inloop = 1;
1606 break;
1607 #if LJ_TARGET_ARM
1608 case IR_SLOAD:
1609 if (!((ir->op2 & IRSLOAD_TYPECHECK) || (ir+1)->o == IR_HIOP))
1610 break;
1611 /* fallthrough */
1612 case IR_ALOAD: case IR_HLOAD: case IR_ULOAD: case IR_VLOAD:
1613 if (!LJ_SOFTFP && irt_isnum(ir->t)) break;
1614 ir->prev = (uint16_t)REGSP_HINT((rload & 15));
1615 rload = lj_ror(rload, 4);
1616 continue;
1617 #endif
1618 case IR_CALLXS: {
1619 CCallInfo ci;
1620 ci.flags = asm_callx_flags(as, ir);
1621 ir->prev = asm_setup_call_slots(as, ir, &ci);
1622 if (inloop)
1623 as->modset |= RSET_SCRATCH;
1624 continue;
1626 case IR_CALLN: case IR_CALLL: case IR_CALLS: {
1627 const CCallInfo *ci = &lj_ir_callinfo[ir->op2];
1628 ir->prev = asm_setup_call_slots(as, ir, ci);
1629 if (inloop)
1630 as->modset |= (ci->flags & CCI_NOFPRCLOBBER) ?
1631 (RSET_SCRATCH & ~RSET_FPR) : RSET_SCRATCH;
1632 continue;
1634 #if LJ_SOFTFP || (LJ_32 && LJ_HASFFI)
1635 case IR_HIOP:
1636 switch ((ir-1)->o) {
1637 #if LJ_SOFTFP && LJ_TARGET_ARM
1638 case IR_SLOAD: case IR_ALOAD: case IR_HLOAD: case IR_ULOAD: case IR_VLOAD:
1639 if (ra_hashint((ir-1)->r)) {
1640 ir->prev = (ir-1)->prev + 1;
1641 continue;
1643 break;
1644 #endif
1645 #if !LJ_SOFTFP && LJ_NEED_FP64
1646 case IR_CONV:
1647 if (irt_isfp((ir-1)->t)) {
1648 ir->prev = REGSP_HINT(RID_FPRET);
1649 continue;
1651 /* fallthrough */
1652 #endif
1653 case IR_CALLN: case IR_CALLXS:
1654 #if LJ_SOFTFP
1655 case IR_MIN: case IR_MAX:
1656 #endif
1657 (ir-1)->prev = REGSP_HINT(RID_RETLO);
1658 ir->prev = REGSP_HINT(RID_RETHI);
1659 continue;
1660 default:
1661 break;
1663 break;
1664 #endif
1665 #if LJ_SOFTFP
1666 case IR_MIN: case IR_MAX:
1667 if ((ir+1)->o != IR_HIOP) break;
1668 /* fallthrough */
1669 #endif
1670 /* C calls evict all scratch regs and return results in RID_RET. */
1671 case IR_SNEW: case IR_XSNEW: case IR_NEWREF:
1672 if (REGARG_NUMGPR < 3 && as->evenspill < 3)
1673 as->evenspill = 3; /* lj_str_new and lj_tab_newkey need 3 args. */
1674 case IR_TNEW: case IR_TDUP: case IR_CNEW: case IR_CNEWI: case IR_TOSTR:
1675 ir->prev = REGSP_HINT(RID_RET);
1676 if (inloop)
1677 as->modset = RSET_SCRATCH;
1678 continue;
1679 case IR_STRTO: case IR_OBAR:
1680 if (inloop)
1681 as->modset = RSET_SCRATCH;
1682 break;
1683 #if !LJ_TARGET_X86ORX64 && !LJ_SOFTFP
1684 case IR_ATAN2: case IR_LDEXP:
1685 #endif
1686 case IR_POW:
1687 if (!LJ_SOFTFP && irt_isnum(ir->t)) {
1688 #if LJ_TARGET_X86ORX64
1689 ir->prev = REGSP_HINT(RID_XMM0);
1690 if (inloop)
1691 as->modset |= RSET_RANGE(RID_XMM0, RID_XMM1+1)|RID2RSET(RID_EAX);
1692 #else
1693 ir->prev = REGSP_HINT(RID_FPRET);
1694 if (inloop)
1695 as->modset |= RSET_SCRATCH;
1696 #endif
1697 continue;
1699 /* fallthrough for integer POW */
1700 case IR_DIV: case IR_MOD:
1701 if (!irt_isnum(ir->t)) {
1702 ir->prev = REGSP_HINT(RID_RET);
1703 if (inloop)
1704 as->modset |= (RSET_SCRATCH & RSET_GPR);
1705 continue;
1707 break;
1708 case IR_FPMATH:
1709 #if LJ_TARGET_X86ORX64
1710 if (ir->op2 == IRFPM_EXP2) { /* May be joined to lj_vm_pow_sse. */
1711 ir->prev = REGSP_HINT(RID_XMM0);
1712 #if !LJ_64
1713 if (as->evenspill < 4) /* Leave room for 16 byte scratch area. */
1714 as->evenspill = 4;
1715 #endif
1716 if (inloop)
1717 as->modset |= RSET_RANGE(RID_XMM0, RID_XMM2+1)|RID2RSET(RID_EAX);
1718 continue;
1719 } else if (ir->op2 <= IRFPM_TRUNC && !(as->flags & JIT_F_SSE4_1)) {
1720 ir->prev = REGSP_HINT(RID_XMM0);
1721 if (inloop)
1722 as->modset |= RSET_RANGE(RID_XMM0, RID_XMM3+1)|RID2RSET(RID_EAX);
1723 continue;
1725 break;
1726 #else
1727 ir->prev = REGSP_HINT(RID_FPRET);
1728 if (inloop)
1729 as->modset |= RSET_SCRATCH;
1730 continue;
1731 #endif
1732 #if LJ_TARGET_X86ORX64
1733 /* Non-constant shift counts need to be in RID_ECX on x86/x64. */
1734 case IR_BSHL: case IR_BSHR: case IR_BSAR: case IR_BROL: case IR_BROR:
1735 if (!irref_isk(ir->op2) && !ra_hashint(IR(ir->op2)->r)) {
1736 IR(ir->op2)->r = REGSP_HINT(RID_ECX);
1737 if (inloop)
1738 rset_set(as->modset, RID_ECX);
1740 break;
1741 #endif
1742 /* Do not propagate hints across type conversions. */
1743 case IR_TOBIT:
1744 break;
1745 case IR_CONV:
1746 if (irt_isfp(ir->t) || (ir->op2 & IRCONV_SRCMASK) == IRT_NUM ||
1747 (ir->op2 & IRCONV_SRCMASK) == IRT_FLOAT)
1748 break;
1749 /* fallthrough */
1750 default:
1751 /* Propagate hints across likely 'op reg, imm' or 'op reg'. */
1752 if (irref_isk(ir->op2) && !irref_isk(ir->op1) &&
1753 ra_hashint(regsp_reg(IR(ir->op1)->prev))) {
1754 ir->prev = IR(ir->op1)->prev;
1755 continue;
1757 break;
1759 ir->prev = REGSP_INIT;
1761 if ((as->evenspill & 1))
1762 as->oddspill = as->evenspill++;
1763 else
1764 as->oddspill = 0;
1767 /* -- Assembler core ------------------------------------------------------ */
1769 /* Assemble a trace. */
1770 void lj_asm_trace(jit_State *J, GCtrace *T)
1772 ASMState as_;
1773 ASMState *as = &as_;
1774 MCode *origtop;
1776 /* Ensure an initialized instruction beyond the last one for HIOP checks. */
1777 J->cur.nins = lj_ir_nextins(J);
1778 J->cur.ir[J->cur.nins].o = IR_NOP;
1780 /* Setup initial state. Copy some fields to reduce indirections. */
1781 as->J = J;
1782 as->T = T;
1783 as->ir = T->ir;
1784 as->flags = J->flags;
1785 as->loopref = J->loopref;
1786 as->realign = NULL;
1787 as->loopinv = 0;
1788 as->parent = J->parent ? traceref(J, J->parent) : NULL;
1790 /* Reserve MCode memory. */
1791 as->mctop = origtop = lj_mcode_reserve(J, &as->mcbot);
1792 as->mcp = as->mctop;
1793 as->mclim = as->mcbot + MCLIM_REDZONE;
1794 asm_setup_target(as);
1796 do {
1797 as->mcp = as->mctop;
1798 as->curins = T->nins;
1799 RA_DBG_START();
1800 RA_DBGX((as, "===== STOP ====="));
1802 /* General trace setup. Emit tail of trace. */
1803 asm_tail_prep(as);
1804 as->mcloop = NULL;
1805 as->flagmcp = NULL;
1806 as->topslot = 0;
1807 as->gcsteps = 0;
1808 as->sectref = as->loopref;
1809 as->fuseref = (as->flags & JIT_F_OPT_FUSE) ? as->loopref : FUSE_DISABLED;
1810 asm_setup_regsp(as);
1811 if (!as->loopref)
1812 asm_tail_link(as);
1814 /* Assemble a trace in linear backwards order. */
1815 for (as->curins--; as->curins > as->stopins; as->curins--) {
1816 IRIns *ir = IR(as->curins);
1817 lua_assert(!(LJ_32 && irt_isint64(ir->t))); /* Handled by SPLIT. */
1818 if (!ra_used(ir) && !ir_sideeff(ir) && (as->flags & JIT_F_OPT_DCE))
1819 continue; /* Dead-code elimination can be soooo easy. */
1820 if (irt_isguard(ir->t))
1821 asm_snap_prep(as);
1822 RA_DBG_REF();
1823 checkmclim(as);
1824 asm_ir(as, ir);
1826 } while (as->realign); /* Retry in case the MCode needs to be realigned. */
1828 /* Emit head of trace. */
1829 RA_DBG_REF();
1830 checkmclim(as);
1831 if (as->gcsteps > 0) {
1832 as->curins = as->T->snap[0].ref;
1833 asm_snap_prep(as); /* The GC check is a guard. */
1834 asm_gc_check(as);
1836 ra_evictk(as);
1837 if (as->parent)
1838 asm_head_side(as);
1839 else
1840 asm_head_root(as);
1841 asm_phi_fixup(as);
1843 RA_DBGX((as, "===== START ===="));
1844 RA_DBG_FLUSH();
1845 if (as->freeset != RSET_ALL)
1846 lj_trace_err(as->J, LJ_TRERR_BADRA); /* Ouch! Should never happen. */
1848 /* Set trace entry point before fixing up tail to allow link to self. */
1849 T->mcode = as->mcp;
1850 T->mcloop = as->mcloop ? (MSize)((char *)as->mcloop - (char *)as->mcp) : 0;
1851 if (!as->loopref)
1852 asm_tail_fixup(as, T->link); /* Note: this may change as->mctop! */
1853 T->szmcode = (MSize)((char *)as->mctop - (char *)as->mcp);
1854 lj_mcode_sync(T->mcode, origtop);
1857 #undef IR
1859 #endif