X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firdump.c;h=213af81f9f69450f4c460b986c0a49cba15aea33;hb=5f8ddee6b08c8040c0a304a347d65045c1141d52;hp=a805d967143ab2dc1d91702a06de85b574339001;hpb=b0ad9fbe1e6e3ff4b3e035c18804984aa49347b9;p=libfirm diff --git a/ir/ir/irdump.c b/ir/ir/irdump.c index a805d9671..213af81f9 100644 --- a/ir/ir/irdump.c +++ b/ir/ir/irdump.c @@ -27,6 +27,8 @@ #define DEFAULT_TYPE_ATTRIBUTE "" #define TYPE_EDGE_ATTR "" +#define PRINT_NODEID(X) fprintf(F, "%p", X) + /* file to dump to */ static FILE *F; @@ -58,7 +60,7 @@ dump_node_opcode (ir_node *n) } /* all others */ } else { - xfprintf (F, "%I", n->op->name); + xfprintf (F, "%I", get_irn_opident(n)); } } @@ -82,7 +84,7 @@ dump_node_mode (ir_node *n) case iro_Shr: case iro_Abs: case iro_Cmp: - xfprintf (F, "%I", n->mode->name); + xfprintf (F, "%I", get_mode_ident(n->mode)); break; default: } @@ -105,7 +107,7 @@ dump_node_nodeattr (ir_node *n) xfprintf (F, "%s", id_to_str(get_entity_ident(get_Sel_entity(n)))); /* xdoesn't work for some reason. - fprintf (F, "\"%I %I\" ", n->op->name, n->attr.s.ent); */ + fprintf (F, "\"%I %I\" ", get_irn_opident(n), n->attr.s.ent); */ break; default: } /* end switch */ @@ -139,7 +141,8 @@ void dump_node (ir_node *n) { /* dump this node */ - xfprintf (F, "node: {title: \"%p\" label: \"", n); + xfprintf (F, "node: {title: \""); PRINT_NODEID(n); fprintf(F, "\" label: \""); + dump_node_opcode(n); dump_node_mode (n); xfprintf (F, " "); @@ -156,127 +159,127 @@ void dump_ir_node (ir_node *n) { /* dump this node */ - xfprintf (F, "node: {title: \"%p\" label: ", n); + fprintf (F, "node: {title: \""); PRINT_NODEID(n); fprintf(F, "\" label: "); switch (n->op->code) { /* node label */ case iro_Start: - xfprintf (F, "\"%I\" color: blue ", n->op->name); + xfprintf (F, "\"%I\" color: blue ", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_End: - xfprintf (F, "\"%I\" color: blue ", n->op->name); + xfprintf (F, "\"%I\" color: blue ", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Block: - xfprintf (F, "\"%I\" color: lightyellow ", n->op->name); + xfprintf (F, "\"%I\" color: lightyellow ", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Phi: - xfprintf (F, "\"%I%I\" color: green", n->op->name, n->mode->name); - if (n->mode->code == irm_M) + xfprintf (F, "\"%I%I\" color: green", get_irn_opident(n), get_irn_modeident(n)); + if (get_irn_modecode(n) == irm_M) xfprintf (F, DEFAULT_NODE_ATTR " color: green"); else xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Const: - xfprintf (F, "\"%v%I\" color: yellow ", n->attr.con, n->mode->name); + xfprintf (F, "\"%v%I\" color: yellow ", n->attr.con, get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Id: - xfprintf (F, "\"%I%I\" ", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\" ", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Proj: if (n->in[1]->op->code == iro_Cmp) { - xfprintf (F, "\"%I%I %s\" color: yellow", n->op->name, n->mode->name, + xfprintf (F, "\"%I%I %s\" color: yellow", get_irn_opident(n), get_irn_modeident(n), get_pnc_string(n->attr.proj)); } else { - xfprintf (F, "\"%I%I %ld\"", n->op->name, n->mode->name, n->attr.proj); + xfprintf (F, "\"%I%I %ld\"", get_irn_opident(n), get_irn_modeident(n), n->attr.proj); } xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Conv: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Tuple: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Add: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Sub: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Mul: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Quot: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_DivMod: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Div: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Mod: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_And: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Or: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Eor: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Shl: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Shr: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Abs: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Cmp: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Jmp: - xfprintf (F, "\"%I\"", n->op->name); + xfprintf (F, "\"%I\"", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Cond: - xfprintf (F, "\"%I\"", n->op->name); + xfprintf (F, "\"%I\"", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Call: - xfprintf (F, "\"%I\"", n->op->name); + xfprintf (F, "\"%I\"", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Return: - xfprintf (F, "\"%I\"", n->op->name); + xfprintf (F, "\"%I\"", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Raise: - xfprintf (F, "\"%I%I\"", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\"", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Load: @@ -285,15 +288,15 @@ dump_ir_node (ir_node *n) xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Alloc: - xfprintf (F, "\"%I\" ", n->op->name); + xfprintf (F, "\"%I\" ", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Sel: assert(get_kind(get_Sel_entity(n)) == k_entity); - xfprintf (F, "\"%I ", n->op->name); + xfprintf (F, "\"%I ", get_irn_opident(n)); xfprintf (F, "%s", id_to_str(get_entity_ident(get_Sel_entity(n)))); /* xdoesn't work for some reason. - fprintf (F, "\"%I %I\" ", n->op->name, get_entity_ident(get_Sel_entity(n))); */ + fprintf (F, "\"%I %I\" ", get_irn_opident(n), get_entity_ident(get_Sel_entity(n))); */ xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_SymConst: @@ -315,15 +318,15 @@ dump_ir_node (ir_node *n) xfprintf (F, DEFAULT_NODE_ATTR); break; case iro_Sync: - xfprintf (F, "\"%I\" ", n->op->name); + xfprintf (F, "\"%I\" ", get_irn_opident(n)); xfprintf (F, DEFAULT_NODE_ATTR " color: green"); break; case iro_Bad: - xfprintf (F, "\"%I%I\" ", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\" ", get_irn_opident(n), get_irn_modeident(n)); xfprintf (F, DEFAULT_NODE_ATTR); break; default: - xfprintf (F, "\"%I%I\" ", n->op->name, n->mode->name); + xfprintf (F, "\"%I%I\" ", get_irn_opident(n), get_irn_modeident(n)); } xfprintf (F, "}\n"); /* footer */ } @@ -377,7 +380,6 @@ void dump_node2type_edges (ir_node *n, void *env) NODE2TYPE_EDGE_ATTR "}\n", n, get_Alloc_type(n)); break; case iro_Free: - printf(" in irdum\n"); xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" " NODE2TYPE_EDGE_ATTR "}\n", n, get_Free_type(n)); break; @@ -408,8 +410,7 @@ dump_type_info (type_or_ent *tore, void *env) { xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" " " label: \"type\" " TYPE_EDGE_ATTR "}\n", tore, get_entity_type(ent)); - } - break; + } break; case k_type_class: { type_class *type = (type_class *)tore; @@ -418,14 +419,12 @@ dump_type_info (type_or_ent *tore, void *env) { xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" " " label: \"supertype\" " TYPE_EDGE_ATTR "}\n", type, get_class_supertype(type, i)); - } - break; + } break; case k_type_strct: { type_strct *type = (type_strct *)tore; xfprintf (F, "\"strct %I\"}\n", get_strct_ident(type)); - } - break; + } break; case k_type_method: { type_method *type = (type_method *)tore; @@ -438,29 +437,25 @@ dump_type_info (type_or_ent *tore, void *env) { xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" " " label: \"res %d\" " TYPE_EDGE_ATTR "}\n", tore, get_method_res_type(type, i), i); - } - break; + } break; case k_type_union: { type_union *type = (type_union *)tore; xfprintf (F, "\"union %I\"}\n", get_union_ident(type)); /* edges !!!??? */ - } - break; + } break; case k_type_array: { type_array *type = (type_array *)tore; xfprintf (F, "\"array %I\"}\n", get_array_ident(type)); xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" " TYPE_EDGE_ATTR "}\n", tore, get_array_element_type(type), i); - } - break; + } break; case k_type_enumeration: { type_enumeration *type = (type_enumeration *)tore; xfprintf (F, "\"enum %I\"}\n", get_enumeration_ident(type)); - } - break; + } break; case k_type_pointer: { type_pointer *type = (type_pointer *)tore; @@ -468,19 +463,19 @@ dump_type_info (type_or_ent *tore, void *env) { xfprintf (F, "edge: { sourcename: \"%p\" targetname: \"%p\" " TYPE_EDGE_ATTR "}\n", tore, get_pointer_points_to_type(type), i); - } - break; + } break; case k_type_primitive: { type_primitive *type = (type_primitive *)tore; xfprintf (F, "\"prim %I, mode %I\"}\n", get_primitive_ident(type), get_mode_ident(get_primitive_mode(type))); - } - break; + } break; default: - break; + { + xfprintf (F, "\" faulty type \"}\n"); + printf(" *** irdump, %s(l.%i), faulty type.\n", __FUNCTION__, __LINE__); + } break; } - } /************************************************************************/ @@ -497,11 +492,21 @@ void vcg_open (ir_graph *irg, char *suffix) { id = get_entity_ld_name (get_irg_ent(irg)); len = id_to_strlen (id); cp = id_to_str (id); + fname = malloc (len + 5 + strlen(suffix)); - strcpy (fname, cp); /* copy the filename */ + strncpy (fname, cp, len); /* copy the filename */ + fname[len] = '\0'; strcat (fname, suffix); /* append file suffix */ - strcat (fname, ".vcg"); /* append the .vcg suffix */ - F = fopen (fname, "w"); /* open file for writing */ + + fname = malloc (len + 5 + strlen(suffix)); + strncpy (fname, cp, len); /* copy the filename */ + fname[len] = '\0'; /* ensure string termination */ + /*strcpy (fname, cp); * copy the filename * + this produces wrong, too long strings in conjuction with the + jocca frontend. The \0 seems to be missing. */ + strcat (fname, suffix); /* append file suffix */ + strcat (fname, ".vcg"); /* append the .vcg suffix */ + F = fopen (fname, "w"); /* open file for writing */ if (!F) { panic ("cannot open %s for writing (%m)", fname); /* not reached */ } @@ -603,7 +608,7 @@ dump_ir_block (ir_node *block, void *env) { if (get_irn_opcode(block) == iro_Block) { /* This is a block. So dump the vcg information to make a block. */ - xfprintf(F, "graph: { title: \"%p\" label: \"", block); + xfprintf(F, "graph: { title: \""); PRINT_NODEID(block); fprintf(F, "\" label: \""); #ifdef DEBUG_libfirm xfprintf (F, "%ld", get_irn_node_nr(block)); #else