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