0a9e2c66e07dc777a4bcea173706e4c649b95ed7
[libfirm] / include / libfirm / irio.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Import/export textual representation of firm.
23  * @author  Moritz Kroll
24  *
25  * Note: The file format is not considered stable yet. So expect
26  * incompatibilities between file formats of different libfirm versions.
27  */
28 #ifndef FIRM_IR_IRIO_H
29 #define FIRM_IR_IRIO_H
30
31 #include <stdio.h>
32
33 #include "firm_types.h"
34 #include "begin.h"
35
36 /**
37  * Exports the whole irp to the given file in a textual form.
38  *
39  * @param filename  the name of the resulting file
40  *
41  * Exports all types, all ir graphs, and the constant graph.
42  */
43 FIRM_API void ir_export(const char *filename);
44
45 /**
46  * same as ir_export but writes to a FILE*
47  */
48 FIRM_API void ir_export_file(FILE *output, const char *outputname);
49
50 /**
51  * Write the given ir graph to a stream in a textual format
52  *
53  * @param irg         the ir graph
54  * @param output      output stream the irg is written to
55  * @param outputname  a name for the output stream (used for error messages)
56  *
57  * Exports the type graph used by the given graph and the graph itself.
58  */
59 FIRM_API void ir_export_irg(ir_graph *irg, FILE *output,
60                             const char *outputname);
61
62 /**
63  * Imports the data stored in the given file.
64  *
65  * @param filename  the name of the file
66  *
67  * Imports any type graphs and ir graphs contained in the file.
68  */
69 FIRM_API void ir_import(const char *filename);
70
71 /**
72  * same as ir_import but imports from a FILE*
73  */
74 FIRM_API void ir_import_file(FILE *input, const char *inputname);
75
76 #include "end.h"
77
78 #endif