#include "mcg.h" STATICMAP(graph); STATICARRAY(struct ir, pops); STATICARRAY(struct ir, pushes); static struct ir* get_last_push(struct basicblock* bb) { int i; for (i=bb->irs_count-1; i>=0; i--) { struct ir* ir = bb->irs[i]; if (ir->opcode == IR_PUSH) return ir; if (ir_find(ir, IR_POP)) return NULL; } return NULL; } static struct ir* get_first_pop(struct basicblock* bb) { int i; for (i=0; iirs_count; i++) { struct ir* irr; struct ir* ir = bb->irs[i]; if (ir->opcode == IR_PUSH) return NULL; irr = ir_find(ir, IR_POP); if (irr) return irr; } return NULL; } static bool collect_outputs_cb(struct ir* ir, void* user) { struct basicblock* caller = user; if (ir->opcode == IR_BLOCK) MAP_SET(graph, caller, ir->u.bvalue); return false; } static void make_bb_graph(struct procedure* proc) { int i, j; graph_count = 0; for (i=0; iblocks_count; i++) { struct basicblock* bb = proc->blocks[i]; for (j=0; jirs_count; j++) ir_walk(bb->irs[j], collect_outputs_cb, bb); } } static void convert_block(struct procedure* proc, struct basicblock* bb) { int i, j; struct ir* ir; pushes_count = pops_count = 0; for (;;) { struct ir* lastpush = get_last_push(bb); if (!lastpush) return; /* Abort unless *every* successor block of this one starts with a pop * of the same size... */ for (i=0; isize != lastpush->size)) return; APPENDU(pops, ir); /* Also abort unless *every* predecessor block of the one we've * just found *also* ends in a push of the same size. */ for (j=0; jsize != lastpush->size)) return; APPENDU(pushes, ir); } } } } /* Okay, now we can wire them all up. */ for (i=0; iis_sequence); *ir = *ir->left; ir->is_sequence = true; } for (i=0; isize, pushir); for (j=1; jsize, phi, pushes[j]); phi->is_sequence = ir->is_sequence; *ir = *phi; } } } void pass_convert_stack_ops(struct procedure* proc) { int i; make_bb_graph(proc); for (i=0; iblocks_count; i++) convert_block(proc, proc->blocks[i]); } /* vim: set sw=4 ts=4 expandtab : */