5c15a8573afb83034c18d0ec89460f8a48b87263
[libfirm] / ir / be / ia32 / ia32_spec.pl
1 # Creation: 2005/10/19
2 # $Id$
3 # This is the specification for the ia32 assembler Firm-operations
4
5 # the cpu architecture (ia32, ia64, mips, sparc, ppc, ...)
6
7 $arch = "ia32";
8
9 # The node description is done as a perl hash initializer with the
10 # following structure:
11 #
12 # %nodes = (
13 #
14 # <op-name> => {
15 #   "op_flags"  => "N|L|C|X|I|F|Y|H|c|K",
16 #   "irn_flags" => "R|N|I"
17 #   "arity"     => "0|1|2|3 ... |variable|dynamic|any",
18 #   "state"     => "floats|pinned|mem_pinned|exc_pinned",
19 #   "args"      => [
20 #                    { "type" => "type 1", "name" => "name 1" },
21 #                    { "type" => "type 2", "name" => "name 2" },
22 #                    ...
23 #                  ],
24 #   "comment"   => "any comment for constructor",
25 #   "reg_req"   => { "in" => [ "reg_class|register" ], "out" => [ "reg_class|register|in_rX" ] },
26 #   "cmp_attr"  => "c source code for comparing node attributes",
27 #   "emit"      => "emit code with templates",
28 #   "rd_constructor" => "c source code which constructs an ir_node"
29 # },
30 #
31 # ... # (all nodes you need to describe)
32 #
33 # ); # close the %nodes initializer
34
35 # op_flags: flags for the operation, OPTIONAL (default is "N")
36 # the op_flags correspond to the firm irop_flags:
37 #   N   irop_flag_none
38 #   L   irop_flag_labeled
39 #   C   irop_flag_commutative
40 #   X   irop_flag_cfopcode
41 #   I   irop_flag_ip_cfopcode
42 #   F   irop_flag_fragile
43 #   Y   irop_flag_forking
44 #   H   irop_flag_highlevel
45 #   c   irop_flag_constlike
46 #   K   irop_flag_keep
47 #
48 # irn_flags: special node flags, OPTIONAL (default is 0)
49 # following irn_flags are supported:
50 #   R   rematerializeable
51 #   N   not spillable
52 #   I   ignore for register allocation
53 #
54 # state: state of the operation, OPTIONAL (default is "floats")
55 #
56 # arity: arity of the operation, MUST NOT BE OMITTED
57 #
58 # args:  the OPTIONAL arguments of the node constructor (debug, irg and block
59 #        are always the first 3 arguments and are always autmatically
60 #        created)
61 #        If this key is missing the following arguments will be created:
62 #        for i = 1 .. arity: ir_node *op_i
63 #        ir_mode *mode
64 #
65 # comment: OPTIONAL comment for the node constructor
66 #
67 # rd_constructor: for every operation there will be a
68 #      new_rd_<arch>_<op-name> function with the arguments from above
69 #      which creates the ir_node corresponding to the defined operation
70 #      you can either put the complete source code of this function here
71 #
72 #      This key is OPTIONAL. If omitted, the following constructor will
73 #      be created:
74 #      if (!op_<arch>_<op-name>) assert(0);
75 #      for i = 1 to arity
76 #         set in[i] = op_i
77 #      done
78 #      res = new_ir_node(db, irg, block, op_<arch>_<op-name>, mode, arity, in)
79 #      return res
80 #
81 # NOTE: rd_constructor and args are only optional if and only if arity is 0,1,2 or 3
82
83 # register types:
84 #   0 - no special type
85 #   1 - caller save (register must be saved by the caller of a function)
86 #   2 - callee save (register must be saved by the called function)
87 #   4 - ignore (do not assign this register)
88 # NOTE: Last entry of each class is the largest Firm-Mode a register can hold
89 %reg_classes = (
90   "gp" => [
91             { "name" => "eax", "type" => 1 },
92             { "name" => "edx", "type" => 1 },
93             { "name" => "ebx", "type" => 2 },
94             { "name" => "ecx", "type" => 1 },
95             { "name" => "esi", "type" => 2 },
96             { "name" => "edi", "type" => 2 },
97             { "name" => "ebp", "type" => 2 },
98             { "name" => "esp", "type" => 4 },
99             { "name" => "xxx", "type" => 6 },  # we need a dummy register for NoReg and Unknown nodes
100                         { "mode" => "mode_P" }
101           ],
102   "fp" => [
103             { "name" => "xmm0", "type" => 1 },
104             { "name" => "xmm1", "type" => 1 },
105             { "name" => "xmm2", "type" => 1 },
106             { "name" => "xmm3", "type" => 1 },
107             { "name" => "xmm4", "type" => 1 },
108             { "name" => "xmm5", "type" => 1 },
109             { "name" => "xmm6", "type" => 1 },
110             { "name" => "xmm7", "type" => 1 },
111             { "name" => "xxxx", "type" => 6 },  # we need a dummy register for NoReg and Unknown nodes
112                         { "mode" => "mode_D" }
113           ]
114 ); # %reg_classes
115
116 #--------------------------------------------------#
117 #                        _                         #
118 #                       (_)                        #
119 #  _ __   _____      __  _ _ __    ___  _ __  ___  #
120 # | '_ \ / _ \ \ /\ / / | | '__|  / _ \| '_ \/ __| #
121 # | | | |  __/\ V  V /  | | |    | (_) | |_) \__ \ #
122 # |_| |_|\___| \_/\_/   |_|_|     \___/| .__/|___/ #
123 #                                      | |         #
124 #                                      |_|         #
125 #--------------------------------------------------#
126
127 %nodes = (
128
129 #-----------------------------------------------------------------#
130 #  _       _                                         _            #
131 # (_)     | |                                       | |           #
132 #  _ _ __ | |_ ___  __ _  ___ _ __   _ __   ___   __| | ___  ___  #
133 # | | '_ \| __/ _ \/ _` |/ _ \ '__| | '_ \ / _ \ / _` |/ _ \/ __| #
134 # | | | | | ||  __/ (_| |  __/ |    | | | | (_) | (_| |  __/\__ \ #
135 # |_|_| |_|\__\___|\__, |\___|_|    |_| |_|\___/ \__,_|\___||___/ #
136 #                   __/ |                                         #
137 #                  |___/                                          #
138 #-----------------------------------------------------------------#
139
140 # commutative operations
141
142 # NOTE:
143 # All nodes supporting Addressmode have 5 INs:
144 # 1 - base    r1 == NoReg in case of no AM or no base
145 # 2 - index   r2 == NoReg in case of no AM or no index
146 # 3 - op1     r3 == always present
147 # 4 - op2     r4 == NoReg in case of immediate operation
148 # 5 - mem     NoMem in case of no AM otherwise it takes the mem from the Load
149
150 "Add" => {
151   "irn_flags" => "R",
152   "comment"   => "construct Add: Add(a, b) = Add(b, a) = a + b",
153   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
154   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3 !in_r4" ] },
155   "emit"      => '. add %ia32_emit_binop\t\t\t/* Add(%A1, %A2) -> %D1 */'
156 },
157
158 "Mul" => {
159   "irn_flags" => "A",
160   "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
161   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
162   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3 !in_r4" ] },
163   "emit"      => '. imul %ia32_emit_binop\t\t\t/* Mul(%A1, %A2) -> %D1 */'
164 },
165
166 # Mulh is an exception from the 4 INs with AM because the target is always EAX:EDX
167 "Mulh" => {
168   "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
169   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
170   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "eax in_r3", "edx in_r4" ] },
171   "emit"      => '. imul %ia32_emit_unop\t\t\t/* Mulh(%A1, %A2) -> %D1 */ '
172 },
173
174 "And" => {
175   "irn_flags" => "R",
176   "comment"   => "construct And: And(a, b) = And(b, a) = a AND b",
177   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
178   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3 !in_r4" ] },
179   "emit"      => '. and %ia32_emit_binop\t\t\t/* And(%A1, %A2) -> %D1 */'
180 },
181
182 "Or" => {
183   "irn_flags" => "R",
184   "comment"   => "construct Or: Or(a, b) = Or(b, a) = a OR b",
185   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
186   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3 !in_r4" ] },
187   "emit"      => '. or %ia32_emit_binop\t\t\t/* Or(%A1, %A2) -> %D1 */'
188 },
189
190 "Eor" => {
191   "irn_flags" => "R",
192   "comment"   => "construct Eor: Eor(a, b) = Eor(b, a) = a EOR b",
193   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
194   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3 !in_r4" ] },
195   "emit"      => '. xor %ia32_emit_binop\t\t\t/* Xor(%A1, %A2) -> %D1 */'
196 },
197
198 "Max" => {
199   "irn_flags" => "R",
200   "comment"   => "construct Max: Max(a, b) = Max(b, a) = a > b ? a : b",
201   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
202   "emit"      =>
203 '2. cmp %S1, %S2\t\t\t/* prepare Max (%S1 - %S2), (%A1, %A2) */
204   if (mode_is_signed(get_irn_mode(n))) {
205 4.  cmovl %D1, %S2\t\t\t/* %S1 is less %S2 */
206   }
207   else {
208 4.  cmovb %D1, %S2\t\t\t/* %S1 is below %S2 */
209   }
210 '
211 },
212
213 "Min" => {
214   "irn_flags" => "R",
215   "comment"   => "construct Min: Min(a, b) = Min(b, a) = a < b ? a : b",
216   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
217   "emit"      =>
218 '2. cmp %S1, %S2\t\t\t/* prepare Min (%S1 - %S2), (%A1, %A2) */
219   if (mode_is_signed(get_irn_mode(n))) {
220 2.  cmovg %D1, %S2\t\t\t/* %S1 is greater %S2 */
221   }
222   else {
223 2.  cmova %D1, %S2, %D1\t\t\t/* %S1 is above %S2 */
224   }
225 '
226 },
227
228 "CMov" => {
229   "irn_flags" => "R",
230   "comment"   => "construct Mux: Mux(sel, a, b) == sel ? a : b",
231   "reg_req"   => { "in" => [ "gp", "gp", "gp" ], "out" => [ "in_r2 !in_r3" ] },
232   "emit"      =>
233 '. cmp %S1, 0\t\t\t/* compare Sel for CMov (%A2, %A3) */
234 . cmovne %D1, %S3\t\t\t/* sel == true -> return %S3 */
235 '
236 },
237
238 # not commutative operations
239
240 "Sub" => {
241   "irn_flags" => "R",
242   "comment"   => "construct Sub: Sub(a, b) = a - b",
243   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
244   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3 !in_r4" ] },
245   "emit"      => '. sub %ia32_emit_binop\t\t\t/* Sub(%A1, %A2) -> %D1 */'
246 },
247
248 "DivMod" => {
249   "op_flags" => "F|L",
250   "state"    => "exc_pinned",
251   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "eax in_r1", "edx in_r3" ] },
252   "emit"     =>
253 '  if (mode_is_signed(get_irn_mode(n))) {
254 4.  idiv %S2\t\t\t/* signed DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
255   }
256   else {
257 4.  div %S2\t\t\t/* unsigned DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
258   }
259 '
260 },
261
262 "Shl" => {
263   "irn_flags" => "R",
264   "comment"   => "construct Shl: Shl(a, b) = a << b",
265   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
266   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
267   "emit"      => '. shl %ia32_emit_binop\t\t\t/* Shl(%A1, %A2) -> %D1 */'
268 },
269
270 "Shr" => {
271   "irn_flags" => "R",
272   "comment"   => "construct Shr: Shr(a, b) = a >> b",
273   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
274   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
275   "emit"      => '. shr %ia32_emit_binop\t\t\t/* Shr(%A1, %A2) -> %D1 */'
276 },
277
278 "Shrs" => {
279   "irn_flags" => "R",
280   "comment"   => "construct Shrs: Shrs(a, b) = a >> b",
281   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
282   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
283   "emit"      => '. sar %ia32_emit_binop\t\t\t/* Shrs(%A1, %A2) -> %D1 */'
284 },
285
286 "RotR" => {
287   "irn_flags" => "R",
288   "comment"     => "construct RotR: RotR(a, b) = a ROTR b",
289   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
290   "reg_req"     => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
291   "emit"        => '. ror %ia32_emit_binop\t\t\t/* RotR(%A1, %A2) -> %D1 */'
292 },
293
294 "RotL" => {
295   "irn_flags" => "R",
296   "comment"   => "construct RotL: RotL(a, b) = a ROTL b",
297   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
298   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
299   "emit"      => '. rol %ia32_emit_binop\t\t\t/* RotL(%A1, %A2) -> %D1 */'
300 },
301
302 # unary operations
303
304 "Minus" => {
305   "irn_flags" => "R",
306   "comment"   => "construct Minus: Minus(a) = -a",
307   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
308   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
309   "emit"      => '. neg %ia32_emit_unop\t\t\t/* Neg(%A1) -> %D1, (%A1) */'
310 },
311
312 "Inc" => {
313   "irn_flags" => "R",
314   "comment"   => "construct Increment: Inc(a) = a++",
315   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
316   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
317   "emit"      => '. inc %ia32_emit_unop\t\t\t/* Inc(%S1) -> %D1, (%A1) */'
318 },
319
320 "Dec" => {
321   "irn_flags" => "R",
322   "comment"   => "construct Decrement: Dec(a) = a--",
323   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
324   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
325   "emit"      => '. dec %ia32_emit_unop\t\t\t/* Dec(%S1) -> %D1, (%A1) */'
326 },
327
328 "Not" => {
329   "irn_flags" => "R",
330   "comment"   => "construct Not: Not(a) = !a",
331   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
332   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
333   "emit"      => '. not %ia32_emit_unop\t\t\t/* Not(%S1) -> %D1, (%A1) */'
334 },
335
336 # other operations
337
338 "CondJmp" => {
339   "op_flags"  => "L|X|Y",
340   "comment"   => "construct conditional jump: CMP A, B && JMPxx LABEL",
341   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
342   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "none", "none" ] },
343 },
344
345 "SwitchJmp" => {
346   "op_flags"  => "L|X|Y",
347   "comment"   => "construct switch",
348   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
349   "reg_req"   => { "in" => [ "gp" ], "out" => [ "none" ] },
350 },
351
352 "Const" => {
353   "op_flags"  => "c",
354   "irn_flags" => "R",
355   "comment"   => "represents an integer constant",
356   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
357   "reg_req"   => { "out" => [ "gp" ] },
358   "emit"      =>
359 '  if (get_ia32_Immop_tarval(n) == get_tarval_null(get_irn_mode(n))) {
360 4.   sub %D1, %D1\t\t\t/* optimized mov 0 to register */
361   }
362   else {
363 4.   mov %D1, %C\t\t\t/* Mov Const into register */
364   }
365 ',
366 },
367
368 "Cdq" => {
369   "irn_flags" => "R",
370   "comment"   => "construct CDQ: sign extend EAX -> EDX:EAX",
371   "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax in_r1", "edx" ] },
372   "emit"      => '. cdq\t\t\t/* sign extend EAX -> EDX:EAX, (%A1) */'
373 },
374
375 # Load / Store
376
377 "Load" => {
378   "op_flags"  => "L|F",
379   "irn_flags" => "R",
380   "state"     => "exc_pinned",
381   "comment"   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
382   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
383   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "gp" ] },
384   "emit"      =>
385 '  if (get_mode_size_bits(get_ia32_ls_mode(n)) < 32) {
386 4.   mov%Mx %D1, %ia32_emit_am\t\t\t/* Load((%A1)) -> %D1 */
387   }
388   else {
389 4.   mov %D1, %ia32_emit_am\t\t\t/* Load((%A1)) -> %D1 */
390   }
391 '
392 },
393
394 "Store" => {
395   "op_flags"  => "L|F",
396   "state"     => "exc_pinned",
397   "comment"   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
398   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
399   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ] },
400   "emit"      => '. mov %ia32_emit_binop\t\t\t/* Store(%A3) -> (%A1) */'
401 },
402
403 "Lea" => {
404   "irn_flags" => "R",
405   "comment"   => "construct Lea: Lea(a,b) = lea [a+b*const+offs] | res = a + b * const + offs with const = 0,1,2,4,8",
406   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
407   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "gp" ] },
408   "emit"      => '. lea %D1, %ia32_emit_am\t\t/* %D1 = %S1 + %S2 << scale + %O, (%A1, %A2) */'
409 },
410
411 #--------------------------------------------------------#
412 #    __ _             _                     _            #
413 #   / _| |           | |                   | |           #
414 #  | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
415 #  |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
416 #  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
417 #  |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
418 #--------------------------------------------------------#
419
420 # commutative operations
421
422 "fAdd" => {
423   "irn_flags" => "R",
424   "comment"   => "construct SSE Add: Add(a, b) = Add(b, a) = a + b",
425   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
426   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
427   "emit"      => '. adds%M %ia32_emit_binop\t\t\t/* SSE Add(%A3, %A4) -> %D1 */'
428 },
429
430 "fMul" => {
431   "irn_flags" => "R",
432   "comment"   => "construct SSE Mul: Mul(a, b) = Mul(b, a) = a * b",
433   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
434   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
435   "emit"      => '. muls%M %ia32_emit_binop\t\t\t/* SSE Mul(%A3, %A4) -> %D1 */'
436 },
437
438 "fMax" => {
439   "irn_flags" => "R",
440   "comment"   => "construct SSE Max: Max(a, b) = Max(b, a) = a > b ? a : b",
441   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
442   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
443   "emit"      => '. maxs%M %ia32_emit_binop\t\t\t/* SSE Max(%A3, %A4) -> %D1 */'
444 },
445
446 "fMin" => {
447   "irn_flags" => "R",
448   "comment"   => "construct SSE Min: Min(a, b) = Min(b, a) = a < b ? a : b",
449   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
450   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
451   "emit"      => '. mins%M %ia32_emit_binop\t\t\t/* SSE Min(%A3, %A4) -> %D1 */'
452 },
453
454 "fAnd" => {
455   "irn_flags" => "R",
456   "comment"   => "construct SSE And: And(a, b) = a AND b",
457   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
458   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
459   "emit"      => '. andp%M %ia32_emit_binop\t\t\t/* SSE And(%A3, %A4) -> %D1 */'
460 },
461
462 "fOr" => {
463   "irn_flags" => "R",
464   "comment"   => "construct SSE Or: Or(a, b) = a OR b",
465   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
466   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
467   "emit"      => '. orp%M %ia32_emit_binop\t\t\t/* SSE Or(%A3, %A4) -> %D1 */'
468 },
469
470 "fEor" => {
471   "irn_flags" => "R",
472   "comment"   => "construct SSE Eor: Eor(a, b) = a XOR b",
473   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
474   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
475   "emit"      => '. xorp%M %ia32_emit_binop\t\t\t/* SSE Xor(%A3, %A4) -> %D1 */'
476 },
477
478 # not commutative operations
479
480 "fSub" => {
481   "irn_flags" => "R",
482   "comment"   => "construct SSE Sub: Sub(a, b) = a - b",
483   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
484   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
485   "emit"      => '. subs%M %ia32_emit_binop\t\t\t/* SSE Sub(%A1, %A2) -> %D1 */'
486 },
487
488 "fDiv" => {
489   "irn_flags" => "R",
490   "comment"   => "construct SSE Div: Div(a, b) = a / b",
491   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
492   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "in_r3 !in_r4" ] },
493   "emit"      => '. divs%M %ia32_emit_binop\t\t\t/* SSE Div(%A1, %A2) -> %D1 */'
494 },
495
496 # other operations
497
498 "fCondJmp" => {
499   "op_flags"  => "L|X|Y",
500   "comment"   => "construct conditional jump: UCOMIS A, B && JMPxx LABEL",
501   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
502   "reg_req"   => { "in" => [ "gp", "gp", "fp", "fp", "none" ], "out" => [ "none", "none" ] },
503 },
504
505 "fConst" => {
506   "op_flags"  => "c",
507   "irn_flags" => "R",
508   "comment"   => "represents a SSE constant",
509   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
510   "reg_req"   => { "out" => [ "fp" ] },
511   "emit"      => '. mov%M %D1, %C\t\t\t/* Load fConst into register */',
512 },
513
514 # Load / Store
515
516 "fLoad" => {
517   "op_flags"  => "L|F",
518   "irn_flags" => "R",
519   "state"     => "exc_pinned",
520   "comment"   => "construct SSE Load: Load(ptr, mem) = LD ptr",
521   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
522   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "fp" ] },
523   "emit"      => '. movs%M %D1, %ia32_emit_am\t\t\t/* Load((%A1)) -> %D1 */'
524 },
525
526 "fStore" => {
527   "op_flags" => "L|F",
528   "state"    => "exc_pinned",
529   "comment"  => "construct Store: Store(ptr, val, mem) = ST ptr,val",
530   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
531   "reg_req"  => { "in" => [ "gp", "gp", "fp", "none" ] },
532   "emit"     => '. movs%M %ia32_emit_am, %S3\t\t\t/* Store(%S3) -> (%A1) */'
533 },
534
535 # CopyB
536
537 "CopyB" => {
538   "op_flags" => "F|H",
539   "state"    => "pinned",
540   "comment"  => "implements a memcopy: CopyB(dst, src, size, mem) == memcpy(dst, src, size)",
541   "reg_req"  => { "in" => [ "edi", "esi", "ecx", "none" ], "out" => [ "none" ] },
542 },
543
544 "CopyB_i" => {
545   "op_flags" => "F|H",
546   "state"    => "pinned",
547   "comment"  => "implements a memcopy: CopyB(dst, src, mem) == memcpy(dst, src, attr(size))",
548   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
549   "reg_req"  => { "in" => [ "edi", "esi", "none" ], "out" => [ "none" ] },
550 },
551
552 # Conversions
553
554 "Conv_I2FP" => {
555   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "fp", "none" ] },
556   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
557   "comment"  => "construct Conv Int -> Floating Point"
558 },
559
560 "Conv_FP2I" => {
561   "reg_req"  => { "in" => [ "gp", "gp", "fp", "none" ], "out" => [ "gp", "none" ] },
562   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
563   "comment"  => "construct Conv Floating Point -> Int"
564 },
565
566 "Conv_FP2FP" => {
567   "reg_req"  => { "in" => [ "gp", "gp", "fp", "none" ], "out" => [ "fp", "none" ] },
568   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
569   "comment"  => "construct Conv Floating Point -> Floating Point",
570 },
571
572 ); # end of %nodes