mirror of
git://c9x.me/qbe.git
synced 2024-11-22 09:27:34 +01:00
a9a70e30a8
The general idea is to give abis a chance to talk before we've done all the optimizations. Currently, all targets eliminate {par,arg,ret}{sb,ub,...} during this pass. The forthcoming arm64_apple will, however, insert proper extensions during abi0. Moving forward abis can, for example, lower small-aggregates passing there so that memory optimizations can interact better with function calls.
25 lines
407 B
C
25 lines
407 B
C
#include "all.h"
|
|
|
|
/* eliminate sub-word abi op
|
|
* variants for targets that
|
|
* treat char/short/... as
|
|
* words with arbitrary high
|
|
* bits
|
|
*/
|
|
void
|
|
elimsb(Fn *fn)
|
|
{
|
|
Blk *b;
|
|
Ins *i;
|
|
|
|
for (b=fn->start; b; b=b->link) {
|
|
for (i=b->ins; i<&b->ins[b->nins]; i++) {
|
|
if (isargbh(i->op))
|
|
i->op = Oarg;
|
|
if (isparbh(i->op))
|
|
i->op = Opar;
|
|
}
|
|
if (isretbh(b->jmp.type))
|
|
b->jmp.type = Jretw;
|
|
}
|
|
}
|