From 4dbf7db40e756d0589892ee35e595c328af5b9f6 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 14 Jul 2008 14:47:32 +0000 Subject: [PATCH] include our own header file [r20457] --- ir/ir/irdump_grgen.c | 1 + ir/ir/irdump_grgen.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 ir/ir/irdump_grgen.h diff --git a/ir/ir/irdump_grgen.c b/ir/ir/irdump_grgen.c index b4feb05a7..909db21b5 100644 --- a/ir/ir/irdump_grgen.c +++ b/ir/ir/irdump_grgen.c @@ -42,6 +42,7 @@ #include "tv.h" #include "irgwalk.h" #include "firm_types.h" +#include "irdump_grgen.h" typedef struct diff --git a/ir/ir/irdump_grgen.h b/ir/ir/irdump_grgen.h new file mode 100644 index 000000000..6937f1649 --- /dev/null +++ b/ir/ir/irdump_grgen.h @@ -0,0 +1,43 @@ +/* +* Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. +* +* This file is part of libFirm. +* +* This file may be distributed and/or modified under the terms of the +* GNU General Public License version 2 as published by the Free Software +* Foundation and appearing in the file LICENSE.GPL included in the +* packaging of this file. +* +* Licensees holding valid libFirm Professional Edition licenses may use +* this file in accordance with the libFirm Commercial License. +* Agreement provided with the Software. +* +* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR +* PURPOSE. +*/ + +/** +* @file +* @brief Write ir graph as a grgen construction rule +* @author Andreas Schoesser +* @version $Id$ +*/ + + +/** + * Dumps a complete irg in the grgen format + * irg: irg to dump + * filename: text file to dump to + * append: 1 if the new rule should be appended to the file, + * otherwise the previous contents are deleted + **/ +void dump_irg_grgen_file(ir_graph *irg, char *filename, int append); + +/** + * Like dump_irg_grgen_file dumps a complete irg in the grgen format + * irg: irg to dump + * suffix: suffix for the output file + * (e.g. "main"+ suffix +".grg") + **/ +void dump_irg_grgen(ir_graph *irg, char *suffix); -- 2.20.1