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