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