rename set_using_visited to set_using_irn_visited, some cosmetics, remove obsolete...
[libfirm] / ir / ir / irdump_t.h
index d25b362..ba2d53d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -26,6 +26,7 @@
 #define FIRM_IR_IRDUMPT_T_H
 
 #include "irdump.h"
+#include "irgraph_t.h"
 
 /* Attributes of nodes */
 #define PRINT_DEFAULT_NODE_ATTR
 #define INTER_MEM_EDGE_ATTR      "class:17 priority:10 color:blue"
 #define DOMINATOR_EDGE_ATTR      "class:15 color:red"
 #define POSTDOMINATOR_EDGE_ATTR  "class:19 color:red linestyle:dotted"
+#define KEEP_ALIVE_EDGE_ATTR     "class:20 priority:10 color:purple"
+#define KEEP_ALIVE_CF_EDGE_ATTR  "class:20 priority:60 color:purple"
+#define KEEP_ALIVE_DF_EDGE_ATTR  "class:20 priority:10 color:purple"
+#define ANCHOR_EDGE_ATTR         "class:20 priority:60 color:purple linestyle:dotted"
+#define OUT_EDGE_ATTR            "class:21 priority:10 color:gold linestyle:dashed"
+#define MACROBLOCK_EDGE_ATTR     "class:22 priority:10 color:green linestyle:dashed"
 
 #define BACK_EDGE_ATTR "linestyle:dashed "
 
@@ -54,6 +61,7 @@
 #define TYPE_CLASS_NODE_ATTR     "color: green"
 #define TYPE_DESCRIPTION_NODE_ATTR "color: lightgreen"
 #define ENTITY_NODE_ATTR         "color: yellow"
+#define ENUM_ITEM_NODE_ATTR      "color: green"
 #define ENT_TYPE_EDGE_ATTR       "class: 3 label: \"type\" color: red"
 #define ENT_OWN_EDGE_ATTR        "class: 4 label: \"owner\" color: black"
 #define METH_PAR_EDGE_ATTR       "class: 5 label: \"param %d\" color: green"
@@ -67,7 +75,6 @@
 #define ENT_VALUE_EDGE_ATTR      "label: \"value %d\""
 #define ENT_CORR_EDGE_ATTR       "label: \"value %d corresponds to \" "
 #define TYPE_MEMBER_EDGE_ATTR    "class: 12 label: \"member\" color:blue"
-#define ENUM_ITEM_NODE_ATTR      "color: green"
 /* #define CALLGRAPH_EDGE_ATTR      "calls" */
 
 #define PRINT_NODEID(X)       fprintf(F, "n%ld", get_irn_node_nr(X))
@@ -87,8 +94,8 @@ extern int opt_dump_analysed_type_info;
 FILE *vcg_open (ir_graph *irg, const char * suffix1, const char *suffix2);
 FILE *vcg_open_name (const char *name, const char *suffix);
 void dump_vcg_header(FILE *F, const char *name, const char *orientation);
+void dump_vcg_footer(FILE *F);
 const char *get_irg_dump_name(ir_graph *irg);
-void vcg_close (FILE *F);
 
 
 const char *get_ent_dump_name(ir_entity *ent);
@@ -106,4 +113,4 @@ int dump_node_label(FILE *F, ir_node *n);
 /** Writes vcg representation with title "PRINT_TYPEID(tp)" to file F. */
 int dump_type_node(FILE *F, ir_type *tp);
 
-#endif
+#endif /* FIRM_IR_IRDUMPT_T_H */