*** empty log message ***
[libfirm] / ir / ir / irop.h
1 /*
2 **  Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
3 **  All rights reserved.
4 **
5 **  Authors: Christian Schaefer
6 **
7 **  irop.h  operators of firm nodes
8 **
9 **  This module specifies the opcodes possible for ir nodes.  Their
10 **  definition is close to the operations specified in UKA Tech-Report 1999-44
11 **
12 */
13
14 # ifndef _IROP_H_
15 # define _IROP_H_
16
17 # include <stddef.h>
18 # include "ident.h"
19
20 typedef enum {
21   iro_Block,
22   iro_Start, iro_End, iro_Jmp, iro_Cond, iro_Return, iro_Raise,
23   iro_Const, iro_SymConst,
24   iro_Sel,
25   iro_Call, iro_Add, iro_Sub, iro_Minus, iro_Mul, iro_Quot, iro_DivMod,
26   iro_Div, iro_Mod, iro_Abs, iro_And, iro_Or, iro_Eor, iro_Not,
27   iro_Cmp, iro_Shl, iro_Shr, iro_Shrs, iro_Rot, iro_Conv,
28   iro_Phi,
29   iro_Load, iro_Store, iro_Alloc, iro_Free, iro_Sync,
30   iro_Proj, iro_Tuple, iro_Id, iro_Bad
31 } opcode;
32
33 typedef struct ir_op ir_op;
34
35 extern ir_op *op_Block;
36
37 extern ir_op *op_Start;
38 extern ir_op *op_End;
39 extern ir_op *op_Jmp;
40 extern ir_op *op_Cond;
41 extern ir_op *op_Return;
42 extern ir_op *op_Raise;
43 extern ir_op *op_Sel;
44
45 extern ir_op *op_Const;
46 extern ir_op *op_SymConst;
47
48 extern ir_op *op_Call;
49 extern ir_op *op_Add;
50 extern ir_op *op_Sub;
51 extern ir_op *op_Minus;
52 extern ir_op *op_Mul;
53 extern ir_op *op_Quot;
54 extern ir_op *op_DivMod;
55 extern ir_op *op_Div;
56 extern ir_op *op_Mod;
57 extern ir_op *op_Abs;
58 extern ir_op *op_And;
59 extern ir_op *op_Or;
60 extern ir_op *op_Eor;
61 extern ir_op *op_Not;
62 extern ir_op *op_Cmp;
63 extern ir_op *op_Shl;
64 extern ir_op *op_Shr;
65 extern ir_op *op_Shrs;
66 extern ir_op *op_Rot;
67 extern ir_op *op_Conv;
68
69 extern ir_op *op_Phi;
70
71 extern ir_op *op_Load;
72 extern ir_op *op_Store;
73 extern ir_op *op_Alloc;
74 extern ir_op *op_Free;
75
76 extern ir_op *op_Sync;
77
78 extern ir_op *op_Tuple;
79 extern ir_op *op_Proj;
80 extern ir_op *op_Id;
81 extern ir_op *op_Bad;
82
83
84 /* Returns the string for the opcode. */
85 const char *get_op_name      (ir_op *op);
86
87 /* Returns the enum for the opcode */
88 opcode get_op_code      (ir_op *op);
89
90 /* Returns the ident for the opcode name */
91 ident *get_op_ident     (ir_op *op);
92
93 /* Returns the attribute size of the opcode.
94    Use not encouraged, internal feature. */
95 int    get_op_attr_size (ir_op *op);
96
97 # endif /* _IROP_H_ */