summaryrefslogtreecommitdiff
path: root/src/runtime/c
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2014-10-30 13:09:50 +0000
committerkr.angelov <kr.angelov@gmail.com>2014-10-30 13:09:50 +0000
commit9b0f354c7cef175c172edae582dcfa48817db7ba (patch)
tree99bee2d13ee471423999b57f2dc3a5aa8164d9b3 /src/runtime/c
parent0519493ca936c8e555cfdf9178195418e342ff05 (diff)
a more efficient tail call by using the new TUCK instruction
Diffstat (limited to 'src/runtime/c')
-rw-r--r--src/runtime/c/pgf/data.h11
-rw-r--r--src/runtime/c/pgf/jit.c79
2 files changed, 64 insertions, 26 deletions
diff --git a/src/runtime/c/pgf/data.h b/src/runtime/c/pgf/data.h
index 864cf9b27..79c8dcc31 100644
--- a/src/runtime/c/pgf/data.h
+++ b/src/runtime/c/pgf/data.h
@@ -136,11 +136,12 @@ typedef enum {
PGF_INSTR_SET_PAD = 9,
PGF_INSTR_PUSH_FRAME = 10,
PGF_INSTR_PUSH = 11,
- PGF_INSTR_EVAL = 12,
- PGF_INSTR_DROP = 15,
- PGF_INSTR_JUMP = 16,
- PGF_INSTR_FAIL = 17,
- PGF_INSTR_ADD = 18,
+ PGF_INSTR_TUCK = 12,
+ PGF_INSTR_EVAL = 13,
+ PGF_INSTR_DROP = 16,
+ PGF_INSTR_JUMP = 17,
+ PGF_INSTR_FAIL = 18,
+ PGF_INSTR_ADD = 19,
} PgfInstruction;
typedef GuSeq PgfConcrs;
diff --git a/src/runtime/c/pgf/jit.c b/src/runtime/c/pgf/jit.c
index 9886c648a..60f8d28f6 100644
--- a/src/runtime/c/pgf/jit.c
+++ b/src/runtime/c/pgf/jit.c
@@ -1000,6 +1000,61 @@ pgf_jit_function(PgfReader* rdr, PgfAbstr* abstr,
}
break;
}
+ case PGF_INSTR_TUCK: {
+ switch (mod) {
+ case 0: {
+ size_t offset = pgf_read_int(rdr);
+ size_t sindex = pgf_read_int(rdr);
+#ifdef PGF_JIT_DEBUG
+ gu_printf(out, err, "TUCK hp(%d) %d\n", offset, sindex);
+#endif
+
+ if (offset == 0) {
+ jit_stxi_p(sizeof(PgfClosure*)*sindex, JIT_SP, JIT_VHEAP);
+ } else {
+ jit_addi_p(JIT_R0, JIT_VHEAP, offset*sizeof(void*));
+ jit_stxi_p(sizeof(PgfClosure*)*sindex, JIT_SP, JIT_R0);
+ }
+ break;
+ }
+ case 1: {
+ size_t index = pgf_read_int(rdr);
+ size_t sindex = pgf_read_int(rdr);
+#ifdef PGF_JIT_DEBUG
+ gu_printf(out, err, "TUCK stk(%d) %d\n", index, sindex);
+#endif
+ jit_ldxi_p(JIT_R0, JIT_SP, index*sizeof(PgfClosure*));
+ jit_stxi_p(sizeof(PgfClosure*)*sindex, JIT_SP, JIT_R0);
+ break;
+ }
+ case 2: {
+ size_t index = pgf_read_int(rdr);
+ size_t sindex = pgf_read_int(rdr);
+#ifdef PGF_JIT_DEBUG
+ gu_printf(out, err, "TUCK env(%d) %d\n", index, sindex);
+#endif
+ jit_ldxi_p(JIT_R0, JIT_VCLOS, sizeof(PgfClosure)+index*sizeof(PgfClosure*));
+ jit_stxi_p(sizeof(PgfClosure*)*sindex, JIT_SP, JIT_R0);
+ break;
+ }
+ case 3: {
+ PgfCId id = pgf_read_cid(rdr, rdr->tmp_pool);
+ size_t sindex = pgf_read_int(rdr);
+#ifdef PGF_JIT_DEBUG
+ gu_printf(out, err, "TUCK %s %d\n", id, sindex);
+#endif
+ PgfCallPatch patch;
+ patch.cid = id;
+ patch.ref = jit_movi_p(JIT_R0, jit_forward());
+ gu_buf_push(rdr->jit_state->call_patches, PgfCallPatch, patch);
+ jit_stxi_p(sizeof(PgfClosure*)*sindex, JIT_SP, JIT_R0);
+ break;
+ }
+ default:
+ gu_impossible();
+ }
+ break;
+ }
case PGF_INSTR_EVAL+0:
case PGF_INSTR_EVAL+2:
case PGF_INSTR_EVAL+1: {
@@ -1057,36 +1112,18 @@ pgf_jit_function(PgfReader* rdr, PgfAbstr* abstr,
}
case 1: {
size_t a = pgf_read_int(rdr);
- size_t b = pgf_read_int(rdr);
- size_t c = pgf_read_int(rdr);
#ifdef PGF_JIT_DEBUG
- gu_printf(out, err, " tail(%d,%d,%d)\n", a, b, c);
+ gu_printf(out, err, " tail(%d)\n", a);
#endif
-
- jit_ldxi_p(JIT_R2, JIT_SP, sizeof(PgfClosure*)*(c-a-1));
- for (size_t i = 0; i < c-b; i++) {
- jit_ldxi_p(JIT_R1, JIT_SP, sizeof(PgfClosure*)*((c-b-1)-i));
- jit_stxi_p(sizeof(PgfClosure*)*((c-1)-i), JIT_SP, JIT_R1);
- }
- jit_addi_p(JIT_SP, JIT_SP, b*sizeof(PgfClosure*));
- jit_pushr_p(JIT_R2);
+ jit_addi_p(JIT_SP, JIT_SP, a*sizeof(PgfClosure*));
jit_jmpr(JIT_R0);
break;
}
case 2: {
- size_t b = pgf_read_int(rdr);
- size_t c = pgf_read_int(rdr);
#ifdef PGF_JIT_DEBUG
- gu_printf(out, err, " update(%d,%d)\n", b, c);
+ gu_printf(out, err, " update\n");
#endif
- if (b > 1) {
- for (size_t i = 0; i < c-b; i++) {
- jit_ldxi_p(JIT_R1, JIT_SP, sizeof(PgfClosure*)*(c-b-1-i));
- jit_stxi_p(sizeof(PgfClosure*)*(c-2-i), JIT_SP, JIT_R1);
- }
- jit_addi_p(JIT_SP, JIT_SP, (b-1)*sizeof(PgfClosure*));
- }
jit_movi_p(JIT_R1, abstr->eval_gates->update_closure);
jit_pushr_p(JIT_R1);
jit_jmpr(JIT_R0);