5c9fe4e3cc8f62b2aa7a4127ac059eefd1db0d80
[libfirm] / ir / be / arm / arm_spec.pl
1 # Creation: 2006/02/13
2 # $Id$
3 # This is a template specification for the Firm-Backend
4
5 # the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
6
7 $arch = "arm";
8 $new_emit_syntax = 1;
9
10 # the number of additional opcodes you want to register
11 #$additional_opcodes = 0;
12
13 # The node description is done as a perl hash initializer with the
14 # following structure:
15 #
16 # %nodes = (
17 #
18 # <op-name> => {
19 #   op_flags  => "N|L|C|X|I|F|Y|H|c|K",
20 #   irn_flags => "R|N|I|S"
21 #   arity     => "0|1|2|3 ... |variable|dynamic|any",
22 #   state     => "floats|pinned|mem_pinned|exc_pinned",
23 #   args      => [
24 #                    { type => "type 1", name => "name 1" },
25 #                    { type => "type 2", name => "name 2" },
26 #                    ...
27 #                  ],
28 #   comment   => "any comment for constructor",
29 #   reg_req   => { in => [ "reg_class|register" ], out => [ "reg_class|register|in_rX" ] },
30 #   cmp_attr  => "c source code for comparing node attributes",
31 #   emit      => "emit code with templates",
32 #   attr      => "attitional attribute arguments for constructor"
33 #   init_attr => "emit attribute initialization template"
34 #   rd_constructor => "c source code which constructs an ir_node"
35 #   latency   => "latency of this operation (can be float)"
36 #   attr_type => "name of the attribute struct",
37 # },
38 #
39 # ... # (all nodes you need to describe)
40 #
41 # ); # close the %nodes initializer
42
43 # op_flags: flags for the operation, OPTIONAL (default is "N")
44 # the op_flags correspond to the firm irop_flags:
45 #   N   irop_flag_none
46 #   L   irop_flag_labeled
47 #   C   irop_flag_commutative
48 #   X   irop_flag_cfopcode
49 #   I   irop_flag_ip_cfopcode
50 #   F   irop_flag_fragile
51 #   Y   irop_flag_forking
52 #   H   irop_flag_highlevel
53 #   c   irop_flag_constlike
54 #   K   irop_flag_keep
55 #
56 # irn_flags: special node flags, OPTIONAL (default is 0)
57 # following irn_flags are supported:
58 #   R   rematerializeable
59 #   N   not spillable
60 #   I   ignore for register allocation
61 #   S   modifies stack pointer
62 #
63 # state: state of the operation, OPTIONAL (default is "floats")
64 #
65 # arity: arity of the operation, MUST NOT BE OMITTED
66 #
67 # args:  the OPTIONAL arguments of the node constructor (debug, irg and block
68 #        are always the first 3 arguments and are always autmatically
69 #        created)
70 #        If this key is missing the following arguments will be created:
71 #        for i = 1 .. arity: ir_node *op_i
72 #        ir_mode *mode
73 #
74 # outs:  if a node defines more than one output, the names of the projections
75 #        nodes having outs having automatically the mode mode_T
76 #        One can also annotate some flags for each out, additional to irn_flags.
77 #        They are separated from name with a colon ':', and concatenated by pipe '|'
78 #        Only I and S are available at the moment (same meaning as in irn_flags).
79 #        example: [ "frame:I", "stack:I|S", "M" ]
80 #
81 # comment: OPTIONAL comment for the node constructor
82 #
83 # rd_constructor: for every operation there will be a
84 #      new_rd_<arch>_<op-name> function with the arguments from above
85 #      which creates the ir_node corresponding to the defined operation
86 #      you can either put the complete source code of this function here
87 #
88 #      This key is OPTIONAL. If omitted, the following constructor will
89 #      be created:
90 #      if (!op_<arch>_<op-name>) assert(0);
91 #      for i = 1 to arity
92 #         set in[i] = op_i
93 #      done
94 #      res = new_ir_node(db, irg, block, op_<arch>_<op-name>, mode, arity, in)
95 #      return res
96 #
97 # NOTE: rd_constructor and args are only optional if and only if arity is 0,1,2 or 3
98 #
99 # latency: the latency of the operation, default is 1
100 #
101
102 #
103 # Modes
104 #
105 $mode_gp      = "mode_Iu";
106 $mode_fpa     = "mode_E";
107
108 # register types:
109 $normal      =  0; # no special type
110 $caller_save =  1; # caller save (register must be saved by the caller of a function)
111 $callee_save =  2; # callee save (register must be saved by the called function)
112 $ignore      =  4; # ignore (do not assign this register)
113 $arbitrary   =  8; # emitter can choose an arbitrary register of this class
114 $virtual     = 16; # the register is a virtual one
115 $state       = 32; # register represents a state
116 # NOTE: Last entry of each class is the largest Firm-Mode a register can hold
117 %reg_classes = (
118         gp => [
119                 { "name" => "r0", "type"  => $caller_save },
120                 { "name" => "r1", "type"  => $caller_save },
121                 { "name" => "r2", "type"  => $caller_save },
122                 { "name" => "r3", "type"  => $caller_save },
123                 { "name" => "r4", "type"  => $callee_save },
124                 { "name" => "r5", "type"  => $callee_save },
125                 { "name" => "r6", "type"  => $callee_save },
126                 { "name" => "r7", "type"  => $callee_save },
127                 { "name" => "r8", "type"  => $callee_save },
128                 { "name" => "r9", "type"  => $callee_save },
129                 { "name" => "r10", "type" => $callee_save },
130                 { "name" => "r11", "type" => $callee_save },
131                 { "name" => "r12", "type" => $ignore | $callee_save }, # reserved for linker
132                 { "name" => "sp", "type"  => $ignore | $callee_save }, # this is our stack pointer
133                 { "name" => "lr", "type"  => $callee_save | $caller_save }, # this is our return address
134                 { "name" => "pc", "type"  => $ignore | $callee_save }, # this is our program counter
135                 { name => "gp_UKNWN", type => $ignore | $arbitrary | $virtual },  # we need a dummy register for Unknown nodes
136                 { "mode" => $mode_gp }
137         ],
138         fpa  => [
139                 { "name" => "f0", "type" => 1 },
140                 { "name" => "f1", "type" => 1 },
141                 { "name" => "f2", "type" => 1 },
142                 { "name" => "f3", "type" => 1 },
143                 { "name" => "f4", "type" => 1 },
144                 { "name" => "f5", "type" => 1 },
145                 { "name" => "f6", "type" => 1 },
146                 { "name" => "f7", "type" => 1 },
147                 { name => "fpa_UKNWN", type => 4 | 8 | 16 },  # we need a dummy register for Unknown nodes
148                 { "mode" => $mode_fpa }
149         ]
150 ); # %reg_classes
151
152 %emit_templates = (
153         M  => "${arch}_emit_mode(node);",
154         X  => "${arch}_emit_shift(node);",
155         S0 => "${arch}_emit_source_register(node, 0);",
156         S1 => "${arch}_emit_source_register(node, 1);",
157         S2 => "${arch}_emit_source_register(node, 2);",
158         S3 => "${arch}_emit_source_register(node, 3);",
159         S4 => "${arch}_emit_source_register(node, 4);",
160         D0 => "${arch}_emit_dest_register(node, 0);",
161         D1 => "${arch}_emit_dest_register(node, 1);",
162         D2 => "${arch}_emit_dest_register(node, 2);",
163         C  => "${arch}_emit_immediate(node);",
164         O  => "${arch}_emit_offset(mode);",
165 );
166
167 #--------------------------------------------------#
168 #                        _                         #
169 #                       (_)                        #
170 #  _ __   _____      __  _ _ __    ___  _ __  ___  #
171 # | '_ \ / _ \ \ /\ / / | | '__|  / _ \| '_ \/ __| #
172 # | | | |  __/\ V  V /  | | |    | (_) | |_) \__ \ #
173 # |_| |_|\___| \_/\_/   |_|_|     \___/| .__/|___/ #
174 #                                      | |         #
175 #                                      |_|         #
176 #--------------------------------------------------#
177
178 $default_attr_type = "arm_attr_t";
179 $default_copy_attr = "arm_copy_attr";
180
181 %init_attr = (
182         arm_attr_t           => "\tinit_arm_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
183         arm_SymConst_attr_t  => "\tinit_arm_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
184         arm_CondJmp_attr_t   => "\tinit_arm_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
185         arm_SwitchJmp_attr_t => "\tinit_arm_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
186         arm_fpaConst_attr_t  => "\tinit_arm_attributes(res, flags, in_reqs, out_reqs, exec_units, n_res);",
187 );
188
189 %compare_attr = (
190         arm_attr_t           => "cmp_attr_arm",
191         arm_SymConst_attr_t  => "cmp_attr_arm_SymConst",
192         arm_CondJmp_attr_t   => "cmp_attr_arm_CondJmp",
193         arm_SwitchJmp_attr_t => "cmp_attr_arm_SwitchJmp",
194         arm_fpaConst_attr_t  => "cmp_attr_arm_fpaConst",
195 );
196
197 #%operands = (
198 #
199 #Immediate => {
200 #       comment   => "blup di dup",
201 #       irn_flags => "R",
202 #       emit      => ". [%S0]-10",
203 #       reg_req   => { },
204 #       attr      => "tarval *tv",
205 #       init_attr => "(void) attri;",
206 #       # op_flags => O
207 #       # cmp => "return 1;"
208 #},
209 #
210 #ShfOp_I => {
211 #       irn_flags => "R",
212 #       emit      => ". ...",
213 #       reg_req   => { in => [ "gp" ] },
214 #       attr      => "tarval *tv",
215 #       init_attr => "(void) tv;",
216 #},
217 #
218 #ShfOp => {
219 #       irn_flags => "R",
220 #       emit      => ". ...",
221 #       reg_req   => { in => [ "gp", "gp" ] },
222 #},
223 #
224 #);
225
226 %nodes = (
227
228 Unknown_GP => {
229         state     => "pinned",
230         op_flags  => "c",
231         irn_flags => "I",
232         reg_req   => { out => [ "gp_UKNWN" ] },
233         emit      => "",
234         mode      => $mode_gp,
235 },
236
237 Unknown_FPA => {
238         state     => "pinned",
239         op_flags  => "c",
240         irn_flags => "I",
241         reg_req   => { out => [ "fpa_UKNWN" ] },
242         emit      => "",
243         mode      => $mode_fpa,
244 },
245
246 #-----------------------------------------------------------------#
247 #  _       _                                         _            #
248 # (_)     | |                                       | |           #
249 #  _ _ __ | |_ ___  __ _  ___ _ __   _ __   ___   __| | ___  ___  #
250 # | | '_ \| __/ _ \/ _` |/ _ \ '__| | '_ \ / _ \ / _` |/ _ \/ __| #
251 # | | | | | ||  __/ (_| |  __/ |    | | | | (_) | (_| |  __/\__ \ #
252 # |_|_| |_|\__\___|\__, |\___|_|    |_| |_|\___/ \__,_|\___||___/ #
253 #                   __/ |                                         #
254 #                  |___/                                          #
255 #-----------------------------------------------------------------#
256
257 # commutative operations
258
259 Add => {
260         op_flags  => "C",
261         irn_flags => "R",
262         comment   => "construct Add: Add(a, b) = Add(b, a) = a + b",
263         attr      => "arm_shift_modifier mod, long shf",
264         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
265         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
266         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
267         emit      => '. add %D0, %S0, %S1%X'
268 },
269
270 Add_i => {
271         irn_flags => "R",
272         comment   => "construct Add: Add(a, const) = Add(const, a) = a + const",
273         attr      => "long imm",
274         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
275         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
276         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
277         emit      => '. add %D0, %S0, %C'
278 },
279
280 Mul => {
281         #op_flags  => "C",
282         irn_flags => "R",
283         comment   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
284         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "!in_r1" ] },
285         emit      =>'. mul %D0, %S0, %S1'
286 },
287
288 Smull => {
289         #op_flags  => "C",
290         irn_flags => "R",
291         comment   => "construct signed 64bit Mul: Mul(a, b) = Mul(b, a) = a * b",
292         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp", "gp" ] },
293         emit      =>'. smull %D0, %D1, %S0, %S1',
294         outs      => [ "low", "high" ],
295 },
296
297 Umull => {
298         #op_flags  => "C",
299         irn_flags => "R",
300         comment   => "construct unsigned 64bit Mul: Mul(a, b) = Mul(b, a) = a * b",
301         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp", "gp" ] },
302         emit      =>'. umull %D0, %D1, %S0, %S1',
303         outs      => [ "low", "high" ],
304 },
305
306 Mla => {
307         #op_flags  => "C",
308         irn_flags => "R",
309         comment   => "construct Mla: Mla(a, b, c) = a * b + c",
310         reg_req   => { "in" => [ "gp", "gp", "gp" ], "out" => [ "!in_r1" ] },
311         emit      =>'. mla %D0, %S0, %S1, %S2'
312 },
313
314 And => {
315         op_flags  => "C",
316         irn_flags => "R",
317         comment   => "construct And: And(a, b) = And(b, a) = a AND b",
318         attr      => "arm_shift_modifier mod, long shf",
319         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
320         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
321         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
322         emit      => '. and %D0, %S0, %S1%X'
323 },
324
325 And_i => {
326         irn_flags => "R",
327         comment   => "construct And: And(a, const) = And(const, a) = a AND const",
328         attr      => "long imm",
329         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
330         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
331         emit      => '. and %D0, %S0, %C',
332         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;'
333 },
334
335 Or => {
336         op_flags  => "C",
337         irn_flags => "R",
338         comment   => "construct Or: Or(a, b) = Or(b, a) = a OR b",
339         attr      => "arm_shift_modifier mod, long shf",
340         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
341         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
342         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
343         emit      => '. orr %D0, %S0, %S1%X'
344 },
345
346 Or_i => {
347         irn_flags => "R",
348         comment   => "construct Or: Or(a, const) = Or(const, a) = a OR const",
349         attr      => "long imm",
350         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
351         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
352         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
353         emit      => '. orr %D0, %S0, %C'
354 },
355
356 Eor => {
357         op_flags  => "C",
358         irn_flags => "R",
359         comment   => "construct Eor: Eor(a, b) = Eor(b, a) = a EOR b",
360         attr      => "arm_shift_modifier mod, long shf",
361         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
362         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
363         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
364         emit      => '. eor %D0, %S0, %S1%X'
365 },
366
367 Eor_i => {
368         irn_flags => "R",
369         comment   => "construct Eor: Eor(a, const) = Eor(const, a) = a EOR const",
370         attr      => "long imm",
371         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
372         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
373         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
374         emit      => '. eor %D0, %S0, %C'
375 },
376
377 # not commutative operations
378
379 Bic => {
380         irn_flags => "R",
381         comment   => "construct Bic: Bic(a, b) = a AND ~b",
382         attr      => "arm_shift_modifier mod, long shf",
383         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
384         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
385         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
386         emit      => '. bic %D0, %S0, %S1%X'
387 },
388
389 Bic_i => {
390         irn_flags => "R",
391         comment   => "construct Bic: Bic(a, const) = a AND ~const",
392         attr      => "long imm",
393         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
394         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
395         emit      => '. bic %D0, %S0, %C',
396         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;'
397 },
398
399 Sub => {
400         irn_flags => "R",
401         comment   => "construct Sub: Sub(a, b) = a - b",
402         attr      => "arm_shift_modifier mod, long shf",
403         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
404         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
405         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
406         emit      => '. sub %D0, %S0, %S1%X'
407 },
408
409 Sub_i => {
410         irn_flags => "R",
411         comment   => "construct Sub: Sub(a, const) = a - const",
412         attr      => "long imm",
413         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
414         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
415         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
416         emit      => '. sub %D0, %S0, %C',
417 },
418
419 Rsb => {
420         irn_flags => "R",
421         comment   => "construct Rsb: Rsb(a, b) = b - a",
422         attr      => "arm_shift_modifier mod, long shf",
423         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
424         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
425         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
426         emit      => '. rsb %D0, %S0, %S1%X'
427 },
428
429 Rsb_i => {
430         irn_flags => "R",
431         comment   => "construct Rsb: Rsb(a, const) = const - a",
432         attr      => "long imm",
433         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
434         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
435         emit      => '. rsb %D0, %S0, %C',
436         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;'
437 },
438
439 Shl => {
440         irn_flags => "R",
441         comment   => "construct Shl: Shl(a, b) = a << b",
442         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
443         emit      => '. mov %D0, %S0, lsl %S1'
444 },
445
446 Shr => {
447         irn_flags => "R",
448         comment   => "construct Shr: Shr(a, b) = a >>u b",
449         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
450         emit      => '. mov %D0, %S0, lsr %S1'
451 },
452
453 Shrs => {
454         irn_flags => "R",
455         comment   => "construct Shrs: Shrs(a, b) = a >>s b",
456         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
457         emit      => '. mov %D0, %S0, asr %S1'
458 },
459
460 Ror => {
461         irn_flags => "R",
462         comment   => "construct Ror: Ror(a, b) = a <<r>> b",
463         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
464         emit      => '. mov %D0, %S0, ror %S1'
465 },
466
467 #RotL => {
468 #  irn_flags => "R",
469 #  comment   => "construct RotL: RotL(a, b) = a ROTL b",
470 #  reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
471 #  emit      => '. rol %S0, %S1, %D0'
472 #},
473
474 #RotL_i => {
475 #       irn_flags => "R",
476 #       comment   => "construct RotL: RotL(a, const) = a ROTL const",
477 #       reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
478 #       emit      => '. rol %S0, %C, %D0'
479 #},
480
481 Mov => {
482         irn_flags => "R",
483         comment   => "construct Mov: a = b",
484         attr      => "arm_shift_modifier mod, long shf",
485         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
486         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
487         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
488         emit      => '. mov %D0, %S0%X'
489 },
490
491 Mov_i => {
492         irn_flags => "R",
493         comment   => "represents an integer constant",
494         attr      => "long imm",
495         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
496         reg_req   => { "out" => [ "gp" ] },
497         emit      => '. mov %D0, %C',
498         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;'
499 },
500
501 Mvn => {
502         irn_flags => "R",
503         comment   => "construct Not: Not(a) = !a",
504         attr      => "arm_shift_modifier mod, long shf",
505         init_attr => 'ARM_SET_SHF_MOD(attr, mod); attr->imm_value = shf;',
506         cmp_attr  => 'return (attr_a->instr_fl != attr_b->instr_fl) || (attr_a->imm_value != attr_b->imm_value);',
507         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
508         emit      => '. mvn %D0, %S0%X'
509 },
510
511 Mvn_i => {
512         irn_flags => "R",
513         comment   => "represents a negated integer constant",
514         attr      => "long imm",
515         init_attr => 'ARM_SET_SHF_MOD(attr, ARM_SHF_IMM); attr->imm_value = imm;',
516         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
517         reg_req   => { "out" => [ "gp" ] },
518         emit      => '. mvn %D0, %C',
519 },
520
521 Abs => {
522         irn_flags => "R",
523         comment   => "construct Abs: Abs(a) = |a|",
524         reg_req   => { "in" => [ "gp" ], "out" => [ "gp" ] },
525         emit      =>
526 '. movs %S0, %S0, #0
527 . rsbmi %D0, %S0, #0'
528 },
529
530 # other operations
531
532 #
533 # this node produces ALWAYS an empty (tempary) gp reg and cannot be CSE'd
534 #
535 EmptyReg => {
536         op_flags  => "c",
537         irn_flags => "R",
538         comment   => "allocate an empty register for calculations",
539         reg_req   => { "out" => [ "gp" ] },
540         emit      => '. /* %D0 now available for calculations */',
541         cmp_attr  => 'return 1;'
542 },
543
544 Copy => {
545         comment  => "implements a register copy",
546         reg_req  => { "in" => [ "gp" ], "out" => [ "gp" ] },
547 },
548
549 CopyB => {
550         op_flags  => "F|H",
551         state     => "pinned",
552         comment   => "implements a memcopy: CopyB(dst, src, size, mem) == memcpy(dst, src, size)",
553         attr      => "long imm",
554         init_attr => 'attr->imm_value = imm;',
555         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
556         reg_req   => { "in" => [ "!sp", "!sp", "gp", "gp", "gp", "none" ], "out" => [ "none" ] },
557         outs      => [ "M" ],
558 },
559
560 SymConst => {
561         op_flags  => "c",
562         irn_flags => "R",
563         comment   => "represents a symbolic constant",
564         attr      => "ident *id",
565         init_attr => "\tset_arm_symconst_id(res, id);",
566         reg_req   => { "out" => [ "gp" ] },
567         attr_type   => "arm_SymConst_attr_t",
568 },
569
570 CmpBra => {
571         op_flags  => "L|X|Y",
572         state     => "pinned",
573         comment   => "construct conditional branch: CMP A, B && JMPxx LABEL",
574         mode      => "mode_T",
575         attr      => "int proj_num",
576         init_attr => "\tset_arm_CondJmp_proj_num(res, proj_num);",
577         reg_req   => { "in" => [ "gp", "gp" ], "out" => [ "none", "none"] },
578         attr_type => "arm_CondJmp_attr_t",
579 },
580
581 SwitchJmp => {
582         op_flags  => "L|X|Y",
583         state     => "pinned",
584         comment   => "construct switch",
585         mode      => "mode_T",
586         attr      => "int n_projs, long def_proj_num",
587         init_attr => "\tset_arm_SwitchJmp_n_projs(res, n_projs);\n".
588                      "\tset_arm_SwitchJmp_default_proj_num(res, def_proj_num);",
589         reg_req   => { "in" => [ "gp" ], "out" => [ "none" ] },
590         attr_type => "arm_SwitchJmp_attr_t",
591 },
592
593 # Load / Store
594
595 Load => {
596         op_flags  => "L|F",
597         irn_flags => "R",
598         state     => "exc_pinned",
599         comment   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
600         reg_req   => { "in" => [ "gp", "none" ], "out" => [ "gp", "none" ] },
601         emit      => '. ldr %D0, [%S0, #0]',
602         outs      => [ "res", "M" ],
603 },
604
605 Loadb => {
606         op_flags  => "L|F",
607         irn_flags => "R",
608         state     => "exc_pinned",
609         comment   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
610         reg_req   => { "in" => [ "gp", "none" ], "out" => [ "gp", "none" ] },
611         emit      => '. ldrb %D0, [%S0, #0]',
612         outs      => [ "res", "M" ],
613 },
614
615 Loadbs => {
616         op_flags  => "L|F",
617         irn_flags => "R",
618         state     => "exc_pinned",
619         comment   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
620         reg_req   => { "in" => [ "gp", "none" ], "out" => [ "gp", "none" ] },
621         emit      => '. ldrsb %D0, [%S0, #0]',
622         outs      => [ "res", "M" ],
623 },
624
625 Loadh => {
626         op_flags  => "L|F",
627         irn_flags => "R",
628         state     => "exc_pinned",
629         comment   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
630         reg_req   => { "in" => [ "gp", "none" ], "out" => [ "gp", "none" ] },
631         emit      => '. ldrh %D0, [%S0, #0]',
632         outs      => [ "res", "M" ],
633 },
634
635 Loadhs => {
636         op_flags  => "L|F",
637         irn_flags => "R",
638         state     => "exc_pinned",
639         comment   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
640         reg_req   => { "in" => [ "gp", "none" ], "out" => [ "gp", "none" ] },
641         emit      => '. ldrsh %D0, [%S0, #0]',
642         outs      => [ "res", "M" ],
643 },
644
645 Storeb => {
646         op_flags  => "L|F",
647         irn_flags => "R",
648         state     => "exc_pinned",
649         comment   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
650         reg_req   => { "in" => [ "gp", "gp", "none" ], "out" => [ "none" ] },
651         emit      => '. strb %S1, [%S0, #0]',
652         mode      => "mode_M",
653 },
654
655 Storeh => {
656         op_flags  => "L|F",
657         irn_flags => "R",
658         state     => "exc_pinned",
659         comment   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
660         reg_req   => { "in" => [ "gp", "gp", "none" ], out => [ "none" ] },
661         emit      => '. strh %S1, [%S0, #0]',
662         mode      => "mode_M",
663 },
664
665 Store => {
666         op_flags  => "L|F",
667         irn_flags => "R",
668         state     => "exc_pinned",
669         comment   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
670         reg_req   => { "in" => [ "gp", "gp", "none" ], out => [ "none" ] },
671         emit      => '. str %S1, [%S0, #0]',
672         mode      => "mode_M",
673 },
674
675 StoreStackM4Inc => {
676         op_flags  => "L|F",
677         irn_flags => "R",
678         state     => "exc_pinned",
679         comment   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
680         reg_req   => { "in" => [ "sp", "gp", "gp", "gp", "gp", "none" ], "out" => [ "gp", "none" ] },
681         emit      => '. stmfd %S0!, {%S1, %S2, %S3, %S4}',
682         outs      => [ "ptr", "M" ],
683 },
684
685 LoadStackM3 => {
686         op_flags  => "L|F",
687         irn_flags => "R",
688         state     => "exc_pinned",
689         comment   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
690         reg_req   => { "in" => [ "sp", "none" ], "out" => [ "gp", "gp", "gp", "none" ] },
691         emit      => '. ldmfd %S0, {%D0, %D1, %D2}',
692         outs      => [ "res0", "res1", "res2", "M" ],
693 },
694
695
696 #---------------------------------------------------#
697 #    __                               _             #
698 #   / _|                             | |            #
699 #  | |_ _ __   __ _   _ __   ___   __| | ___  ___   #
700 #  |  _| '_ \ / _` | | '_ \ / _ \ / _` |/ _ \/ __|  #
701 #  | | | |_) | (_| | | | | | (_) | (_| |  __/\__ \  #
702 #  |_| | .__/ \__,_| |_| |_|\___/ \__,_|\___||___/  #
703 #      | |                                          #
704 #      |_|                                          #
705 #---------------------------------------------------#
706
707 # commutative operations
708
709 fpaAdf => {
710         op_flags  => "C",
711         irn_flags => "R",
712         comment   => "construct FPA Add: Add(a, b) = Add(b, a) = a + b",
713         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa" ] },
714         emit      => '. adf%M %D0, %S0, %S1',
715 },
716
717 fpaAdf_i => {
718         irn_flags => "R",
719         comment   => "construct FPA Add: Add(a, b) = Add(b, a) = a + b",
720         attr      => "long imm",
721         init_attr => 'ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
722         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
723         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa" ] },
724         emit      => '. adf%M %D0, %S0, %C',
725 },
726
727 fpaMuf => {
728         op_flags  => "C",
729         irn_flags => "R",
730         comment   => "construct FPA Mul: Mul(a, b) = Mul(b, a) = a * b",
731         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa" ] },
732         emit      =>'. muf%M %D0, %S0, %S1',
733 },
734
735 fpaMuf_i => {
736         irn_flags => "R",
737         comment   => "construct FPA Mul: Mul(a, b) = Mul(b, a) = a * b",
738         attr      => "long imm",
739         init_attr => 'ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
740         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
741         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa" ] },
742         emit      => '. muf%M %D0, %S0, %C',
743 },
744
745 fpaFml => {
746         op_flags  => "C",
747         irn_flags => "R",
748         comment   => "construct FPA Fast Mul: Mul(a, b) = Mul(b, a) = a * b",
749         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa" ] },
750         emit      =>'. fml%M %D0, %S0, %S1',
751 },
752
753 fpaMax => {
754         op_flags  => "C",
755         irn_flags => "R",
756         comment   => "construct FPA Max: Max(a, b) = Max(b, a) = a > b ? a : b",
757         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa" ] },
758         emit      =>'. fmax %S0, %S1, %D0',
759 },
760
761 fpaMin => {
762         op_flags  => "C",
763         irn_flags => "R",
764         comment   => "construct FPA Min: Min(a, b) = Min(b, a) = a < b ? a : b",
765         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa" ] },
766         emit      =>'. fmin %S0, %S1, %D0',
767 },
768
769 # not commutative operations
770
771 fpaSuf => {
772         irn_flags => "R",
773         comment   => "construct FPA Sub: Sub(a, b) = a - b",
774         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa" ] },
775         emit      => '. suf%M %D0, %S0, %S1'
776 },
777
778 fpaSuf_i => {
779         irn_flags => "R",
780         comment   => "construct FPA Sub: Sub(a, b) = a - b",
781         attr      => "long imm",
782         init_attr => 'ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
783         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
784         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa" ] },
785         emit      => '. suf%M %D0, %S0, %C'
786 },
787
788 fpaRsf => {
789         irn_flags => "R",
790         comment   => "construct FPA reverse Sub: Sub(a, b) = b - a",
791         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa" ] },
792         emit      => '. rsf%M %D0, %S0, %S1'
793 },
794
795 fpaRsf_i => {
796         irn_flags => "R",
797         comment   => "construct FPA reverse Sub: Sub(a, b) = b - a",
798         attr      => "long imm",
799         init_attr => 'ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
800         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
801         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa" ] },
802         emit      => '. rsf%M %D0, %S0, %C'
803 },
804
805 fpaDvf => {
806         comment   => "construct FPA Div: Div(a, b) = a / b",
807         attr      => "ir_mode *op_mode",
808         init_attr => "attr->op_mode = op_mode;",
809         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa", "none" ] },
810         emit      =>'. dvf%M %D0, %S0, %S1',
811         outs      => [ "res", "M" ],
812 },
813
814 fpaDvf_i => {
815         comment   => "construct FPA Div: Div(a, b) = a / b",
816         attr      => "ir_mode *op_mode, long imm",
817         init_attr => 'attr->op_mode = op_mode; ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
818         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
819         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa", "none" ] },
820         emit      =>'. dvf%M %D0, %S0, %C',
821         outs      => [ "res", "M" ],
822 },
823
824 fpaRdf => {
825         comment   => "construct FPA reverse Div: Div(a, b) = b / a",
826         attr      => "ir_mode *op_mode",
827         init_attr => "attr->op_mode = op_mode;",
828         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa", "none" ] },
829         emit      =>'. rdf%M %D0, %S0, %S1',
830         outs      => [ "res", "M" ],
831 },
832
833 fpaRdf_i => {
834         comment   => "construct FPA reverse Div: Div(a, b) = b / a",
835         attr      => "ir_mode *op_mode, long imm",
836         init_attr => 'attr->op_mode = op_mode; ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
837         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
838         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa", "none" ] },
839         emit      =>'. rdf%M %D0, %S0, %S1',
840         outs      => [ "res", "M" ],
841 },
842
843 fpaFdv => {
844         comment   => "construct FPA Fast Div: Div(a, b) = a / b",
845         attr      => "ir_mode *op_mode",
846         init_attr => "attr->op_mode = op_mode;",
847         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa", "none" ] },
848         emit      =>'. fdv%M %D0, %S0, %S1',
849         outs      => [ "res", "M" ],
850 },
851
852 fpaFdv_i => {
853         comment   => "construct FPA Fast Div: Div(a, b) = a / b",
854         attr      => "ir_mode *op_mode, long imm",
855         init_attr => 'attr->op_mode = op_mode; ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
856         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
857         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa", "none" ] },
858         emit      =>'. fdv%M %D0, %S0, %C',
859         outs      => [ "res", "M" ],
860 },
861
862 fpaFrd => {
863         comment   => "construct FPA Fast reverse Div: Div(a, b) = b / a",
864         attr      => "ir_mode *op_mode",
865         init_attr => "attr->op_mode = op_mode;",
866         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "fpa", "none" ] },
867         emit      =>'. frd%M %D0, %S0, %S1',
868         outs      => [ "res", "M" ],
869 },
870
871 fpaFrd_i => {
872         comment   => "construct FPA Fast reverse Div: Div(a, b) = b / a",
873         attr      => "ir_mode *op_mode, long imm",
874         init_attr => 'attr->op_mode = op_mode; ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
875         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;',
876         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa", "none" ] },
877         emit      =>'. frd%M %D0, %S0, %C',
878         outs      => [ "res", "M" ],
879 },
880
881 fpaMvf => {
882         irn_flags => "R",
883         comment   => "construct FPA Move: b = a",
884         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa" ] },
885         emit      => '. mvf%M %S0, %D0',
886 },
887
888 fpaMvf_i => {
889         irn_flags => "R",
890         comment   => "represents a float constant",
891         attr      => "long imm",
892         init_attr => 'ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
893         reg_req   => { "out" => [ "fpa" ] },
894         emit      => '. mvf%M %D0, %C',
895         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;'
896 },
897
898 fpaMnf => {
899         irn_flags => "R",
900         comment   => "construct FPA Move Negated: b = -a",
901         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa" ] },
902         emit      => '. mnf%M %S0, %D0',
903 },
904
905 fpaMnf_i => {
906         irn_flags => "R",
907         comment   => "represents a float constant",
908         attr      => "long imm",
909         init_attr => 'ARM_SET_FPA_IMM(attr); attr->imm_value = imm;',
910         reg_req   => { "out" => [ "fpa" ] },
911         emit      => '. mnf%M %D0, %C',
912         cmp_attr  => 'return attr_a->imm_value != attr_b->imm_value;'
913 },
914
915 fpaAbs => {
916         irn_flags => "R",
917         comment   => "construct FPA Absolute value: fAbsd(a) = |a|",
918         reg_req   => { "in" => [ "fpa" ], "out" => [ "fpa" ] },
919         emit      => '. abs%M %D0, %S0',
920 },
921
922 # other operations
923
924 fpaFlt => {
925         irn_flags => "R",
926         comment   => "construct a FPA integer->float conversion",
927         reg_req   => { "in" => ["gp"], "out" => [ "fpa" ] },
928         emit      => '. flt%M %D0, %S0',
929 },
930
931 fpaFix => {
932         irn_flags => "R",
933         comment   => "construct a FPA float->integer conversion",
934         reg_req   => { "in" => ["fpa"], "out" => [ "gp" ] },
935         emit      => '. fix %D0, %S0',
936 },
937
938 fpaCmfBra => {
939         op_flags  => "L|X|Y",
940         state     => "pinned",
941         comment   => "construct floating point Compare and Branch: CMF A, B && JMPxx LABEL",
942         mode      => "mode_T",
943         attr      => "int proj_num",
944         init_attr => "\tset_arm_CondJmp_proj_num(res, proj_num);",
945         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "none", "none"] },
946         attr_type => "arm_CondJmp_attr_t",
947 },
948
949 fpaCnfBra => {
950         op_flags  => "L|X|Y",
951         state     => "pinned",
952         comment   => "construct floating point Compare negative and Branch: CMF A, -B && JMPxx LABEL",
953         mode      => "mode_T",
954         attr      => "int proj_num",
955         init_attr => "\tset_arm_CondJmp_proj_num(res, proj_num);",
956         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "none", "none"] },
957         attr_type => "arm_CondJmp_attr_t",
958 },
959
960 fpaCmfeBra => {
961         op_flags  => "L|X|Y",
962         state     => "pinned",
963         comment   => "construct floating point Compare and Branch: CMF A, -B && JMPxx LABEL",
964         mode      => "mode_T",
965         attr      => "int proj_num",
966         init_attr => "\tset_arm_CondJmp_proj_num(res, proj_num);",
967         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "none", "none"] },
968         attr_type => "arm_CondJmp_attr_t",
969 },
970
971 fpaCnfeBra => {
972         op_flags  => "L|X|Y",
973         state     => "pinned",
974         comment   => "construct floating point Compare and Branch: CMF A, -B && JMPxx LABEL",
975         mode      => "mode_T",
976         attr      => "int proj_num",
977         init_attr => "\tset_arm_CondJmp_proj_num(res, proj_num);",
978         reg_req   => { "in" => [ "fpa", "fpa" ], "out" => [ "none", "none"] },
979         attr_type => "arm_CondJmp_attr_t",
980 },
981
982 # Load / Store
983
984 fpaLdf => {
985         op_flags  => "L|F",
986         irn_flags => "R",
987         state     => "exc_pinned",
988         comment   => "construct FPA Load: Load(ptr, mem) = LD ptr",
989         attr      => "ir_mode *op_mode",
990         init_attr => "attr->op_mode = op_mode;",
991         reg_req   => { "in" => [ "gp", "none" ], "out" => [ "fpa", "none" ] },
992         emit      => '. ldf%M %D0, [%S0]',
993         outs      => [ "res", "M" ],
994 },
995
996 fpaStf => {
997         op_flags  => "L|F",
998         irn_flags => "R",
999         state     => "exc_pinned",
1000         comment   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
1001         attr      => "ir_mode *op_mode",
1002         init_attr => "attr->op_mode = op_mode;",
1003         reg_req   => { "in" => [ "gp", "fpa", "none" ], "out" => [ "none" ] },
1004         emit      => '. stf%M %S1, [%S0]',
1005         mode      => "mode_M",
1006 },
1007
1008 fpaDbl2GP => {
1009         op_flags  => "L|F",
1010         irn_flags => "R",
1011         comment   => "construct fp double to 2 gp register transfer",
1012         reg_req   => { "in" => [ "fpa", "none" ], "out" => [ "gp", "gp", "none" ] },
1013         outs      => [ "low", "high", "M" ],
1014 },
1015
1016 AddSP => {
1017         irn_flags => "I",
1018         comment   => "construct Add to stack pointer",
1019         reg_req   => { in => [ "sp", "gp", "none" ], out => [ "in_r1", "none" ] },
1020         emit      => '. add %D0, %S0, %S1',
1021         outs      => [ "stack:I|S", "M" ],
1022 },
1023
1024 SubSPandCopy => {
1025 #irn_flags => "I",
1026         comment   => "construct Sub from stack pointer and copy to Register",
1027         reg_req   => { in => [ "sp", "gp", "none" ], out => [ "in_r1", "gp", "none" ] },
1028         ins       => [ "stack", "size", "mem" ],
1029         emit      => ". sub %D0, %S0, %S1\n".
1030                      ". mov sp, %D1",
1031         outs      => [ "stack:I|S", "addr", "M" ],
1032 },
1033
1034 LdTls => {
1035         irn_flags => "R",
1036         comment   => "load the TLS address",
1037         reg_req   => { out => [ "gp" ] },
1038 },
1039
1040
1041 #
1042 # floating point constants
1043 #
1044 fpaConst => {
1045         op_flags  => "c",
1046         irn_flags => "R",
1047         comment   => "construct a floating point constant",
1048         attr      => "tarval *tv",
1049         init_attr => "attr->tv = tv;",
1050         mode      => "get_tarval_mode(tv)",
1051         reg_req   => { "out" => [ "fpa" ] },
1052         attr_type => "arm_fpaConst_attr_t",
1053 }
1054
1055 #---------------------------------------------------#
1056 #          __                         _             #
1057 #         / _|                       | |            #
1058 #  __   _| |_ _ __    _ __   ___   __| | ___  ___   #
1059 #  \ \ / /  _| '_ \  | '_ \ / _ \ / _` |/ _ \/ __|  #
1060 #   \ V /| | | |_) | | | | | (_) | (_| |  __/\__ \  #
1061 #    \_/ |_| | .__/  |_| |_|\___/ \__,_|\___||___/  #
1062 #            | |                                    #
1063 #            |_|                                    #
1064 #---------------------------------------------------#
1065
1066 ); # end of %nodes