not needed
[libfirm] / ir / be / beemitter.h
1 /*
2  * Copyright (C) 1995-2007 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  * Author:      Matthias Braun
22  * Date:                12.03.2007
23  * Copyright:   (c) Universitaet Karlsruhe
24  * License:     This file is protected by GPL -  GNU GENERAL PUBLIC LICENSE.
25  */
26 #ifndef FIRM_BE_BEEMITTER_H
27 #define FIRM_BE_BEEMITTER_H
28
29 #include <stdio.h>
30 #include <stdarg.h>
31 #include "obst.h"
32 #include "ident.h"
33 #include "irnode.h"
34 #include "be.h"
35
36 /* framework for emitting data (usually the final assembly code) */
37
38 /** The emitter environment. */
39 typedef struct be_emit_env_t {
40         FILE           *F;         /**< The handle of the (assembler) file that is written to. */
41         struct obstack obst;       /**< An obstack for temporary storage. */
42         int            linelength; /**< The length of the current line. */
43 } be_emit_env_t;
44
45 /**
46  * Emit a character to the (assembler) output.
47  *
48  * @param env  the emitter environment
49  */
50 static INLINE void be_emit_char(be_emit_env_t *env, char c) {
51         obstack_1grow(&env->obst, c);
52         env->linelength++;
53 }
54
55 /**
56  * Emit a string to the (assembler) output.
57  *
58  * @param env  the emitter environment
59  * @param str  the string
60  * @param l    the length of the given string
61  */
62 static INLINE void be_emit_string_len(be_emit_env_t *env, const char *str,
63                                       size_t l)
64 {
65         obstack_grow(&env->obst, str, l);
66         env->linelength += l;
67 }
68
69 /**
70  * Emit a null-terminated string to the (assembler) output.
71  *
72  * @param env  the emitter environment
73  * @param str  the null-terminated string
74  */
75 static INLINE void be_emit_string(be_emit_env_t *env, const char *str)
76 {
77         size_t len = strlen(str);
78         be_emit_string_len(env, str, len);
79 }
80
81 /**
82  * Emit a C string-constant to the (assembler) output.
83  *
84  * @param env  the emitter environment
85  * @param str  the null-terminated string constant
86  */
87 #define be_emit_cstring(env, str) { be_emit_string_len(env, str, sizeof(str)-1); }
88
89 /**
90  * Initializes an emitter environment.
91  *
92  * @param env  the (uninitialized) emitter environment
93  * @param F    a file handle where the emitted file is written to.
94  */
95 void be_emit_init_env(be_emit_env_t *env, FILE *F);
96
97 /**
98  * Destroys the given emitter environment.
99  *
100  * @param env  the emitter environment
101  */
102 void be_emit_destroy_env(be_emit_env_t *env);
103
104 /**
105  * Emit an ident to the (assembler) output.
106  *
107  * @param env  the emitter environment
108  * @param id   the ident to be emitted
109  */
110 void be_emit_ident(be_emit_env_t *env, ident *id);
111
112 /**
113  * Emit the output of an ir_printf.
114  *
115  * @param env  the emitter environment
116  * @param fmt  the ir_printf format
117  */
118 void be_emit_irprintf(be_emit_env_t *env, const char *fmt, ...);
119
120 /**
121  * Emit the output of an ir_vprintf.
122  *
123  * @param env  the emitter environment
124  * @param fmt  the ir_printf format
125  */
126 void be_emit_irvprintf(be_emit_env_t *env, const char *fmt, va_list args);
127
128 /**
129  * Flush the line in the current line buffer to the emitter file.
130  *
131  * @param env  the emitter environment
132  */
133 void be_emit_write_line(be_emit_env_t *env);
134
135 /**
136  * Flush the line in the current line buffer to the emitter file and
137  * appends a gas-style comment with the node number and writes the line
138  *
139  * @param env   the emitter environment
140  * @param node  the node to get the debug info from
141  */
142 void be_emit_finish_line_gas(be_emit_env_t *env, const ir_node *node);
143
144 /**
145  * Emit spaces until the comment position is reached.
146  *
147  * @param env  the emitter environment
148  */
149 void be_emit_pad_comment(be_emit_env_t *env);
150
151 #endif /* FIRM_BE_BEEMITTER_H */