- Create new copy_attr functions for blocks, phis and filters that initialize
[libfirm] / ir / ir / irop.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irop.c
4  * Purpose:     Representation of opcode of intermediate operation.
5  * Author:      Christian Schaefer
6  * Modified by: Goetz Lindenmaier, Michael Beck
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2006 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13 #ifdef HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17 #ifdef HAVE_STRING_H
18 # include <string.h>
19 #endif
20
21 #include "irop_t.h"
22 #include "irnode_t.h"
23 #include "irhooks.h"
24 #include "irbackedge_t.h"
25
26 #include "iropt_t.h"             /* for firm_set_default_operations */
27 #include "irvrfy_t.h"
28 #include "reassoc_t.h"
29
30 #include "xmalloc.h"
31
32 /** the available next opcode */
33 static unsigned next_iro = iro_MaxOpcode;
34
35 ir_op *op_Block;       ir_op *get_op_Block     (void) { return op_Block;     }
36
37 ir_op *op_Start;       ir_op *get_op_Start     (void) { return op_Start;     }
38 ir_op *op_End;         ir_op *get_op_End       (void) { return op_End;       }
39 ir_op *op_Jmp;         ir_op *get_op_Jmp       (void) { return op_Jmp;       }
40 ir_op *op_IJmp;        ir_op *get_op_IJmp      (void) { return op_IJmp;      }
41 ir_op *op_Cond;        ir_op *get_op_Cond      (void) { return op_Cond;      }
42 ir_op *op_Return;      ir_op *get_op_Return    (void) { return op_Return;    }
43
44 ir_op *op_Sel;         ir_op *get_op_Sel       (void) { return op_Sel;       }
45 ir_op *op_InstOf;      ir_op *get_op_InstOf    (void) { return op_InstOf;    }
46
47 ir_op *op_Const;       ir_op *get_op_Const     (void) { return op_Const;     }
48 ir_op *op_SymConst;    ir_op *get_op_SymConst  (void) { return op_SymConst;  }
49
50 ir_op *op_Call;        ir_op *get_op_Call      (void) { return op_Call;      }
51 ir_op *op_Add;         ir_op *get_op_Add       (void) { return op_Add;       }
52 ir_op *op_Sub;         ir_op *get_op_Sub       (void) { return op_Sub;       }
53 ir_op *op_Minus;       ir_op *get_op_Minus     (void) { return op_Minus;     }
54 ir_op *op_Mul;         ir_op *get_op_Mul       (void) { return op_Mul;       }
55 ir_op *op_Quot;        ir_op *get_op_Quot      (void) { return op_Quot;      }
56 ir_op *op_DivMod;      ir_op *get_op_DivMod    (void) { return op_DivMod;    }
57 ir_op *op_Div;         ir_op *get_op_Div       (void) { return op_Div;       }
58 ir_op *op_Mod;         ir_op *get_op_Mod       (void) { return op_Mod;       }
59 ir_op *op_Abs;         ir_op *get_op_Abs       (void) { return op_Abs;       }
60 ir_op *op_And;         ir_op *get_op_And       (void) { return op_And;       }
61 ir_op *op_Or;          ir_op *get_op_Or        (void) { return op_Or;        }
62 ir_op *op_Eor;         ir_op *get_op_Eor       (void) { return op_Eor;       }
63 ir_op *op_Not;         ir_op *get_op_Not       (void) { return op_Not;       }
64 ir_op *op_Cmp;         ir_op *get_op_Cmp       (void) { return op_Cmp;       }
65 ir_op *op_Shl;         ir_op *get_op_Shl       (void) { return op_Shl;       }
66 ir_op *op_Shr;         ir_op *get_op_Shr       (void) { return op_Shr;       }
67 ir_op *op_Shrs;        ir_op *get_op_Shrs      (void) { return op_Shrs;      }
68 ir_op *op_Rot;         ir_op *get_op_Rot       (void) { return op_Rot;       }
69 ir_op *op_Conv;        ir_op *get_op_Conv      (void) { return op_Conv;      }
70 ir_op *op_Cast;        ir_op *get_op_Cast      (void) { return op_Cast;      }
71 ir_op *op_Carry;       ir_op *get_op_Carry     (void) { return op_Carry;     }
72 ir_op *op_Borrow;      ir_op *get_op_Borrow    (void) { return op_Borrow;    }
73
74 ir_op *op_Phi;         ir_op *get_op_Phi       (void) { return op_Phi;       }
75
76 ir_op *op_Load;        ir_op *get_op_Load      (void) { return op_Load;      }
77 ir_op *op_Store;       ir_op *get_op_Store     (void) { return op_Store;     }
78 ir_op *op_Alloc;       ir_op *get_op_Alloc     (void) { return op_Alloc;     }
79 ir_op *op_Free;        ir_op *get_op_Free      (void) { return op_Free;      }
80 ir_op *op_Sync;        ir_op *get_op_Sync      (void) { return op_Sync;      }
81
82 ir_op *op_Tuple;       ir_op *get_op_Tuple     (void) { return op_Tuple;     }
83 ir_op *op_Proj;        ir_op *get_op_Proj      (void) { return op_Proj;      }
84 ir_op *op_Id;          ir_op *get_op_Id        (void) { return op_Id;        }
85 ir_op *op_Bad;         ir_op *get_op_Bad       (void) { return op_Bad;       }
86 ir_op *op_Confirm;     ir_op *get_op_Confirm   (void) { return op_Confirm;   }
87
88 ir_op *op_Unknown;     ir_op *get_op_Unknown   (void) { return op_Unknown;   }
89 ir_op *op_Filter;      ir_op *get_op_Filter    (void) { return op_Filter;    }
90 ir_op *op_Break;       ir_op *get_op_Break     (void) { return op_Break;     }
91 ir_op *op_CallBegin;   ir_op *get_op_CallBegin (void) { return op_CallBegin; }
92 ir_op *op_EndReg;      ir_op *get_op_EndReg    (void) { return op_EndReg;    }
93 ir_op *op_EndExcept;   ir_op *get_op_EndExcept (void) { return op_EndExcept; }
94
95 ir_op *op_NoMem;       ir_op *get_op_NoMem     (void) { return op_NoMem;     }
96 ir_op *op_Mux;         ir_op *get_op_Mux       (void) { return op_Mux;       }
97 ir_op *op_Psi;         ir_op *get_op_Psi       (void) { return op_Psi;       }
98 ir_op *op_CopyB;       ir_op *get_op_CopyB     (void) { return op_CopyB;     }
99
100 ir_op *op_Raise;       ir_op *get_op_Raise     (void) { return op_Raise;     }
101 ir_op *op_Bound;       ir_op *get_op_Bound     (void) { return op_Bound;     }
102
103 ir_op *op_Pin;         ir_op *get_op_Pin       (void) { return op_Pin;       }
104
105 /*
106  * Copies all attributes stored in the old node to the new node.
107  * Assumes both have the same opcode and sufficient size.
108  */
109 void default_copy_attr(const ir_node *old_node, ir_node *new_node) {
110   unsigned size = firm_add_node_size;
111
112   assert(get_irn_op(old_node) == get_irn_op(new_node));
113   memcpy(&new_node->attr, &old_node->attr, get_op_attr_size(get_irn_op(old_node)));
114
115   if (size > 0) {
116     /* copy additional node data */
117     memcpy(get_irn_data(new_node, void, size), get_irn_data(old_node, void, size), size);
118   }
119 }  /* default_copy_attr */
120
121 /**
122  * Copies all Call attributes stored in the old node to the new node.
123  */
124 static void
125 call_copy_attr(const ir_node *old_node, ir_node *new_node) {
126   default_copy_attr(old_node, new_node);
127   remove_Call_callee_arr(new_node);
128 }  /* call_copy_attr */
129
130 /**
131  * Copies all Block attributes stored in the old node to the new node.
132  */
133 static void
134 block_copy_attr(const ir_node *old_node, ir_node *new_node) {
135   ir_graph *irg = current_ir_graph;
136
137   default_copy_attr(old_node, new_node);
138   new_node->attr.block.cg_backedge = NULL;
139   new_node->attr.block.backedge = new_backedge_arr(irg->obst, get_irn_arity(new_node));
140   INIT_LIST_HEAD(&new_node->attr.block.succ_head);
141 }  /* block_copy_attr */
142
143 /**
144  * Copies all phi attributes stored in old node to the new node
145  */
146 static void
147 phi_copy_attr(const ir_node *old_node, ir_node *new_node) {
148   ir_graph *irg = current_ir_graph;
149
150   default_copy_attr(old_node, new_node);
151   new_node->attr.phi_backedge = new_backedge_arr(irg->obst, get_irn_arity(new_node));
152 }
153
154 /**
155  * Copies all filter attributes stored in old node to the new node
156  */
157 static void
158 filter_copy_attr(const ir_node *old_node, ir_node *new_node) {
159   ir_graph *irg = current_ir_graph;
160
161   default_copy_attr(old_node, new_node);
162   new_node->attr.filter.backedge = new_backedge_arr(irg->obst, get_irn_arity(new_node));
163 }
164
165 /**
166  * Sets the default copy_attr operation for an ir_ops
167  *
168  * @param code   the opcode for the default operation
169  * @param ops    the operations initialized
170  *
171  * @return
172  *    The operations.
173  */
174 static ir_op_ops *firm_set_default_copy_attr(ir_opcode code, ir_op_ops *ops) {
175   if (code == iro_Call)
176     ops->copy_attr = call_copy_attr;
177   else if (code == iro_Block)
178     ops->copy_attr = block_copy_attr;
179   else if (code == iro_Phi)
180     ops->copy_attr = phi_copy_attr;
181   else if (code == iro_Filter)
182     ops->copy_attr = filter_copy_attr;
183   else {
184     /* not allowed to be NULL */
185     if (! ops->copy_attr)
186       ops->copy_attr = default_copy_attr;
187   }
188   return ops;
189 }  /* firm_set_default_copy_attr */
190
191 /* Creates a new ir operation. */
192 ir_op *
193 new_ir_op(ir_opcode code, const char *name, op_pin_state p,
194           unsigned flags, op_arity opar, int op_index, size_t attr_size,
195           const ir_op_ops *ops)
196 {
197   ir_op *res;
198
199   res = (ir_op *)xmalloc(sizeof(*res));
200   memset(res, 0, sizeof(*res));
201
202   res->code      = code;
203   res->name      = new_id_from_chars(name, strlen(name));
204   res->op_pin_state_pinned = p;
205   res->attr_size = attr_size;
206   res->flags     = flags;
207   res->opar      = opar;
208   res->op_index  = op_index;
209   res->tag       = NULL;
210
211   if (ops)
212     memcpy(&res->ops, ops, sizeof(res->ops));
213   else /* no given ops, set all operations to NULL */
214     memset(&res->ops, 0, sizeof(res->ops));
215
216   firm_set_default_operations(code, &res->ops);
217   firm_set_default_copy_attr(code, &res->ops);
218   firm_set_default_verifyer(code, &res->ops);
219   firm_set_default_reassoc(code, &res->ops);
220
221   add_irp_opcode(res);
222
223   hook_new_ir_op(res);
224   return res;
225 }  /* new_ir_op */
226
227 void free_ir_op(ir_op *code) {
228   hook_free_ir_op(code);
229
230   remove_irp_opcode(code);
231   free(code);
232 }  /* free_ir_op */
233
234 void
235 init_op(void)
236 {
237 #define N   irop_flag_none
238 #define L   irop_flag_labeled
239 #define C   irop_flag_commutative
240 #define X   irop_flag_cfopcode
241 #define I   irop_flag_ip_cfopcode
242 #define F   irop_flag_fragile
243 #define Y   irop_flag_forking
244 #define H   irop_flag_highlevel
245 #define c   irop_flag_constlike
246 #define K   irop_flag_keep
247 #define S   irop_flag_start_block
248
249   /* Caution: A great deal of Firm optimizations depend an right operations flags. */
250   op_Block     = new_ir_op(iro_Block,     "Block",     op_pin_state_pinned, L,       oparity_variable, -1, sizeof(block_attr), NULL);
251
252   op_Start     = new_ir_op(iro_Start,     "Start",     op_pin_state_pinned, X,       oparity_zero,     -1, 0, NULL);
253   op_End       = new_ir_op(iro_End,       "End",       op_pin_state_pinned, X,       oparity_dynamic,  -1, 0, NULL);
254   op_Jmp       = new_ir_op(iro_Jmp,       "Jmp",       op_pin_state_pinned, X,       oparity_zero,     -1, 0, NULL);
255   op_IJmp      = new_ir_op(iro_IJmp,      "IJmp",      op_pin_state_pinned, X|K,     oparity_unary,    -1, 0, NULL);
256   op_Cond      = new_ir_op(iro_Cond,      "Cond",      op_pin_state_pinned, X|Y,     oparity_any,      -1, sizeof(cond_attr), NULL);
257   op_Return    = new_ir_op(iro_Return,    "Return",    op_pin_state_pinned, X,       oparity_zero,     -1, 0, NULL);
258
259   op_Const     = new_ir_op(iro_Const,     "Const",     op_pin_state_floats, c|S,     oparity_zero,     -1, sizeof(const_attr), NULL);
260   op_SymConst  = new_ir_op(iro_SymConst,  "SymConst",  op_pin_state_floats, c|S,     oparity_zero,     -1, sizeof(symconst_attr), NULL);
261
262   op_Sel       = new_ir_op(iro_Sel,       "Sel",       op_pin_state_floats, H,       oparity_any,      -1, sizeof(sel_attr), NULL);
263
264   op_Call      = new_ir_op(iro_Call,      "Call",      op_pin_state_mem_pinned, F,   oparity_variable, -1, sizeof(call_attr), NULL);
265   op_Add       = new_ir_op(iro_Add,       "Add",       op_pin_state_floats, C,       oparity_binary,    0, 0, NULL);
266   op_Minus     = new_ir_op(iro_Minus,     "Minus",     op_pin_state_floats, N,       oparity_unary,     0, 0, NULL);
267   op_Sub       = new_ir_op(iro_Sub,       "Sub",       op_pin_state_floats, N,       oparity_binary,    0, 0, NULL);
268   op_Mul       = new_ir_op(iro_Mul,       "Mul",       op_pin_state_floats, C,       oparity_binary,    0, 0, NULL);
269   op_Quot      = new_ir_op(iro_Quot,      "Quot",      op_pin_state_exc_pinned, F,   oparity_binary,    1, sizeof(except_attr), NULL);
270   op_DivMod    = new_ir_op(iro_DivMod,    "DivMod",    op_pin_state_exc_pinned, F,   oparity_binary,    1, sizeof(except_attr), NULL);
271   op_Div       = new_ir_op(iro_Div,       "Div",       op_pin_state_exc_pinned, F,   oparity_binary,    1, sizeof(except_attr), NULL);
272   op_Mod       = new_ir_op(iro_Mod,       "Mod",       op_pin_state_exc_pinned, F,   oparity_binary,    1, sizeof(except_attr), NULL);
273   op_Abs       = new_ir_op(iro_Abs,       "Abs",       op_pin_state_floats, N,       oparity_unary,     0, 0, NULL);
274   op_And       = new_ir_op(iro_And,       "And",       op_pin_state_floats, C,       oparity_binary,    0, 0, NULL);
275   op_Or        = new_ir_op(iro_Or,        "Or",        op_pin_state_floats, C,       oparity_binary,    0, 0, NULL);
276   op_Eor       = new_ir_op(iro_Eor,       "Eor",       op_pin_state_floats, C,       oparity_binary,    0, 0, NULL);
277   op_Not       = new_ir_op(iro_Not,       "Not",       op_pin_state_floats, N,       oparity_unary,     0, 0, NULL);
278   op_Cmp       = new_ir_op(iro_Cmp,       "Cmp",       op_pin_state_floats, N,       oparity_binary,    0, 0, NULL);
279   op_Shl       = new_ir_op(iro_Shl,       "Shl",       op_pin_state_floats, N,       oparity_binary,    0, 0, NULL);
280   op_Shr       = new_ir_op(iro_Shr,       "Shr",       op_pin_state_floats, N,       oparity_binary,    0, 0, NULL);
281   op_Shrs      = new_ir_op(iro_Shrs,      "Shrs",      op_pin_state_floats, N,       oparity_binary,    0, 0, NULL);
282   op_Rot       = new_ir_op(iro_Rot,       "Rot",       op_pin_state_floats, N,       oparity_binary,    0, 0, NULL);
283   op_Conv      = new_ir_op(iro_Conv,      "Conv",      op_pin_state_floats, N,       oparity_unary,     0, sizeof(conv_attr), NULL);
284   op_Cast      = new_ir_op(iro_Cast,      "Cast",      op_pin_state_floats, N|H,     oparity_unary,     0, sizeof(cast_attr), NULL);
285   op_Carry     = new_ir_op(iro_Carry,     "Carry",     op_pin_state_floats, C,       oparity_binary,    0, 0, NULL);
286   op_Borrow    = new_ir_op(iro_Borrow,    "Borrow",    op_pin_state_floats, N,       oparity_binary,    0, 0, NULL);
287
288   op_Phi       = new_ir_op(iro_Phi,       "Phi",       op_pin_state_pinned, N,       oparity_variable, -1, sizeof(int), NULL);
289
290   op_Load      = new_ir_op(iro_Load,      "Load",      op_pin_state_exc_pinned, F,   oparity_any,      -1, sizeof(load_attr), NULL);
291   op_Store     = new_ir_op(iro_Store,     "Store",     op_pin_state_exc_pinned, F,   oparity_any,      -1, sizeof(store_attr), NULL);
292   op_Alloc     = new_ir_op(iro_Alloc,     "Alloc",     op_pin_state_pinned, F,       oparity_any,      -1, sizeof(alloc_attr), NULL);
293   op_Free      = new_ir_op(iro_Free,      "Free",      op_pin_state_pinned, N,       oparity_any,      -1, sizeof(free_attr), NULL);
294   op_Sync      = new_ir_op(iro_Sync,      "Sync",      op_pin_state_pinned, N,       oparity_any,      -1, 0, NULL);
295
296   op_Proj      = new_ir_op(iro_Proj,      "Proj",      op_pin_state_floats, N,       oparity_any,      -1, sizeof(long), NULL);
297   op_Tuple     = new_ir_op(iro_Tuple,     "Tuple",     op_pin_state_floats, L,       oparity_variable, -1, 0, NULL);
298   op_Id        = new_ir_op(iro_Id,        "Id",        op_pin_state_floats, N,       oparity_any,      -1, 0, NULL);
299   op_Bad       = new_ir_op(iro_Bad,       "Bad",       op_pin_state_pinned, X|F|S,   oparity_zero,     -1, 0, NULL);
300   op_Confirm   = new_ir_op(iro_Confirm,   "Confirm",   op_pin_state_pinned, H,       oparity_any,      -1, sizeof(confirm_attr), NULL);
301
302   op_Unknown   = new_ir_op(iro_Unknown,   "Unknown",   op_pin_state_pinned, X|F|S,   oparity_zero,     -1, 0, NULL);
303   op_Filter    = new_ir_op(iro_Filter,    "Filter",    op_pin_state_pinned, N,       oparity_variable, -1, sizeof(filter_attr), NULL);
304   op_Break     = new_ir_op(iro_Break,     "Break",     op_pin_state_pinned, X,       oparity_zero,     -1, 0, NULL);
305   op_CallBegin = new_ir_op(iro_CallBegin, "CallBegin", op_pin_state_pinned, X|I,     oparity_any,      -1, sizeof(callbegin_attr), NULL);
306   op_EndReg    = new_ir_op(iro_EndReg,    "EndReg",    op_pin_state_pinned, X|I,     oparity_any,      -1, sizeof(end_attr), NULL);
307   op_EndExcept = new_ir_op(iro_EndExcept, "EndExcept", op_pin_state_pinned, X|I,     oparity_any,      -1, sizeof(end_attr), NULL);
308
309   op_NoMem     = new_ir_op(iro_NoMem,     "NoMem",     op_pin_state_pinned, N,       oparity_zero,     -1, 0, NULL);
310   op_Mux       = new_ir_op(iro_Mux,       "Mux",       op_pin_state_floats, N,       oparity_trinary,  -1, 0, NULL);
311   op_Psi       = new_ir_op(iro_Psi,       "Psi",       op_pin_state_floats, N,       oparity_variable, -1, 0, NULL);
312   op_CopyB     = new_ir_op(iro_CopyB,     "CopyB",     op_pin_state_mem_pinned, F|H, oparity_trinary,  -1, sizeof(copyb_attr), NULL);
313
314   op_InstOf    = new_ir_op(iro_InstOf,    "InstOf",    op_pin_state_mem_pinned, H,   oparity_unary,    -1, sizeof(io_attr), NULL);
315   op_Raise     = new_ir_op(iro_Raise,     "Raise",     op_pin_state_pinned,     H|X, oparity_any,      -1, 0, NULL);
316   op_Bound     = new_ir_op(iro_Bound,     "Bound",     op_pin_state_exc_pinned, F|H, oparity_trinary,  -1, sizeof(bound_attr), NULL);
317
318   op_Pin       = new_ir_op(iro_Pin,       "Pin",       op_pin_state_pinned, H,       oparity_unary,    -1, 0, NULL);
319
320 #undef S
321 #undef H
322 #undef Y
323 #undef F
324 #undef I
325 #undef X
326 #undef C
327 #undef L
328 }  /* init_op */
329
330
331 /* free memory used by irop module. */
332 void finish_op(void) {
333   free_ir_op (op_Block    ); op_Block     = NULL;
334
335   free_ir_op (op_Start    ); op_Start     = NULL;
336   free_ir_op (op_End      ); op_End       = NULL;
337   free_ir_op (op_Jmp      ); op_Jmp       = NULL;
338   free_ir_op (op_Cond     ); op_Cond      = NULL;
339   free_ir_op (op_Return   ); op_Return    = NULL;
340
341   free_ir_op (op_Const    ); op_Const     = NULL;
342   free_ir_op (op_SymConst ); op_SymConst  = NULL;
343
344   free_ir_op (op_Sel      ); op_Sel       = NULL;
345
346   free_ir_op (op_Call     ); op_Call      = NULL;
347   free_ir_op (op_Add      ); op_Add       = NULL;
348   free_ir_op (op_Minus    ); op_Minus     = NULL;
349   free_ir_op (op_Sub      ); op_Sub       = NULL;
350   free_ir_op (op_Mul      ); op_Mul       = NULL;
351   free_ir_op (op_Quot     ); op_Quot      = NULL;
352   free_ir_op (op_DivMod   ); op_DivMod    = NULL;
353   free_ir_op (op_Div      ); op_Div       = NULL;
354   free_ir_op (op_Mod      ); op_Mod       = NULL;
355   free_ir_op (op_Abs      ); op_Abs       = NULL;
356   free_ir_op (op_And      ); op_And       = NULL;
357   free_ir_op (op_Or       ); op_Or        = NULL;
358   free_ir_op (op_Eor      ); op_Eor       = NULL;
359   free_ir_op (op_Not      ); op_Not       = NULL;
360   free_ir_op (op_Cmp      ); op_Cmp       = NULL;
361   free_ir_op (op_Shl      ); op_Shl       = NULL;
362   free_ir_op (op_Shr      ); op_Shr       = NULL;
363   free_ir_op (op_Shrs     ); op_Shrs      = NULL;
364   free_ir_op (op_Rot      ); op_Rot       = NULL;
365   free_ir_op (op_Conv     ); op_Conv      = NULL;
366   free_ir_op (op_Cast     ); op_Cast      = NULL;
367   free_ir_op (op_Carry    ); op_Carry     = NULL;
368   free_ir_op (op_Borrow   ); op_Borrow    = NULL;
369
370   free_ir_op (op_Phi      ); op_Phi       = NULL;
371
372   free_ir_op (op_Load     ); op_Load      = NULL;
373   free_ir_op (op_Store    ); op_Store     = NULL;
374   free_ir_op (op_Alloc    ); op_Alloc     = NULL;
375   free_ir_op (op_Free     ); op_Free      = NULL;
376   free_ir_op (op_Sync     ); op_Sync      = NULL;
377
378   free_ir_op (op_Proj     ); op_Proj      = NULL;
379   free_ir_op (op_Tuple    ); op_Tuple     = NULL;
380   free_ir_op (op_Id       ); op_Id        = NULL;
381   free_ir_op (op_Bad      ); op_Bad       = NULL;
382   free_ir_op (op_Confirm  ); op_Confirm   = NULL;
383
384   free_ir_op (op_Unknown  ); op_Unknown   = NULL;
385   free_ir_op (op_Filter   ); op_Filter    = NULL;
386   free_ir_op (op_Break    ); op_Break     = NULL;
387   free_ir_op (op_CallBegin); op_CallBegin = NULL;
388   free_ir_op (op_EndReg   ); op_EndReg    = NULL;
389   free_ir_op (op_EndExcept); op_EndExcept = NULL;
390
391   free_ir_op (op_NoMem    ); op_NoMem     = NULL;
392   free_ir_op (op_Psi      ); op_Psi       = NULL;
393   free_ir_op (op_Mux      ); op_Mux       = NULL;
394   free_ir_op (op_CopyB    ); op_CopyB     = NULL;
395
396   free_ir_op (op_InstOf   ); op_InstOf    = NULL;
397   free_ir_op (op_Raise    ); op_Raise     = NULL;
398   free_ir_op (op_Bound    ); op_Bound     = NULL;
399
400   free_ir_op (op_Pin      ); op_Pin       = NULL;
401 }
402
403 /* Returns the string for the opcode. */
404 const char *get_op_name (const ir_op *op) {
405   return get_id_str(op->name);
406 }  /* get_op_name */
407
408 ir_opcode (get_op_code)(const ir_op *op){
409   return _get_op_code(op);
410 }  /* get_op_code */
411
412 ident *(get_op_ident)(const ir_op *op){
413   return _get_op_ident(op);
414 }  /* get_op_ident */
415
416 const char *get_op_pin_state_name(op_pin_state s) {
417   switch(s) {
418 #define XXX(s) case s: return #s
419   XXX(op_pin_state_floats);
420   XXX(op_pin_state_pinned);
421   XXX(op_pin_state_exc_pinned);
422   XXX(op_pin_state_mem_pinned);
423 #undef XXX
424   }
425   return "<none>";
426 }  /* get_op_pin_state_name */
427
428 op_pin_state (get_op_pinned)(const ir_op *op) {
429   return _get_op_pinned(op);
430 }  /* get_op_pinned */
431
432 /* Sets op_pin_state_pinned in the opcode.  Setting it to floating has no effect
433    for Phi, Block and control flow nodes. */
434 void set_op_pinned(ir_op *op, op_pin_state op_pin_state_pinned) {
435   if (op == op_Block || op == op_Phi || is_cfopcode(op)) return;
436   op->op_pin_state_pinned = op_pin_state_pinned;
437 }  /* set_op_pinned */
438
439 /* retrieve the next free opcode */
440 unsigned get_next_ir_opcode(void) {
441   return next_iro++;
442 }  /* get_next_ir_opcode */
443
444 /* Returns the next free n IR opcode number, allows to register a bunch of user ops */
445 unsigned get_next_ir_opcodes(unsigned num) {
446   unsigned base = next_iro;
447   next_iro += num;
448   return base;
449 }  /* get_next_ir_opcodes */
450
451 /* Returns the generic function pointer from an ir operation. */
452 op_func (get_generic_function_ptr)(const ir_op *op) {
453   return _get_generic_function_ptr(op);
454 }  /* get_generic_function_ptr */
455
456 /* Store a generic function pointer into an ir operation. */
457 void (set_generic_function_ptr)(ir_op *op, op_func func) {
458   _set_generic_function_ptr(op, func);
459 }  /* set_generic_function_ptr */
460
461 /* Returns the ir_op_ops of an ir_op. */
462 const ir_op_ops *(get_op_ops)(const ir_op *op) {
463   return _get_op_ops(op);
464 }  /* get_op_ops */