2022-04-05 23:19:23 +02:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
|
|
|
#include "ir.h"
|
|
|
|
#include "ir_private.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "ir_x86.h"
|
|
|
|
|
|
|
|
/* RA - Register Allocation, Liveness, Coalescing and SSA Resolution */
|
|
|
|
|
|
|
|
int ir_assign_virtual_registers(ir_ctx *ctx)
|
|
|
|
{
|
|
|
|
uint32_t *vregs;
|
|
|
|
uint32_t vregs_count = 0;
|
|
|
|
int b, i, n;
|
|
|
|
ir_block *bb;
|
|
|
|
ir_insn *insn;
|
|
|
|
uint32_t flags;
|
|
|
|
|
|
|
|
/* Assign unique virtual register to each data node */
|
|
|
|
if (!ctx->prev_insn_len) {
|
|
|
|
ctx->prev_insn_len = ir_mem_malloc(ctx->insns_count * sizeof(uint32_t));
|
|
|
|
}
|
|
|
|
vregs = ir_mem_calloc(ctx->insns_count, sizeof(ir_ref));
|
|
|
|
for (b = 1, bb = ctx->cfg_blocks + b; b <= ctx->cfg_blocks_count; b++, bb++) {
|
|
|
|
n = b; /* The first insn of BB keeps BB number in prev_insn_len[] */
|
|
|
|
for (i = bb->start, insn = ctx->ir_base + i; i <= bb->end;) {
|
|
|
|
ctx->prev_insn_len[i] = n; /* The first insn of BB keeps BB number in prev_insn_len[] */
|
|
|
|
flags = ir_op_flags[insn->op];
|
|
|
|
// if (flags & IR_OP_FLAG_DATA) {
|
|
|
|
if ((flags & IR_OP_FLAG_DATA) || ((flags & IR_OP_FLAG_MEM) && insn->type != IR_VOID)) {
|
|
|
|
if ((insn->op == IR_PARAM || insn->op == IR_VAR) && ctx->use_lists[i].count == 0) {
|
|
|
|
/* pass */
|
2022-04-14 21:40:13 +02:00
|
|
|
} else if (!ctx->rules || ir_needs_vreg(ctx, i)) {
|
2022-04-05 23:19:23 +02:00
|
|
|
vregs[i] = ++vregs_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n = ir_operands_count(ctx, insn);
|
|
|
|
n = 1 + (n >> 2); // support for multi-word instructions like MERGE and PHI
|
|
|
|
i += n;
|
|
|
|
insn += n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
n = 1;
|
|
|
|
for (i = IR_UNUSED + 1, insn = ctx->ir_base + i; i < ctx->insns_count;) {
|
|
|
|
insn->prev_len = n;
|
|
|
|
flags = ir_op_flags[insn->op];
|
|
|
|
if (flags & IR_OP_FLAG_DATA) {
|
|
|
|
if ((insn->op == IR_PARAM || insn->op == IR_VAR) && ctx->use_lists[i].count == 0) {
|
|
|
|
/* pass */
|
|
|
|
} else {
|
|
|
|
vregs[i] = ++vregs_count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n = ir_operands_count(ctx, insn);
|
|
|
|
n = 1 + (n >> 2); // support for multi-word instructions like MERGE and PHI
|
|
|
|
i += n;
|
|
|
|
insn += n;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
ctx->vregs_count = vregs_count;
|
|
|
|
ctx->vregs = vregs;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lifetime intervals construction
|
|
|
|
*
|
|
|
|
* See "Linear Scan Register Allocation on SSA Form", Christian Wimmer and
|
|
|
|
* Michael Franz, CGO'10 (2010), Figure 4.
|
|
|
|
*/
|
2022-04-14 21:40:13 +02:00
|
|
|
static void ir_add_live_range(ir_ctx *ctx, int v, uint8_t type, ir_live_pos start, ir_live_pos end)
|
2022-04-05 23:19:23 +02:00
|
|
|
{
|
|
|
|
ir_live_interval *ival = ctx->live_intervals[v];
|
|
|
|
ir_live_range *p, *q, *next, *prev;
|
|
|
|
|
|
|
|
if (!ival) {
|
|
|
|
ival = ir_mem_malloc(sizeof(ir_live_interval));
|
|
|
|
IR_ASSERT(type != IR_VOID);
|
|
|
|
ival->type = type;
|
2022-04-14 21:40:13 +02:00
|
|
|
ival->reg = IR_REG_NONE;
|
2022-04-05 23:19:23 +02:00
|
|
|
ival->stack_spill_pos = 0; // not allocated
|
|
|
|
ival->range.start = start;
|
|
|
|
ival->range.end = end;
|
|
|
|
ival->range.next = NULL;
|
2022-04-07 10:11:57 +02:00
|
|
|
ival->use_pos = NULL;
|
2022-04-14 21:40:13 +02:00
|
|
|
|
|
|
|
ival->top = ival;
|
|
|
|
ival->next = NULL;
|
|
|
|
|
2022-04-05 23:19:23 +02:00
|
|
|
ctx->live_intervals[v] = ival;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
IR_ASSERT(type == IR_VOID || type == ival->type);
|
|
|
|
p = &ival->range;
|
|
|
|
prev = NULL;
|
2022-04-14 21:40:13 +02:00
|
|
|
while (p && end + 1 >= p->start) {
|
|
|
|
if (p->end + 1 >= start) {
|
2022-04-05 23:19:23 +02:00
|
|
|
if (start < p->start) {
|
|
|
|
p->start = start;
|
|
|
|
}
|
|
|
|
if (end > p->end) {
|
|
|
|
p->end = end;
|
|
|
|
/* merge with next */
|
|
|
|
next = p->next;
|
2022-04-14 21:40:13 +02:00
|
|
|
while (next && p->end + 1 >= next->start) {
|
2022-04-05 23:19:23 +02:00
|
|
|
if (next->end > p->end) {
|
|
|
|
p->end = next->end;
|
|
|
|
}
|
|
|
|
p->next = next->next;
|
|
|
|
/* list of deleted structures is keapt at ctx->unused_live_ranges for reuse */
|
|
|
|
next->next = ctx->unused_live_ranges;
|
|
|
|
ctx->unused_live_ranges = next;
|
|
|
|
next = p->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
prev = p;
|
|
|
|
p = prev->next;
|
|
|
|
}
|
|
|
|
if (ctx->unused_live_ranges) {
|
|
|
|
/* reuse */
|
|
|
|
q = ctx->unused_live_ranges;
|
|
|
|
ctx->unused_live_ranges = q->next;
|
|
|
|
} else {
|
|
|
|
q = ir_mem_malloc(sizeof(ir_live_range));
|
|
|
|
}
|
|
|
|
if (prev) {
|
|
|
|
prev->next = q;
|
|
|
|
} else {
|
|
|
|
q->start = ival->range.start;
|
|
|
|
q->end = ival->range.end;
|
|
|
|
q->next = ival->range.next;
|
|
|
|
p = q;
|
|
|
|
q = &ival->range;
|
|
|
|
}
|
|
|
|
q->start = start;
|
|
|
|
q->end = end;
|
|
|
|
q->next = p;
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static void ir_add_fixed_live_range(ir_ctx *ctx, ir_reg reg, ir_live_pos start, ir_live_pos end)
|
2022-04-07 10:11:57 +02:00
|
|
|
{
|
|
|
|
int v = ctx->vregs_count + 1 + reg;
|
|
|
|
ir_live_interval *ival = ctx->live_intervals[v];
|
|
|
|
if (!ival) {
|
|
|
|
ival = ir_mem_malloc(sizeof(ir_live_interval));
|
|
|
|
ival->type = IR_VOID;
|
|
|
|
ival->reg = reg;
|
|
|
|
ival->stack_spill_pos = 0; // not allocated
|
|
|
|
ival->range.start = start;
|
|
|
|
ival->range.end = end;
|
|
|
|
ival->range.next = NULL;
|
|
|
|
ival->use_pos = NULL;
|
2022-04-14 21:40:13 +02:00
|
|
|
|
|
|
|
ival->top = ival;
|
|
|
|
ival->next = NULL;
|
|
|
|
|
2022-04-07 10:11:57 +02:00
|
|
|
ctx->live_intervals[v] = ival;
|
|
|
|
return;
|
|
|
|
}
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_add_live_range(ctx, v, IR_VOID, start, end);
|
2022-04-07 10:11:57 +02:00
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static void ir_fix_live_range(ir_ctx *ctx, int v, ir_live_pos old_start, ir_live_pos new_start)
|
2022-04-05 23:19:23 +02:00
|
|
|
{
|
|
|
|
ir_live_range *p = &ctx->live_intervals[v]->range;
|
|
|
|
|
|
|
|
while (p && p->start < old_start) {
|
|
|
|
p = p->next;
|
|
|
|
}
|
|
|
|
IR_ASSERT(p && p->start == old_start);
|
|
|
|
p->start = new_start;
|
|
|
|
}
|
|
|
|
|
2022-04-07 10:11:57 +02:00
|
|
|
static void ir_add_use_pos(ir_ctx *ctx, int v, ir_use_pos *use_pos)
|
|
|
|
{
|
|
|
|
ir_live_interval *ival = ctx->live_intervals[v];
|
|
|
|
ir_use_pos *prev = NULL;
|
|
|
|
ir_use_pos *p = ival->use_pos;
|
|
|
|
|
|
|
|
while (p && (p->pos < use_pos->pos || (p->pos == use_pos->pos && p->op_num < use_pos->op_num))) {
|
|
|
|
prev = p;
|
|
|
|
p = p->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (prev) {
|
|
|
|
use_pos->next = prev->next;
|
|
|
|
prev->next = use_pos;
|
|
|
|
} else {
|
|
|
|
use_pos->next = ival->use_pos;
|
|
|
|
ival->use_pos = use_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static void ir_add_use(ir_ctx *ctx, int v, int op_num, ir_live_pos pos, ir_reg hint)
|
2022-04-07 10:11:57 +02:00
|
|
|
{
|
|
|
|
ir_use_pos *use_pos;
|
|
|
|
|
|
|
|
use_pos = ir_mem_malloc(sizeof(ir_use_pos));
|
|
|
|
use_pos->op_num = op_num;
|
|
|
|
use_pos->hint = hint;
|
|
|
|
use_pos->pos = pos;
|
|
|
|
|
|
|
|
ir_add_use_pos(ctx, v, use_pos);
|
|
|
|
}
|
|
|
|
|
2022-04-05 23:19:23 +02:00
|
|
|
int ir_compute_live_ranges(ir_ctx *ctx)
|
|
|
|
{
|
|
|
|
int i, j, k, n;
|
|
|
|
int b, succ;
|
|
|
|
uint32_t flags, len;
|
|
|
|
ir_insn *insn;
|
|
|
|
ir_block *bb, *succ_bb;
|
|
|
|
ir_bitset visited, live;
|
|
|
|
ir_bitset loops = NULL;
|
|
|
|
ir_bitset queue = NULL;
|
2022-04-07 10:11:57 +02:00
|
|
|
ir_reg reg;
|
2022-04-05 23:19:23 +02:00
|
|
|
|
|
|
|
if (!(ctx->flags & IR_LINEAR) || !ctx->vregs) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute Live Ranges */
|
|
|
|
visited = ir_bitset_malloc(ctx->cfg_blocks_count + 1);
|
|
|
|
len = ir_bitset_len(ctx->vregs_count + 1);
|
|
|
|
live = ir_bitset_malloc((ctx->cfg_blocks_count + 1) * len * 8 * sizeof(*live));
|
2022-04-07 10:11:57 +02:00
|
|
|
ctx->live_intervals = ir_mem_calloc(ctx->vregs_count + 1 + IR_REG_NUM, sizeof(ir_live_interval*));
|
2022-04-05 23:19:23 +02:00
|
|
|
for (b = ctx->cfg_blocks_count; b > 0; b--) {
|
|
|
|
bb = &ctx->cfg_blocks[b];
|
|
|
|
/* for each successor of b */
|
|
|
|
ir_bitset_incl(visited, b);
|
|
|
|
ir_bitset_clear(live, len);
|
|
|
|
for (i = 0; i < bb->successors_count; i++) {
|
|
|
|
succ = ctx->cfg_edges[bb->successors + i];
|
|
|
|
/* blocks must be ordered where all dominators of a block are before this block */
|
|
|
|
IR_ASSERT(ir_bitset_in(visited, succ) || bb->loop_header == succ);
|
|
|
|
/* live = union of successors.liveIn */
|
|
|
|
ir_bitset_union(live, live + (len * succ), len);
|
|
|
|
/* for each phi function phi of successor */
|
|
|
|
succ_bb = &ctx->cfg_blocks[succ];
|
|
|
|
if (succ_bb->predecessors_count > 1) {
|
|
|
|
ir_use_list *use_list = &ctx->use_lists[succ_bb->start];
|
|
|
|
|
|
|
|
k = 0;
|
|
|
|
for (j = 0; j < succ_bb->predecessors_count; j++) {
|
|
|
|
if (ctx->cfg_edges[succ_bb->predecessors + j] == b) {
|
|
|
|
k = j + 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IR_ASSERT(k != 0);
|
|
|
|
for (j = 0; j < use_list->count; j++) {
|
|
|
|
insn = &ctx->ir_base[ctx->use_edges[use_list->refs + j]];
|
|
|
|
if (insn->op == IR_PHI) {
|
|
|
|
if (insn->ops[k] > 0) {
|
|
|
|
/* live.add(phi.inputOf(b)) */
|
|
|
|
IR_ASSERT(ctx->vregs[insn->ops[k]]);
|
|
|
|
ir_bitset_incl(live, ctx->vregs[insn->ops[k]]);
|
|
|
|
// TODO: ir_add_live_range() is used just to set ival->type
|
|
|
|
/* intervals[phi.inputOf(b)].addRange(b.from, b.to) */
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_add_live_range(ctx, ctx->vregs[insn->ops[k]], insn->type,
|
|
|
|
IR_START_LIVE_POS_FROM_REF(bb->start),
|
|
|
|
IR_END_LIVE_POS_FROM_REF(bb->end));
|
2022-04-05 23:19:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for each opd in live */
|
|
|
|
IR_BITSET_FOREACH(live, len, i) {
|
|
|
|
/* intervals[opd].addRange(b.from, b.to) */
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_add_live_range(ctx, i, IR_VOID,
|
|
|
|
IR_START_LIVE_POS_FROM_REF(bb->start),
|
|
|
|
IR_END_LIVE_POS_FROM_REF(bb->end));
|
2022-04-05 23:19:23 +02:00
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
|
|
|
/* for each operation op of b in reverse order */
|
|
|
|
for (i = bb->end; i > bb->start; i -= ctx->prev_insn_len[i]) {
|
|
|
|
insn = &ctx->ir_base[i];
|
|
|
|
flags = ir_op_flags[insn->op];
|
|
|
|
if ((flags & IR_OP_FLAG_DATA) || ((flags & IR_OP_FLAG_MEM) && insn->type != IR_VOID)) {
|
|
|
|
if (ctx->vregs[i] && ir_bitset_in(live, ctx->vregs[i])) {
|
2022-04-07 10:11:57 +02:00
|
|
|
if (insn->op != IR_PHI) {
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_live_pos def_pos;
|
|
|
|
|
|
|
|
reg = ctx->rules ? ir_uses_fixed_reg(ctx, i, 0) : IR_REG_NONE;
|
|
|
|
if (reg != IR_REG_NONE) {
|
|
|
|
def_pos = IR_GAP_LIVE_POS_FROM_REF(i);
|
|
|
|
if (insn->op == IR_PARAM) {
|
|
|
|
/* parameter register must be kept before it's copied */
|
|
|
|
ir_add_fixed_live_range(ctx, reg,
|
|
|
|
IR_START_LIVE_POS_FROM_REF(bb->start), def_pos);
|
|
|
|
} else {
|
|
|
|
ir_add_fixed_live_range(ctx, reg,
|
|
|
|
IR_START_LIVE_POS_FROM_REF(i), def_pos);
|
|
|
|
}
|
|
|
|
} else if (ctx->rules && ir_result_reuses_op1_reg(ctx, i)) {
|
|
|
|
def_pos = IR_GAP_LIVE_POS_FROM_REF(i);
|
2022-04-07 13:18:59 +02:00
|
|
|
} else {
|
2022-04-14 21:40:13 +02:00
|
|
|
def_pos = IR_DEF_LIVE_POS_FROM_REF(i);
|
2022-04-07 13:18:59 +02:00
|
|
|
}
|
2022-04-14 21:40:13 +02:00
|
|
|
/* intervals[opd].setFrom(op.id) */
|
|
|
|
ir_fix_live_range(ctx, ctx->vregs[i],
|
|
|
|
IR_START_LIVE_POS_FROM_REF(bb->start), def_pos);
|
|
|
|
ir_add_use(ctx, ctx->vregs[i], 0, def_pos, reg);
|
|
|
|
} else {
|
|
|
|
ir_add_use(ctx, ctx->vregs[i], 0, IR_DEF_LIVE_POS_FROM_REF(i), reg);
|
2022-04-07 10:11:57 +02:00
|
|
|
}
|
2022-04-05 23:19:23 +02:00
|
|
|
/* live.remove(opd) */
|
|
|
|
ir_bitset_excl(live, ctx->vregs[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (insn->op != IR_PHI) {
|
|
|
|
n = ir_input_edges_count(ctx, insn);
|
|
|
|
for (j = 1; j <= n; j++) {
|
|
|
|
if (IR_OPND_KIND(flags, j) == IR_OPND_DATA) {
|
|
|
|
ir_ref input = insn->ops[j];
|
|
|
|
if (input > 0 && ctx->vregs[input]) {
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_live_pos use_pos;
|
|
|
|
|
|
|
|
if (ctx->rules && j == 1 && ir_result_reuses_op1_reg(ctx, i)) {
|
|
|
|
use_pos = IR_START_LIVE_POS_FROM_REF(i); // TODO: ???
|
|
|
|
} else {
|
|
|
|
reg = ctx->rules ? ir_uses_fixed_reg(ctx, i, j) : IR_REG_NONE;
|
|
|
|
if (reg != IR_REG_NONE) {
|
|
|
|
use_pos = IR_GAP_LIVE_POS_FROM_REF(i);
|
|
|
|
ir_add_fixed_live_range(ctx, reg,
|
|
|
|
IR_USE_LIVE_POS_FROM_REF(i), IR_DEF_LIVE_POS_FROM_REF(i));
|
|
|
|
} else {
|
|
|
|
use_pos = IR_USE_LIVE_POS_FROM_REF(i);
|
|
|
|
}
|
2022-04-07 10:11:57 +02:00
|
|
|
}
|
2022-04-14 21:40:13 +02:00
|
|
|
/* intervals[opd].addRange(b.from, op.id) */
|
|
|
|
ir_add_live_range(ctx, ctx->vregs[input], ctx->ir_base[input].type,
|
|
|
|
IR_START_LIVE_POS_FROM_REF(bb->start), use_pos);
|
|
|
|
ir_add_use(ctx, ctx->vregs[input], j, use_pos, reg);
|
2022-04-05 23:19:23 +02:00
|
|
|
/* live.add(opd) */
|
|
|
|
ir_bitset_incl(live, ctx->vregs[input]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-07 10:11:57 +02:00
|
|
|
/* CPU specific constraints */
|
2022-04-07 17:08:06 +02:00
|
|
|
if (ctx->rules) {
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_regset regset = ir_get_scratch_regset(ctx, i);
|
|
|
|
|
|
|
|
if (regset != IR_REGSET_EMPTY) {
|
|
|
|
IR_REGSET_FOREACH(regset, reg) {
|
|
|
|
ir_add_fixed_live_range(ctx, reg,
|
|
|
|
IR_GAP_LIVE_POS_FROM_REF(i),
|
|
|
|
IR_DEF_LIVE_POS_FROM_REF(i));
|
|
|
|
} IR_REGSET_FOREACH_END();
|
2022-04-07 10:11:57 +02:00
|
|
|
}
|
2022-04-05 23:19:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if b is loop header */
|
|
|
|
if ((bb->flags & IR_BB_LOOP_HEADER)
|
|
|
|
&& !ir_bitset_empty(live, len)) {
|
|
|
|
/* variables live at loop header are alive at the whole loop body */
|
|
|
|
uint32_t bb_set_len = ir_bitset_len(ctx->cfg_blocks_count + 1);
|
|
|
|
int child;
|
|
|
|
ir_block *child_bb;
|
|
|
|
|
|
|
|
if (!loops) {
|
|
|
|
loops = ir_bitset_malloc(ctx->cfg_blocks_count + 1);
|
|
|
|
queue = ir_bitset_malloc(ctx->cfg_blocks_count + 1);
|
|
|
|
} else {
|
|
|
|
ir_bitset_clear(loops, bb_set_len);
|
|
|
|
ir_bitset_clear(queue, bb_set_len);
|
|
|
|
}
|
|
|
|
ir_bitset_incl(loops, b);
|
|
|
|
ir_bitset_incl(queue, b);
|
|
|
|
do {
|
|
|
|
child = ir_bitset_pop_first(queue, bb_set_len);
|
|
|
|
child_bb = &ctx->cfg_blocks[child];
|
|
|
|
|
|
|
|
IR_BITSET_FOREACH(live, len, i) {
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_add_live_range(ctx, i, IR_VOID,
|
|
|
|
IR_START_LIVE_POS_FROM_REF(child_bb->start),
|
|
|
|
IR_END_LIVE_POS_FROM_REF(child_bb->end));
|
2022-04-05 23:19:23 +02:00
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
|
|
|
child = child_bb->dom_child;
|
|
|
|
while (child) {
|
|
|
|
child_bb = &ctx->cfg_blocks[child];
|
|
|
|
if (child_bb->loop_header && ir_bitset_in(loops, child_bb->loop_header)) {
|
|
|
|
ir_bitset_incl(queue, child);
|
|
|
|
if (child_bb->flags & IR_BB_LOOP_HEADER) {
|
|
|
|
ir_bitset_incl(loops, child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
child = child_bb->dom_next_child;
|
|
|
|
}
|
|
|
|
} while (!ir_bitset_empty(queue, bb_set_len));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* b.liveIn = live */
|
|
|
|
ir_bitset_copy(live + (len * b), live, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (loops) {
|
|
|
|
ir_mem_free(loops);
|
|
|
|
ir_mem_free(queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
ir_mem_free(live);
|
|
|
|
ir_mem_free(visited);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ir_free_live_ranges(ir_live_range *live_range)
|
|
|
|
{
|
|
|
|
ir_live_range *p;
|
|
|
|
|
|
|
|
while (live_range) {
|
|
|
|
p = live_range;
|
|
|
|
live_range = live_range->next;
|
|
|
|
ir_mem_free(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ir_free_live_intervals(ir_live_interval **live_intervals, int count)
|
|
|
|
{
|
|
|
|
uint32_t i;
|
|
|
|
ir_live_interval *ival;
|
|
|
|
|
|
|
|
for (i = 1; i <= count; i++) {
|
|
|
|
ival = live_intervals[i];
|
|
|
|
if (ival) {
|
|
|
|
if (ival->range.next) {
|
|
|
|
ir_free_live_ranges(ival->range.next);
|
|
|
|
}
|
|
|
|
ir_mem_free(ival);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ir_mem_free(live_intervals);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Live Ranges coalescing */
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static ir_live_pos ir_vregs_overlap(ir_ctx *ctx, uint32_t r1, uint32_t r2)
|
2022-04-05 23:19:23 +02:00
|
|
|
{
|
|
|
|
ir_live_range *lrg1 = &ctx->live_intervals[r1]->range;
|
|
|
|
ir_live_range *lrg2 = &ctx->live_intervals[r2]->range;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (lrg1->start < lrg2->end) { // TODO: less or less-or-equal
|
2022-04-07 10:11:57 +02:00
|
|
|
if (lrg2->start < lrg1->end) { // TODO: less or less-or-equal
|
2022-04-05 23:19:23 +02:00
|
|
|
return IR_MAX(lrg1->start, lrg2->start);
|
|
|
|
} else {
|
|
|
|
lrg1 = lrg1->next;
|
|
|
|
if (!lrg1) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
lrg2 = lrg2->next;
|
|
|
|
if (!lrg2) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ir_vregs_join(ir_ctx *ctx, uint32_t r1, uint32_t r2)
|
|
|
|
{
|
|
|
|
ir_live_interval *ival = ctx->live_intervals[r2];
|
|
|
|
ir_live_range *live_range = &ival->range;
|
|
|
|
ir_live_range *next;
|
2022-04-07 10:11:57 +02:00
|
|
|
ir_use_pos *use_pos;
|
2022-04-05 23:19:23 +02:00
|
|
|
|
|
|
|
ir_add_live_range(ctx, r1, ival->type, live_range->start, live_range->end);
|
|
|
|
live_range = live_range->next;
|
|
|
|
while (live_range) {
|
|
|
|
ir_add_live_range(ctx, r1, ival->type, live_range->start, live_range->end);
|
|
|
|
next = live_range->next;
|
|
|
|
live_range->next = ctx->unused_live_ranges;
|
|
|
|
ctx->unused_live_ranges = live_range;
|
|
|
|
live_range = next;
|
|
|
|
} while (live_range);
|
2022-04-07 10:11:57 +02:00
|
|
|
|
|
|
|
use_pos = ival->use_pos;
|
|
|
|
while (use_pos) {
|
|
|
|
ir_use_pos *next_use_pos = use_pos->next;
|
|
|
|
ir_add_use_pos(ctx, r1, use_pos);
|
|
|
|
use_pos = next_use_pos;
|
|
|
|
}
|
|
|
|
|
2022-04-05 23:19:23 +02:00
|
|
|
ir_mem_free(ival);
|
|
|
|
ctx->live_intervals[r2] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool ir_try_coalesce(ir_ctx *ctx, ir_ref from, ir_ref to)
|
|
|
|
{
|
|
|
|
if (ctx->vregs[from] != ctx->vregs[to]
|
|
|
|
&& !ir_vregs_overlap(ctx, ctx->vregs[from], ctx->vregs[to])) {
|
|
|
|
if (ctx->vregs[from] < ctx->vregs[to]) {
|
|
|
|
#if 0
|
|
|
|
fprintf(stderr, "COALESCE %d -> %d\n", ctx->vregs[to], ctx->vregs[from]);
|
|
|
|
#endif
|
|
|
|
ir_vregs_join(ctx, ctx->vregs[from], ctx->vregs[to]);
|
|
|
|
ctx->vregs[to] = ctx->vregs[from];
|
|
|
|
} else {
|
|
|
|
#if 0
|
|
|
|
fprintf(stderr, "COALESCE %d -> %d\n", ctx->vregs[from], ctx->vregs[to]);
|
|
|
|
#endif
|
|
|
|
ir_vregs_join(ctx, ctx->vregs[to], ctx->vregs[from]);
|
|
|
|
ctx->vregs[from] = ctx->vregs[to];
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ir_add_phi_move(ir_ctx *ctx, int b, ir_ref from, ir_ref to)
|
|
|
|
{
|
|
|
|
if (IR_IS_CONST_REF(from) || ctx->vregs[from] != ctx->vregs[to]) {
|
|
|
|
ctx->cfg_blocks[b].flags |= IR_BB_DESSA_MOVES;
|
|
|
|
#if 0
|
|
|
|
fprintf(stderr, "BB%d: MOV %d -> %d\n", b, from, to);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ir_block_cmp(const void *b1, const void *b2, void *data)
|
|
|
|
{
|
|
|
|
ir_ctx *ctx = data;
|
|
|
|
int d1 = ctx->cfg_blocks[*(ir_ref*)b1].loop_depth;
|
|
|
|
int d2 = ctx->cfg_blocks[*(ir_ref*)b2].loop_depth;
|
|
|
|
|
|
|
|
if (d1 > d2) {
|
|
|
|
return -1;
|
|
|
|
} else if (d1 == d2) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int ir_coalesce(ir_ctx *ctx)
|
|
|
|
{
|
|
|
|
int b, i, n, succ;
|
|
|
|
ir_ref *p, use, input, k, j;
|
|
|
|
ir_block *bb, *succ_bb;
|
|
|
|
ir_use_list *use_list;
|
|
|
|
ir_insn *insn;
|
|
|
|
uint32_t *offsets;
|
|
|
|
ir_worklist blocks;
|
|
|
|
bool compact = 0;
|
|
|
|
|
|
|
|
/* Collect a list of blocks which are predecossors to block with phi finctions */
|
|
|
|
ir_worklist_init(&blocks, ctx->cfg_blocks_count + 1);
|
|
|
|
for (b = 1, bb = &ctx->cfg_blocks[1]; b <= ctx->cfg_blocks_count; b++, bb++) {
|
|
|
|
if (bb->predecessors_count > 1) {
|
|
|
|
use_list = &ctx->use_lists[bb->start];
|
|
|
|
n = use_list->count;
|
|
|
|
for (i = 0, p = &ctx->use_edges[use_list->refs]; i < n; i++, p++) {
|
|
|
|
use = *p;
|
|
|
|
insn = &ctx->ir_base[use];
|
|
|
|
if (insn->op == IR_PHI) {
|
|
|
|
k = ir_input_edges_count(ctx, insn);
|
|
|
|
for (j = 2; j <= k; j++) {
|
|
|
|
ir_worklist_push(&blocks, ctx->cfg_edges[bb->predecessors + (j-2)]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
qsort_r(blocks.l.a.refs, ir_worklist_len(&blocks), sizeof(ir_ref), ir_block_cmp, ctx);
|
|
|
|
|
|
|
|
while (ir_worklist_len(&blocks)) {
|
|
|
|
b = ir_worklist_pop(&blocks);
|
|
|
|
bb = &ctx->cfg_blocks[b];
|
|
|
|
IR_ASSERT(bb->successors_count == 1);
|
|
|
|
succ = ctx->cfg_edges[bb->successors];
|
|
|
|
succ_bb = &ctx->cfg_blocks[succ];
|
|
|
|
IR_ASSERT(succ_bb->predecessors_count > 1);
|
|
|
|
k = 0;
|
|
|
|
for (j = 0; j < succ_bb->predecessors_count; j++) {
|
|
|
|
if (ctx->cfg_edges[succ_bb->predecessors + j] == b) {
|
|
|
|
k = j + 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IR_ASSERT(k != 0);
|
|
|
|
use_list = &ctx->use_lists[succ_bb->start];
|
|
|
|
n = use_list->count;
|
|
|
|
for (i = 0, p = &ctx->use_edges[use_list->refs]; i < n; i++, p++) {
|
|
|
|
use = *p;
|
|
|
|
insn = &ctx->ir_base[use];
|
|
|
|
if (insn->op == IR_PHI) {
|
|
|
|
input = insn->ops[k];
|
|
|
|
if (input > 0) {
|
|
|
|
if (!ir_try_coalesce(ctx, input, use)) {
|
|
|
|
ir_add_phi_move(ctx, b, input, use);
|
|
|
|
} else {
|
|
|
|
compact = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Move for constant input */
|
|
|
|
ir_add_phi_move(ctx, b, input, use);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ir_worklist_free(&blocks);
|
|
|
|
|
|
|
|
if (compact) {
|
|
|
|
#if 1
|
|
|
|
offsets = ir_mem_calloc(ctx->vregs_count + 1, sizeof(uint32_t));
|
|
|
|
for (i = 1, n = 1; i <= ctx->vregs_count; i++) {
|
|
|
|
if (ctx->live_intervals[i]) {
|
|
|
|
if (i != n) {
|
|
|
|
ctx->live_intervals[n] = ctx->live_intervals[i];
|
|
|
|
offsets[i] = i - n;
|
|
|
|
}
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n--;
|
|
|
|
if (n != ctx->vregs_count) {
|
2022-04-07 10:11:57 +02:00
|
|
|
j = ctx->vregs_count - n;
|
|
|
|
for (i = n + 1; i <= ctx->vregs_count + IR_REG_NUM; i++) {
|
|
|
|
ctx->live_intervals[i] = NULL;//ctx->live_intervals[i + j];
|
|
|
|
}
|
2022-04-05 23:19:23 +02:00
|
|
|
for (j = 1; j < ctx->insns_count; j++) {
|
|
|
|
if (ctx->vregs[j]) {
|
|
|
|
ctx->vregs[j] -= offsets[ctx->vregs[j]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx->vregs_count = n;
|
|
|
|
}
|
|
|
|
ir_mem_free(offsets);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SSA Deconstruction */
|
|
|
|
|
|
|
|
int ir_compute_dessa_moves(ir_ctx *ctx)
|
|
|
|
{
|
|
|
|
int b, i, n;
|
|
|
|
ir_ref j, k, *p, use;
|
|
|
|
ir_block *bb;
|
|
|
|
ir_use_list *use_list;
|
|
|
|
ir_insn *insn;
|
|
|
|
|
|
|
|
for (b = 1, bb = &ctx->cfg_blocks[1]; b <= ctx->cfg_blocks_count; b++, bb++) {
|
|
|
|
if (bb->predecessors_count > 1) {
|
|
|
|
use_list = &ctx->use_lists[bb->start];
|
|
|
|
n = use_list->count;
|
|
|
|
for (i = 0, p = &ctx->use_edges[use_list->refs]; i < n; i++, p++) {
|
|
|
|
use = *p;
|
|
|
|
insn = &ctx->ir_base[use];
|
|
|
|
if (insn->op == IR_PHI) {
|
|
|
|
k = ir_input_edges_count(ctx, insn);
|
|
|
|
for (j = 2; j <= k; j++) {
|
|
|
|
if (IR_IS_CONST_REF(insn->ops[j]) || ctx->vregs[insn->ops[j]] != ctx->vregs[use]) {
|
|
|
|
int pred = ctx->cfg_edges[bb->predecessors + (j-2)];
|
|
|
|
ctx->cfg_blocks[pred].flags |= IR_BB_DESSA_MOVES;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ir_gen_dessa_moves(ir_ctx *ctx, int b, emit_copy_t emit_copy)
|
|
|
|
{
|
|
|
|
int succ, j, k = 0, n = 0;
|
|
|
|
ir_block *bb, *succ_bb;
|
|
|
|
ir_use_list *use_list;
|
|
|
|
uint8_t *type;
|
|
|
|
uint32_t *loc, *pred;
|
|
|
|
uint32_t len;
|
|
|
|
ir_bitset todo, ready;
|
|
|
|
|
|
|
|
bb = &ctx->cfg_blocks[b];
|
|
|
|
if (!(bb->flags & IR_BB_DESSA_MOVES)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
IR_ASSERT(bb->successors_count == 1);
|
|
|
|
succ = ctx->cfg_edges[bb->successors];
|
|
|
|
succ_bb = &ctx->cfg_blocks[succ];
|
|
|
|
IR_ASSERT(succ_bb->predecessors_count > 1);
|
|
|
|
use_list = &ctx->use_lists[succ_bb->start];
|
|
|
|
|
|
|
|
for (j = 0; j < succ_bb->predecessors_count; j++) {
|
|
|
|
if (ctx->cfg_edges[succ_bb->predecessors + j] == b) {
|
|
|
|
k = j + 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
IR_ASSERT(k != 0);
|
|
|
|
|
|
|
|
type = ir_mem_calloc((ctx->vregs_count + 1), sizeof(uint8_t));
|
|
|
|
loc = ir_mem_calloc((ctx->vregs_count + 1) * 2, sizeof(uint32_t));
|
|
|
|
pred = loc + (ctx->vregs_count + 1);
|
|
|
|
len = ir_bitset_len(ctx->vregs_count + 1);
|
|
|
|
todo = ir_bitset_malloc(ctx->vregs_count + 1);
|
|
|
|
ready = ir_bitset_malloc(ctx->vregs_count + 1);
|
|
|
|
|
|
|
|
for (j = 0; j < use_list->count; j++) {
|
|
|
|
ir_ref ref = ctx->use_edges[use_list->refs + j];
|
|
|
|
ir_insn *insn = &ctx->ir_base[ref];
|
|
|
|
if (insn->op == IR_PHI) {
|
|
|
|
ir_ref input = insn->ops[k];
|
|
|
|
if (IR_IS_CONST_REF(input)) {
|
|
|
|
emit_copy(ctx, insn->type, input, ctx->vregs[ref]);
|
|
|
|
} else if (ctx->vregs[input] != ctx->vregs[ref]) {
|
|
|
|
loc[ctx->vregs[input]] = ctx->vregs[input];
|
|
|
|
pred[ctx->vregs[ref]] = ctx->vregs[input];
|
|
|
|
type[ctx->vregs[ref]] = insn->type;
|
|
|
|
ir_bitset_incl(todo, ctx->vregs[ref]);
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IR_BITSET_FOREACH(todo, len, j) {
|
|
|
|
if (!loc[j]) {
|
|
|
|
ir_bitset_incl(ready, j);
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
|
|
|
while (!ir_bitset_empty(todo, len)) {
|
|
|
|
uint32_t a, b, c;
|
|
|
|
|
|
|
|
while (!ir_bitset_empty(ready, len)) {
|
|
|
|
b = ir_bitset_pop_first(ready, len);
|
|
|
|
a = pred[b];
|
|
|
|
c = loc[a];
|
|
|
|
emit_copy(ctx, type[b], c, b);
|
|
|
|
loc[a] = b;
|
|
|
|
if (a == c && pred[a]) {
|
|
|
|
ir_bitset_incl(ready, a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b = ir_bitset_pop_first(todo, len);
|
|
|
|
if (b != loc[pred[b]]) {
|
|
|
|
emit_copy(ctx, type[b], b, 0);
|
|
|
|
loc[b] = 0;
|
|
|
|
ir_bitset_incl(ready, b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ir_mem_free(ready);
|
|
|
|
ir_mem_free(todo);
|
|
|
|
ir_mem_free(loc);
|
|
|
|
ir_mem_free(type);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Linear Scan Register Allocation
|
|
|
|
*
|
|
|
|
* See "Optimized Interval Splitting in a Linear Scan Register Allocator",
|
|
|
|
* Christian Wimmer VEE'10 (2005), Figure 2.
|
|
|
|
*/
|
|
|
|
typedef struct _ir_lsra_data {
|
|
|
|
uint32_t stack_frame_size;
|
|
|
|
} ir_lsra_data;
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static ir_live_pos ir_live_range_end(ir_live_interval *ival)
|
2022-04-05 23:19:23 +02:00
|
|
|
{
|
|
|
|
ir_live_range *live_range = &ival->range;
|
|
|
|
|
|
|
|
while (live_range->next) {
|
|
|
|
live_range = live_range->next;
|
|
|
|
}
|
|
|
|
return live_range->end;
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static bool ir_live_range_covers(ir_live_interval *ival, ir_live_pos position)
|
2022-04-05 23:19:23 +02:00
|
|
|
{
|
|
|
|
ir_live_range *live_range = &ival->range;
|
|
|
|
|
|
|
|
do {
|
2022-04-07 10:11:57 +02:00
|
|
|
if (position >= live_range->start && position < live_range->end) { // TODO: less or less-or-equal
|
2022-04-05 23:19:23 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
live_range = live_range->next;
|
|
|
|
} while (live_range);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static ir_live_interval *ir_split_interval_at(ir_live_interval *ival, ir_live_pos pos)
|
|
|
|
{
|
|
|
|
ir_live_interval *child;
|
|
|
|
ir_live_range *p, *prev;
|
|
|
|
ir_use_pos *use_pos, *prev_use_pos;
|
|
|
|
|
|
|
|
IR_ASSERT(pos > ival->range.start);
|
|
|
|
|
|
|
|
p = &ival->range;
|
|
|
|
prev = NULL;
|
|
|
|
while (p && pos >= p->end) {
|
|
|
|
prev = p;
|
|
|
|
p = prev->next;
|
|
|
|
}
|
|
|
|
IR_ASSERT(p);
|
|
|
|
|
|
|
|
use_pos = ival->use_pos;
|
|
|
|
prev_use_pos = NULL;
|
|
|
|
while (use_pos && pos > use_pos->pos) {
|
|
|
|
prev_use_pos = use_pos;
|
|
|
|
use_pos = use_pos->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
child = ir_mem_malloc(sizeof(ir_live_interval));
|
|
|
|
child->type = ival->type;
|
|
|
|
child->reg = IR_REG_NONE;
|
|
|
|
child->stack_spill_pos = 0; // not allocated
|
|
|
|
child->range.start = pos;
|
|
|
|
child->range.end = p->end;
|
|
|
|
child->range.next = p->next;
|
|
|
|
child->use_pos = prev_use_pos ? prev_use_pos->next : use_pos;
|
|
|
|
|
|
|
|
child->top = ival->top;
|
|
|
|
child->next = NULL;
|
|
|
|
ival->next = child;
|
|
|
|
|
|
|
|
if (pos == p->start) {
|
|
|
|
prev->next = NULL;
|
|
|
|
} else {
|
|
|
|
p->end = pos;
|
|
|
|
p->next = NULL;
|
|
|
|
}
|
|
|
|
if (prev_use_pos) {
|
|
|
|
prev_use_pos->next = NULL;
|
|
|
|
} else {
|
|
|
|
ival->use_pos = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return child;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ir_allocate_spill_slot(ir_ctx *ctx, int current, ir_lsra_data *data)
|
|
|
|
{
|
|
|
|
ir_live_interval *ival = ctx->live_intervals[current]->top;
|
|
|
|
|
|
|
|
if (ival->stack_spill_pos == 0) {
|
|
|
|
data->stack_frame_size += 8; // ir_type_size[insn->type]; // TODO: alignment
|
|
|
|
ival->stack_spill_pos = data->stack_frame_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static ir_reg ir_try_allocate_preferred_reg(ir_live_interval *ival, ir_live_pos *freeUntilPos)
|
2022-04-07 13:18:59 +02:00
|
|
|
{
|
|
|
|
ir_use_pos *use_pos;
|
|
|
|
|
|
|
|
use_pos = ival->use_pos;
|
|
|
|
while (use_pos) {
|
|
|
|
if (use_pos->hint >= 0) {
|
|
|
|
if (ir_live_range_end(ival) <= freeUntilPos[use_pos->hint]) {
|
|
|
|
/* register available for the whole interval */
|
|
|
|
return use_pos->hint;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
use_pos = use_pos->next;
|
|
|
|
}
|
|
|
|
return IR_REG_NONE;
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static void ir_add_to_unhandled(ir_ctx *ctx, ir_list *unhandled, int current)
|
2022-04-05 23:19:23 +02:00
|
|
|
{
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_live_pos pos = ctx->live_intervals[current]->range.start;
|
|
|
|
|
|
|
|
if (ir_list_len(unhandled) == 0 || pos <= ctx->live_intervals[ir_list_peek(unhandled)]->range.start) {
|
|
|
|
ir_list_push(unhandled, current);
|
|
|
|
} else {
|
|
|
|
uint32_t i = ir_list_len(unhandled);
|
|
|
|
while (i > 0) {
|
|
|
|
i--;
|
|
|
|
if (pos <= ctx->live_intervals[ir_list_at(unhandled, i)]->range.start) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ir_list_insert(unhandled, i, current);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static ir_reg ir_try_allocate_free_reg(ir_ctx *ctx, int current, uint32_t len, ir_bitset active, ir_bitset inactive, ir_list *unhandled)
|
|
|
|
{
|
|
|
|
ir_live_pos freeUntilPos[IR_REG_NUM];
|
2022-04-05 23:19:23 +02:00
|
|
|
int i, reg;
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_live_pos pos, next;
|
2022-04-05 23:19:23 +02:00
|
|
|
ir_live_interval *ival = ctx->live_intervals[current];
|
|
|
|
ir_regset available;
|
|
|
|
|
|
|
|
if (IR_IS_TYPE_FP(ival->type)) {
|
|
|
|
available = IR_REGSET_FP;
|
|
|
|
/* set freeUntilPos of all physical registers to maxInt */
|
|
|
|
for (i = IR_REG_FP_FIRST; i <= IR_REG_FP_LAST; i++) {
|
|
|
|
freeUntilPos[i] = 0x7fffffff;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
available = IR_REGSET_GP;
|
|
|
|
if (ctx->flags & IR_USE_FRAME_POINTER) {
|
|
|
|
IR_REGSET_EXCL(available, IR_REG_FRAME_POINTER);
|
|
|
|
}
|
|
|
|
/* set freeUntilPos of all physical registers to maxInt */
|
|
|
|
for (i = IR_REG_GP_FIRST; i <= IR_REG_GP_LAST; i++) {
|
|
|
|
freeUntilPos[i] = 0x7fffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for each interval it in active */
|
|
|
|
IR_BITSET_FOREACH(active, len, i) {
|
|
|
|
/* freeUntilPos[it.reg] = 0 */
|
|
|
|
reg = ctx->live_intervals[i]->reg;
|
|
|
|
IR_ASSERT(reg >= 0);
|
|
|
|
if (IR_REGSET_IN(available, reg)) {
|
|
|
|
freeUntilPos[reg] = 0;
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
|
|
|
/* for each interval it in inactive intersecting with current
|
|
|
|
*
|
|
|
|
* This loop is not necessary for program in SSA form (see LSRA on SSA fig. 6),
|
|
|
|
* but it is still necessary after coalescing and splitting
|
|
|
|
*/
|
|
|
|
IR_BITSET_FOREACH(inactive, len, i) {
|
|
|
|
/* freeUntilPos[it.reg] = next intersection of it with current */
|
|
|
|
reg = ctx->live_intervals[i]->reg;
|
|
|
|
IR_ASSERT(reg >= 0);
|
|
|
|
if (IR_REGSET_IN(available, reg)) {
|
|
|
|
next = ir_vregs_overlap(ctx, current, i);
|
|
|
|
if (next && next < freeUntilPos[reg]) {
|
|
|
|
freeUntilPos[reg] = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
2022-04-07 10:11:57 +02:00
|
|
|
/* Try to use hint */
|
2022-04-07 13:18:59 +02:00
|
|
|
reg = ir_try_allocate_preferred_reg(ival, freeUntilPos);
|
|
|
|
if (reg != IR_REG_NONE) {
|
|
|
|
ival->reg = reg;
|
|
|
|
return reg;
|
2022-04-07 10:11:57 +02:00
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
/* reg = register with highest freeUntilPos */
|
2022-04-05 23:19:23 +02:00
|
|
|
reg = IR_REGSET_FIRST(available);
|
|
|
|
IR_REGSET_EXCL(available, reg);
|
|
|
|
pos = freeUntilPos[reg];
|
|
|
|
IR_REGSET_FOREACH(available, i) {
|
|
|
|
if (freeUntilPos[i] > pos) {
|
|
|
|
pos = freeUntilPos[i];
|
|
|
|
reg = i;
|
|
|
|
}
|
|
|
|
} IR_REGSET_FOREACH_END();
|
|
|
|
|
|
|
|
if (!pos) {
|
|
|
|
/* no register available without spilling */
|
|
|
|
return IR_REG_NONE;
|
2022-04-07 10:11:57 +02:00
|
|
|
} else if (ir_live_range_end(ival) <= pos) {
|
2022-04-05 23:19:23 +02:00
|
|
|
/* register available for the whole interval */
|
|
|
|
ival->reg = reg;
|
|
|
|
return reg;
|
|
|
|
} else {
|
2022-04-14 21:40:13 +02:00
|
|
|
#if 1
|
2022-04-05 23:19:23 +02:00
|
|
|
/* register available for the first part of the interval */
|
2022-04-14 21:40:13 +02:00
|
|
|
ival->reg = reg;
|
|
|
|
/* split current before freeUntilPos[reg] */
|
|
|
|
ir_live_interval *child = ir_split_interval_at(ival, pos);
|
|
|
|
ctx->live_intervals[current] = child;
|
|
|
|
ir_add_to_unhandled(ctx, unhandled, current);
|
|
|
|
|
|
|
|
//ir_allocate_spill_slot(ctx, current, ctx->data);
|
|
|
|
return reg;
|
|
|
|
#else
|
2022-04-05 23:19:23 +02:00
|
|
|
return IR_REG_NONE;
|
2022-04-14 21:40:13 +02:00
|
|
|
#endif
|
2022-04-05 23:19:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
static ir_reg ir_allocate_blocked_reg(ir_ctx *ctx, int current, uint32_t len, ir_bitset active, ir_bitset inactive, ir_list *unhandled)
|
2022-04-05 23:19:23 +02:00
|
|
|
{
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_live_pos nextUsePos[IR_REG_NUM];
|
|
|
|
int i, reg;
|
|
|
|
ir_live_pos pos, next_use_pos;
|
2022-04-05 23:19:23 +02:00
|
|
|
ir_live_interval *ival = ctx->live_intervals[current];
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_use_pos *use_pos;
|
|
|
|
ir_regset available;
|
|
|
|
|
|
|
|
use_pos = ival->use_pos;
|
|
|
|
if (use_pos->pos > ival->range.start) {
|
|
|
|
next_use_pos = use_pos->pos;
|
|
|
|
} else {
|
|
|
|
while (use_pos && use_pos->pos <= ival->range.start) {
|
|
|
|
use_pos = use_pos->next;
|
|
|
|
}
|
|
|
|
if (!use_pos) {
|
|
|
|
/* spill */
|
|
|
|
return IR_REG_NONE;
|
|
|
|
}
|
|
|
|
next_use_pos = use_pos->pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IR_IS_TYPE_FP(ival->type)) {
|
|
|
|
available = IR_REGSET_FP;
|
|
|
|
/* set nextUsePos of all physical registers to maxInt */
|
|
|
|
for (i = IR_REG_FP_FIRST; i <= IR_REG_FP_LAST; i++) {
|
|
|
|
nextUsePos[i] = 0x7fffffff;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
available = IR_REGSET_GP;
|
|
|
|
if (ctx->flags & IR_USE_FRAME_POINTER) {
|
|
|
|
IR_REGSET_EXCL(available, IR_REG_FRAME_POINTER);
|
|
|
|
}
|
|
|
|
/* set nextUsePos of all physical registers to maxInt */
|
|
|
|
for (i = IR_REG_GP_FIRST; i <= IR_REG_GP_LAST; i++) {
|
|
|
|
nextUsePos[i] = 0x7fffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* for each interval it in active */
|
|
|
|
IR_BITSET_FOREACH(active, len, i) {
|
|
|
|
/* nextUsePos[it.reg] = next use of it after start of current */
|
|
|
|
reg = ctx->live_intervals[i]->reg;
|
|
|
|
IR_ASSERT(reg >= 0);
|
|
|
|
if (IR_REGSET_IN(available, reg)) {
|
|
|
|
use_pos = ctx->live_intervals[i]->use_pos;
|
|
|
|
while (use_pos && use_pos->pos < ival->range.start) {
|
|
|
|
use_pos = use_pos->next;
|
|
|
|
}
|
|
|
|
IR_ASSERT(use_pos);
|
|
|
|
nextUsePos[reg] = use_pos->pos;
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
|
|
|
/* for each interval it in inactive intersecting with current */
|
|
|
|
IR_BITSET_FOREACH(inactive, len, i) {
|
|
|
|
/* freeUntilPos[it.reg] = next intersection of it with current */
|
|
|
|
reg = ctx->live_intervals[i]->reg;
|
|
|
|
IR_ASSERT(reg >= 0);
|
|
|
|
if (IR_REGSET_IN(available, reg)) {
|
|
|
|
if (ir_vregs_overlap(ctx, current, i)) {
|
|
|
|
use_pos = ctx->live_intervals[i]->use_pos;
|
|
|
|
while (use_pos && use_pos->pos < ival->range.start) {
|
|
|
|
use_pos = use_pos->next;
|
|
|
|
}
|
|
|
|
IR_ASSERT(use_pos);
|
|
|
|
if (use_pos->pos < nextUsePos[reg]) {
|
|
|
|
nextUsePos[reg] = use_pos->pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
|
|
|
// TODO: support for register hinting
|
|
|
|
// TODO: support for fixed register and intervals that cannot be spilled
|
|
|
|
|
|
|
|
/* reg = register with highest nextUsePos */
|
|
|
|
reg = IR_REGSET_FIRST(available);
|
|
|
|
IR_REGSET_EXCL(available, reg);
|
|
|
|
pos = nextUsePos[reg];
|
|
|
|
IR_REGSET_FOREACH(available, i) {
|
|
|
|
if (nextUsePos[i] > pos) {
|
|
|
|
pos = nextUsePos[i];
|
|
|
|
reg = i;
|
|
|
|
}
|
|
|
|
} IR_REGSET_FOREACH_END();
|
2022-04-05 23:19:23 +02:00
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
/* if first usage of current is after nextUsePos[reg] then */
|
|
|
|
if (next_use_pos > pos) {
|
|
|
|
/* all other intervals are used before current, so it is best to spill current itself */
|
|
|
|
/* assign spill slot to current */
|
|
|
|
/* split current before its first use position that requires a register */
|
|
|
|
// IR_ASSERT(0 && "spill between");
|
|
|
|
ir_live_interval *child = ir_split_interval_at(ival, next_use_pos - 2); // TODO: split between
|
|
|
|
ctx->live_intervals[current] = child;
|
|
|
|
ir_add_to_unhandled(ctx, unhandled, current);
|
|
|
|
return IR_REG_NONE;
|
|
|
|
} else {
|
|
|
|
/* spill intervals that currently block reg */
|
|
|
|
IR_BITSET_FOREACH(active, len, i) {
|
|
|
|
if (reg == ctx->live_intervals[i]->reg) {
|
|
|
|
/* current.reg = reg */
|
|
|
|
ival->reg = reg;
|
|
|
|
/* split active interval for reg at position */
|
|
|
|
ir_live_interval *child = ir_split_interval_at(ctx->live_intervals[i], ival->range.start);
|
|
|
|
ctx->live_intervals[i] = child;
|
|
|
|
ir_add_to_unhandled(ctx, unhandled, i);
|
|
|
|
ir_bitset_excl(active, i);
|
|
|
|
return reg;
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
// TODO: split any inactive interval for reg at the end of its lifetime hole
|
|
|
|
}
|
|
|
|
|
|
|
|
/* make sure that current does not intersect with the fixed interval for reg */
|
|
|
|
// if current intersects with the fixed interval for reg then
|
|
|
|
// split current before this intersection
|
|
|
|
|
|
|
|
return IR_REG_NONE;
|
2022-04-05 23:19:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ir_live_range_cmp(const void *r1, const void *r2, void *data)
|
|
|
|
{
|
|
|
|
ir_ctx *ctx = data;
|
|
|
|
ir_live_range *lrg1 = &ctx->live_intervals[*(ir_ref*)r1]->range;
|
|
|
|
ir_live_range *lrg2 = &ctx->live_intervals[*(ir_ref*)r2]->range;
|
|
|
|
|
|
|
|
return lrg2->start - lrg1->start;
|
|
|
|
}
|
|
|
|
|
2022-04-12 15:09:53 +02:00
|
|
|
static int ir_fix_dessa_tmps(ir_ctx *ctx, uint8_t type, int from, int to)
|
|
|
|
{
|
|
|
|
if (to == 0) {
|
|
|
|
ir_block *bb = ctx->data;
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_reg reg;
|
2022-04-12 15:09:53 +02:00
|
|
|
|
|
|
|
if (IR_IS_TYPE_INT(type)) {
|
2022-04-14 21:40:13 +02:00
|
|
|
reg = IR_REG_R0; // TODO: Temporary register
|
2022-04-12 15:09:53 +02:00
|
|
|
} else if (IR_IS_TYPE_FP(type)) {
|
2022-04-14 21:40:13 +02:00
|
|
|
reg = IR_REG_XMM0; // TODO: Temporary register
|
2022-04-12 15:09:53 +02:00
|
|
|
} else {
|
|
|
|
IR_ASSERT(0);
|
2022-04-14 21:40:13 +02:00
|
|
|
return 0;
|
2022-04-12 15:09:53 +02:00
|
|
|
}
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_add_fixed_live_range(ctx, reg,
|
|
|
|
IR_START_LIVE_POS_FROM_REF(bb->end),
|
|
|
|
IR_END_LIVE_POS_FROM_REF(bb->end));
|
2022-04-12 15:09:53 +02:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-04-05 23:19:23 +02:00
|
|
|
static int ir_linear_scan(ir_ctx *ctx)
|
|
|
|
{
|
2022-04-12 15:09:53 +02:00
|
|
|
int b;
|
|
|
|
ir_block *bb;
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_list unhandled;
|
2022-04-07 10:11:57 +02:00
|
|
|
ir_bitset active, inactive;
|
2022-04-05 23:19:23 +02:00
|
|
|
ir_live_interval *ival;
|
|
|
|
int current, i;
|
|
|
|
uint32_t len;
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_live_pos position;
|
2022-04-05 23:19:23 +02:00
|
|
|
ir_reg reg;
|
|
|
|
ir_lsra_data data;
|
|
|
|
|
|
|
|
if (!ctx->live_intervals) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-04-12 15:09:53 +02:00
|
|
|
/* Add fixed intervals for temporary registers used for DESSA moves */
|
|
|
|
for (b = 1, bb = &ctx->cfg_blocks[1]; b <= ctx->cfg_blocks_count; b++, bb++) {
|
|
|
|
if (bb->flags & IR_BB_DESSA_MOVES) {
|
|
|
|
ctx->data = bb;
|
|
|
|
ir_gen_dessa_moves(ctx, b, ir_fix_dessa_tmps);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->data = &data;
|
2022-04-05 23:19:23 +02:00
|
|
|
data.stack_frame_size = 0;
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_list_init(&unhandled, ctx->vregs_count + 1);
|
2022-04-07 10:11:57 +02:00
|
|
|
len = ir_bitset_len(ctx->vregs_count + 1 + IR_REG_NUM);
|
|
|
|
active = ir_bitset_malloc(ctx->vregs_count + 1 + IR_REG_NUM);
|
|
|
|
inactive = ir_bitset_malloc(ctx->vregs_count + 1 + IR_REG_NUM);
|
2022-04-05 23:19:23 +02:00
|
|
|
|
|
|
|
for (i = 1; i <= ctx->vregs_count; i++) {
|
|
|
|
if (ctx->live_intervals[i]) {
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_list_push(&unhandled, i);
|
2022-04-05 23:19:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-07 10:11:57 +02:00
|
|
|
for (i = ctx->vregs_count + 1; i <= ctx->vregs_count + IR_REG_NUM; i++) {
|
|
|
|
if (ctx->live_intervals[i]) {
|
|
|
|
ir_bitset_incl(inactive, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
qsort_r(unhandled.a.refs, ir_list_len(&unhandled), sizeof(ir_ref), ir_live_range_cmp, ctx);
|
2022-04-05 23:19:23 +02:00
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
while (ir_list_len(&unhandled) != 0) {
|
|
|
|
current = ir_list_pop(&unhandled);
|
2022-04-05 23:19:23 +02:00
|
|
|
position = ctx->live_intervals[current]->range.start;
|
|
|
|
|
|
|
|
/* for each interval i in active */
|
|
|
|
IR_BITSET_FOREACH(active, len, i) {
|
|
|
|
ival = ctx->live_intervals[i];
|
2022-04-07 10:11:57 +02:00
|
|
|
if (ir_live_range_end(ival) <= position) { // TODO: less or less-or-equal
|
2022-04-05 23:19:23 +02:00
|
|
|
/* move i from active to handled */
|
|
|
|
ir_bitset_excl(active, i);
|
|
|
|
} else if (!ir_live_range_covers(ival, position)) {
|
|
|
|
/* move i from active to inactive */
|
|
|
|
ir_bitset_excl(active, i);
|
|
|
|
ir_bitset_incl(inactive, i);
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
|
|
|
/* for each interval i in inactive */
|
|
|
|
IR_BITSET_FOREACH(inactive, len, i) {
|
|
|
|
ival = ctx->live_intervals[i];
|
2022-04-07 10:11:57 +02:00
|
|
|
if (ir_live_range_end(ival) <= position) { // TODO: less or less-or-equal
|
2022-04-05 23:19:23 +02:00
|
|
|
/* move i from inactive to handled */
|
|
|
|
ir_bitset_excl(inactive, i);
|
|
|
|
} else if (ir_live_range_covers(ival, position)) {
|
|
|
|
/* move i from active to inactive */
|
|
|
|
ir_bitset_excl(inactive, i);
|
|
|
|
ir_bitset_incl(active, i);
|
|
|
|
}
|
|
|
|
} IR_BITSET_FOREACH_END();
|
|
|
|
|
2022-04-14 21:40:13 +02:00
|
|
|
reg = ir_try_allocate_free_reg(ctx, current, len, active, inactive, &unhandled);
|
2022-04-05 23:19:23 +02:00
|
|
|
if (reg == IR_REG_NONE) {
|
2022-04-14 21:40:13 +02:00
|
|
|
#if 1
|
|
|
|
reg = ir_allocate_blocked_reg(ctx, current, len, active, inactive, &unhandled);
|
|
|
|
#endif
|
2022-04-05 23:19:23 +02:00
|
|
|
}
|
|
|
|
if (reg != IR_REG_NONE) {
|
2022-04-14 21:40:13 +02:00
|
|
|
if (ctx->live_intervals[current]->reg != IR_REG_NONE) {
|
|
|
|
ir_bitset_incl(active, current);
|
|
|
|
}
|
2022-04-05 23:19:23 +02:00
|
|
|
} else {
|
|
|
|
ir_allocate_spill_slot(ctx, current, &data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ir_mem_free(inactive);
|
|
|
|
ir_mem_free(active);
|
2022-04-14 21:40:13 +02:00
|
|
|
ir_list_free(&unhandled);
|
|
|
|
|
|
|
|
for (i = 1; i <= ctx->vregs_count; i++) {
|
|
|
|
ival = ctx->live_intervals[i];
|
|
|
|
if (ival) {
|
|
|
|
ival = ival->top;
|
|
|
|
ctx->live_intervals[i] = ival;
|
|
|
|
if (ival->next || ival->reg == IR_REG_NONE) {
|
|
|
|
ir_allocate_spill_slot(ctx, current, &data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-05 23:19:23 +02:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ir_reg_alloc(ir_ctx *ctx)
|
|
|
|
{
|
|
|
|
return ir_linear_scan(ctx);
|
|
|
|
}
|