aacf9d8647fffc132203d50e114f7e2a25b1f576
[libfirm] / scripts / ir_spec.py
1 from spec_util import abstract, setnodedefaults
2
3 class Op(object):
4         """Base class for firm nodes"""
5 abstract(Op)
6
7 class Unop(Op):
8         """Unary nodes have exactly 1 input"""
9         name     = "unop"
10         ins      = [
11                 ("op",  "operand"),
12         ]
13         op_index = 0
14         pinned   = "no"
15 abstract(Unop)
16
17 class Binop(Op):
18         """Binary nodes have exactly 2 inputs"""
19         name     = "binop"
20         ins      = [
21                 ( "left",   "first operand" ),
22                 ( "right", "second operand" ),
23         ]
24         op_index = 0
25         pinned   = "no"
26 abstract(Binop)
27
28 class Add(Binop):
29         """returns the sum of its operands"""
30         flags = [ "commutative" ]
31
32 class Alloc(Op):
33         """allocates a block of memory.
34         It can be specified whether the variable should be allocated to the stack
35         or to the heap."""
36         ins   = [
37                 ("mem",   "memory dependency" ),
38                 ("count", "number of objects to allocate" ),
39         ]
40         outs  = [
41                 ("M",         "memory result",                         "pn_Generic_M"),
42                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
43                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
44                 ("res",       "pointer to newly allocated memory",     "pn_Generic_other"),
45         ]
46         attrs = [
47                 dict(
48                         name    = "type",
49                         type    = "ir_type*",
50                         comment = "type of the allocated variable",
51                 ),
52                 dict(
53                         name    = "where",
54                         type    = "ir_where_alloc",
55                         comment = "whether to allocate the variable on the stack or heap",
56                 )
57         ]
58         flags       = [ "fragile", "uses_memory" ]
59         pinned      = "yes"
60         attr_struct = "alloc_attr"
61
62 class Anchor(Op):
63         """utiliy node used to "hold" nodes in a graph that might possibly not be
64         reachable by other means or which should be reachable immediately without
65         searching through the graph.
66         Each firm-graph contains exactly one anchor node whose address is always
67         known. All other well-known graph-nodes like Start, End, NoMem, Bad, ...
68         are found by looking at the respective Anchor operand."""
69         mode             = "mode_ANY"
70         arity            = "variable"
71         flags            = [ "dump_noblock" ]
72         pinned           = "yes"
73         attr_struct      = "irg_attr"
74         knownBlock       = True
75         singleton        = True
76         noconstructor    = True
77         customSerializer = True
78
79 class And(Binop):
80         """returns the result of a bitwise and operation of its operands"""
81         flags    = [ "commutative" ]
82
83 class ASM(Op):
84         """executes assembler fragments of the target machine"""
85         mode             = "mode_T"
86         arity            = "variable"
87         flags            = [ "keep", "uses_memory" ]
88         pinned           = "memory"
89         pinned_init      = "op_pin_state_pinned"
90         attr_struct      = "asm_attr"
91         attrs_name       = "assem"
92         customSerializer = True
93         attrs = [
94                 dict(
95                         name    = "input_constraints",
96                         type    = "ir_asm_constraint*",
97                         comment = "input constraints",
98                 ),
99                 dict(
100                         name    = "n_output_constraints",
101                         type    = "int",
102                         noprop  = True,
103                         comment = "number of output constraints",
104                 ),
105                 dict(
106                         name    = "output_constraints",
107                         type    = "ir_asm_constraint*",
108                         comment = "output constraints",
109                 ),
110                 dict(
111                         name    = "n_clobbers",
112                         type    = "int",
113                         noprop  = True,
114                         comment = "number of clobbered registers/memory",
115                 ),
116                 dict(
117                         name    = "clobbers",
118                         type    = "ident**",
119                         comment = "list of clobbered registers/memory",
120                 ),
121                 dict(
122                         name    = "text",
123                         type    = "ident*",
124                         comment = "assembler text",
125                 ),
126         ]
127         # constructor is written manually at the moment, because of the clobbers+
128         # constraints arrays needing special handling (2 arguments for 1 attribute)
129         noconstructor = True
130
131 class Bad(Op):
132         """Bad nodes indicate invalid input, which is values which should never be
133         computed.
134
135         The typical use case for the Bad node is removing unreachable code.
136         Frontends should set the current_block to Bad when it is clear that
137         following code must be unreachable (ie. after a goto or return statement).
138         Optimisations also set block predecessors to Bad when it becomes clear,
139         that a control flow edge can never be executed.
140
141         The gigo optimisations ensures that nodes with Bad as their block, get
142         replaced by Bad themselfes. Nodes with at least 1 Bad input get exchanged
143         with Bad too. Exception to this rule are Block, Phi, Tuple and End node;
144         This is because removing inputs from a Block is hairy operation (requiring,
145         Phis to be shortened too for example). So instead of removing block inputs
146         they are set to Bad, and the actual removal is left to the control flow
147         optimisation phase. Block, Phi, Tuple with only Bad inputs however are
148         replaced by Bad right away."""
149         mode          = "mode_T"
150         flags         = [ "cfopcode", "start_block", "dump_noblock" ]
151         pinned        = "yes"
152         knownBlock    = True
153         block         = "get_irg_start_block(irg)"
154         singleton     = True
155         attr_struct   = "bad_attr"
156         init = '''
157         res->attr.bad.irg.irg = irg;
158         '''
159
160 class Deleted(Op):
161         """Internal node which is temporary set to nodes which are already removed
162         from the graph."""
163         mode             = "mode_Bad"
164         flags            = [ ]
165         pinned           = "yes"
166         noconstructor    = True
167         customSerializer = True
168
169 class Block(Op):
170         """A basic block"""
171         mode             = "mode_BB"
172         knownBlock       = True
173         block            = "NULL"
174         pinned           = "yes"
175         arity            = "variable"
176         flags            = [ "labeled" ]
177         attr_struct      = "block_attr"
178         customSerializer = True
179
180         init = '''
181         res->attr.block.irg.irg     = irg;
182         res->attr.block.backedge    = new_backedge_arr(irg->obst, arity);
183         set_Block_matured(res, 1);
184
185         /* Create and initialize array for Phi-node construction. */
186         if (get_irg_phase_state(irg) == phase_building) {
187                 res->attr.block.graph_arr = NEW_ARR_D(ir_node *, irg->obst, irg->n_loc);
188                 memset(res->attr.block.graph_arr, 0, irg->n_loc * sizeof(ir_node*));
189         }
190         '''
191
192 class Borrow(Binop):
193         """Returns the borrow bit from and implied subtractions of its 2 operands"""
194         flags = []
195
196 class Bound(Op):
197         """Performs a bounds-check: if lower <= index < upper then return index,
198         otherwise throw an exception."""
199         ins    = [
200                 ("mem",    "memory dependency"),
201                 ("index",  "value to test"),
202                 ("lower",  "lower bound (inclusive)"),
203                 ("upper",  "upper bound (exclusive)"),
204         ]
205         outs  = [
206                 ("M",         "memory result",                         "pn_Generic_M"),
207                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
208                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
209                 ("res",       "the checked index",                     "pn_Generic_other"),
210         ]
211         flags  = [ "fragile", "highlevel" ]
212         pinned = "exception"
213         pinned_init = "op_pin_state_pinned"
214         attr_struct = "bound_attr"
215         attrs_name  = "bound"
216
217 class Builtin(Op):
218         """performs a backend-specific builtin."""
219         ins      = [
220                 ("mem", "memory dependency"),
221         ]
222         arity    = "variable"
223         outs     = [
224                 ("M",        "memory result", "pn_Generic_M"),
225                 ("1_result", "first result",  "pn_Generic_other"),
226         ]
227         flags    = [ "uses_memory" ]
228         attrs    = [
229                 dict(
230                         type    = "ir_builtin_kind",
231                         name    = "kind",
232                         comment = "kind of builtin",
233                 ),
234                 dict(
235                         type    = "ir_type*",
236                         name    = "type",
237                         comment = "method type for the builtin call",
238                 )
239         ]
240         pinned      = "memory"
241         pinned_init = "op_pin_state_pinned"
242         attr_struct = "builtin_attr"
243         init   = '''
244         assert((get_unknown_type() == type) || is_Method_type(type));
245         '''
246
247 class Call(Op):
248         """Calls other code. Control flow is transfered to ptr, additional
249         operands are passed to the called code. Called code usually performs a
250         return operation. The operands of this return operation are the result
251         of the Call node."""
252         ins      = [
253                 ("mem",   "memory dependency"),
254                 ("ptr",   "pointer to called code"),
255         ]
256         arity    = "variable"
257         outs     = [
258                 ("M",                "memory result",                         "pn_Generic_M"),
259                 ("X_regular",        "control flow when no exception occurs", "pn_Generic_X_regular"),
260                 ("X_except",         "control flow when exception occured",   "pn_Generic_X_except"),
261                 ("T_result",         "tuple containing all results",          "pn_Generic_other"),
262                 ("P_value_res_base", "pointer to memory register containing copied results passed by value"),
263         ]
264         flags    = [ "fragile", "uses_memory" ]
265         attrs    = [
266                 dict(
267                         type    = "ir_type*",
268                         name    = "type",
269                         comment = "type of the call (usually type of the called procedure)",
270                 ),
271                 dict(
272                         type = "unsigned",
273                         name = "tail_call",
274                         # the tail call attribute can only be set by analysis
275                         init = "0",
276                 )
277         ]
278         attr_struct = "call_attr"
279         pinned      = "memory"
280         pinned_init = "op_pin_state_pinned"
281         init = '''
282         assert((get_unknown_type() == type) || is_Method_type(type));
283         '''
284
285 class Carry(Binop):
286         """Computes the value of the carry-bit that would result when adding the 2
287         operands"""
288         flags = [ "commutative" ]
289
290 class Cast(Unop):
291         """perform a high-level type cast"""
292         mode     = "get_irn_mode(irn_op)"
293         flags    = [ "highlevel" ]
294         attrs    = [
295                 dict(
296                         type    = "ir_type*",
297                         name    = "type",
298                         comment = "target type of the case",
299                 )
300         ]
301         attr_struct = "cast_attr"
302         init     = "assert(is_atomic_type(type));"
303
304 class Cmp(Binop):
305         """Returns the relation of 2 operands"""
306         outs  = [
307                 ("False", "always false",                            "0"),
308                 ("Eq",    "equal",                                   "1"),
309                 ("Lt",    "less",                                    "2"),
310                 ("Le",    "less or equal",                           "pn_Cmp_Eq|pn_Cmp_Lt"),
311                 ("Gt",    "greater",                                 "4"),
312                 ("Ge",    "greater or equal",                        "pn_Cmp_Eq|pn_Cmp_Gt"),
313                 ("Lg",    "less or greater ('not equal' for integer numbers)", "pn_Cmp_Lt|pn_Cmp_Gt"),
314                 ("Leg",   "less, equal or greater ('not unordered')", "pn_Cmp_Lt|pn_Cmp_Eq|pn_Cmp_Gt"),
315                 ("Uo",    "unordered",                               "8"),
316                 ("Ue",    "unordered or equal",                      "pn_Cmp_Uo|pn_Cmp_Eq"),
317                 ("Ul",    "unordered or less",                       "pn_Cmp_Uo|pn_Cmp_Lt"),
318                 ("Ule",   "unordered, less or equal",                "pn_Cmp_Uo|pn_Cmp_Lt|pn_Cmp_Eq"),
319                 ("Ug",    "unordered or greater",                    "pn_Cmp_Uo|pn_Cmp_Gt"),
320                 ("Uge",   "onordered, greater or equal",             "pn_Cmp_Uo|pn_Cmp_Gt|pn_Cmp_Eq"),
321                 ("Ne",    "unordered, less or greater ('not equal' for floatingpoint numbers)", "pn_Cmp_Uo|pn_Cmp_Lt|pn_Cmp_Gt"),
322                 ("True",  "always true",                             "15"),
323         ]
324         flags = []
325
326 class Cond(Op):
327         """Conditionally change control flow. There are two versions of this node:
328
329         Boolean Cond:
330         Input:  A value of mode_b
331         Output: A tuple of two control flows. The first is taken if the input is
332                 false, the second if it is true.
333
334         Switch Cond:
335         Input:  A value of mode_Iu
336         Output: A tuple of n control flows. If the Cond's input is i, control flow
337         will proceed along output i. If the input is >= n control flow proceeds
338         along output def_proj.
339         """
340         ins      = [
341                 ("selector",  "condition parameter"),
342         ]
343         outs     = [
344                 ("false", "control flow if operand is \"false\""),
345                 ("true",  "control flow if operand is \"true\""),
346         ]
347         flags    = [ "cfopcode", "forking" ]
348         pinned   = "yes"
349         attrs    = [
350                 dict(
351                         name    = "default_proj",
352                         type    = "long",
353                         init    = "0",
354                         comment = "Proj-number of default case for switch-Cond",
355                 ),
356                 dict(
357                         name    = "jmp_pred",
358                         type    = "cond_jmp_predicate",
359                         init    = "COND_JMP_PRED_NONE",
360                         comment = "can indicate the most likely jump",
361                 )
362         ]
363         attr_struct = "cond_attr"
364
365 class Confirm(Op):
366         """Specifies constraints for a value. This allows explicit representation
367         of path-sensitive properties. (Example: This value is always >= 0 on 1
368         if-branch then all users within that branch are rerouted to a confirm-node
369         specifying this property).
370
371         A constraint is specified for the relation between value and bound.
372         value is always returned.
373         Note that this node does NOT check or assert the constraint, it merely
374         specifies it."""
375         ins      = [
376                 ("value",  "value to express a constraint for"),
377                 ("bound",  "value to compare against"),
378         ]
379         mode     = "get_irn_mode(irn_value)"
380         flags    = [ "highlevel" ]
381         pinned   = "yes"
382         attrs    = [
383                 dict(
384                         name    = "cmp",
385                         type    = "pn_Cmp",
386                         comment = "compare operation",
387                 ),
388         ]
389         attr_struct = "confirm_attr"
390         attrs_name  = "confirm"
391
392 class Const(Op):
393         """Returns a constant value."""
394         flags      = [ "constlike", "start_block" ]
395         block      = "get_irg_start_block(irg)"
396         mode       = "get_tarval_mode(tarval)"
397         knownBlock = True
398         pinned     = "no"
399         attrs      = [
400                 dict(
401                         type    = "ir_tarval*",
402                         name    = "tarval",
403                         comment = "constant value (a tarval object)",
404                 )
405         ]
406         attr_struct = "const_attr"
407         attrs_name  = "con"
408
409 class Conv(Unop):
410         """Converts values between modes"""
411         flags = []
412         attrs = [
413                 dict(
414                         name    = "strict",
415                         type    = "int",
416                         init    = "0",
417                         comment = "force floating point to restrict precision even if backend computes in higher precision (deprecated)",
418                 )
419         ]
420         attr_struct = "conv_attr"
421         attrs_name  = "conv"
422
423 class CopyB(Op):
424         """Copies a block of memory"""
425         ins   = [
426                 ("mem",  "memory dependency"),
427                 ("dst",  "destination address"),
428                 ("src",  "source address"),
429         ]
430         outs  = [
431                 ("M",         "memory result",                         "pn_Generic_M"),
432                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
433                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
434         ]
435         flags = [ "fragile", "uses_memory" ]
436         attrs = [
437                 dict(
438                         name    = "type",
439                         type    = "ir_type*",
440                         comment = "type of copied data",
441                 )
442         ]
443         attr_struct = "copyb_attr"
444         attrs_name  = "copyb"
445         pinned      = "memory"
446         pinned_init = "op_pin_state_pinned"
447
448 class Div(Op):
449         """returns the quotient of its 2 operands, integer version"""
450         ins   = [
451                 ("mem",   "memory dependency"),
452                 ("left",  "first operand"),
453                 ("right", "second operand"),
454         ]
455         outs  = [
456                 ("M",         "memory result",                         "pn_Generic_M"),
457                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
458                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
459                 ("res",       "result of computation",                 "pn_Generic_other"),
460         ]
461         flags = [ "fragile", "uses_memory" ]
462         attrs_name = "divmod"
463         attrs = [
464                 dict(
465                         type    = "ir_mode*",
466                         name    = "resmode",
467                         comment = "mode of the result value",
468                 ),
469                 dict(
470                         name = "no_remainder",
471                         type = "int",
472                         init = "0",
473                 )
474         ]
475         attr_struct = "divmod_attr"
476         pinned      = "exception"
477         op_index    = 1
478         arity_override = "oparity_binary"
479
480 class Dummy(Op):
481         """A placeholder value. This is used when constructing cyclic graphs where
482         you have cases where not all predecessors of a phi-node are known. Dummy
483         nodes are used for the unknown predecessors and replaced later."""
484         ins        = []
485         flags      = [ "cfopcode", "start_block", "constlike", "dump_noblock" ]
486         knownBlock = True
487         pinned     = "yes"
488         block      = "get_irg_start_block(irg)"
489
490 class End(Op):
491         """Last node of a graph. It references nodes in endless loops (so called
492         keepalive edges)"""
493         mode             = "mode_X"
494         pinned           = "yes"
495         arity            = "dynamic"
496         flags            = [ "cfopcode" ]
497         knownBlock       = True
498         block            = "get_irg_end_block(irg)"
499         singleton        = True
500         customSerializer = True
501
502 class Eor(Binop):
503         """returns the result of a bitwise exclusive or operation of its operands"""
504         flags    = [ "commutative" ]
505
506 class Free(Op):
507         """Frees a block of memory previously allocated by an Alloc node"""
508         ins    = [
509                 ("mem",   "memory dependency" ),
510                 ("ptr",   "pointer to the object to free"),
511                 ("size",  "number of objects to allocate" ),
512         ]
513         mode   = "mode_M"
514         flags  = [ "uses_memory" ]
515         pinned = "yes"
516         attrs  = [
517                 dict(
518                         name    = "type",
519                         type    = "ir_type*",
520                         comment = "type of the allocated variable",
521                 ),
522                 dict(
523                         name    = "where",
524                         type    = "ir_where_alloc",
525                         comment = "whether allocation was on the stack or heap",
526                 )
527         ]
528         attr_struct = "free_attr"
529
530 class Id(Op):
531         """Returns its operand unchanged."""
532         ins    = [
533            ("pred", "the value which is returned unchanged")
534         ]
535         pinned = "no"
536         flags  = []
537
538 class IJmp(Op):
539         """Jumps to the code in its argument. The code has to be in the same
540         function and the the destination must be one of the blocks reachable
541         by the tuple results"""
542         mode     = "mode_X"
543         pinned   = "yes"
544         ins      = [
545            ("target", "target address of the jump"),
546         ]
547         flags    = [ "cfopcode", "forking", "keep" ]
548
549 class InstOf(Op):
550         """Tests wether an object is an instance of a class-type"""
551         ins   = [
552            ("store", "memory dependency"),
553            ("obj",   "pointer to object being queried")
554         ]
555         outs  = [
556                 ("M",         "memory result",                         "pn_Generic_M"),
557                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
558                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
559                 ("res",       "checked object pointer",                "pn_Generic_other"),
560         ]
561         flags = [ "highlevel" ]
562         attrs = [
563                 dict(
564                         name    = "type",
565                         type    = "ir_type*",
566                         comment = "type to check ptr for",
567                 )
568         ]
569         attr_struct = "io_attr"
570         pinned      = "memory"
571         pinned_init = "op_pin_state_floats"
572
573 class Jmp(Op):
574         """Jumps to the block connected through the out-value"""
575         mode     = "mode_X"
576         pinned   = "yes"
577         ins      = []
578         flags    = [ "cfopcode" ]
579
580 class Load(Op):
581         """Loads a value from memory (heap or stack)."""
582         ins   = [
583                 ("mem", "memory dependency"),
584                 ("ptr",  "address to load from"),
585         ]
586         outs  = [
587                 ("M",         "memory result",                         "pn_Generic_M"),
588                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
589                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
590                 ("res",       "result of load operation",              "pn_Generic_other"),
591         ]
592         flags    = [ "fragile", "uses_memory" ]
593         pinned   = "exception"
594         attrs    = [
595                 dict(
596                         type      = "ir_mode*",
597                         name      = "mode",
598                         java_name = "load_mode",
599                         comment   = "mode of the value to be loaded",
600                 ),
601         ]
602         attr_struct = "load_attr"
603         constructor_args = [
604                 dict(
605                         type    = "ir_cons_flags",
606                         name    = "flags",
607                         comment = "specifies alignment, volatility and pin state",
608                 ),
609         ]
610         pinned_init = "flags & cons_floats ? op_pin_state_floats : op_pin_state_pinned"
611         init = '''
612         res->attr.load.volatility = flags & cons_volatile ? volatility_is_volatile : volatility_non_volatile;
613         res->attr.load.aligned = flags & cons_unaligned ? align_non_aligned : align_is_aligned;
614         '''
615
616 class Minus(Unop):
617         """returns the difference between its operands"""
618         flags = []
619
620 class Mod(Op):
621         """returns the remainder of its operands from an implied division.
622
623         Examples:
624         * mod(5,3)   produces 2
625         * mod(5,-3)  produces 2
626         * mod(-5,3)  produces -2
627         * mod(-5,-3) produces -2
628         """
629         ins   = [
630                 ("mem",   "memory dependency"),
631                 ("left",  "first operand"),
632                 ("right", "second operand"),
633         ]
634         outs  = [
635                 ("M",         "memory result",                         "pn_Generic_M"),
636                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
637                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
638                 ("res",       "result of computation",                 "pn_Generic_other"),
639         ]
640         flags = [ "fragile", "uses_memory" ]
641         attrs_name = "divmod"
642         attrs = [
643                 dict(
644                         type    = "ir_mode*",
645                         name    = "resmode",
646                         comment = "mode of the result",
647                 ),
648         ]
649         attr_struct = "divmod_attr"
650         pinned      = "exception"
651         op_index    = 1
652         arity_override = "oparity_binary"
653
654 class Mul(Binop):
655         """returns the product of its operands"""
656         flags = [ "commutative" ]
657
658 class Mulh(Binop):
659         """returns the upper word of the product of its operands (the part which
660         would not fit into the result mode of a normal Mul anymore)"""
661         flags = [ "commutative" ]
662
663 class Mux(Op):
664         """returns the false or true operand depending on the value of the sel
665         operand"""
666         ins    = [
667            ("sel",   "value making the output selection"),
668            ("false", "selected if sel input is false"),
669            ("true",  "selected if sel input is true"),
670         ]
671         flags  = []
672         pinned = "no"
673
674 class NoMem(Op):
675         """Placeholder node for cases where you don't need any memory input"""
676         mode          = "mode_M"
677         flags         = [ "dump_noblock", "dump_noinput" ]
678         pinned        = "yes"
679         knownBlock    = True
680         block         = "get_irg_start_block(irg)"
681         singleton     = True
682
683 class Not(Unop):
684         """returns the logical complement of a value. Works for integer values too.
685         If the input is false/zero then true/one is returned, otherwise false/zero
686         is returned."""
687         flags = []
688
689 class Or(Binop):
690         """returns the result of a bitwise or operation of its operands"""
691         flags = [ "commutative" ]
692
693 class Phi(Op):
694         """Choose a value based on control flow. A phi node has 1 input for each
695         predecessor of its block. If a block is entered from its nth predecessor
696         all phi nodes produce their nth input as result."""
697         pinned        = "yes"
698         arity         = "variable"
699         flags         = []
700         attr_struct   = "phi_attr"
701         init          = '''
702         res->attr.phi.u.backedge = new_backedge_arr(irg->obst, arity);'''
703         init_after_opt = '''
704         /* Memory Phis in endless loops must be kept alive.
705            As we can't distinguish these easily we keep all of them alive. */
706         if (is_Phi(res) && mode == mode_M)
707                 add_End_keepalive(get_irg_end(irg), res);'''
708
709 class Pin(Op):
710         """Pin the value of the node node in the current block. No users of the Pin
711         node can float above the Block of the Pin. The node cannot float behind
712         this block. Often used to Pin the NoMem node."""
713         ins      = [
714                 ("op", "value which is pinned"),
715         ]
716         mode     = "get_irn_mode(irn_op)"
717         flags    = [ "highlevel" ]
718         pinned   = "yes"
719
720 class Proj(Op):
721         """returns an entry of a tuple value"""
722         ins              = [
723                 ("pred", "the tuple value from which a part is extracted"),
724         ]
725         flags            = []
726         pinned           = "no"
727         knownBlock       = True
728         knownGraph       = True
729         block            = "get_nodes_block(irn_pred)"
730         graph            = "get_irn_irg(irn_pred)"
731         customSerializer = True
732         attrs      = [
733                 dict(
734                         type    = "long",
735                         name    = "proj",
736                         comment = "number of tuple component to be extracted",
737                 ),
738         ]
739         attr_struct = "proj_attr"
740
741 class Quot(Op):
742         """returns the quotient of its 2 operands, floatingpoint version"""
743         ins   = [
744            ("mem",   "memory dependency"),
745            ("left",  "first operand"),
746            ("right", "second operand"),
747         ]
748         outs  = [
749                 ("M",         "memory result",                         "pn_Generic_M"),
750                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
751                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
752                 ("res",       "result of computation",                 "pn_Generic_other"),
753         ]
754         flags = [ "fragile", "uses_memory" ]
755         attrs_name = "divmod"
756         attrs = [
757                 dict(
758                         type    = "ir_mode*",
759                         name    = "resmode",
760                         comment = "mode of the result value",
761                 ),
762         ]
763         attr_struct = "divmod_attr"
764         pinned      = "exception"
765         op_index    = 1
766         arity_override = "oparity_binary"
767
768 class Raise(Op):
769         """Raises an exception. Unconditional change of control flow. Writes an
770         explicit Except variable to memory to pass it to the exception handler.
771         Must be lowered to a Call to a runtime check function."""
772         ins    = [
773                 ("mem",     "memory dependency"),
774                 ("exo_ptr", "pointer to exception object to be thrown"),
775         ]
776         outs  = [
777                 ("M", "memory result",                     "pn_Generic_M"),
778                 ("X", "control flow to exception handler", "pn_Generic_X_regular"),
779         ]
780         flags  = [ "highlevel", "cfopcode" ]
781         pinned = "yes"
782
783 class Return(Op):
784         """Returns from the current function. Takes memory and return values as
785         operands."""
786         ins      = [
787                 ("mem", "memory dependency"),
788         ]
789         arity    = "variable"
790         mode     = "mode_X"
791         flags    = [ "cfopcode" ]
792         pinned   = "yes"
793
794 class Rotl(Binop):
795         """Returns its first operand bits rotated left by the amount in the 2nd
796         operand"""
797         flags    = []
798
799 class Sel(Op):
800         """Computes the address of a entity of a compound type given the base
801         address of an instance of the compound type."""
802         ins    = [
803                 ("mem", "memory dependency"),
804                 ("ptr", "pointer to object to select from"),
805         ]
806         arity  = "variable"
807         flags  = []
808         mode   = "is_Method_type(get_entity_type(entity)) ? mode_P_code : mode_P_data"
809         pinned = "no"
810         attrs  = [
811                 dict(
812                         type    = "ir_entity*",
813                         name    = "entity",
814                         comment = "entity which is selected",
815                 )
816         ]
817         attr_struct = "sel_attr"
818
819 class Shl(Binop):
820         """Returns its first operands bits shifted left by the amount of the 2nd
821         operand"""
822         flags = []
823
824 class Shr(Binop):
825         """Returns its first operands bits shifted right by the amount of the 2nd
826         operand. No special handling for the sign bit (zero extension)"""
827         flags = []
828
829 class Shrs(Binop):
830         """Returns its first operands bits shifted right by the amount of the 2nd
831         operand. The leftmost bit (usually the sign bit) stays the same
832         (sign extension)"""
833         flags = []
834
835 class Start(Op):
836         """The first node of a graph. Execution starts with this node."""
837         outs       = [
838                 ("X_initial_exec", "control flow"),
839                 ("M",              "initial memory"),
840                 ("P_frame_base",   "frame base pointer"),
841                 ("P_tls",          "pointer to thread local storage segment"),
842                 ("T_args",         "function arguments")
843         ]
844         mode             = "mode_T"
845         pinned           = "yes"
846         flags            = [ "cfopcode" ]
847         singleton        = True
848         knownBlock       = True
849         customSerializer = True
850         block            = "get_irg_start_block(irg)"
851
852 class Store(Op):
853         """Stores a value into memory (heap or stack)."""
854         ins   = [
855            ("mem",   "memory dependency"),
856            ("ptr",   "address to store to"),
857            ("value", "value to store"),
858         ]
859         outs  = [
860                 ("M",         "memory result",                         "pn_Generic_M"),
861                 ("X_regular", "control flow when no exception occurs", "pn_Generic_X_regular"),
862                 ("X_except",  "control flow when exception occured",   "pn_Generic_X_except"),
863         ]
864         flags    = [ "fragile", "uses_memory" ]
865         pinned   = "exception"
866         attr_struct = "store_attr"
867         pinned_init = "flags & cons_floats ? op_pin_state_floats : op_pin_state_pinned"
868         constructor_args = [
869                 dict(
870                         type    = "ir_cons_flags",
871                         name    = "flags",
872                         comment = "specifies alignment, volatility and pin state",
873                 ),
874         ]
875         init = '''
876         res->attr.store.volatility = flags & cons_volatile ? volatility_is_volatile : volatility_non_volatile;
877         res->attr.store.aligned = flags & cons_unaligned ? align_non_aligned : align_is_aligned;
878         '''
879
880 class Sub(Binop):
881         """returns the difference of its operands"""
882         flags = []
883
884 class SymConst(Op):
885         """A symbolic constant.
886
887          - symconst_type_tag   The symbolic constant represents a type tag.  The
888                                type the tag stands for is given explicitly.
889          - symconst_type_size  The symbolic constant represents the size of a type.
890                                The type of which the constant represents the size
891                                is given explicitly.
892          - symconst_type_align The symbolic constant represents the alignment of a
893                                type.  The type of which the constant represents the
894                                size is given explicitly.
895          - symconst_addr_ent   The symbolic constant represents the address of an
896                                entity (variable or method).  The variable is given
897                                explicitly by a firm entity.
898          - symconst_ofs_ent    The symbolic constant represents the offset of an
899                                entity in its owner type.
900          - symconst_enum_const The symbolic constant is a enumeration constant of
901                                an enumeration type."""
902         mode       = "mode_P"
903         flags      = [ "constlike", "start_block" ]
904         knownBlock = True
905         pinned     = "no"
906         attrs      = [
907                 dict(
908                         type    = "ir_entity*",
909                         name    = "entity",
910                         noprop  = True,
911                         comment = "entity whose address is returned",
912                 )
913         ]
914         attr_struct = "symconst_attr"
915         customSerializer = True
916         # constructor is written manually at the moment, because of the strange
917         # union argument
918         noconstructor = True
919
920 class Sync(Op):
921         """The Sync operation unifies several partial memory blocks. These blocks
922         have to be pairwise disjunct or the values in common locations have to
923         be identical.  This operation allows to specify all operations that
924         eventually need several partial memory blocks as input with a single
925         entrance by unifying the memories with a preceding Sync operation."""
926         mode     = "mode_M"
927         flags    = []
928         pinned   = "no"
929         arity    = "dynamic"
930
931 class Tuple(Op):
932         """Builds a Tuple from single values.
933
934         This is needed to implement optimizations that remove a node that produced
935         a tuple.  The node can be replaced by the Tuple operation so that the
936         following Proj nodes have not to be changed. (They are hard to find due to
937         the implementation with pointers in only one direction.) The Tuple node is
938         smaller than any other node, so that a node can be changed into a Tuple by
939         just changing it's opcode and giving it a new in array."""
940         arity  = "variable"
941         mode   = "mode_T"
942         pinned = "no"
943         flags  = [ "labeled" ]
944
945 class Unknown(Op):
946         """Returns an unknown (at compile- and runtime) value. It is a valid
947         optimisation to replace an Unknown by any other constant value."""
948         knownBlock = True
949         pinned     = "yes"
950         block      = "get_irg_start_block(irg)"
951         flags      = [ "cfopcode", "start_block", "constlike", "dump_noblock" ]
952
953 # Prepare node list
954
955 def getOpList(namespace):
956         nodes = []
957         for t in namespace.values():
958                 if type(t) != type:
959                         continue
960
961                 if issubclass(t, Op):
962                         setnodedefaults(t)
963                         nodes.append(t)
964         return nodes
965
966 nodes = getOpList(globals())
967 nodes = sorted(nodes, lambda x,y: cmp(x.name, y.name))