From 984fa970f9c6d5dfe9d363257d24ab6af688b7a9 Mon Sep 17 00:00:00 2001 From: Sebastian Hack Date: Wed, 26 Jan 2005 10:06:11 +0000 Subject: [PATCH] Added spilling file --- ir/be/Makefile.in | 2 +- ir/be/bechordalspill.c | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 ir/be/bechordalspill.c diff --git a/ir/be/Makefile.in b/ir/be/Makefile.in index ab6d75ab2..49b2f287a 100644 --- a/ir/be/Makefile.in +++ b/ir/be/Makefile.in @@ -22,7 +22,7 @@ SOURCES = $(INSTALL_HEADERS) SOURCES += Makefile.in besched.h belistsched.h belistsched.c \ beutil.h bemain.c besched.c bemain.c belive.c belive.h benumb.h \ benumb_t.h benumb.c bechordal.c bera.c beutil.c phistat.c \ - bephiopt.c bephicoal.c bera.h + bephiopt.c bephicoal.c bera.h bechordalspill.c include $(topdir)/MakeRules diff --git a/ir/be/bechordalspill.c b/ir/be/bechordalspill.c new file mode 100644 index 000000000..216667626 --- /dev/null +++ b/ir/be/bechordalspill.c @@ -0,0 +1,33 @@ +/** + * Spilling for chordal interference graphs. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "obst.h" +#include "list.h" +#include "bitset.h" +#include "iterator.h" + +#include "irmode_t.h" +#include "irgraph_t.h" +#include "irprintf_t.h" +#include "irgwalk.h" +#include "irdump.h" +#include "irdom.h" +#include "debug.h" +#include "xmalloc.h" + +#include "beutil.h" +#include "besched.h" +#include "bera_t.h" +#include "benumb_t.h" +#include "besched_t.h" +#include "belive_t.h" +#include "bechordal_t.h" + +void be_ra_chordal_spill(ir_graph *irg) +{ +} -- 2.20.1