a4b356cbaf66b852ba79c68c67a1f714cdab7618
[libfirm] / ir / ir / irop.c
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2 ** All rights reserved.
3 **
4 ** Authors: Christian Schaefer
5 **
6 */
7
8 # include "irop_t.h"
9 # include "irnode_t.h"
10 # include "misc.h"
11
12 ir_op *op_Block;
13
14 ir_op *op_Start;
15 ir_op *op_End;
16 ir_op *op_Jmp;
17 ir_op *op_Cond;
18 ir_op *op_Return;
19 ir_op *op_Raise;
20
21 ir_op *op_Sel;
22
23 ir_op *op_Const;
24 ir_op *op_SymConst;
25
26 ir_op *op_Call;
27 ir_op *op_Add;
28 ir_op *op_Sub;
29 ir_op *op_Minus;
30 ir_op *op_Mul;
31 ir_op *op_Quot;
32 ir_op *op_DivMod;
33 ir_op *op_Div;
34 ir_op *op_Mod;
35 ir_op *op_Abs;
36 ir_op *op_And;
37 ir_op *op_Or;
38 ir_op *op_Eor;
39 ir_op *op_Not;
40 ir_op *op_Cmp;
41 ir_op *op_Shl;
42 ir_op *op_Shr;
43 ir_op *op_Shrs;
44 ir_op *op_Rot;
45 ir_op *op_Conv;
46
47 ir_op *op_Phi;
48
49 ir_op *op_Load;
50 ir_op *op_Store;
51 ir_op *op_Alloc;
52 ir_op *op_Free;
53 ir_op *op_Sync;
54
55 ir_op *op_Tuple;
56 ir_op *op_Proj;
57 ir_op *op_Id;
58 ir_op *op_Bad;
59
60
61 ir_op *
62 new_ir_op (opcode code, ident *name, size_t attr_size, int labeled)
63 {
64   ir_op *res;
65
66   res = (ir_op *) xmalloc (sizeof (ir_op));
67   res->code = code;
68   res->name = name;
69   res->attr_size = attr_size;
70   res->labeled = labeled;   /* For vcg dumping.
71                                Set labeled = 1 if the edges shuld be
72                                enumarated, otherwise set labeled = 0. */
73   return res;
74 }
75
76
77 void
78 init_op(void)
79 {
80   op_Block = new_ir_op (iro_Block, id_from_str ("Block", 5), sizeof (block_attr), 1);
81
82   op_Start = new_ir_op (iro_Start, id_from_str ("Start", 5), sizeof (block_attr), 1);
83   op_End = new_ir_op (iro_End, id_from_str ("End", 3), sizeof (block_attr), 1);
84   op_Jmp    = new_ir_op (iro_Jmp, id_from_str ("Jmp", 3), 0, 0);
85   op_Cond   = new_ir_op (iro_Cond, id_from_str ("Cond", 4), 0, 1);
86   op_Return = new_ir_op (iro_Return, id_from_str ("Return", 6), 0, 1);
87   op_Raise  = new_ir_op (iro_Raise, id_from_str ("Raise", 5), 0, 1);
88
89   op_Const = new_ir_op (iro_Const, id_from_str ("Const", 5), sizeof (struct tarval *), 0);
90   op_SymConst = new_ir_op (iro_SymConst, id_from_str ("SymConst", 8),
91                            sizeof (symconst_attr), 0);
92
93   op_Sel = new_ir_op (iro_Sel, id_from_str ("Sel", 3), sizeof (sel_attr), 1);
94
95   op_Call = new_ir_op (iro_Call, id_from_str ("Call", 4), sizeof (type_method *), 1);
96   op_Add = new_ir_op (iro_Add, id_from_str ("Add", 3), 0, 0);
97   op_Minus = new_ir_op (iro_Minus, id_from_str ("Minus", 5), 0, 0);
98   op_Sub = new_ir_op (iro_Sub, id_from_str ("Sub", 3), 0, 1);
99   op_Mul = new_ir_op (iro_Mul, id_from_str ("Mul", 3), 0, 0);
100   op_Quot = new_ir_op (iro_Quot, id_from_str ("Quot", 4), 0, 1);
101   op_DivMod = new_ir_op (iro_DivMod, id_from_str ("DivMod", 6), 0, 1);
102   op_Div = new_ir_op (iro_Div, id_from_str ("Div", 3), 0, 1);
103   op_Mod = new_ir_op (iro_Mod, id_from_str ("Mod", 3), 0, 1);
104   op_Abs = new_ir_op (iro_Abs, id_from_str ("Abs", 3), 0, 0);
105   op_And = new_ir_op (iro_And, id_from_str ("And", 3), 0, 0);
106   op_Or  = new_ir_op (iro_Or,  id_from_str ("Or", 2), 0, 0);
107   op_Eor = new_ir_op (iro_Eor, id_from_str ("Eor", 3), 0, 0);
108   op_Not = new_ir_op (iro_Not, id_from_str ("Not", 3), 0, 0);
109   op_Cmp = new_ir_op (iro_Cmp, id_from_str ("Cmp", 3), 0, 1);
110   op_Shl = new_ir_op (iro_Shl, id_from_str ("Shl", 3), 0, 1);
111   op_Shr = new_ir_op (iro_Shr, id_from_str ("Shr", 3), 0, 1);
112   op_Shrs  = new_ir_op (iro_Shrs, id_from_str ("Shrs", 3), 0, 0);
113   op_Rot   = new_ir_op (iro_Rot, id_from_str ("Rot", 3), 0, 0);
114   op_Conv  = new_ir_op (iro_Conv, id_from_str ("Conv", 4), 0, 1);
115
116   op_Phi   = new_ir_op (iro_Phi,   id_from_str ("Phi", 3),   sizeof (int), 1);
117
118   op_Load  = new_ir_op (iro_Load,  id_from_str ("Load", 4),  0, 1);
119   op_Store = new_ir_op (iro_Store, id_from_str ("Store", 5), 0, 1);
120   op_Alloc = new_ir_op (iro_Alloc, id_from_str ("Alloc", 5), sizeof (alloc_attr), 1);
121   op_Free  = new_ir_op (iro_Free,  id_from_str ("Free", 4),  sizeof (type *),     1);
122   op_Sync  = new_ir_op (iro_Sync,  id_from_str ("Sync", 4),  0, 0);
123
124   op_Proj  = new_ir_op (iro_Proj,  id_from_str ("Proj", 4), sizeof (long), 1);
125   op_Tuple = new_ir_op (iro_Tuple, id_from_str ("Tuple", 5), 0, 1);
126   op_Id    = new_ir_op (iro_Id,    id_from_str ("Id", 2), 0, 0);
127   op_Bad   = new_ir_op (iro_Bad,   id_from_str ("Bad", 3), 0, 0);
128 }
129
130 /* returns the attribute size of the operator. */
131 int get_op_attr_size (ir_op *op) {
132   return op->attr_size;
133 }