X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeinfo.c;h=7027e776ad41637d052b4c1e37dd664d11371743;hb=bdc59608633f59b0541a04883c24d19b1bc0ffae;hp=2962c246a81802e5349e1cba54d86930dc9b08f6;hpb=39cb52264857d7c21c7141ba82bb55adaa78064d;p=libfirm diff --git a/ir/be/beinfo.c b/ir/be/beinfo.c index 2962c246a..7027e776a 100644 --- a/ir/be/beinfo.c +++ b/ir/be/beinfo.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2011 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -29,52 +29,90 @@ #include "beinfo.h" #include "bearch.h" #include "benode.h" +#include "besched.h" #include "irgwalk.h" #include "irnode_t.h" +#include "irdump_t.h" #include "error.h" -static copy_attr_func old_phi_copy_attr; +static copy_attr_func old_phi_copy_attr; void be_info_new_node(ir_node *node) { struct obstack *obst; backend_info_t *info; - if (is_Anchor(node)) + /* Projs need no be info, their tuple holds all information */ + if (is_Proj(node)) return; - if (is_Proj(node)) // Projs need no be info, their tuple holds all information - return; - - obst = be_get_birg_obst(current_ir_graph); + obst = be_get_be_obst(current_ir_graph); info = OALLOCZ(obst, backend_info_t); - if (is_Phi(node)) { + assert(node->backend_info == NULL); + node->backend_info = info; + + /* + * Set backend info for some middleend nodes which still appear in + * backend graphs + */ + switch (get_irn_opcode(node)) { + case iro_Bad: + case iro_Block: + case iro_Dummy: + case iro_End: + case iro_Unknown: + info->flags |= arch_irn_flags_not_scheduled; + break; + case iro_NoMem: + case iro_Anchor: + case iro_Pin: + case iro_Sync: + info->flags |= arch_irn_flags_not_scheduled; + info->out_infos = NEW_ARR_D(reg_out_info_t, obst, 1); + memset(info->out_infos, 0, 1 * sizeof(info->out_infos[0])); + info->out_infos[0].req = arch_no_register_req; + break; + case iro_Phi: info->out_infos = NEW_ARR_D(reg_out_info_t, obst, 1); memset(info->out_infos, 0, 1 * sizeof(info->out_infos[0])); + info->out_infos[0].req = arch_no_register_req; + break; + default: + break; } - assert(node->backend_info == NULL); - node->backend_info = info; } -static void new_Phi_copy_attr(const ir_node *old_node, ir_node *new_node) +static void new_phi_copy_attr(ir_graph *irg, const ir_node *old_node, + ir_node *new_node) { backend_info_t *old_info = be_get_info(old_node); backend_info_t *new_info = be_get_info(new_node); *new_info = *old_info; - old_phi_copy_attr(old_node, new_node); + old_phi_copy_attr(irg, old_node, new_node); } -int be_infos_equal(const backend_info_t *info1, const backend_info_t *info2) +int be_nodes_equal(const ir_node *node1, const ir_node *node2) { - int len = ARR_LEN(info1->out_infos); - int i; + const backend_info_t *info1 = be_get_info(node1); + const backend_info_t *info2 = be_get_info(node2); + size_t len = ARR_LEN(info1->out_infos); + int arity = get_irn_arity(node1); + int in; + size_t i; if (ARR_LEN(info2->out_infos) != len) return false; + assert(arity == get_irn_arity(node2)); + + for (in = 0; in < arity; ++in) { + if (info1->in_reqs[in] != info2->in_reqs[in]) + return false; + } + for (i = 0; i < len; ++i) { const reg_out_info_t *out1 = &info1->out_infos[i]; const reg_out_info_t *out2 = &info2->out_infos[i]; @@ -87,13 +125,6 @@ int be_infos_equal(const backend_info_t *info1, const backend_info_t *info2) return true; } -int be_nodes_equal(const ir_node *node1, const ir_node *node2) -{ - backend_info_t *info1 = be_get_info(node1); - backend_info_t *info2 = be_get_info(node2); - return be_infos_equal(info1, info2); -} - static void init_walker(ir_node *node, void *data) { (void) data; @@ -108,7 +139,7 @@ void be_info_init(void) panic("double initialization of be_info"); old_phi_copy_attr = op_Phi->ops.copy_attr; - op_Phi->ops.copy_attr = new_Phi_copy_attr; + op_Phi->ops.copy_attr = new_phi_copy_attr; initialized = true; /* phis have register and register requirements now which we want to dump */ @@ -116,9 +147,31 @@ void be_info_init(void) op_Phi->ops.dump_node = be_dump_phi_reg_reqs; } +/** + * Edge hook to dump the schedule edges. + */ +static void sched_edge_hook(FILE *F, ir_node *irn) +{ + if (is_Proj(irn)) + return; + if (get_irn_irg(irn)->be_data == NULL) + return; + + if (sched_is_scheduled(irn) && sched_has_prev(irn)) { + ir_node *prev = sched_prev(irn); + fprintf(F, "edge:{sourcename:\""); + PRINT_NODEID(irn); + fprintf(F, "\" targetname:\""); + PRINT_NODEID(prev); + fprintf(F, "\" color:magenta}\n"); + } +} + void be_info_init_irg(ir_graph *irg) { irg_walk_anchors(irg, init_walker, NULL, NULL); + + set_dump_node_edge_hook(sched_edge_hook); } void be_info_free(void) @@ -126,7 +179,7 @@ void be_info_free(void) if (!initialized) panic("be_info_free called without prior init"); - assert(op_Phi->ops.copy_attr == new_Phi_copy_attr); + assert(op_Phi->ops.copy_attr == new_phi_copy_attr); op_Phi->ops.copy_attr = old_phi_copy_attr; initialized = false;