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