Fixed bug in while_ex
authorGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Tue, 22 Jan 2002 08:51:52 +0000 (08:51 +0000)
committerGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Tue, 22 Jan 2002 08:51:52 +0000 (08:51 +0000)
[r299]

testprograms/oo_program_example.c
testprograms/three_cfpred_example.c
testprograms/while_example.c

index dae7ddb..7915005 100644 (file)
@@ -83,7 +83,6 @@ main(void)
   set_method_res_type(proc_c, 0, prim_t_int);
   proc_c_e = new_entity(class_prima, id_from_str ("c", 1), proc_c);
 
-
   /*** Now build procedure main. ***/
   /** Type information for main. **/
   printf("\nCreating an IR graph: OO_PROGRAM_EXAMPLE...\n");
index c0f6cce..a5232a7 100644 (file)
@@ -48,6 +48,7 @@
 
 int main(int argc, char **argv)
 {
+  type     *prim_t_int;
   ir_graph *irg;          /* this variable contains the irgraph */
   type *owner;      /* the class in which this method is defined */
   type *proc_main; /* type information for the method main */
@@ -60,6 +61,9 @@ int main(int argc, char **argv)
 
   set_optimize(1);
 
+  /*** Make basic type information for primitive type int. ***/
+  prim_t_int = new_type_primitive(id_from_str ("int", 3), mode_i);
+
   /* FIRM was designed for oo languages where all methods belong to a class.
    * For imperative languages like C we view a file as a large class containing
    * all functions as methods in this file.
@@ -73,7 +77,9 @@ int main(int argc, char **argv)
   owner = get_glob_type();
   proc_main = new_type_method(id_from_str(METHODNAME, strlen(METHODNAME)),
                              NRARGS, NRES);
-  /** @@@ setting of arg/res types misses **/
+  set_method_param_type(proc_main, 0, prim_t_int);
+  set_method_res_type(proc_main, 0, prim_t_int);
+
   ent = new_entity (owner,
                     id_from_str (METHODNAME, strlen(METHODNAME)),
                     proc_main);
index a4d4e26..c1dd962 100644 (file)
@@ -48,31 +48,34 @@ main(void)
 
   prim_t_int = new_type_primitive(id_from_str ("int", 3), mode_i);
 
-#define METHODNAME "main"
+#define METHODNAME "main_tp"
 #define NRARGS 1
-#define NRES 0
+#define NRES 1
 
   proc_main = new_type_method(id_from_str(METHODNAME, strlen(METHODNAME)),
                               NRARGS, NRES);
   set_method_param_type(proc_main, 0, prim_t_int);
+  set_method_res_type(proc_main, 0, prim_t_int);
 
-  owner = new_type_class (id_from_str ("WHILE_EXAMPLE", 16));
-  ent = new_entity (owner, id_from_str ("main", 4), proc_main);
+
+  owner = new_type_class (id_from_str ("WHILE_EXAMPLE", 13));
+  ent = new_entity (owner, id_from_str ("main", strlen("main")), proc_main);
 
   /* Generates start and end blocks and nodes and a first, initial block */
   irg = new_ir_graph (ent, 4);
 
-  /* Generate two constants */
+  /* Generate two values */
   set_value (0, new_Proj(get_irg_args(irg), mode_i, 0));
   set_value (1, new_Const (mode_i, tarval_from_long (mode_i, 1)));
   x = new_Jmp();
   mature_block (get_irg_current_block(irg));
 
+
   /* generate a block for the loop header and the conditional branch */
   r = new_immBlock ();
   add_in_edge (r, x);
   x = new_Cond (new_Proj(new_Cmp(new_Const (mode_i, tarval_from_long (mode_i, 0)),
-                                new_Const (mode_i, tarval_from_long (mode_i, 0))),
+                                get_value(1, mode_i)),
                          mode_b, Eq));
   f = new_Proj (x, mode_X, 0);
   t = new_Proj (x, mode_X, 1);
@@ -118,6 +121,8 @@ main(void)
 
   /* output the vcg file */
   printf("Done building the graph.  Dumping it.\n");
+  turn_of_edge_labels();
+  dump_all_types();
   dump_ir_block_graph (irg);
   printf("Use xvcg to view this graph:\n");
   printf("/ben/goetz/bin/xvcg GRAPHNAME\n\n");