fixed remat flag for load nodes
[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 $arch = "ia32";
7
8 # this string marks the beginning of a comment in emit
9 $comment_string = "/*";
10
11 # the number of additional opcodes you want to register
12 #$additional_opcodes = 0;
13
14 # The node description is done as a perl hash initializer with the
15 # following structure:
16 #
17 # %nodes = (
18 #
19 # <op-name> => {
20 #   "op_flags"  => "N|L|C|X|I|F|Y|H|c|K",
21 #   "irn_flags" => "R|N|I"
22 #   "arity"     => "0|1|2|3 ... |variable|dynamic|any",
23 #   "state"     => "floats|pinned|mem_pinned|exc_pinned",
24 #   "args"      => [
25 #                    { "type" => "type 1", "name" => "name 1" },
26 #                    { "type" => "type 2", "name" => "name 2" },
27 #                    ...
28 #                  ],
29 #   "comment"   => "any comment for constructor",
30 #   "reg_req"   => { "in" => [ "reg_class|register" ], "out" => [ "reg_class|register|in_rX" ] },
31 #   "cmp_attr"  => "c source code for comparing node attributes",
32 #   "emit"      => "emit code with templates",
33 #   "attr"      => "attitional attribute arguments for constructor"
34 #   "init_attr" => "emit attribute initialization template"
35 #   "rd_constructor" => "c source code which constructs an ir_node"
36 # },
37 #
38 # ... # (all nodes you need to describe)
39 #
40 # ); # close the %nodes initializer
41
42 # op_flags: flags for the operation, OPTIONAL (default is "N")
43 # the op_flags correspond to the firm irop_flags:
44 #   N   irop_flag_none
45 #   L   irop_flag_labeled
46 #   C   irop_flag_commutative
47 #   X   irop_flag_cfopcode
48 #   I   irop_flag_ip_cfopcode
49 #   F   irop_flag_fragile
50 #   Y   irop_flag_forking
51 #   H   irop_flag_highlevel
52 #   c   irop_flag_constlike
53 #   K   irop_flag_keep
54 #
55 # irn_flags: special node flags, OPTIONAL (default is 0)
56 # following irn_flags are supported:
57 #   R   rematerializeable
58 #   N   not spillable
59 #   I   ignore for register allocation
60 #
61 # state: state of the operation, OPTIONAL (default is "floats")
62 #
63 # arity: arity of the operation, MUST NOT BE OMITTED
64 #
65 # args:  the OPTIONAL arguments of the node constructor (debug, irg and block
66 #        are always the first 3 arguments and are always autmatically
67 #        created)
68 #        If this key is missing the following arguments will be created:
69 #        for i = 1 .. arity: ir_node *op_i
70 #        ir_mode *mode
71 #
72 # outs:  if a node defines more than one output, the names of the projections
73 #        nodes having outs having automatically the mode mode_T
74 #
75 # comment: OPTIONAL comment for the node constructor
76 #
77 # rd_constructor: for every operation there will be a
78 #      new_rd_<arch>_<op-name> function with the arguments from above
79 #      which creates the ir_node corresponding to the defined operation
80 #      you can either put the complete source code of this function here
81 #
82 #      This key is OPTIONAL. If omitted, the following constructor will
83 #      be created:
84 #      if (!op_<arch>_<op-name>) assert(0);
85 #      for i = 1 to arity
86 #         set in[i] = op_i
87 #      done
88 #      res = new_ir_node(db, irg, block, op_<arch>_<op-name>, mode, arity, in)
89 #      return res
90 #
91 # NOTE: rd_constructor and args are only optional if and only if arity is 0,1,2 or 3
92
93 # register types:
94 #   0 - no special type
95 #   1 - caller save (register must be saved by the caller of a function)
96 #   2 - callee save (register must be saved by the called function)
97 #   4 - ignore (do not assign this register)
98 # NOTE: Last entry of each class is the largest Firm-Mode a register can hold
99 %reg_classes = (
100   "gp" => [
101             { "name" => "eax", "type" => 1 },
102             { "name" => "edx", "type" => 1 },
103             { "name" => "ebx", "type" => 2 },
104             { "name" => "ecx", "type" => 1 },
105             { "name" => "esi", "type" => 2 },
106             { "name" => "edi", "type" => 2 },
107 #            { "name" => "r11", "type" => 1 },
108 #            { "name" => "r12", "type" => 1 },
109 #            { "name" => "r13", "type" => 1 },
110 #            { "name" => "r14", "type" => 1 },
111 #            { "name" => "r15", "type" => 1 },
112 #            { "name" => "r16", "type" => 1 },
113 #            { "name" => "r17", "type" => 1 },
114 #            { "name" => "r18", "type" => 1 },
115 #            { "name" => "r19", "type" => 1 },
116 #            { "name" => "r20", "type" => 1 },
117 #            { "name" => "r21", "type" => 1 },
118 #            { "name" => "r22", "type" => 1 },
119 #            { "name" => "r23", "type" => 1 },
120 #            { "name" => "r24", "type" => 1 },
121 #            { "name" => "r25", "type" => 1 },
122 #            { "name" => "r26", "type" => 1 },
123 #            { "name" => "r27", "type" => 1 },
124 #            { "name" => "r28", "type" => 1 },
125 #            { "name" => "r29", "type" => 1 },
126 #            { "name" => "r30", "type" => 1 },
127 #            { "name" => "r31", "type" => 1 },
128 #            { "name" => "r32", "type" => 1 },
129             { "name" => "ebp", "type" => 2 },
130             { "name" => "esp", "type" => 4 },
131             { "name" => "gp_NOREG", "type" => 6 },  # we need a dummy register for NoReg nodes
132             { "name" => "gp_UKNWN", "type" => 6 },  # we need a dummy register for Unknown nodes
133                         { "mode" => "mode_P" }
134           ],
135   "xmm" => [
136             { "name" => "xmm0", "type" => 1 },
137             { "name" => "xmm1", "type" => 1 },
138             { "name" => "xmm2", "type" => 1 },
139             { "name" => "xmm3", "type" => 1 },
140             { "name" => "xmm4", "type" => 1 },
141             { "name" => "xmm5", "type" => 1 },
142             { "name" => "xmm6", "type" => 1 },
143             { "name" => "xmm7", "type" => 1 },
144             { "name" => "xmm_NOREG", "type" => 6 },  # we need a dummy register for NoReg nodes
145             { "name" => "xmm_UKNWN", "type" => 6 },  # we need a dummy register for Unknown nodes
146                         { "mode" => "mode_D" }
147           ],
148   "vfp" => [
149             { "name" => "vf0", "type" => 1 },
150             { "name" => "vf1", "type" => 1 },
151             { "name" => "vf2", "type" => 1 },
152             { "name" => "vf3", "type" => 1 },
153             { "name" => "vf4", "type" => 1 },
154             { "name" => "vf5", "type" => 1 },
155             { "name" => "vf6", "type" => 1 },
156             { "name" => "vf7", "type" => 1 },
157             { "name" => "vfp_NOREG", "type" => 6 },  # we need a dummy register for NoReg nodes
158             { "name" => "vfp_UKNWN", "type" => 6 },  # we need a dummy register for Unknown nodes
159                         { "mode" => "mode_E" }
160           ],
161   "st" => [
162             { "name" => "st0", "type" => 1 },
163             { "name" => "st1", "type" => 1 },
164             { "name" => "st2", "type" => 1 },
165             { "name" => "st3", "type" => 1 },
166             { "name" => "st4", "type" => 1 },
167             { "name" => "st5", "type" => 1 },
168             { "name" => "st6", "type" => 1 },
169             { "name" => "st7", "type" => 1 },
170                         { "mode" => "mode_E" }
171           ]
172 ); # %reg_classes
173
174 #--------------------------------------------------#
175 #                        _                         #
176 #                       (_)                        #
177 #  _ __   _____      __  _ _ __    ___  _ __  ___  #
178 # | '_ \ / _ \ \ /\ / / | | '__|  / _ \| '_ \/ __| #
179 # | | | |  __/\ V  V /  | | |    | (_) | |_) \__ \ #
180 # |_| |_|\___| \_/\_/   |_|_|     \___/| .__/|___/ #
181 #                                      | |         #
182 #                                      |_|         #
183 #--------------------------------------------------#
184
185 %operands = (
186 );
187
188 %nodes = (
189
190 #-----------------------------------------------------------------#
191 #  _       _                                         _            #
192 # (_)     | |                                       | |           #
193 #  _ _ __ | |_ ___  __ _  ___ _ __   _ __   ___   __| | ___  ___  #
194 # | | '_ \| __/ _ \/ _` |/ _ \ '__| | '_ \ / _ \ / _` |/ _ \/ __| #
195 # | | | | | ||  __/ (_| |  __/ |    | | | | (_) | (_| |  __/\__ \ #
196 # |_|_| |_|\__\___|\__, |\___|_|    |_| |_|\___/ \__,_|\___||___/ #
197 #                   __/ |                                         #
198 #                  |___/                                          #
199 #-----------------------------------------------------------------#
200
201 # commutative operations
202
203 # NOTE:
204 # All nodes supporting Addressmode have 5 INs:
205 # 1 - base    r1 == NoReg in case of no AM or no base
206 # 2 - index   r2 == NoReg in case of no AM or no index
207 # 3 - op1     r3 == always present
208 # 4 - op2     r4 == NoReg in case of immediate operation
209 # 5 - mem     NoMem in case of no AM otherwise it takes the mem from the Load
210
211 "Add" => {
212   "irn_flags" => "R",
213   "comment"   => "construct Add: Add(a, b) = Add(b, a) = a + b",
214   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
215   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
216   "emit"      => '. add %ia32_emit_binop /* Add(%A3, %A4) -> %D1 */',
217   "outs"      => [ "res", "M" ],
218 },
219
220 "AddC" => {
221   "comment"   => "construct Add with Carry: AddC(a, b) = Add(b, a) = a + b + carry",
222   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
223   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
224   "emit"      => '. adc %ia32_emit_binop /* AddC(%A3, %A4) -> %D1 */',
225   "outs"      => [ "res", "M" ],
226 },
227
228 "l_Add" => {
229   "op_flags"  => "C",
230   "irn_flags" => "R",
231   "cmp_attr"  => "  return 1;\n",
232   "comment"   => "construct lowered Add: Add(a, b) = Add(b, a) = a + b",
233   "arity"     => 2,
234 },
235
236 "l_AddC" => {
237   "op_flags"  => "C",
238   "cmp_attr"  => "  return 1;\n",
239   "comment"   => "construct lowered Add with Carry: AddC(a, b) = Add(b, a) = a + b + carry",
240   "arity"     => 2,
241 },
242
243 "MulS" => {
244   "comment"   => "construct MulS: MulS(a, b) = MulS(b, a) = a * b",
245   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
246   "reg_req"   => { "in" => [ "gp", "gp", "eax", "gp", "none" ], "out" => [ "eax", "edx" ] },
247   "emit"      => '. mul %ia32_emit_unop /* Mul(%A1, %A2) -> %D1 */',
248   "outs"      => [ "EAX", "EDX", "M" ],
249 },
250
251 "l_MulS" => {
252   "op_flags"  => "C",
253   "cmp_attr"  => "  return 1;\n",
254   "comment"   => "construct lowered MulS: MulS(a, b) = MulS(b, a) = a * b",
255   "outs"      => [ "EAX", "EDX", "M" ],
256   "arity"     => 2
257 },
258
259 "Mul" => {
260   "irn_flags" => "R",
261   "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
262   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
263   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
264   "emit"      => '. imul %ia32_emit_binop /* Mul(%A1, %A2) -> %D1 */',
265   "outs"      => [ "res", "M" ],
266 },
267
268 "l_Mul" => {
269   "op_flags"  => "C",
270   "cmp_attr"  => "  return 1;\n",
271   "comment"   => "construct lowered Mul: Mul(a, b) = Mul(b, a) = a * b",
272   "arity"     => 2
273 },
274
275 # Mulh is an exception from the 4 INs with AM because the target is always EAX:EDX
276 "Mulh" => {
277   "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
278   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
279   "reg_req"   => { "in" => [ "gp", "gp", "eax", "gp", "none" ], "out" => [ "eax", "edx" ] },
280   "emit"      => '. imul %ia32_emit_unop /* Mulh(%A1, %A2) -> %D1 */',
281   "outs"      => [ "EAX", "EDX", "M" ],
282 },
283
284 "And" => {
285   "irn_flags" => "R",
286   "comment"   => "construct And: And(a, b) = And(b, a) = a AND b",
287   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
288   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
289   "emit"      => '. and %ia32_emit_binop /* And(%A1, %A2) -> %D1 */',
290   "outs"      => [ "res", "M" ],
291 },
292
293 "Or" => {
294   "irn_flags" => "R",
295   "comment"   => "construct Or: Or(a, b) = Or(b, a) = a OR b",
296   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
297   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
298   "emit"      => '. or %ia32_emit_binop /* Or(%A1, %A2) -> %D1 */',
299   "outs"      => [ "res", "M" ],
300 },
301
302 "Eor" => {
303   "irn_flags" => "R",
304   "comment"   => "construct Eor: Eor(a, b) = Eor(b, a) = a EOR b",
305   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
306   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
307   "emit"      => '. xor %ia32_emit_binop /* Xor(%A1, %A2) -> %D1 */',
308   "outs"      => [ "res", "M" ],
309 },
310
311 "l_Eor" => {
312   "op_flags"  => "C",
313   "cmp_attr"  => "  return 1;\n",
314   "comment"   => "construct lowered Eor: Eor(a, b) = Eor(b, a) = a EOR b",
315   "arity"     => 2
316 },
317
318 "Max" => {
319   "irn_flags" => "R",
320   "comment"   => "construct Max: Max(a, b) = Max(b, a) = a > b ? a : b",
321   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
322   "emit"      =>
323 '2. cmp %S1, %S2 /* prepare Max (%S1 - %S2), (%A1, %A2) */
324   if (mode_is_signed(get_irn_mode(n))) {
325 4.  cmovl %D1, %S2 /* %S1 is less %S2 */
326   }
327   else {
328 4.  cmovb %D1, %S2 /* %S1 is below %S2 */
329   }
330 '
331 },
332
333 "Min" => {
334   "irn_flags" => "R",
335   "comment"   => "construct Min: Min(a, b) = Min(b, a) = a < b ? a : b",
336   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
337   "emit"      =>
338 '2. cmp %S1, %S2 /* prepare Min (%S1 - %S2), (%A1, %A2) */
339   if (mode_is_signed(get_irn_mode(n))) {
340 2.  cmovg %D1, %S2 /* %S1 is greater %S2 */
341   }
342   else {
343 2.  cmova %D1, %S2, %D1 /* %S1 is above %S2 */
344   }
345 '
346 },
347
348 # not commutative operations
349
350 "Sub" => {
351   "irn_flags" => "R",
352   "comment"   => "construct Sub: Sub(a, b) = a - b",
353   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
354   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
355   "emit"      => '. sub %ia32_emit_binop /* Sub(%A3, %A4) -> %D1 */',
356   "outs"      => [ "res", "M" ],
357 },
358
359 "SubC" => {
360   "comment"   => "construct Sub with Carry: SubC(a, b) = a - b - carry",
361   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
362   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
363   "emit"      => '. sbb %ia32_emit_binop /* SubC(%A3, %A4) -> %D1 */',
364   "outs"      => [ "res", "M" ],
365 },
366
367 "l_Sub" => {
368   "irn_flags" => "R",
369   "cmp_attr"  => "  return 1;\n",
370   "comment"   => "construct lowered Sub: Sub(a, b) = a - b",
371   "arity"     => 2,
372 },
373
374 "l_SubC" => {
375   "cmp_attr"  => "  return 1;\n",
376   "comment"   => "construct lowered Sub with Carry: SubC(a, b) = a - b - carry",
377   "arity"     => 2,
378 },
379
380 "DivMod" => {
381   "op_flags"  => "F|L",
382   "state"     => "exc_pinned",
383   "reg_req"   => { "in" => [ "eax", "gp", "edx", "none" ], "out" => [ "eax", "edx" ] },
384   "attr"      => "ia32_op_flavour_t dm_flav",
385   "init_attr" => "  attr->data.op_flav = dm_flav;",
386   "cmp_attr"  => "  return attr_a->data.op_flav != attr_b->data.op_flav;\n",
387   "emit"      =>
388 '  if (mode_is_signed(get_ia32_res_mode(n))) {
389 4.  idiv %S2 /* signed DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
390   }
391   else {
392 4.  div %S2 /* unsigned DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
393   }
394 ',
395   "outs"      => [ "div_res", "mod_res", "M" ],
396 },
397
398 "Shl" => {
399   "irn_flags" => "R",
400   "comment"   => "construct Shl: Shl(a, b) = a << b",
401   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
402   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
403   "emit"      => '. shl %ia32_emit_binop /* Shl(%A1, %A2) -> %D1 */',
404   "outs"      => [ "res", "M" ],
405 },
406
407 "l_Shl" => {
408   "cmp_attr"  => "  return 1;\n",
409   "comment"   => "construct lowered Shl: Shl(a, b) = a << b",
410   "arity"     => 2
411 },
412
413 "ShlD" => {
414   "irn_flags" => "R",
415   "comment"   => "construct ShlD: ShlD(a, b, c) = a, b << count (shift left count bits from b into a)",
416   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
417   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r5" ] },
418   "emit"      =>
419 '
420 if (get_ia32_immop_type(n) == ia32_ImmNone) {
421   if (get_ia32_op_type(n) == ia32_AddrModeD) {
422 4. shld %ia32_emit_am, %S4, %%cl /* ShlD(%A3, %A4, %A5) -> %D1 */
423   }
424   else {
425 4. shld %S3, %S4, %%cl /* ShlD(%A3, %A4, %A5) -> %D1 */
426   }
427 }
428 else {
429   if (get_ia32_op_type(n) == ia32_AddrModeD) {
430 4. shld %ia32_emit_am, %S4, %C /* ShlD(%A3, %A4, %A5) -> %D1 */
431   }
432   else {
433 4. shld %S3, %S4, %C /* ShlD(%A3, %A4, %A5) -> %D1 */
434   }
435 }
436 ',
437   "outs"      => [ "res", "M" ],
438 },
439
440 "l_ShlD" => {
441   "cmp_attr"  => "  return 1;\n",
442   "comment"   => "construct lowered ShlD: ShlD(a, b, c) = a, b << count (shift left count bits from b into a)",
443   "arity"     => 3
444 },
445
446 "Shr" => {
447   "irn_flags" => "R",
448   "comment"   => "construct Shr: Shr(a, b) = a >> b",
449   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
450   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
451   "emit"      => '. shr %ia32_emit_binop /* Shr(%A1, %A2) -> %D1 */',
452   "outs"      => [ "res", "M" ],
453 },
454
455 "l_Shr" => {
456   "cmp_attr"  => "  return 1;\n",
457   "comment"   => "construct lowered Shr: Shr(a, b) = a << b",
458   "arity"     => 2
459 },
460
461 "ShrD" => {
462   "irn_flags" => "R",
463   "comment"   => "construct ShrD: ShrD(a, b, c) = a, b >> count (shift rigth count bits from a into b)",
464   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
465   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r5" ] },
466   "emit"      =>
467 '
468 if (get_ia32_immop_type(n) == ia32_ImmNone) {
469   if (get_ia32_op_type(n) == ia32_AddrModeD) {
470 4. shrd %ia32_emit_am, %S4, %%cl /* ShrD(%A3, %A4, %A5) -> %D1 */
471   }
472   else {
473 4. shrd %S3, %S4, %%cl /* ShrD(%A3, %A4, %A5) -> %D1 */
474   }
475 }
476 else {
477   if (get_ia32_op_type(n) == ia32_AddrModeD) {
478 4. shrd %ia32_emit_am, %S4, %C /* ShrD(%A3, %A4, %A5) -> %D1 */
479   }
480   else {
481 4. shrd %S3, %S4, %C /* ShrD(%A3, %A4, %A5) -> %D1 */
482   }
483 }
484 ',
485   "outs"      => [ "res", "M" ],
486 },
487
488 "l_ShrD" => {
489   "cmp_attr"  => "  return 1;\n",
490   "comment"   => "construct lowered ShrD: ShrD(a, b, c) = a, b >> count (shift rigth count bits from a into b)",
491   "arity"     => 3
492 },
493
494 "Shrs" => {
495   "irn_flags" => "R",
496   "comment"   => "construct Shrs: Shrs(a, b) = a >> b",
497   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
498   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
499   "emit"      => '. sar %ia32_emit_binop /* Shrs(%A1, %A2) -> %D1 */',
500   "outs"      => [ "res", "M" ],
501 },
502
503 "l_Shrs" => {
504   "cmp_attr"  => "  return 1;\n",
505   "comment"   => "construct lowered Shrs: Shrs(a, b) = a << b",
506   "arity"     => 2
507 },
508
509 "RotR" => {
510   "irn_flags" => "R",
511   "comment"     => "construct RotR: RotR(a, b) = a ROTR b",
512   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
513   "reg_req"     => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
514   "emit"        => '. ror %ia32_emit_binop /* RotR(%A1, %A2) -> %D1 */',
515   "outs"      => [ "res", "M" ],
516 },
517
518 "RotL" => {
519   "irn_flags" => "R",
520   "comment"   => "construct RotL: RotL(a, b) = a ROTL b",
521   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
522   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
523   "emit"      => '. rol %ia32_emit_binop /* RotL(%A1, %A2) -> %D1 */',
524   "outs"      => [ "res", "M" ],
525 },
526
527 # unary operations
528
529 "Minus" => {
530   "irn_flags" => "R",
531   "comment"   => "construct Minus: Minus(a) = -a",
532   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
533   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
534   "emit"      => '. neg %ia32_emit_unop /* Neg(%A1) -> %D1, (%A1) */',
535   "outs"      => [ "res", "M" ],
536 },
537
538 "l_Minus" => {
539   "cmp_attr"  => "  return 1;\n",
540   "comment"   => "construct lowered Minus: Minus(a) = -a",
541   "arity"     => 1,
542 },
543
544 "Inc" => {
545   "irn_flags" => "R",
546   "comment"   => "construct Increment: Inc(a) = a++",
547   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
548   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
549   "emit"      => '. inc %ia32_emit_unop /* Inc(%S1) -> %D1, (%A1) */',
550   "outs"      => [ "res", "M" ],
551 },
552
553 "Dec" => {
554   "irn_flags" => "R",
555   "comment"   => "construct Decrement: Dec(a) = a--",
556   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
557   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
558   "emit"      => '. dec %ia32_emit_unop /* Dec(%S1) -> %D1, (%A1) */',
559   "outs"      => [ "res", "M" ],
560 },
561
562 "Not" => {
563   "irn_flags" => "R",
564   "comment"   => "construct Not: Not(a) = !a",
565   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
566   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
567   "emit"      => '. not %ia32_emit_unop /* Not(%S1) -> %D1, (%A1) */',
568   "outs"      => [ "res", "M" ],
569 },
570
571 # other operations
572
573 "CondJmp" => {
574   "op_flags"  => "L|X|Y",
575   "comment"   => "construct conditional jump: CMP A, B && JMPxx LABEL",
576   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
577   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ] },
578   "outs"      => [ "false", "true" ],
579 },
580
581 "TestJmp" => {
582   "op_flags"  => "L|X|Y",
583   "comment"   => "construct conditional jump: TEST A, B && JMPxx LABEL",
584   "reg_req"  => { "in" => [ "gp", "gp" ] },
585   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
586   "outs"      => [ "false", "true" ],
587 },
588
589 "CJmpAM" => {
590   "op_flags"  => "L|X|Y",
591   "comment"   => "construct conditional jump without CMP (replaces CondJmp): JMPxx LABEL",
592   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
593   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "none", "none" ] },
594   "outs"      => [ "false", "true" ],
595 },
596
597 "CJmp" => {
598   "op_flags"  => "L|X|Y",
599   "comment"   => "construct conditional jump without CMP (replaces TestJmp): JMPxx LABEL",
600   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
601   "reg_req"   => { "in" => [ "gp", "gp" ] },
602 },
603
604 "SwitchJmp" => {
605   "op_flags"  => "L|X|Y",
606   "comment"   => "construct switch",
607   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
608   "reg_req"   => { "in" => [ "gp" ], "out" => [ "none" ] },
609 },
610
611 "Const" => {
612   "op_flags"  => "c",
613   "irn_flags" => "R",
614   "comment"   => "represents an integer constant",
615   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
616   "reg_req"   => { "in" => [ "none" ], "out" => [ "gp" ] },
617 },
618
619 "Cdq" => {
620   "irn_flags" => "R",
621   "comment"   => "construct CDQ: sign extend EAX -> EDX:EAX",
622   "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax in_r1", "edx" ] },
623   "emit"      => '. cdq /* sign extend EAX -> EDX:EAX, (%A1) */',
624   "outs"      => [ "EAX", "EDX" ],
625 },
626
627 # Load / Store
628
629 "Load" => {
630   "op_flags"  => "L|F",
631   "state"     => "exc_pinned",
632   "comment"   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
633   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
634   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "gp" ] },
635   "emit"      =>
636 '  if (get_mode_size_bits(get_ia32_ls_mode(n)) < 32) {
637 4.   mov%Mx %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
638   }
639   else {
640 4.   mov %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
641   }
642 ',
643   "outs"      => [ "res", "M" ],
644 },
645
646 "l_Load" => {
647   "op_flags"  => "L|F",
648   "cmp_attr"  => "  return 1;\n",
649   "comment"   => "construct lowered Load: Load(ptr, mem) = LD ptr -> reg",
650   "outs"      => [ "res", "M" ],
651   "arity"     => 2,
652 },
653
654 "l_Store" => {
655   "op_flags"  => "L|F",
656   "cmp_attr"  => "  return 1;\n",
657   "state"     => "exc_pinned",
658   "comment"   => "construct lowered Store: Store(ptr, val, mem) = ST ptr,val",
659   "arity"     => 3,
660   "outs"      => [ "M" ],
661 },
662
663 "Store" => {
664   "op_flags"  => "L|F",
665   "state"     => "exc_pinned",
666   "comment"   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
667   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
668   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ] },
669   "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
670   "outs"      => [ "M" ],
671 },
672
673 "Store8Bit" => {
674   "op_flags"  => "L|F",
675   "state"     => "exc_pinned",
676   "comment"   => "construct 8Bit Store: Store(ptr, val, mem) = ST ptr,val",
677   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
678   "reg_req"   => { "in" => [ "gp", "gp", "eax ebx ecx edx", "none" ] },
679   "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
680   "outs"      => [ "M" ],
681 },
682
683 "Lea" => {
684   "irn_flags" => "R",
685   "comment"   => "construct Lea: Lea(a,b) = lea [a+b*const+offs] | res = a + b * const + offs with const = 0,1,2,4,8",
686   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
687   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
688   "emit"      => '. lea %D1, %ia32_emit_am /* LEA(%A1, %A2) */'
689 },
690
691 "Push" => {
692   "comment"   => "push a gp register on the stack",
693   "reg_req"   => { "in" => [ "esp", "gp", "none" ], "out" => [ "esp" ] },
694   "emit"      => '
695 if (get_ia32_id_cnst(n)) {
696         if (get_ia32_immop_type(n) == ia32_ImmConst) {
697 4. push %C /* Push const on stack */
698 } else {
699 4. push OFFSET FLAT:%C /* Push symconst on stack */
700         }
701 }
702 else if (get_ia32_op_type(n) == ia32_Normal) {
703 2. push %S2 /* Push(%A2) */
704 }
705 else {
706 2. push %ia32_emit_am /* Push memory to stack */
707 };
708 ',
709   "outs"      => [ "stack", "M" ],
710 },
711
712 "Pop" => {
713   "comment"   => "pop a gp register from the stack",
714   "reg_req"   => { "in" => [ "esp", "none" ], "out" => [ "gp", "esp" ] },
715   "emit"      => '
716 if (get_ia32_op_type(n) == ia32_Normal) {
717 2. pop %D1 /* Pop from stack into %D1 */
718 }
719 else {
720 2. pop %ia32_emit_am /* Pop from stack into memory */
721 }
722 ',
723   "outs"      => [ "res", "stack", "M" ],
724 },
725
726 "Enter" => {
727   "comment"   => "create stack frame",
728   "reg_req"   => { "in" => [ "esp" ], "out" => [ "ebp", "esp" ] },
729   "emit"      => '. enter /* Enter */',
730   "outs"      => [ "frame", "stack", "M" ],
731 },
732
733 "Leave" => {
734   "comment"   => "destroy stack frame",
735   "reg_req"   => { "in" => [ "esp", "ebp" ], "out" => [ "ebp", "esp" ] },
736   "emit"      => '. leave /* Leave */',
737   "outs"      => [ "frame", "stack", "M" ],
738 },
739
740 #-----------------------------------------------------------------------------#
741 #   _____ _____ ______    __ _             _                     _            #
742 #  / ____/ ____|  ____|  / _| |           | |                   | |           #
743 # | (___| (___ | |__    | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
744 #  \___ \\___ \|  __|   |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
745 #  ____) |___) | |____  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
746 # |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
747 #-----------------------------------------------------------------------------#
748
749 # commutative operations
750
751 "xAdd" => {
752   "irn_flags" => "R",
753   "comment"   => "construct SSE Add: Add(a, b) = Add(b, a) = a + b",
754   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
755   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
756   "emit"      => '. adds%M %ia32_emit_binop /* SSE Add(%A3, %A4) -> %D1 */',
757   "outs"      => [ "res", "M" ],
758 },
759
760 "xMul" => {
761   "irn_flags" => "R",
762   "comment"   => "construct SSE Mul: Mul(a, b) = Mul(b, a) = a * b",
763   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
764   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
765   "emit"      => '. muls%M %ia32_emit_binop /* SSE Mul(%A3, %A4) -> %D1 */',
766   "outs"      => [ "res", "M" ],
767 },
768
769 "xMax" => {
770   "irn_flags" => "R",
771   "comment"   => "construct SSE Max: Max(a, b) = Max(b, a) = a > b ? a : b",
772   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
773   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
774   "emit"      => '. maxs%M %ia32_emit_binop /* SSE Max(%A3, %A4) -> %D1 */',
775   "outs"      => [ "res", "M" ],
776 },
777
778 "xMin" => {
779   "irn_flags" => "R",
780   "comment"   => "construct SSE Min: Min(a, b) = Min(b, a) = a < b ? a : b",
781   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
782   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
783   "emit"      => '. mins%M %ia32_emit_binop /* SSE Min(%A3, %A4) -> %D1 */',
784   "outs"      => [ "res", "M" ],
785 },
786
787 "xAnd" => {
788   "irn_flags" => "R",
789   "comment"   => "construct SSE And: And(a, b) = a AND b",
790   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
791   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
792   "emit"      => '. andp%M %ia32_emit_binop /* SSE And(%A3, %A4) -> %D1 */',
793   "outs"      => [ "res", "M" ],
794 },
795
796 "xOr" => {
797   "irn_flags" => "R",
798   "comment"   => "construct SSE Or: Or(a, b) = a OR b",
799   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
800   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
801   "emit"      => '. orp%M %ia32_emit_binop /* SSE Or(%A3, %A4) -> %D1 */',
802   "outs"      => [ "res", "M" ],
803 },
804
805 "xEor" => {
806   "irn_flags" => "R",
807   "comment"   => "construct SSE Eor: Eor(a, b) = a XOR b",
808   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
809   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
810   "emit"      => '. xorp%M %ia32_emit_binop /* SSE Xor(%A3, %A4) -> %D1 */',
811   "outs"      => [ "res", "M" ],
812 },
813
814 # not commutative operations
815
816 "xAndNot" => {
817   "irn_flags" => "R",
818   "comment"   => "construct SSE AndNot: AndNot(a, b) = a AND NOT b",
819   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
820   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
821   "emit"      => '. andnp%M %ia32_emit_binop /* SSE AndNot(%A3, %A4) -> %D1 */',
822   "outs"      => [ "res", "M" ],
823 },
824
825 "xSub" => {
826   "irn_flags" => "R",
827   "comment"   => "construct SSE Sub: Sub(a, b) = a - b",
828   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
829   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
830   "emit"      => '. subs%M %ia32_emit_binop /* SSE Sub(%A1, %A2) -> %D1 */',
831   "outs"      => [ "res", "M" ],
832 },
833
834 "xDiv" => {
835   "irn_flags" => "R",
836   "comment"   => "construct SSE Div: Div(a, b) = a / b",
837   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
838   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
839   "emit"      => '. divs%M %ia32_emit_binop /* SSE Div(%A1, %A2) -> %D1 */',
840   "outs"      => [ "res", "M" ],
841 },
842
843 # other operations
844
845 "xCmp" => {
846   "irn_flags" => "R",
847   "comment"   => "construct SSE Compare: Cmp(a, b) == a = a cmp b",
848   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
849   "outs"      => [ "res", "M" ],
850 },
851
852 "xCondJmp" => {
853   "op_flags"  => "L|X|Y",
854   "comment"   => "construct conditional jump: UCOMIS A, B && JMPxx LABEL",
855   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
856   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "none", "none" ] },
857   "outs"      => [ "false", "true" ],
858 },
859
860 "xConst" => {
861   "op_flags"  => "c",
862   "irn_flags" => "R",
863   "comment"   => "represents a SSE constant",
864   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
865   "reg_req"   => { "in" => [ "none" ], "out" => [ "xmm" ] },
866   "emit"      => '. movs%M %D1, %C /* Load fConst into register */',
867 },
868
869 # Load / Store
870
871 "xLoad" => {
872   "op_flags"  => "L|F",
873   "state"     => "exc_pinned",
874   "comment"   => "construct SSE Load: Load(ptr, mem) = LD ptr",
875   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
876   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "xmm" ] },
877   "emit"      => '. movs%M %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */',
878   "outs"      => [ "res", "M" ],
879 },
880
881 "xStore" => {
882   "op_flags" => "L|F",
883   "state"    => "exc_pinned",
884   "comment"  => "construct Store: Store(ptr, val, mem) = ST ptr,val",
885   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
886   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ] },
887   "emit"     => '. movs%M %ia32_emit_binop /* Store(%S3) -> (%A1) */',
888   "outs"      => [ "M" ],
889 },
890
891 "xStoreSimple" => {
892   "op_flags" => "L|F",
893   "state"    => "exc_pinned",
894   "comment"  => "construct Store without index: Store(ptr, val, mem) = ST ptr,val",
895   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
896   "reg_req"  => { "in" => [ "gp", "xmm", "none" ] },
897   "emit"     => '. movs%M %ia32_emit_am, %S2 /* store XMM0 onto stack */',
898   "outs"      => [ "M" ],
899 },
900
901 "l_X87toSSE" => {
902   "op_flags" => "L|F",
903   "comment"  => "construct: transfer a value from x87 FPU into a SSE register",
904   "cmp_attr" => "  return 1;\n",
905   "arity"    => 3,
906 },
907
908 "l_SSEtoX87" => {
909   "op_flags" => "L|F",
910   "comment"  => "construct: transfer a value from SSE register to x87 FPU",
911   "cmp_attr" => "  return 1;\n",
912   "arity"    => 3,
913 },
914
915 "GetST0" => {
916   "op_flags" => "L|F",
917   "irn_flags" => "I",
918   "state"    => "exc_pinned",
919   "comment"  => "store ST0 onto stack",
920   "cmp_attr" => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
921   "reg_req"  => { "in" => [ "gp", "none" ] },
922   "emit"     => '. fstp %ia32_emit_am /* store ST0 onto stack */',
923   "outs"     => [ "M" ],
924 },
925
926 "SetST0" => {
927   "op_flags" => "L|F",
928   "irn_flags" => "I",
929   "state"    => "exc_pinned",
930   "comment"  => "load ST0 from stack",
931   "cmp_attr" => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
932   "reg_req"  => { "in" => [ "gp", "none" ], "out" => [ "st0", "none" ] },
933   "emit"     => '. fld %ia32_emit_am /* load ST0 from stack */',
934   "outs"     => [ "res", "M" ],
935 },
936
937 # CopyB
938
939 "CopyB" => {
940   "op_flags" => "F|H",
941   "state"    => "pinned",
942   "comment"  => "implements a memcopy: CopyB(dst, src, size, mem) == memcpy(dst, src, size)",
943   "reg_req"  => { "in" => [ "edi", "esi", "ecx", "none" ], "out" => [ "edi", "esi", "ecx", "none" ] },
944   "outs"     => [ "DST", "SRC", "CNT", "M" ],
945 },
946
947 "CopyB_i" => {
948   "op_flags" => "F|H",
949   "state"    => "pinned",
950   "comment"  => "implements a memcopy: CopyB(dst, src, mem) == memcpy(dst, src, attr(size))",
951   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
952   "reg_req"  => { "in" => [ "edi", "esi", "none" ], "out" => [  "edi", "esi", "none" ] },
953   "outs"     => [ "DST", "SRC", "M" ],
954 },
955
956 # Conversions
957
958 "Conv_I2I" => {
959   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3", "none" ] },
960   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
961   "comment"  => "construct Conv Int -> Int",
962   "outs"      => [ "res", "M" ],
963 },
964
965 "Conv_I2I8Bit" => {
966   "reg_req"  => { "in" => [ "gp", "gp", "eax ebx ecx edx", "none" ], "out" => [ "in_r3", "none" ] },
967   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
968   "comment"  => "construct Conv Int -> Int",
969   "outs"      => [ "res", "M" ],
970 },
971
972 "Conv_I2FP" => {
973   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "xmm", "none" ] },
974   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
975   "comment"  => "construct Conv Int -> Floating Point",
976   "outs"      => [ "res", "M" ],
977 },
978
979 "Conv_FP2I" => {
980   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "gp", "none" ] },
981   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
982   "comment"  => "construct Conv Floating Point -> Int",
983   "outs"      => [ "res", "M" ],
984 },
985
986 "Conv_FP2FP" => {
987   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "xmm", "none" ] },
988   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
989   "comment"  => "construct Conv Floating Point -> Floating Point",
990   "outs"      => [ "res", "M" ],
991 },
992
993 "CmpCMov" => {
994   "irn_flags" => "R",
995   "comment"   => "construct Conditional Move: CMov(sel, a, b) == sel ? a : b",
996   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp" ], "out" => [ "in_r4" ] }
997 },
998
999 "PsiCondCMov" => {
1000   "irn_flags" => "R",
1001   "comment"   => "check if Psi condition tree evaluates to true and move result accordingly",
1002   "reg_req"   => { "in" => [ "gp", "gp", "gp" ], "out" => [ "in_r3" ] }
1003 },
1004
1005 "xCmpCMov" => {
1006   "irn_flags" => "R",
1007   "comment"   => "construct Conditional Move: SSE Compare + int CMov ",
1008   "reg_req"   => { "in" => [ "xmm", "xmm", "gp", "gp" ], "out" => [ "in_r4" ] }
1009 },
1010
1011 "vfCmpCMov" => {
1012   "irn_flags" => "R",
1013   "comment"   => "construct Conditional Move: x87 Compare + int CMov",
1014   "reg_req"   => { "in" => [ "vfp", "vfp", "gp", "gp" ], "out" => [ "in_r4" ] }
1015 },
1016
1017 "CmpSet" => {
1018   "irn_flags" => "R",
1019   "comment"   => "construct Set: Set(sel) == sel ? 1 : 0",
1020   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
1021   "outs"      => [ "res", "M" ],
1022 },
1023
1024 "PsiCondSet" => {
1025   "irn_flags" => "R",
1026   "comment"   => "check if Psi condition tree evaluates to true and set result accordingly",
1027   "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax ebx ecx edx" ] },
1028 },
1029
1030 "xCmpSet" => {
1031   "irn_flags" => "R",
1032   "comment"   => "construct Set: SSE Compare + int Set",
1033   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
1034   "outs"      => [ "res", "M" ],
1035 },
1036
1037 "vfCmpSet" => {
1038   "irn_flags" => "R",
1039   "comment"   => "construct Set: x87 Compare + int Set",
1040   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
1041   "outs"      => [ "res", "M" ],
1042 },
1043
1044 "vfCMov" => {
1045   "irn_flags" => "R",
1046   "comment"   => "construct x87 Conditional Move: vfCMov(sel, a, b) = sel ? a : b",
1047   "reg_req"   => { "in" => [ "vfp", "vfp", "vfp", "vfp" ], "out" => [ "vfp" ] }
1048 },
1049
1050 #----------------------------------------------------------#
1051 #        _      _               _    __ _             _    #
1052 #       (_)    | |             | |  / _| |           | |   #
1053 # __   ___ _ __| |_ _   _  __ _| | | |_| | ___   __ _| |_  #
1054 # \ \ / / | '__| __| | | |/ _` | | |  _| |/ _ \ / _` | __| #
1055 #  \ V /| | |  | |_| |_| | (_| | | | | | | (_) | (_| | |_  #
1056 #   \_/ |_|_|   \__|\__,_|\__,_|_| |_| |_|\___/ \__,_|\__| #
1057 #                 | |                                      #
1058 #  _ __   ___   __| | ___  ___                             #
1059 # | '_ \ / _ \ / _` |/ _ \/ __|                            #
1060 # | | | | (_) | (_| |  __/\__ \                            #
1061 # |_| |_|\___/ \__,_|\___||___/                            #
1062 #----------------------------------------------------------#
1063
1064 "vfadd" => {
1065   "irn_flags" => "R",
1066   "comment"   => "virtual fp Add: Add(a, b) = Add(b, a) = a + b",
1067   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1068   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1069   "outs"      => [ "res", "M" ],
1070 },
1071
1072 "vfmul" => {
1073   "irn_flags" => "R",
1074   "comment"   => "virtual fp Mul: Mul(a, b) = Mul(b, a) = a * b",
1075   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1076   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1077   "outs"      => [ "res", "M" ],
1078 },
1079
1080 "l_vfmul" => {
1081   "op_flags"  => "C",
1082   "cmp_attr"  => "  return 1;\n",
1083   "comment"   => "lowered virtual fp Mul: Mul(a, b) = Mul(b, a) = a * b",
1084   "arity"     => 2,
1085 },
1086
1087 "vfsub" => {
1088   "irn_flags" => "R",
1089   "comment"   => "virtual fp Sub: Sub(a, b) = a - b",
1090   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1091   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1092   "outs"      => [ "res", "M" ],
1093 },
1094
1095 "l_vfsub" => {
1096   "cmp_attr"  => "  return 1;\n",
1097   "comment"   => "lowered virtual fp Sub: Sub(a, b) = a - b",
1098   "arity"     => 2,
1099 },
1100
1101 "vfdiv" => {
1102   "comment"   => "virtual fp Div: Div(a, b) = a / b",
1103   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1104   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1105   "outs"      => [ "res", "M" ],
1106 },
1107
1108 "l_vfdiv" => {
1109   "cmp_attr"  => "  return 1;\n",
1110   "comment"   => "lowered virtual fp Div: Div(a, b) = a / b",
1111   "arity"     => 2,
1112 },
1113
1114 "vfabs" => {
1115   "irn_flags" => "R",
1116   "comment"   => "virtual fp Abs: Abs(a) = |a|",
1117   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1118 },
1119
1120 "vfchs" => {
1121   "irn_flags" => "R",
1122   "comment"   => "virtual fp Chs: Chs(a) = -a",
1123   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1124 },
1125
1126 "vfsin" => {
1127   "irn_flags" => "R",
1128   "comment"   => "virtual fp Sin: Sin(a) = sin(a)",
1129   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1130 },
1131
1132 "vfcos" => {
1133   "irn_flags" => "R",
1134   "comment"   => "virtual fp Cos: Cos(a) = cos(a)",
1135   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1136 },
1137
1138 "vfsqrt" => {
1139   "irn_flags" => "R",
1140   "comment"   => "virtual fp Sqrt: Sqrt(a) = a ^ 0.5",
1141   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1142 },
1143
1144 # virtual Load and Store
1145
1146 "vfld" => {
1147   "op_flags"  => "L|F",
1148   "state"     => "exc_pinned",
1149   "comment"   => "virtual fp Load: Load(ptr, mem) = LD ptr -> reg",
1150   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1151   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
1152   "outs"      => [ "res", "M" ],
1153 },
1154
1155 "vfst" => {
1156   "op_flags"  => "L|F",
1157   "state"     => "exc_pinned",
1158   "comment"   => "virtual fp Store: Store(ptr, val, mem) = ST ptr,val",
1159   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1160   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
1161   "outs"      => [ "M" ],
1162 },
1163
1164 # Conversions
1165
1166 "vfild" => {
1167   "comment"   => "virtual fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
1168   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1169   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
1170   "outs"      => [ "res", "M" ],
1171 },
1172
1173 "l_vfild" => {
1174   "cmp_attr"  => "  return 1;\n",
1175   "comment"   => "lowered virtual fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
1176   "outs"      => [ "res", "M" ],
1177   "arity"     => 2,
1178 },
1179
1180 "vfist" => {
1181   "comment"   => "virtual fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1182   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1183   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
1184   "outs"      => [ "M" ],
1185 },
1186
1187 "l_vfist" => {
1188   "cmp_attr"  => "  return 1;\n",
1189   "comment"   => "lowered virtual fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1190   "outs"      => [ "M" ],
1191   "arity"     => 3,
1192 },
1193
1194
1195 # constants
1196
1197 "vfldz" => {
1198   "irn_flags" => "R",
1199   "comment"   => "virtual fp Load 0.0: Ld 0.0 -> reg",
1200   "reg_req"   => { "out" => [ "vfp" ] },
1201 },
1202
1203 "vfld1" => {
1204   "irn_flags" => "R",
1205   "comment"   => "virtual fp Load 1.0: Ld 1.0 -> reg",
1206   "reg_req"   => { "out" => [ "vfp" ] },
1207 },
1208
1209 "vfldpi" => {
1210   "irn_flags" => "R",
1211   "comment"   => "virtual fp Load pi: Ld pi -> reg",
1212   "reg_req"   => { "out" => [ "vfp" ] },
1213 },
1214
1215 "vfldln2" => {
1216   "irn_flags" => "R",
1217   "comment"   => "virtual fp Load ln 2: Ld ln 2 -> reg",
1218   "reg_req"   => { "out" => [ "vfp" ] },
1219 },
1220
1221 "vfldlg2" => {
1222   "irn_flags" => "R",
1223   "comment"   => "virtual fp Load lg 2: Ld lg 2 -> reg",
1224   "reg_req"   => { "out" => [ "vfp" ] },
1225 },
1226
1227 "vfldl2t" => {
1228   "irn_flags" => "R",
1229   "comment"   => "virtual fp Load ld 10: Ld ld 10 -> reg",
1230   "reg_req"   => { "out" => [ "vfp" ] },
1231 },
1232
1233 "vfldl2e" => {
1234   "irn_flags" => "R",
1235   "comment"   => "virtual fp Load ld e: Ld ld e -> reg",
1236   "reg_req"   => { "out" => [ "vfp" ] },
1237 },
1238
1239 "vfConst" => {
1240   "op_flags"  => "c",
1241   "irn_flags" => "R",
1242   "init_attr" => "  set_ia32_ls_mode(res, mode);",
1243   "comment"   => "represents a virtual floating point constant",
1244   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1245   "reg_req"   => { "in" => [ "none" ], "out" => [ "vfp" ] },
1246 },
1247
1248 # other
1249
1250 "vfCondJmp" => {
1251   "op_flags"  => "L|X|Y",
1252   "comment"   => "represents a virtual floating point compare",
1253   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1254   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "none", "none", "eax" ] },
1255   "outs"      => [ "false", "true", "temp_reg_eax" ],
1256 },
1257
1258 #------------------------------------------------------------------------#
1259 #       ___ _____    __ _             _                     _            #
1260 # __  _( _ )___  |  / _| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
1261 # \ \/ / _ \  / /  | |_| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
1262 #  >  < (_) |/ /   |  _| | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
1263 # /_/\_\___//_/    |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
1264 #------------------------------------------------------------------------#
1265
1266 "fadd" => {
1267   "op_flags"  => "R",
1268   "rd_constructor" => "NONE",
1269   "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
1270   "reg_req"   => { },
1271   "emit"      => '. fadd %ia32_emit_x87_binop /* x87 fadd(%A1, %A2) -> %D1 */',
1272 },
1273
1274 "faddp" => {
1275   "op_flags"  => "R",
1276   "rd_constructor" => "NONE",
1277   "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
1278   "reg_req"   => { },
1279   "emit"      => '. faddp %ia32_emit_x87_binop /* x87 fadd(%A1, %A2) -> %D1 */',
1280 },
1281
1282 "fmul" => {
1283   "op_flags"  => "R",
1284   "rd_constructor" => "NONE",
1285   "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
1286   "reg_req"   => { },
1287   "emit"      => '. fmul %ia32_emit_x87_binop /* x87 fmul(%A1, %A2) -> %D1 */',
1288 },
1289
1290 "fmulp" => {
1291   "op_flags"  => "R",
1292   "rd_constructor" => "NONE",
1293   "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
1294   "reg_req"   => { },
1295   "emit"      => '. fmulp %ia32_emit_x87_binop /* x87 fmul(%A1, %A2) -> %D1 */',,
1296 },
1297
1298 "fsub" => {
1299   "op_flags"  => "R",
1300   "rd_constructor" => "NONE",
1301   "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
1302   "reg_req"   => { },
1303   "emit"      => '. fsub %ia32_emit_x87_binop /* x87 fsub(%A1, %A2) -> %D1 */',
1304 },
1305
1306 "fsubp" => {
1307   "op_flags"  => "R",
1308   "rd_constructor" => "NONE",
1309   "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
1310   "reg_req"   => { },
1311   "emit"      => '. fsubp %ia32_emit_x87_binop /* x87 fsub(%A1, %A2) -> %D1 */',
1312 },
1313
1314 "fsubr" => {
1315   "op_flags"  => "R",
1316   "rd_constructor" => "NONE",
1317   "irn_flags" => "R",
1318   "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
1319   "reg_req"   => { },
1320   "emit"      => '. fsubr %ia32_emit_x87_binop /* x87 fsubr(%A1, %A2) -> %D1 */',
1321 },
1322
1323 "fsubrp" => {
1324   "op_flags"  => "R",
1325   "rd_constructor" => "NONE",
1326   "irn_flags" => "R",
1327   "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
1328   "reg_req"   => { },
1329   "emit"      => '. fsubrp %ia32_emit_x87_binop /* x87 fsubr(%A1, %A2) -> %D1 */',
1330 },
1331
1332 "fdiv" => {
1333   "op_flags"  => "R",
1334   "rd_constructor" => "NONE",
1335   "comment"   => "x87 fp Div: Div(a, b) = a / b",
1336   "reg_req"   => { },
1337   "emit"      => '. fdiv %ia32_emit_x87_binop /* x87 fdiv(%A1, %A2) -> %D1 */',
1338 },
1339
1340 "fdivp" => {
1341   "op_flags"  => "R",
1342   "rd_constructor" => "NONE",
1343   "comment"   => "x87 fp Div: Div(a, b) = a / b",
1344   "reg_req"   => { },
1345   "emit"      => '. fdivp %ia32_emit_x87_binop /* x87 fdiv(%A1, %A2) -> %D1 */',
1346 },
1347
1348 "fdivr" => {
1349   "op_flags"  => "R",
1350   "rd_constructor" => "NONE",
1351   "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
1352   "reg_req"   => { },
1353   "emit"      => '. fdivr %ia32_emit_x87_binop /* x87 fdivr(%A1, %A2) -> %D1 */',
1354 },
1355
1356 "fdivrp" => {
1357   "op_flags"  => "R",
1358   "rd_constructor" => "NONE",
1359   "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
1360   "reg_req"   => { },
1361   "emit"      => '. fdivrp %ia32_emit_x87_binop /* x87 fdivr(%A1, %A2) -> %D1 */',
1362 },
1363
1364 "fabs" => {
1365   "op_flags"  => "R",
1366   "rd_constructor" => "NONE",
1367   "comment"   => "x87 fp Abs: Abs(a) = |a|",
1368   "reg_req"   => { },
1369   "emit"      => '. fabs /* x87 fabs(%S1) -> %D1 */',
1370 },
1371
1372 "fchs" => {
1373   "op_flags"  => "R",
1374   "rd_constructor" => "NONE",
1375   "comment"   => "x87 fp Chs: Chs(a) = -a",
1376   "reg_req"   => { },
1377   "emit"      => '. fchs /* x87 fchs(%S1) -> %D1 */',
1378 },
1379
1380 "fsin" => {
1381   "op_flags"  => "R",
1382   "rd_constructor" => "NONE",
1383   "comment"   => "x87 fp Sin: Sin(a) = sin(a)",
1384   "reg_req"   => { },
1385   "emit"      => '. fsin /* x87 sin(%S1) -> %D1 */',
1386 },
1387
1388 "fcos" => {
1389   "op_flags"  => "R",
1390   "rd_constructor" => "NONE",
1391   "comment"   => "x87 fp Cos: Cos(a) = cos(a)",
1392   "reg_req"   => { },
1393   "emit"      => '. fcos /* x87 cos(%S1) -> %D1 */',
1394 },
1395
1396 "fsqrt" => {
1397   "op_flags"  => "R",
1398   "rd_constructor" => "NONE",
1399   "comment"   => "x87 fp Sqrt: Sqrt(a) = a ^ 0.5",
1400   "reg_req"   => { },
1401   "emit"      => '. fsqrt $ /* x87 sqrt(%S1) -> %D1 */',
1402 },
1403
1404 # x87 Load and Store
1405
1406 "fld" => {
1407   "rd_constructor" => "NONE",
1408   "op_flags"  => "R|L|F",
1409   "state"     => "exc_pinned",
1410   "comment"   => "x87 fp Load: Load(ptr, mem) = LD ptr -> reg",
1411   "reg_req"   => { },
1412   "emit"      => '. fld %ia32_emit_am /* Load((%A1)) -> %D1 */',
1413 },
1414
1415 "fst" => {
1416   "rd_constructor" => "NONE",
1417   "op_flags"  => "R|L|F",
1418   "state"     => "exc_pinned",
1419   "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
1420   "reg_req"   => { },
1421   "emit"      => '. fst %ia32_emit_am /* Store(%A3) -> (%A1) */',
1422 },
1423
1424 "fstp" => {
1425   "rd_constructor" => "NONE",
1426   "op_flags"  => "R|L|F",
1427   "state"     => "exc_pinned",
1428   "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
1429   "reg_req"   => { },
1430   "emit"      => '. fstp %ia32_emit_am /* Store(%A3) -> (%A1) and pop */',
1431 },
1432
1433 # Conversions
1434
1435 "fild" => {
1436   "op_flags"  => "R",
1437   "rd_constructor" => "NONE",
1438   "comment"   => "x87 fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
1439   "reg_req"   => { },
1440   "emit"      => '. fild %ia32_emit_am /* integer Load((%A1)) -> %D1 */',
1441 },
1442
1443 "fist" => {
1444   "op_flags"  => "R",
1445   "rd_constructor" => "NONE",
1446   "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1447   "reg_req"   => { },
1448   "emit"      => '. fist %ia32_emit_am /* integer Store(%A3) -> (%A1) */',
1449 },
1450
1451 "fistp" => {
1452   "op_flags"  => "R",
1453   "rd_constructor" => "NONE",
1454   "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1455   "reg_req"   => { },
1456   "emit"      => '. fistp %ia32_emit_am /* integer Store(%A3) -> (%A1) and pop */',
1457 },
1458
1459 # constants
1460
1461 "fldz" => {
1462   "op_flags"  => "R",
1463   "irn_flags"  => "R",
1464   "rd_constructor" => "NONE",
1465   "comment"   => "x87 fp Load 0.0: Ld 0.0 -> reg",
1466   "reg_req"   => { },
1467   "emit"      => '. fldz /* x87 0.0 -> %D1 */',
1468 },
1469
1470 "fld1" => {
1471   "op_flags"  => "R",
1472   "irn_flags"  => "R",
1473   "rd_constructor" => "NONE",
1474   "comment"   => "x87 fp Load 1.0: Ld 1.0 -> reg",
1475   "reg_req"   => { },
1476   "emit"      => '. fld1 /* x87 1.0 -> %D1 */',
1477 },
1478
1479 "fldpi" => {
1480   "op_flags"  => "R",
1481   "irn_flags"  => "R",
1482   "rd_constructor" => "NONE",
1483   "comment"   => "x87 fp Load pi: Ld pi -> reg",
1484   "reg_req"   => { },
1485   "emit"      => '. fldpi /* x87 pi -> %D1 */',
1486 },
1487
1488 "fldln2" => {
1489   "op_flags"  => "R",
1490   "irn_flags"  => "R",
1491   "rd_constructor" => "NONE",
1492   "comment"   => "x87 fp Load ln 2: Ld ln 2 -> reg",
1493   "reg_req"   => { },
1494   "emit"      => '. fldln2 /* x87 ln(2) -> %D1 */',
1495 },
1496
1497 "fldlg2" => {
1498   "op_flags"  => "R",
1499   "irn_flags"  => "R",
1500   "rd_constructor" => "NONE",
1501   "comment"   => "x87 fp Load lg 2: Ld lg 2 -> reg",
1502   "reg_req"   => { },
1503   "emit"      => '. fldlg2 /* x87 log(2) -> %D1 */',
1504 },
1505
1506 "fldl2t" => {
1507   "op_flags"  => "R",
1508   "irn_flags"  => "R",
1509   "rd_constructor" => "NONE",
1510   "comment"   => "x87 fp Load ld 10: Ld ld 10 -> reg",
1511   "reg_req"   => { },
1512   "emit"      => '. fldll2t /* x87 ld(10) -> %D1 */',
1513 },
1514
1515 "fldl2e" => {
1516   "op_flags"  => "R",
1517   "irn_flags"  => "R",
1518   "rd_constructor" => "NONE",
1519   "comment"   => "x87 fp Load ld e: Ld ld e -> reg",
1520   "reg_req"   => { },
1521   "emit"      => '. fldl2e /* x87 ld(e) -> %D1 */',
1522 },
1523
1524 "fldConst" => {
1525   "op_flags"  => "R|c",
1526   "irn_flags" => "R",
1527   "rd_constructor" => "NONE",
1528   "comment"   => "represents a x87 constant",
1529   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1530   "reg_req"   => { "out" => [ "st" ] },
1531   "emit"      => '. fld %ia32_emit_adr /* Load fConst into register -> %D1 */',
1532 },
1533
1534 # fxch, fpush, fpop
1535 # Note that it is NEVER allowed to do CSE on these nodes
1536
1537 "fxch" => {
1538   "op_flags"  => "R|K",
1539   "comment"   => "x87 stack exchange",
1540   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1541   "cmp_attr"  => "  return 1;\n",
1542   "emit"      => '. fxch %X1 /* x87 swap %X1, %X3 */',
1543 },
1544
1545 "fpush" => {
1546   "op_flags"  => "R",
1547   "comment"   => "x87 stack push",
1548   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1549   "cmp_attr"  => "  return 1;\n",
1550   "emit"      => '. fld %X1 /* x87 push %X1 */',
1551 },
1552
1553 "fpop" => {
1554   "op_flags"  => "R|K",
1555   "comment"   => "x87 stack pop",
1556   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1557   "cmp_attr"  => "  return 1;\n",
1558   "emit"      => '. fstp %X1 /* x87 pop %X1 */',
1559 },
1560
1561 # compare
1562
1563 "fcomJmp" => {
1564   "op_flags"  => "L|X|Y",
1565   "comment"   => "floating point compare",
1566   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1567   "reg_req"   => { },
1568 },
1569
1570 "fcompJmp" => {
1571   "op_flags"  => "L|X|Y",
1572   "comment"   => "floating point compare and pop",
1573   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1574   "reg_req"   => { },
1575 },
1576
1577 "fcomppJmp" => {
1578   "op_flags"  => "L|X|Y",
1579   "comment"   => "floating point compare and pop twice",
1580   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1581   "reg_req"   => { },
1582 },
1583
1584 "fcomrJmp" => {
1585   "op_flags"  => "L|X|Y",
1586   "comment"   => "floating point compare reverse",
1587   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1588   "reg_req"   => { },
1589 },
1590
1591 "fcomrpJmp" => {
1592   "op_flags"  => "L|X|Y",
1593   "comment"   => "floating point compare reverse and pop",
1594   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1595   "reg_req"   => { },
1596 },
1597
1598 "fcomrppJmp" => {
1599   "op_flags"  => "L|X|Y",
1600   "comment"   => "floating point compare reverse and pop twice",
1601   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1602   "reg_req"   => { },
1603 },
1604
1605 ); # end of %nodes