From: Götz Lindenmaier Date: Thu, 31 Jan 2002 08:04:19 +0000 (+0000) Subject: New directory: ana for analyses. Adapted configure/makefiles X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=f062f87dcbff697ad020ffe5777549f25b82b849;p=libfirm New directory: ana for analyses. Adapted configure/makefiles [r303] --- diff --git a/Changes b/Changes index 8a8f7c74f..7c682503f 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,16 @@ + 29.1.2002 Goetz + New directory: ana for analyses. Adapted configure/makefiles + implemented irout: backedges. Added one field to ir_graph, one to ir_node. + Implemented state management for irgraphs: see irgraph.h. + Must now call finalize_cons() after graph construction!! + + 24.1.2002 Goetz + Procedure global cse. + Flag pinned in irop, irgraph. + Global cse in irop, setting the irgraph flag. + Example programs: Endless_loop.c. global_cse.c. + Adapted irdump. + 23.1.2002 Goetz Implemented support for endless loops: Adapted End node. diff --git a/Makefile.in b/Makefile.in index 4813d46be..5d4927201 100644 --- a/Makefile.in +++ b/Makefile.in @@ -21,7 +21,7 @@ exec_prefix := @exec_prefix@ bindir = $(exec_prefix)/bin datadir = $(prefix)/lib -subdirs := ir ir/adt ir/debug ir/tv ir/common ir/ident ir/ir ir/tr +subdirs := ir ir/adt ir/debug ir/tv ir/common ir/ident ir/ir ir/tr ir/ana SOURCES := Makefile.in MakeRules.in MakeTargets\ aclocal.m4 config.h.in\ diff --git a/configure b/configure index 2db660e58..1d986759f 100755 --- a/configure +++ b/configure @@ -561,7 +561,7 @@ ac_configure=$ac_aux_dir/configure # This should be Cygnus configure. ac_output_file="Makefile MakeRules ir/Makefile ir/adt/Makefile ir/debug/Makefile \ ir/tv/Makefile ir/common/Makefile ir/ident/Makefile ir/ir/Makefile \ - ir/tr/Makefile testprograms/Makefile" + ir/ana/Makefile ir/tr/Makefile testprograms/Makefile" diff --git a/configure.in b/configure.in index 895f7b7e4..fb153e818 100644 --- a/configure.in +++ b/configure.in @@ -12,7 +12,7 @@ AC_INIT(ir/ir/ircons.c) dnl if other files should be generated just add them to ac_output_files ac_output_file="Makefile MakeRules ir/Makefile ir/adt/Makefile ir/debug/Makefile \ ir/tv/Makefile ir/common/Makefile ir/ident/Makefile ir/ir/Makefile \ - ir/tr/Makefile testprograms/Makefile" + ir/ana/Makefile ir/tr/Makefile testprograms/Makefile" dnl generate the config header file AC_CONFIG_HEADER(config.h)