32b92936225ab818a6cebf9a400bb302be42dbaf
[libfirm] / ir / common / irtools.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irtools.h
4  * Purpose:     Some often needed tool-functions
5  * Author:      Michael Beck
6  * Modified by:
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1999-2006 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12 #ifndef _FIRM_COMMON_IRTOOLS_H_
13 #define _FIRM_COMMON_IRTOOLS_H_
14
15 #include "firm_config.h"
16 #include "firm_types.h"
17
18 #ifdef WITH_LIBCORE
19 #include <libcore/lc_opts.h>
20 lc_opt_entry_t *firm_opt_get_root(void);
21 #endif
22
23 #undef MIN
24 #undef MAX
25 #define MAX(x, y) ((x) > (y) ? (x) : (y))
26 #define MIN(x, y) ((x) < (y) ? (x) : (y))
27
28 /**
29  * Three valued compare as demanded by e.g. qsort(3)
30  * @param c A number.
31  * @param d Another number.
32  * @return 0 if c == d, -1 if c < d, 1 if c > d.
33  */
34 #define QSORT_CMP(c, d) (((c) > (d)) - ((c) < (d)))
35
36
37 /**
38  * convert an integer into pointer
39  */
40 #define INT_TO_PTR(v)   ((void *)((char *)0 + (v)))
41
42 /**
43  * convert a pointer into an integer
44  */
45 #define PTR_TO_INT(v)   ((int)((char *)(v) - (char *)0))
46
47 /**
48  * The famous clear_link() walker-function.
49  * Do not implement it by yourself, use this one
50  */
51 void firm_clear_link(ir_node *n, void *env);
52
53 /**
54  * Copies a node to a new irg. The Ins of the new node point to
55  * the predecessors on the old irg.  n->link points to the new node.
56  *
57  * @param n    The node to be copied
58  * @param irg  the new irg
59  *
60  * Does NOT copy standard nodes like Start, End etc that are fixed
61  * in an irg. Instead, the corresponding nodes of the new irg are returned.
62  * Note further, that the new nodes have no block.
63  */
64 void copy_irn_to_irg(ir_node *n, ir_graph *irg);
65
66 /**
67  * Creates an exact copy of a node.
68  * The copy resists on the same graph in the same block.
69  *
70  * @param n   the node to copy
71  *
72  * @note If the copy is not changed, the next CSE operation will
73  *       replace it by the original, so beware.
74  */
75 ir_node *exact_copy(ir_node *n);
76
77 #endif /* _FIRM_COMMON_IRTOOLS_H_ */