X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Ffloat_example.c;h=1eef3f3905d4da0531fde4de6184d516e1755baa;hb=91ba1eff56d080774e7e40c31c6570344d23b3d2;hp=c8cf6f0bd7c97501d506ab0fe729e4bb5cb811d4;hpb=6ed168c29789db8edf25c87f2da9164c49a5512c;p=libfirm diff --git a/testprograms/float_example.c b/testprograms/float_example.c index c8cf6f0bd..1eef3f390 100644 --- a/testprograms/float_example.c +++ b/testprograms/float_example.c @@ -1,9 +1,14 @@ -/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe -** All rights reserved. -** -** Authors: Christian Schaefer, Goetz Lindenmaier -** -*/ +/* + * Project: libFIRM + * File name: testprograms/float_example.c + * Purpose: + * Author: Christian Schaefer, Goetz Lindenmaier + * Modified by: + * Created: + * CVS-ID: $Id$ + * Copyright: (c) 1999-2003 Universität Karlsruhe + * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + */ # include # include @@ -13,15 +18,15 @@ # include "firm.h" /** -*** An Firm program to test float values. -*** -*** This file constructs the ir for the following pseudo-program: -*** -*** main() { -*** ... -*** } -*** -*** +* An Firm program to test float values. +* +* This file constructs the ir for the following pseudo-program: +* +* main() { +* ... +* } +* +* **/ int main(int argc, char **argv) @@ -34,10 +39,10 @@ int main(int argc, char **argv) ir_node *x; /* to build control flow */ tarval *tv; - printf("\nCreating an IR graph: EMPTY...\n"); + printf("\nCreating an IR graph: FLOAT EXAMPLE...\n"); /* init library */ - init_firm (); + init_firm (NULL); /** Build type information for the procedure. **/ @@ -48,19 +53,19 @@ int main(int argc, char **argv) */ owner = get_glob_type(); -#define METHODNAME "main" +#define METHODNAME "FLOAT_EXAMPLE_main" #define NRARGS 0 #define NRES 1 /* The type of the method */ - prim_t_dbl = new_type_primitive(id_from_str ("dbl", 3), mode_D); - proc_main = new_type_method(id_from_str(METHODNAME, strlen(METHODNAME)), + prim_t_dbl = new_type_primitive(new_id_from_chars ("dbl", 3), mode_D); + proc_main = new_type_method(new_id_from_chars(METHODNAME, strlen(METHODNAME)), NRARGS, NRES); set_method_res_type(proc_main, 0, prim_t_dbl); /* An entity representing the method. Owner of the entity is the global class type mentioned above. */ ent = new_entity ((type *)owner, - id_from_str (METHODNAME, strlen(METHODNAME)), + new_id_from_chars (METHODNAME, strlen(METHODNAME)), (type *)proc_main); /** Build code for the procedure. **/ @@ -73,7 +78,7 @@ int main(int argc, char **argv) #define NUM_OF_LOCAL_VARS 0 irg = new_ir_graph (ent, NUM_OF_LOCAL_VARS); - tv = tarval_d_from_str ("12345678901234567890.1234567890", 31); + tv = new_tarval_from_str ("12345678901234567890.1234567890", 31, mode_D); @@ -85,20 +90,20 @@ int main(int argc, char **argv) } /* Now we generated all instructions for this block and all its predecessor * blocks so we can mature it. (There are not too much.) */ - mature_block (get_irg_current_block(irg)); + mature_immBlock (get_irg_current_block(irg)); /* This adds the in edge of the end block which originates at the return statement. * The return node passes controlflow to the end block. */ - add_in_edge (get_irg_end_block(irg), x); + add_immBlock_pred (get_irg_end_block(irg), x); /* Now we can mature the end block as all it's predecessors are known. */ - mature_block (get_irg_end_block(irg)); + mature_immBlock (get_irg_end_block(irg)); /* Verify the graph. Finds some very bad errors in the graph. */ irg_vrfy(irg); - finalize_cons (irg); + irg_finalize_cons (irg); printf("Done building the graph. Dumping it.\n"); - dump_ir_block_graph (irg); + dump_ir_block_graph (irg, 0); printf("use xvcg to view this graph:\n"); printf("/ben/goetz/bin/xvcg GRAPHNAME\n\n");