Remove the unused function get_irn_pred_pos().
[libfirm] / include / libfirm / irnode.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   Representation of an intermediate operation.
23  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Michael Beck
24  */
25 #ifndef FIRM_IR_IRNODE_H
26 #define FIRM_IR_IRNODE_H
27
28 #include <stddef.h>
29
30 #include "firm_common.h"
31 #include "typerep.h"
32 #include "irop.h"
33 #include "irmode.h"
34 #include "begin.h"
35 #include "nodeops.h"
36
37 /**
38  * @ingroup ir_graph
39  * @defgroup ir_node Nodes
40  *
41  * ir_node - a datatype representing a Firm node
42  *
43  *  The common fields are:
44  *
45  *  - arity     - The number of predecessors in the Firm graph.
46  *  - in        - A list with the predecessors in the Firm graph.  There are
47  *                routines to access individual elements and to obtain the
48  *                array.  The method returning the array should not be used.
49  *  - mode      - The mode of the node.  There are routines to get the mode
50  *                but also to access the mode's fields directly.
51  *  - opcode    - The opcode of the node. There are routines to get the opcode
52  *                but also to access the opcode's fields directly.
53  *  - node_nr   - A unique number for the node.  Available only if debugging
54  *                is turned on.
55  * @{
56  */
57
58 /**
59  * Checks whether a pointer points to a ir node. This is guessed by looking
60  * at the few bytes of the thing. Most things used in firm have a firm_kind
61  * attribute there. This function might falsely return true though for things
62  * without a firm_kind at the beginning.
63  *
64  * @param thing   an arbitrary pointer
65  * @return        non-zero if the thing is a ir mode, else zero
66  */
67 FIRM_API int is_ir_node(const void *thing);
68
69 /**
70  * Returns the number of predecessors without the block predecessor.
71  *
72  * @param node   the IR-node
73  */
74 FIRM_API int get_irn_arity(const ir_node *node);
75
76 /**
77  * Returns the n-th predecessor of a node.
78  * This function removes Id predecessors.
79  */
80 FIRM_API ir_node *get_irn_n(const ir_node *node, int n);
81
82 /**
83  * Replaces the old in array by a new one that will contain the ins given in
84  * the parameters. Conserves the block predecessor. It copies the array passed.
85  * This function is necessary to adjust in arrays of blocks, calls and phis.
86  * Assumes that current_ir_graph is set to the graph containing "node".
87  * "in" must contain all predecessors except the block that are required for
88  * the nodes opcode. */
89 FIRM_API void set_irn_in(ir_node *node, int arity, ir_node *in[]);
90
91 /**
92  * Add an artificial dependency to the node.
93  *
94  * @param node The node.
95  * @param dep  The dependency target.
96  */
97 FIRM_API void add_irn_dep(ir_node *node, ir_node *dep);
98
99 /**
100  * Copy all dependencies from a node to another.
101  * This is only allowed in phase_backend!
102  *
103  * @param tgt The node which should be enriched.
104  * @param src The node whose dependencies shall be copied.
105  */
106 FIRM_API void add_irn_deps(ir_node *tgt, ir_node *src);
107
108 /**
109  * Returns the length of the dependency array.
110  * @param node The node.
111  * @return The length of the dependency array or 0 if it has not yet been allocated.
112  */
113 FIRM_API int get_irn_deps(const ir_node *node);
114
115 /**
116  * Returns an entry of the dependency array.
117  * @param node The node.
118  * @param pos  The position.
119  * @return The node at that position.
120  */
121 FIRM_API ir_node *get_irn_dep(const ir_node *node, int pos);
122
123 /**
124  * Sets an entry of the dependency array.
125  * @param node The node.
126  * @param pos  The position.
127  * @param dep  The dependency target.
128  */
129 FIRM_API void set_irn_dep(ir_node *node, int pos, ir_node *dep);
130
131 /**
132  * Deletes the entry of the dependency array, that points to dep. Does nothing
133  * if no dependency exists.
134  *
135  * @param node the node to delete the dependency at
136  * @param dep the target of the dependency to delete
137  */
138 FIRM_API void delete_irn_dep(ir_node *node, ir_node *dep);
139
140 /** Replaces the n-th predecessor of a node with a new one. */
141 FIRM_API void set_irn_n(ir_node *node, int n, ir_node *in);
142 /**
143  * Appends a new predecessor to a node. This only works for nodes with
144  * variable arity!
145  * @returns   the number of the new input
146  */
147 FIRM_API int add_irn_n(ir_node *node, ir_node *in);
148 /** Sets the mode struct of node.  */
149 FIRM_API void set_irn_mode(ir_node *node, ir_mode *mode);
150 /** Returns the mode struct of a node.  */
151 FIRM_API ir_mode *get_irn_mode(const ir_node *node);
152 /** Returns the opcode struct of the node. */
153 FIRM_API ir_op *get_irn_op(const ir_node *node);
154 /** Sets the opcode struct of the node. */
155 FIRM_API void set_irn_op(ir_node *node, ir_op *op);
156 /** Returns the opcode-enum of the node. */
157 FIRM_API unsigned get_irn_opcode(const ir_node *node);
158 /** Returns the string representation of the opcode. */
159 FIRM_API const char *get_irn_opname(const ir_node *node);
160 /** Returns the ident for a string representation of the opcode. */
161 FIRM_API ident *get_irn_opident(const ir_node *node);
162 /** Returns the visited counter of a node. */
163 FIRM_API ir_visited_t get_irn_visited(const ir_node *node);
164 /** Sets the visited counter of a node. */
165 FIRM_API void set_irn_visited(ir_node *node, ir_visited_t visited);
166 /** Sets visited to get_irg_visited(current_ir_graph). */
167 FIRM_API void mark_irn_visited(ir_node *node);
168 /** Returns 1 if visited >= get_irg_visited(current_ir_graph). */
169 FIRM_API int irn_visited(const ir_node *node);
170 /** Returns 1 if visited >= get_irg_visited(current_ir_graph). Marks the node
171  * visited, if it was not. */
172 FIRM_API int irn_visited_else_mark(ir_node *node);
173
174 /**
175  * Sets the link of a node.
176  * Only allowed if the graph is NOT in phase_building.
177  */
178 FIRM_API void set_irn_link(ir_node *node, void *link);
179
180 /** Returns the link of a node.  */
181 FIRM_API void *get_irn_link(const ir_node *node);
182
183 /** Returns the ir_graph this node belongs to. */
184 FIRM_API ir_graph *get_irn_irg(const ir_node *node);
185
186 /** Outputs a unique number for this node if libFIRM is compiled for
187    debugging, (configure with --enable-debug) else returns address
188    of node cast to long. */
189 FIRM_API long get_irn_node_nr(const ir_node *node);
190
191 /** Returns the pinned state of a node.
192  *
193  *  Returns whether the node _always_ must be pinned.
194  *  I.e., the node is not floating after global cse.
195  *
196  * @returns Either state op_pin_state_pinned or op_pin_state_floats.
197  */
198 FIRM_API op_pin_state get_irn_pinned(const ir_node *node);
199
200 /** Sets pin state for nodes with op pin state op_pin_state_exc_pinned */
201 FIRM_API void set_irn_pinned(ir_node *node, op_pin_state state);
202
203 /** Returns whether the node is currently pinned.
204  *
205  * If get_irn_pinned returns op_pin_state_floats and the graph the
206  * node belongs to is in state op_poin_state_floats then this function
207  * returns 'floats', else 'pinned'.
208  */
209 FIRM_API op_pin_state is_irn_pinned_in_irg(const ir_node *node);
210
211 /**
212  * IR node constructor.
213  * Create a new IR node in irg, with an op, mode, arity and
214  * some incoming IR nodes.
215  * This constructor is used in every specific IR node constructor.
216  *
217  * @param db    Debug info.
218  * @param irg   IR-graph on with this new node should be constructed.
219  * @param block The block the new node belongs to
220  * @param op    The opcode of the new node.
221  * @param mode  The mode of the new node.
222  * @param arity The arity of the new node, <0 if can be changed dynamically.
223  * @param in    An array of arity predecessor nodes.
224  */
225 FIRM_API ir_node *new_ir_node(dbg_info *db, ir_graph *irg, ir_node *block,
226                               ir_op *op, ir_mode *mode,
227                               int arity, ir_node *const *in);
228
229 /**
230  * @addtogroup Block
231  * @{
232  */
233
234 /**
235  * Returns the block the node belongs to.  This is only
236  * possible for pinned nodes or if the graph is in pinned state.
237  * Otherwise the block may be incorrect.  This condition is
238  * now checked by an assertion.
239  *
240  * This works for all except Block.  It can return Blocks or the Bad node.
241  *
242  * To express the difference to access routines that work for all
243  * nodes we use infix "nodes" and do not name this function
244  * get_irn_block(). */
245 FIRM_API ir_node *get_nodes_block(const ir_node *node);
246
247 /** Sets the Block of a node. */
248 FIRM_API void set_nodes_block(ir_node *node, ir_node *block);
249
250 /** Returns the number of control flow predecessors of a block. */
251 FIRM_API int get_Block_n_cfgpreds(const ir_node *block);
252 /** Returns the control flow predecessor of a block at a given position. */
253 FIRM_API ir_node *get_Block_cfgpred(const ir_node *block, int pos);
254 /** Sets the control flow predecessor of a block at a given position. */
255 FIRM_API void set_Block_cfgpred(ir_node *block, int pos, ir_node *pred);
256
257 /**
258  * Returns the position of the predecessor block pred in the inputs
259  * of the block block.
260  *
261  * @param block  the block
262  * @param pred   a predecessor block of block
263  *
264  * @return the position of pred in block or -1
265  */
266 FIRM_API int get_Block_cfgpred_pos(const ir_node *block, const ir_node *pred);
267
268 /** Returns the predecessor block.
269  *
270  *  Returns the block corresponding to the predecessor pos of block.
271  *
272  *  There are several ambiguities we resolve with this function:
273  *  - The direct predecessor can be a Proj, which is not pinned.
274  *    We walk from the predecessor to the next pinned node
275  *    (skip_Proj) and return the block that node is in.
276  *  - If we encounter the Bad node, this function does not return
277  *    Start block, but the Bad node.
278  */
279 FIRM_API ir_node *get_Block_cfgpred_block(const ir_node *node, int pos);
280
281 /** Returns the matured flag of a block */
282 FIRM_API int get_Block_matured(const ir_node *block);
283 /** set the matured flag of a block. */
284 FIRM_API void set_Block_matured(ir_node *block, int matured);
285
286 /** A visited flag only for block nodes.
287  *  @see also: get_irn_visited() inc_irg_visited() inc_irg_block_visited()*/
288 FIRM_API ir_visited_t get_Block_block_visited(const ir_node *block);
289 /** set block visited flag */
290 FIRM_API void set_Block_block_visited(ir_node *block, ir_visited_t visit);
291
292 /** Marks a block as visited by setting its visited counter */
293 FIRM_API void mark_Block_block_visited(ir_node *node);
294 /** Returns 1 if a block is marked as visited */
295 FIRM_API int Block_block_visited(const ir_node *node);
296
297 /** Returns the ir_graph this Block belongs to. */
298 FIRM_API ir_graph *get_Block_irg(const ir_node *block);
299 /** Returns the entity for a Block (creating it if necessary) */
300 FIRM_API ir_entity *create_Block_entity(ir_node *block);
301 /** Returns the head of the Phi list for this block. */
302 FIRM_API ir_node *get_Block_phis(const ir_node *block);
303 /** Sets the head of the Phi list for this block. */
304 FIRM_API void set_Block_phis(ir_node *block, ir_node *phi);
305 /** Add a Phi node to the list of Block Phi's. */
306 FIRM_API void add_Block_phi(ir_node *block, ir_node *phi);
307 /** Returns the Block mark (single bit). */
308 FIRM_API unsigned get_Block_mark(const ir_node *block);
309 /** Sets the Block mark (single bit). */
310 FIRM_API void set_Block_mark(ir_node *block, unsigned mark);
311
312 /** @} */
313
314 /** Tests whether arbitrary node is frame pointer.
315  *
316  * Tests whether arbitrary node is frame pointer, i.e. Proj(pn_Start_P_frame_base)
317  * from Start.  If so returns frame type, else Null. */
318 FIRM_API ir_type *is_frame_pointer(const ir_node *n);
319
320 /** @addtogroup End
321  * @{
322  */
323
324 /** Returns the number of Keep alive node. */
325 FIRM_API int get_End_n_keepalives(const ir_node *end);
326 /** Returns the Keep alive node a position pos. */
327 FIRM_API ir_node *get_End_keepalive(const ir_node *end, int pos);
328 /** Keep alive dedicated nodes.  These must be either PhiM or Block nodes. */
329 FIRM_API void add_End_keepalive(ir_node *end, ir_node *ka);
330 /** Sets the Keep alive node at position pos. */
331 FIRM_API void set_End_keepalive(ir_node *end, int pos, ir_node *ka);
332
333 /**
334  * Sets new keep-alives.
335  * Beware: This might be an expensive operation if dynamic edges are enabled,
336  * so avoid it in the backend.
337  */
338 FIRM_API void set_End_keepalives(ir_node *end, int n, ir_node *in[]);
339
340 /** Removes irn from the keep-alive set. */
341 FIRM_API void remove_End_keepalive(ir_node *end, ir_node *irn);
342
343 /** Removes Bads, NoMem and doublets from the keep-alive set. */
344 FIRM_API void remove_End_Bads_and_doublets(ir_node *end);
345
346 /** Some parts of the End node are allocated separately -- their memory
347  * is not recovered by dead_node_elimination if a End node is dead.
348  * free_End() frees these data structures.
349  */
350 FIRM_API void free_End(ir_node *end);
351
352 /** @} */
353
354 /** @addtogroup Return
355  * @{
356  */
357
358 /** Returns return value inputs of Return node @p node as array. */
359 FIRM_API ir_node **get_Return_res_arr(ir_node *node);
360 /** Returns number of return value inputs of Return node @p node. */
361 FIRM_API size_t get_Return_n_ress(const ir_node *node);
362 /** Returns return value input @p pos of Return node @p node. */
363 FIRM_API ir_node *get_Return_res(const ir_node *node, int pos);
364 /** Sets return value input @p pos of Return node @p node to value @p res. */
365 FIRM_API void set_Return_res(ir_node *node, int pos, ir_node *res);
366
367 /** @} */
368
369 /** @addtogroup Const
370  * @{
371  */
372
373 /** Returns non-zero if the given Const node represents the 0 constant. */
374 FIRM_API int is_Const_null(const ir_node *node);
375
376 /** Returns non-zero if the given Const node represents the 1 constant. */
377 FIRM_API int is_Const_one(const ir_node *node);
378
379 /** Returns non-zero if the given Const node represents the constant with all bits set. */
380 FIRM_API int is_Const_all_one(const ir_node *node);
381
382 /** @} */
383
384 /**
385  * @addtogroup SymConst
386  * @{
387  */
388
389 /**
390  * Returns true if node is a SymConst node with kind symconst_addr_ent.
391  */
392 FIRM_API int is_SymConst_addr_ent(const ir_node *node);
393
394 /** Returns non-zero if s symconst kind has a type attribute */
395 #define SYMCONST_HAS_TYPE(kind) ((kind) <= symconst_type_align)
396
397 /** Returns non-zero if s symconst kind has an entity attribute */
398 #define SYMCONST_HAS_ENT(kind) ((kind) == symconst_addr_ent || (kind) == symconst_ofs_ent)
399
400 /** Returns non-zero if s symconst kind has an enum_const attribute */
401 #define SYMCONST_HAS_ENUM(kind) ((kind) == symconst_enum_const)
402
403 /** Returns the kind of the SymConst. */
404 FIRM_API symconst_kind get_SymConst_kind(const ir_node *node);
405 /** Sets the kind of the SymConst. */
406 FIRM_API void set_SymConst_kind(ir_node *node, symconst_kind num);
407
408 /** Returns the type attribute of SymConst node @p node.
409  * @note Only to access SymConst of kind type_siz, else assertion.
410  */
411 FIRM_API ir_type *get_SymConst_type(const ir_node *node);
412 /** Sets the type attribute of SymConst node @p node. */
413 FIRM_API void set_SymConst_type(ir_node *node, ir_type *tp);
414
415 /** Returns the entity attribute of SymConst node @p node.
416  * @note Only to access SymConst of kind addr_ent, else assertion.
417  */
418 FIRM_API ir_entity *get_SymConst_entity(const ir_node *node);
419 /** Sets the entity attribute of Symconst node @p node. */
420 FIRM_API void set_SymConst_entity(ir_node *node, ir_entity *ent);
421
422 /** Returns the enum attribute of SymConst node @p node.
423  * Only to access SymConst of kind symconst_enum_const, else assertion
424  */
425 FIRM_API ir_enum_const *get_SymConst_enum(const ir_node *node);
426 /** Sets the enum attribute of SymConst node @p node. */
427 FIRM_API void set_SymConst_enum(ir_node *node, ir_enum_const *ec);
428
429 /** Returns the symbol attribute of SymConst node @p node. */
430 FIRM_API union symconst_symbol get_SymConst_symbol(const ir_node *node);
431 /** Sets the symbol attribute of SymConst node @p node. */
432 FIRM_API void set_SymConst_symbol(ir_node *node, union symconst_symbol sym);
433
434 /** @} */
435
436 /** @addtogroup Sel
437  * @{
438  */
439
440 /** Returns index inputs of Sel node @p node as array. */
441 FIRM_API ir_node **get_Sel_index_arr(ir_node *node);
442 /** Returns number of index inputs of Sel node @p node. */
443 FIRM_API int get_Sel_n_indexs(const ir_node *node);
444 /** Returns value of index input @p pos of Sel node @p node. */
445 FIRM_API ir_node *get_Sel_index(const ir_node *node, int pos);
446 /** Sets @p index as index input @p pos of Sel node @p node. */
447 FIRM_API void set_Sel_index(ir_node *node, int pos, ir_node *index);
448
449 /** @} */
450
451 /** @addtogroup Call
452  * @{
453  */
454
455 /** Returns parameter inputs of Call node @p node as array. */
456 FIRM_API ir_node **get_Call_param_arr(ir_node *node);
457 /** Returns the number of parameters of a call. */
458 FIRM_API int get_Call_n_params(const ir_node *node);
459 /** Returns the call parameter at position pos. */
460 FIRM_API ir_node *get_Call_param(const ir_node *node, int pos);
461 /** Sets the call parameter at position pos. */
462 FIRM_API void set_Call_param(ir_node *node, int pos, ir_node *param);
463
464 /** Sets, get and remove the callee information for a Call node.
465  *
466  *  The callee information lists all method entities that can be called
467  *  from this node.  If the address expression can not be analyzed fully,
468  *  e.g., as entities can be called that are not in the compilation unit,
469  *  the array contains the unknown_entity.  The array contains only entities
470  *  with peculiarity_existent, but with all kinds of visibility.  The entities
471  *  not necessarily contain an irg.
472  *
473  *  The array is only accessible if callee information is valid.  See flag
474  *  in graph.
475  *
476  *  The memory allocated for the array is managed automatically, i.e., it must
477  *  not be freed if the Call node is removed from the graph.
478  *
479  *  @param node A Call node.
480  */
481 FIRM_API int Call_has_callees(const ir_node *node);
482 /** Returns the number of callees of Call node @p node. */
483 FIRM_API size_t get_Call_n_callees(const ir_node *node);
484 /** Returns callee number @p pos of Call node @p node. */
485 FIRM_API ir_entity *get_Call_callee(const ir_node *node, size_t pos);
486
487 /** Sets the full callee array.
488  *
489  *  The passed array is copied. Assumes current_ir_graph set properly! */
490 FIRM_API void set_Call_callee_arr(ir_node *node, size_t n, ir_entity **arr);
491 /** Frees callee array of call node @p node */
492 FIRM_API void remove_Call_callee_arr(ir_node *node);
493
494 /** @} */
495
496 /** @addtogroup Builtin
497  * @{
498  */
499
500 /** Returns the parameter inputs of Builtin node @p node as array. */
501 FIRM_API ir_node **get_Builtin_param_arr(ir_node *node);
502 /** Returns the number of parameters of a Builtin. */
503 FIRM_API int get_Builtin_n_params(const ir_node *node);
504 /** Returns the Builtin parameter at position pos. */
505 FIRM_API ir_node *get_Builtin_param(const ir_node *node, int pos);
506 /** Sets the Builtin parameter at position pos. */
507 FIRM_API void set_Builtin_param(ir_node *node, int pos, ir_node *param);
508
509 /** @} */
510
511 /** Returns a human readable string for the ir_builtin_kind. */
512 FIRM_API const char *get_builtin_kind_name(ir_builtin_kind kind);
513
514 /** Tests whether node is an unary operation (opcode arity is #oparity_unary)
515  * @returns 1 if @p node is an unary operation, 0 otherwise
516  */
517 FIRM_API int is_unop(const ir_node *node);
518 /** Returns (arithmetic) operand of unary operation @p node. */
519 FIRM_API ir_node *get_unop_op(const ir_node *node);
520 /** Sets (arithmetic) operand of unary operation @p node. */
521 FIRM_API void set_unop_op(ir_node *node, ir_node *op);
522
523 /** Tests whether node is a binary operation (opcode arity is #oparity_binary)
524  * @returns 1 if @p node is an binary operation, 0 otherwise
525  */
526 FIRM_API int is_binop(const ir_node *node);
527 /** Returns left operand of binary operation @p node. */
528 FIRM_API ir_node *get_binop_left(const ir_node *node);
529 /** Sets left operand of binary operation @p node. */
530 FIRM_API void set_binop_left(ir_node *node, ir_node *left);
531 /** Returns rights operand of binary operation @p node. */
532 FIRM_API ir_node *get_binop_right(const ir_node *node);
533 /** Sets right operand of binary operation @p node. */
534 FIRM_API void set_binop_right(ir_node *node, ir_node *right);
535
536 /**
537  * Tests whether a node is the X_except Proj of a fragile operation
538  */
539 FIRM_API int is_x_except_Proj(const ir_node *node);
540
541 /**
542  * Tests whether a node is the X_regular Proj of a fragile operation
543  */
544 FIRM_API int is_x_regular_Proj(const ir_node *node);
545
546 /**
547  * Sets throws exception attribute of a fragile node
548  * @p throws_exception must be 0 or 1
549  */
550 FIRM_API void ir_set_throws_exception(ir_node *node, int throws_exception);
551
552 /** Returns throws_exception attribute of a fragile node */
553 FIRM_API int ir_throws_exception(const ir_node *node);
554
555 /** Returns the name of an ir_relation */
556 FIRM_API const char *get_relation_string(ir_relation relation);
557
558 /** Calculates the negated (Complement(R)) relation, i.e. "<" --> ">=" */
559 FIRM_API ir_relation get_negated_relation(ir_relation relation);
560
561 /** Calculates the inversed (R^-1) relation, i.e., "<" --> ">" */
562 FIRM_API ir_relation get_inversed_relation(ir_relation relation);
563
564 /**
565  * @addtogroup Cast
566  * @{
567  */
568
569 /** Checks for upcast.
570  *
571  * Returns true if the Cast node casts a class type to a super type.
572  * Works also for pointers to classes (recursively).
573  *
574  * Needs typeinfo calculated.
575  */
576 FIRM_API int is_Cast_upcast(ir_node *node);
577
578 /** Checks for downcast.
579  *
580  * Returns true if the Cast node casts a class type to a sub type.
581  * Works also for pointers to classes (recursively).
582  *
583  * Needs typeinfo calculated.
584  */
585 FIRM_API int is_Cast_downcast(ir_node *node);
586
587 /** @} */
588
589 /**
590  * @addtogroup Phi
591  * @{
592  */
593
594 /**
595  * Returns all phi predecessors as array
596  */
597 FIRM_API ir_node **get_Phi_preds_arr(ir_node *node);
598 /**
599  * Returns number of predecessors of phi node @p node
600  */
601 FIRM_API int get_Phi_n_preds(const ir_node *node);
602 /**
603  * Returns the predecessor with number @p pos of phi node @p node.
604  * This is the value selected when control flow comes from predecessor @p pos
605  * of the containing basic block.
606  */
607 FIRM_API ir_node *get_Phi_pred(const ir_node *node, int pos);
608 /**
609  * Sets value @p pred as predecessor number @p pos of phi node @p node.
610  */
611 FIRM_API void set_Phi_pred(ir_node *node, int pos, ir_node *pred);
612 /**
613  * Returns the next element of a block phi list.
614  */
615 FIRM_API ir_node *get_Phi_next(const ir_node *phi);
616 /**
617  * Sets the next link of a block Phi list.
618  */
619 FIRM_API void set_Phi_next(ir_node *phi, ir_node *next);
620
621 /** @} */
622
623 /** Returns true if @p node is a memory operation.
624  *
625  * A memory operation is a node with an opcode that has irop_flag_uses_memory
626  * set. It is guaranteed to have (exactly) one memory input.
627  */
628 FIRM_API int is_memop(const ir_node *node);
629 /**
630  * Returns the memory input of a memory operation.
631  */
632 FIRM_API ir_node *get_memop_mem(const ir_node *node);
633 /**
634  * Sets the memory input of a memory operation.
635  */
636 FIRM_API void set_memop_mem(ir_node *node, ir_node *mem);
637
638 /** @addtogroup Sync
639  * @{
640  */
641
642 /** Returns all predecessors of Sync node @p node as array */
643 FIRM_API ir_node **get_Sync_preds_arr(ir_node *node);
644 /** Returns number of predecessors of Sync node @p node. */
645 FIRM_API int get_Sync_n_preds(const ir_node *node);
646 /** Returns predecessor number @p pos of Sync node @p node. */
647 FIRM_API ir_node *get_Sync_pred(const ir_node *node, int pos);
648 /** Sets value @p pred as predecessor number @p pos of Sync node @p node. */
649 FIRM_API void set_Sync_pred(ir_node *node, int pos, ir_node *pred);
650 /** Adds @p pred to predecessor list of Sync node @p node. */
651 FIRM_API void add_Sync_pred(ir_node *node, ir_node *pred);
652 /** Removes predecessor i from Sync n */
653 FIRM_API void del_Sync_n(ir_node *n, int i);
654
655 /** @} */
656
657 /**
658  * Returns non-zero if a node is a routine parameter.
659  *
660  * @param node  the Proj node to test
661  */
662 FIRM_API int is_arg_Proj(const ir_node *node);
663
664 /** @addtogroup Tuple
665  * @{
666  */
667
668 /** Returns all predecessors of Tuple node @p node as array. */
669 FIRM_API ir_node **get_Tuple_preds_arr(ir_node *node);
670 /** Returns number of predecessors of Tuple node @p node. */
671 FIRM_API int get_Tuple_n_preds(const ir_node *node);
672 /** Returns predecessor number @p pos of Tuple node @p node. */
673 FIRM_API ir_node  *get_Tuple_pred(const ir_node *node, int pos);
674 /** Sets value @p pred as predecessor number @p pos of Tuple node @p node. */
675 FIRM_API void set_Tuple_pred(ir_node *node, int pos, ir_node *pred);
676
677 /** @} */
678
679 /** @addtogroup ASM
680  * @{
681  */
682
683 /** Returns the number of input constraints for an ASM node. */
684 FIRM_API int get_ASM_n_inputs(const ir_node *node);
685 /** Returns input number @p pos of an ASM node. */
686 FIRM_API ir_node *get_ASM_input(const ir_node *node, int pos);
687 /** Returns the number of output constraints for an ASM node.  */
688 FIRM_API size_t get_ASM_n_output_constraints(const ir_node *node);
689 /** Returns the number of clobbered registers for an ASM node.  */
690 FIRM_API size_t get_ASM_n_clobbers(const ir_node *node);
691
692 /** @} */
693
694 /** Returns operand of node if node is a Proj. */
695 FIRM_API ir_node *skip_Proj(ir_node *node);
696 /** Returns operand of node if node is a Proj. */
697 FIRM_API const ir_node *skip_Proj_const(const ir_node *node);
698 /** Returns operand of node if node is a Id. */
699 FIRM_API ir_node *skip_Id(ir_node *node);
700 /** Returns corresponding operand of Tuple if node is a Proj from a Tuple. */
701 FIRM_API ir_node *skip_Tuple(ir_node *node);
702 /** Returns operand of node if node is a Cast. */
703 FIRM_API ir_node *skip_Cast(ir_node *node);
704 /** Returns operand of node if node is a Cast. */
705 FIRM_API const ir_node *skip_Cast_const(const ir_node *node);
706 /** Returns operand of node if node is a Pin. */
707 FIRM_API ir_node *skip_Pin(ir_node *node);
708 /** Returns operand of node if node is a Confirm */
709 FIRM_API ir_node *skip_Confirm(ir_node *node);
710 /** Skip all high-level Operations (including Cast, Confirm). */
711 FIRM_API ir_node *skip_HighLevel_ops(ir_node *node);
712 /** Returns true if the operation manipulates control flow */
713 FIRM_API int is_cfop(const ir_node *node);
714 /** Returns true if the operation jumps to an unknown destination.
715  * See irop_flag_unknown_jump for a detailed explanation */
716 FIRM_API int is_unknown_jump(const ir_node *node);
717
718 /**
719  * Returns true if the operation can change the control flow because
720  * of an exception: Call, Div, Mod, Load, Store, Alloc,
721  * Bad. Raise is not fragile, but a unconditional jump.
722  */
723 FIRM_API int is_fragile_op(const ir_node *node);
724
725 /** Returns true if the operation is a forking control flow
726  *  operation: Cond. */
727 FIRM_API int is_irn_forking(const ir_node *node);
728
729 /**
730  * Copies attributes stored in the old node to a new node.
731  * Assumes both have the same opcode and sufficient size.
732  *
733  * @param irg       The irg of the new_node (get_irn_irg on it might not work
734  *                  yet)
735  * @param old_node  the node where the attributes are copied from
736  * @param new_node  node the attributes get copies to.
737  *
738  * This copies all essential information to the new node. It does not copy
739  * temporal or calculated information like visited flags or results of dominance
740  * or loop calculations
741  */
742 FIRM_API void copy_node_attr(ir_graph *irg, const ir_node *old_node, ir_node *new_node);
743
744 /** Returns the type attribute of a node n (SymConst, Call, Alloc, Free,
745  *  Cast) or NULL.*/
746 FIRM_API ir_type *get_irn_type_attr(ir_node *n);
747
748 /** Returns the entity attribute of a node n (SymConst, Sel) or NULL. */
749 FIRM_API ir_entity *get_irn_entity_attr(ir_node *n);
750
751 /** Returns non-zero for constant-like nodes. */
752 FIRM_API int is_irn_constlike(const ir_node *node);
753
754 /**
755  * Returns non-zero for nodes that are allowed to have keep-alives and
756  * are neither Block nor PhiM.
757  */
758 FIRM_API int is_irn_keep(const ir_node *node);
759
760 /**
761  * Returns non-zero for nodes that are always placed in the start block.
762  */
763 FIRM_API int is_irn_start_block_placed(const ir_node *node);
764
765 /**
766  * Returns non-zero for nodes that are CSE neutral to its users.
767  */
768 FIRM_API int is_irn_cse_neutral(const ir_node *node);
769
770 /** Returns the string representation of the jump prediction. */
771 FIRM_API const char *get_cond_jmp_predicate_name(cond_jmp_predicate pred);
772
773 /**
774  * Returns a pointer to the node attributes.
775  * Used for accessing attributes of user-defined nodes.
776  */
777 FIRM_API void *get_irn_generic_attr(ir_node *node);
778 /**
779  * Returns a pointer to the node attributes.
780  * Used for accessing attributes of user-defined nodes.
781  */
782 FIRM_API const void *get_irn_generic_attr_const(const ir_node *node);
783
784 /**
785  * Returns the unique node index for the node in its graph.
786  * This index is used to access phase information for this node.
787  * @see get_idx_irn()
788  */
789 FIRM_API unsigned get_irn_idx(const ir_node *node);
790
791 /**
792  * Sets the debug information of a node.
793  *
794  * @param n   The node.
795  * @param db  The debug info.
796  */
797 FIRM_API void set_irn_dbg_info(ir_node *n, dbg_info *db);
798
799 /**
800  * Returns the debug information of an node.
801  *
802  * @param n   The node.
803  */
804 FIRM_API dbg_info *get_irn_dbg_info(const ir_node *n);
805
806 /**
807  * Returns a descriptive name of a node (containing type+number)
808  */
809 FIRM_API const char *gdb_node_helper(void *firm_object);
810
811 /**
812  * @addtogroup Switch
813  * @{
814  */
815
816 /**
817  * Creates a new switch_table datastructure with @p n_entries entries.
818  * The datastructure is allocated on the obstack of @p irg.
819  */
820 FIRM_API ir_switch_table *ir_new_switch_table(ir_graph *irg, size_t n_entries);
821
822 /**
823  * Returns number of entries available in switch table @p table.
824  */
825 FIRM_API size_t ir_switch_table_get_n_entries(const ir_switch_table *table);
826
827 /**
828  * Sets entry number @p entry in the switch table @p table.
829  * @param table  the switch table
830  * @param entry  entry number to set
831  * @param min    The minimum tarval that matches this entry
832  * @param max    The maximum tarval that matches this entry
833  * @param pn     Proj number taken on match
834  */
835 FIRM_API void ir_switch_table_set(ir_switch_table *table, size_t entry,
836                                   ir_tarval *min, ir_tarval *max, long pn);
837
838 /** Returns maximum tarval value of switch table entry @p entry */
839 FIRM_API ir_tarval *ir_switch_table_get_max(const ir_switch_table *table,
840                                             size_t entry);
841
842 /** Returns minimum tarval value of switch table entry @p entry */
843 FIRM_API ir_tarval *ir_switch_table_get_min(const ir_switch_table *table,
844                                             size_t entry);
845
846 /** Returns proj number taken if switch table entry @p entry matches */
847 FIRM_API long ir_switch_table_get_pn(const ir_switch_table *table, size_t entry);
848
849 /** Duplicates switch table @p table on obstack of @p irg */
850 FIRM_API ir_switch_table *ir_switch_table_duplicate(ir_graph *irg, const ir_switch_table *table);
851 /** @} */
852
853 /** @} */
854
855 #include "end.h"
856
857 #endif