aboutsummaryrefslogtreecommitdiff
path: root/arm64
diff options
context:
space:
mode:
authorQuentin Carbonneaux <[email protected]>2022-12-10 23:16:21 +0100
committerQuentin Carbonneaux <[email protected]>2022-12-14 23:18:26 +0100
commit26c1c30b7d96d2170195970a8cdb3b024ba7421a (patch)
tree79c45ec28d63619fbe2a88ec2195f8fe4a95a8a5 /arm64
parent15e25a61b38b250c7543437a093a9efe076cce0a (diff)
new blit instruction
Diffstat (limited to 'arm64')
-rw-r--r--arm64/abi.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/arm64/abi.c b/arm64/abi.c
index 7282031..8ba4ffc 100644
--- a/arm64/abi.c
+++ b/arm64/abi.c
@@ -188,7 +188,8 @@ selret(Blk *b, Fn *fn)
typclass(&cr, &typ[fn->retty], gpreg, fpreg);
if (cr.class & Cptr) {
assert(rtype(fn->retr) == RTmp);
- blit0(fn->retr, r, cr.t->size, fn);
+ emit(Oblit1, 0, R, INT(cr.t->size), R);
+ emit(Oblit0, 0, R, r, fn->retr);
cty = 0;
} else {
ldregs(cr.reg, cr.cls, cr.nreg, r, fn);
@@ -438,8 +439,8 @@ selcall(Fn *fn, Ins *i0, Ins *i1, Insl **ilp)
if ((c->class & Cstk) == 0)
continue;
off = align(off, c->align);
+ r = newtmp("abi", Kl, fn);
if (i->op == Oarg || isargbh(i->op)) {
- r = newtmp("abi", Kl, fn);
switch (c->size) {
case 1: op = Ostoreb; break;
case 2: op = Ostoreh; break;
@@ -447,18 +448,22 @@ selcall(Fn *fn, Ins *i0, Ins *i1, Insl **ilp)
case 8: op = store[*c->cls]; break;
}
emit(op, 0, R, i->arg[0], r);
- emit(Oadd, Kl, r, TMP(SP), getcon(off, fn));
+ } else {
+ assert(i->op == Oargc);
+ emit(Oblit1, 0, R, INT(c->size), R);
+ emit(Oblit0, 0, R, i->arg[1], r);
}
- if (i->op == Oargc)
- blit(TMP(SP), off, i->arg[1], 0, c->size, fn);
+ emit(Oadd, Kl, r, TMP(SP), getcon(off, fn));
off += c->size;
}
if (stk)
emit(Osub, Kl, TMP(SP), TMP(SP), rstk);
for (i=i0, c=ca; i<i1; i++, c++)
- if (c->class & Cptr)
- blit0(i->arg[0], i->arg[1], c->t->size, fn);
+ if (c->class & Cptr) {
+ emit(Oblit1, 0, R, INT(c->t->size), R);
+ emit(Oblit0, 0, R, i->arg[1], i->arg[0]);
+ }
}
static Params