implemented a function to retrieve estimated costs of an op
[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", "gp", "gp", "none" ], "out" => [ "eax in_r3", "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", "gp", "gp", "none" ], "out" => [ "eax in_r3", "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" => [ "gp", "gp", "gp", "none" ], "out" => [ "eax in_r1", "edx in_r3" ] },
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_irn_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   "irn_flags" => "R",
632   "state"     => "exc_pinned",
633   "comment"   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
634   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
635   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "gp" ] },
636   "emit"      =>
637 '  if (get_mode_size_bits(get_ia32_ls_mode(n)) < 32) {
638 4.   mov%Mx %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
639   }
640   else {
641 4.   mov %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
642   }
643 ',
644   "outs"      => [ "res", "M" ],
645 },
646
647 "l_Load" => {
648   "op_flags"  => "L|F",
649   "cmp_attr"  => "  return 1;\n",
650   "comment"   => "construct lowered Load: Load(ptr, mem) = LD ptr -> reg",
651   "outs"      => [ "res", "M" ],
652   "arity"     => 2,
653 },
654
655 "l_Store" => {
656   "op_flags"  => "L|F",
657   "cmp_attr"  => "  return 1;\n",
658   "state"     => "exc_pinned",
659   "comment"   => "construct lowered Store: Store(ptr, val, mem) = ST ptr,val",
660   "arity"     => 3,
661   "outs"      => [ "M" ],
662 },
663
664 "Store" => {
665   "op_flags"  => "L|F",
666   "state"     => "exc_pinned",
667   "comment"   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
668   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
669   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ] },
670   "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
671   "outs"      => [ "M" ],
672 },
673
674 "Store8Bit" => {
675   "op_flags"  => "L|F",
676   "state"     => "exc_pinned",
677   "comment"   => "construct 8Bit Store: Store(ptr, val, mem) = ST ptr,val",
678   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
679   "reg_req"   => { "in" => [ "gp", "gp", "eax ebx ecx edx", "none" ] },
680   "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
681   "outs"      => [ "M" ],
682 },
683
684 "Lea" => {
685   "irn_flags" => "R",
686   "comment"   => "construct Lea: Lea(a,b) = lea [a+b*const+offs] | res = a + b * const + offs with const = 0,1,2,4,8",
687   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
688   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
689   "emit"      => '. lea %D1, %ia32_emit_am /* LEA(%A1, %A2) */'
690 },
691
692 "Push" => {
693   "comment"   => "push a gp register on the stack",
694   "reg_req"   => { "in" => [ "esp", "gp", "none" ], "out" => [ "esp" ] },
695   "emit"      => '
696 if (get_ia32_id_cnst(n)) {
697         if (get_ia32_immop_type(n) == ia32_ImmConst) {
698 . push %C /* Push(%A2) */
699         } else {
700 . push OFFSET FLAT:%C /* Push(%A2) */
701         }
702 }
703 else {
704 . push %S2 /* Push(%A2) */
705 }
706 ',
707   "outs"      => [ "stack", "M" ],
708 },
709
710 "Pop" => {
711   "comment"   => "pop a gp register from the stack",
712   "reg_req"   => { "in" => [ "esp", "none" ], "out" => [ "gp", "esp" ] },
713   "emit"      => '. pop %D1 /* Pop -> %D1 */',
714   "outs"      => [ "res", "stack", "M" ],
715 },
716
717 "Enter" => {
718   "comment"   => "create stack frame",
719   "reg_req"   => { "in" => [ "esp" ], "out" => [ "ebp", "esp" ] },
720   "emit"      => '. enter /* Enter */',
721   "outs"      => [ "frame", "stack", "M" ],
722 },
723
724 "Leave" => {
725   "comment"   => "destroy stack frame",
726   "reg_req"   => { "in" => [ "esp", "ebp" ], "out" => [ "ebp", "esp" ] },
727   "emit"      => '. leave /* Leave */',
728   "outs"      => [ "frame", "stack", "M" ],
729 },
730
731 #-----------------------------------------------------------------------------#
732 #   _____ _____ ______    __ _             _                     _            #
733 #  / ____/ ____|  ____|  / _| |           | |                   | |           #
734 # | (___| (___ | |__    | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
735 #  \___ \\___ \|  __|   |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
736 #  ____) |___) | |____  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
737 # |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
738 #-----------------------------------------------------------------------------#
739
740 # commutative operations
741
742 "xAdd" => {
743   "irn_flags" => "R",
744   "comment"   => "construct SSE Add: Add(a, b) = Add(b, a) = a + b",
745   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
746   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
747   "emit"      => '. adds%M %ia32_emit_binop /* SSE Add(%A3, %A4) -> %D1 */',
748   "outs"      => [ "res", "M" ],
749 },
750
751 "xMul" => {
752   "irn_flags" => "R",
753   "comment"   => "construct SSE Mul: Mul(a, b) = Mul(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"      => '. muls%M %ia32_emit_binop /* SSE Mul(%A3, %A4) -> %D1 */',
757   "outs"      => [ "res", "M" ],
758 },
759
760 "xMax" => {
761   "irn_flags" => "R",
762   "comment"   => "construct SSE Max: Max(a, b) = Max(b, a) = a > b ? 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"      => '. maxs%M %ia32_emit_binop /* SSE Max(%A3, %A4) -> %D1 */',
766   "outs"      => [ "res", "M" ],
767 },
768
769 "xMin" => {
770   "irn_flags" => "R",
771   "comment"   => "construct SSE Min: Min(a, b) = Min(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"      => '. mins%M %ia32_emit_binop /* SSE Min(%A3, %A4) -> %D1 */',
775   "outs"      => [ "res", "M" ],
776 },
777
778 "xAnd" => {
779   "irn_flags" => "R",
780   "comment"   => "construct SSE And: And(a, b) = a AND 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"      => '. andp%M %ia32_emit_binop /* SSE And(%A3, %A4) -> %D1 */',
784   "outs"      => [ "res", "M" ],
785 },
786
787 "xOr" => {
788   "irn_flags" => "R",
789   "comment"   => "construct SSE Or: Or(a, b) = a OR 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"      => '. orp%M %ia32_emit_binop /* SSE Or(%A3, %A4) -> %D1 */',
793   "outs"      => [ "res", "M" ],
794 },
795
796 "xEor" => {
797   "irn_flags" => "R",
798   "comment"   => "construct SSE Eor: Eor(a, b) = a XOR 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"      => '. xorp%M %ia32_emit_binop /* SSE Xor(%A3, %A4) -> %D1 */',
802   "outs"      => [ "res", "M" ],
803 },
804
805 # not commutative operations
806
807 "xAndNot" => {
808   "irn_flags" => "R",
809   "comment"   => "construct SSE AndNot: AndNot(a, b) = a AND NOT b",
810   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
811   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
812   "emit"      => '. andnp%M %ia32_emit_binop /* SSE AndNot(%A3, %A4) -> %D1 */',
813   "outs"      => [ "res", "M" ],
814 },
815
816 "xSub" => {
817   "irn_flags" => "R",
818   "comment"   => "construct SSE Sub: Sub(a, b) = a - 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" ] },
821   "emit"      => '. subs%M %ia32_emit_binop /* SSE Sub(%A1, %A2) -> %D1 */',
822   "outs"      => [ "res", "M" ],
823 },
824
825 "xDiv" => {
826   "irn_flags" => "R",
827   "comment"   => "construct SSE Div: Div(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 !in_r4" ] },
830   "emit"      => '. divs%M %ia32_emit_binop /* SSE Div(%A1, %A2) -> %D1 */',
831   "outs"      => [ "res", "M" ],
832 },
833
834 # other operations
835
836 "xCmp" => {
837   "irn_flags" => "R",
838   "comment"   => "construct SSE Compare: Cmp(a, b) == a = a cmp b",
839   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
840   "outs"      => [ "res", "M" ],
841 },
842
843 "xCondJmp" => {
844   "op_flags"  => "L|X|Y",
845   "comment"   => "construct conditional jump: UCOMIS A, B && JMPxx LABEL",
846   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
847   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "none", "none" ] },
848   "outs"      => [ "false", "true" ],
849 },
850
851 "xConst" => {
852   "op_flags"  => "c",
853   "irn_flags" => "R",
854   "comment"   => "represents a SSE constant",
855   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
856   "reg_req"   => { "in" => [ "none" ], "out" => [ "xmm" ] },
857   "emit"      => '. movs%M %D1, %C /* Load fConst into register */',
858 },
859
860 # Load / Store
861
862 "xLoad" => {
863   "op_flags"  => "L|F",
864   "irn_flags" => "R",
865   "state"     => "exc_pinned",
866   "comment"   => "construct SSE Load: Load(ptr, mem) = LD ptr",
867   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
868   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "xmm" ] },
869   "emit"      => '. movs%M %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */',
870   "outs"      => [ "res", "M" ],
871 },
872
873 "xStore" => {
874   "op_flags" => "L|F",
875   "state"    => "exc_pinned",
876   "comment"  => "construct Store: Store(ptr, val, mem) = ST ptr,val",
877   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
878   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ] },
879   "emit"     => '. movs%M %ia32_emit_binop /* Store(%S3) -> (%A1) */',
880   "outs"      => [ "M" ],
881 },
882
883 "l_X87toSSE" => {
884   "op_flags" => "L|F",
885   "comment"  => "construct: transfer a value from x87 FPU into a SSE register",
886   "cmp_attr" => "  return 1;\n",
887   "arity"    => 3,
888 },
889
890 "l_SSEtoX87" => {
891   "op_flags" => "L|F",
892   "comment"  => "construct: transfer a value from SSE register to x87 FPU",
893   "cmp_attr" => "  return 1;\n",
894   "arity"    => 3,
895 },
896
897 # CopyB
898
899 "CopyB" => {
900   "op_flags" => "F|H",
901   "state"    => "pinned",
902   "comment"  => "implements a memcopy: CopyB(dst, src, size, mem) == memcpy(dst, src, size)",
903   "reg_req"  => { "in" => [ "edi", "esi", "ecx", "none" ], "out" => [ "none" ] },
904 },
905
906 "CopyB_i" => {
907   "op_flags" => "F|H",
908   "state"    => "pinned",
909   "comment"  => "implements a memcopy: CopyB(dst, src, mem) == memcpy(dst, src, attr(size))",
910   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
911   "reg_req"  => { "in" => [ "edi", "esi", "none" ], "out" => [ "none" ] },
912 },
913
914 # Conversions
915
916 "Conv_I2I" => {
917   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3", "none" ] },
918   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
919   "comment"  => "construct Conv Int -> Int",
920   "outs"      => [ "res", "M" ],
921 },
922
923 "Conv_I2I8Bit" => {
924   "reg_req"  => { "in" => [ "gp", "gp", "eax ebx ecx edx", "none" ], "out" => [ "in_r3", "none" ] },
925   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
926   "comment"  => "construct Conv Int -> Int",
927   "outs"      => [ "res", "M" ],
928 },
929
930 "Conv_I2FP" => {
931   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "xmm", "none" ] },
932   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
933   "comment"  => "construct Conv Int -> Floating Point",
934   "outs"      => [ "res", "M" ],
935 },
936
937 "Conv_FP2I" => {
938   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "gp", "none" ] },
939   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
940   "comment"  => "construct Conv Floating Point -> Int",
941   "outs"      => [ "res", "M" ],
942 },
943
944 "Conv_FP2FP" => {
945   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "xmm", "none" ] },
946   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
947   "comment"  => "construct Conv Floating Point -> Floating Point",
948   "outs"      => [ "res", "M" ],
949 },
950
951 "CmpCMov" => {
952   "irn_flags" => "R",
953   "comment"   => "construct Conditional Move: CMov(sel, a, b) == sel ? a : b",
954   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp" ], "out" => [ "in_r4" ] }
955 },
956
957 "PsiCondCMov" => {
958   "irn_flags" => "R",
959   "comment"   => "check if Psi condition tree evaluates to true and move result accordingly",
960   "reg_req"   => { "in" => [ "gp", "gp", "gp" ], "out" => [ "in_r3" ] }
961 },
962
963 "xCmpCMov" => {
964   "irn_flags" => "R",
965   "comment"   => "construct Conditional Move: SSE Compare + int CMov ",
966   "reg_req"   => { "in" => [ "xmm", "xmm", "gp", "gp" ], "out" => [ "in_r4" ] }
967 },
968
969 "vfCmpCMov" => {
970   "irn_flags" => "R",
971   "comment"   => "construct Conditional Move: x87 Compare + int CMov",
972   "reg_req"   => { "in" => [ "vfp", "vfp", "gp", "gp" ], "out" => [ "in_r4" ] }
973 },
974
975 "CmpSet" => {
976   "irn_flags" => "R",
977   "comment"   => "construct Set: Set(sel) == sel ? 1 : 0",
978   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
979   "outs"      => [ "res", "M" ],
980 },
981
982 "PsiCondSet" => {
983   "irn_flags" => "R",
984   "comment"   => "check if Psi condition tree evaluates to true and set result accordingly",
985   "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax ebx ecx edx" ] },
986 },
987
988 "xCmpSet" => {
989   "irn_flags" => "R",
990   "comment"   => "construct Set: SSE Compare + int Set",
991   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
992   "outs"      => [ "res", "M" ],
993 },
994
995 "vfCmpSet" => {
996   "irn_flags" => "R",
997   "comment"   => "construct Set: x87 Compare + int Set",
998   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "eax ebx ecx edx", "none" ] },
999   "outs"      => [ "res", "M" ],
1000 },
1001
1002 "vfCMov" => {
1003   "irn_flags" => "R",
1004   "comment"   => "construct x87 Conditional Move: vfCMov(sel, a, b) = sel ? a : b",
1005   "reg_req"   => { "in" => [ "vfp", "vfp", "vfp", "vfp" ], "out" => [ "vfp" ] }
1006 },
1007
1008 #----------------------------------------------------------#
1009 #        _      _               _    __ _             _    #
1010 #       (_)    | |             | |  / _| |           | |   #
1011 # __   ___ _ __| |_ _   _  __ _| | | |_| | ___   __ _| |_  #
1012 # \ \ / / | '__| __| | | |/ _` | | |  _| |/ _ \ / _` | __| #
1013 #  \ V /| | |  | |_| |_| | (_| | | | | | | (_) | (_| | |_  #
1014 #   \_/ |_|_|   \__|\__,_|\__,_|_| |_| |_|\___/ \__,_|\__| #
1015 #                 | |                                      #
1016 #  _ __   ___   __| | ___  ___                             #
1017 # | '_ \ / _ \ / _` |/ _ \/ __|                            #
1018 # | | | | (_) | (_| |  __/\__ \                            #
1019 # |_| |_|\___/ \__,_|\___||___/                            #
1020 #----------------------------------------------------------#
1021
1022 "vfadd" => {
1023   "irn_flags" => "R",
1024   "comment"   => "virtual fp Add: Add(a, b) = Add(b, a) = a + b",
1025   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1026   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1027   "outs"      => [ "res", "M" ],
1028 },
1029
1030 "vfmul" => {
1031   "irn_flags" => "R",
1032   "comment"   => "virtual fp Mul: Mul(a, b) = Mul(b, a) = a * b",
1033   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1034   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1035   "outs"      => [ "res", "M" ],
1036 },
1037
1038 "l_vfmul" => {
1039   "op_flags"  => "C",
1040   "cmp_attr"  => "  return 1;\n",
1041   "comment"   => "lowered virtual fp Mul: Mul(a, b) = Mul(b, a) = a * b",
1042   "arity"     => 2,
1043 },
1044
1045 "vfsub" => {
1046   "irn_flags" => "R",
1047   "comment"   => "virtual fp Sub: Sub(a, b) = a - b",
1048   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1049   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1050   "outs"      => [ "res", "M" ],
1051 },
1052
1053 "l_vfsub" => {
1054   "cmp_attr"  => "  return 1;\n",
1055   "comment"   => "lowered virtual fp Sub: Sub(a, b) = a - b",
1056   "arity"     => 2,
1057 },
1058
1059 "vfdiv" => {
1060   "comment"   => "virtual fp Div: Div(a, b) = a / b",
1061   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1062   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
1063   "outs"      => [ "res", "M" ],
1064 },
1065
1066 "l_vfdiv" => {
1067   "cmp_attr"  => "  return 1;\n",
1068   "comment"   => "lowered virtual fp Div: Div(a, b) = a / b",
1069   "arity"     => 2,
1070 },
1071
1072 "vfabs" => {
1073   "irn_flags" => "R",
1074   "comment"   => "virtual fp Abs: Abs(a) = |a|",
1075   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1076 },
1077
1078 "vfchs" => {
1079   "irn_flags" => "R",
1080   "comment"   => "virtual fp Chs: Chs(a) = -a",
1081   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1082 },
1083
1084 "vfsin" => {
1085   "irn_flags" => "R",
1086   "comment"   => "virtual fp Sin: Sin(a) = sin(a)",
1087   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1088 },
1089
1090 "vfcos" => {
1091   "irn_flags" => "R",
1092   "comment"   => "virtual fp Cos: Cos(a) = cos(a)",
1093   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1094 },
1095
1096 "vfsqrt" => {
1097   "irn_flags" => "R",
1098   "comment"   => "virtual fp Sqrt: Sqrt(a) = a ^ 0.5",
1099   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
1100 },
1101
1102 # virtual Load and Store
1103
1104 "vfld" => {
1105   "op_flags"  => "L|F",
1106   "irn_flags" => "R",
1107   "state"     => "exc_pinned",
1108   "comment"   => "virtual fp Load: Load(ptr, mem) = LD ptr -> reg",
1109   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1110   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
1111   "outs"      => [ "res", "M" ],
1112 },
1113
1114 "vfst" => {
1115   "op_flags"  => "L|F",
1116   "state"     => "exc_pinned",
1117   "comment"   => "virtual fp Store: Store(ptr, val, mem) = ST ptr,val",
1118   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1119   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
1120   "outs"      => [ "M" ],
1121 },
1122
1123 # Conversions
1124
1125 "vfild" => {
1126   "irn_flags" => "R",
1127   "comment"   => "virtual fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
1128   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1129   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
1130   "outs"      => [ "res", "M" ],
1131 },
1132
1133 "l_vfild" => {
1134   "cmp_attr"  => "  return 1;\n",
1135   "comment"   => "lowered virtual fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
1136   "outs"      => [ "res", "M" ],
1137   "arity"     => 2,
1138 },
1139
1140 "vfist" => {
1141   "comment"   => "virtual fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1142   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1143   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
1144   "outs"      => [ "M" ],
1145 },
1146
1147 "l_vfist" => {
1148   "cmp_attr"  => "  return 1;\n",
1149   "comment"   => "lowered virtual fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1150   "outs"      => [ "M" ],
1151   "arity"     => 3,
1152 },
1153
1154
1155 # constants
1156
1157 "vfldz" => {
1158   "irn_flags" => "R",
1159   "comment"   => "virtual fp Load 0.0: Ld 0.0 -> reg",
1160   "reg_req"   => { "out" => [ "vfp" ] },
1161 },
1162
1163 "vfld1" => {
1164   "irn_flags" => "R",
1165   "comment"   => "virtual fp Load 1.0: Ld 1.0 -> reg",
1166   "reg_req"   => { "out" => [ "vfp" ] },
1167 },
1168
1169 "vfldpi" => {
1170   "irn_flags" => "R",
1171   "comment"   => "virtual fp Load pi: Ld pi -> reg",
1172   "reg_req"   => { "out" => [ "vfp" ] },
1173 },
1174
1175 "vfldln2" => {
1176   "irn_flags" => "R",
1177   "comment"   => "virtual fp Load ln 2: Ld ln 2 -> reg",
1178   "reg_req"   => { "out" => [ "vfp" ] },
1179 },
1180
1181 "vfldlg2" => {
1182   "irn_flags" => "R",
1183   "comment"   => "virtual fp Load lg 2: Ld lg 2 -> reg",
1184   "reg_req"   => { "out" => [ "vfp" ] },
1185 },
1186
1187 "vfldl2t" => {
1188   "irn_flags" => "R",
1189   "comment"   => "virtual fp Load ld 10: Ld ld 10 -> reg",
1190   "reg_req"   => { "out" => [ "vfp" ] },
1191 },
1192
1193 "vfldl2e" => {
1194   "irn_flags" => "R",
1195   "comment"   => "virtual fp Load ld e: Ld ld e -> reg",
1196   "reg_req"   => { "out" => [ "vfp" ] },
1197 },
1198
1199 "vfConst" => {
1200   "op_flags"  => "c",
1201   "irn_flags" => "R",
1202   "init_attr" => "  set_ia32_ls_mode(res, mode);",
1203   "comment"   => "represents a virtual floating point constant",
1204   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1205   "reg_req"   => { "in" => [ "none" ], "out" => [ "vfp" ] },
1206 },
1207
1208 # other
1209
1210 "vfCondJmp" => {
1211   "op_flags"  => "L|X|Y",
1212   "comment"   => "represents a virtual floating point compare",
1213   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1214   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "none", "none", "eax" ] },
1215   "outs"      => [ "false", "true", "temp_reg_eax" ],
1216 },
1217
1218 #------------------------------------------------------------------------#
1219 #       ___ _____    __ _             _                     _            #
1220 # __  _( _ )___  |  / _| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
1221 # \ \/ / _ \  / /  | |_| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
1222 #  >  < (_) |/ /   |  _| | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
1223 # /_/\_\___//_/    |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
1224 #------------------------------------------------------------------------#
1225
1226 "fadd" => {
1227   "op_flags"  => "R",
1228   "rd_constructor" => "NONE",
1229   "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
1230   "reg_req"   => { },
1231   "emit"      => '. fadd %ia32_emit_x87_binop /* x87 fadd(%A1, %A2) -> %D1 */',
1232 },
1233
1234 "faddp" => {
1235   "op_flags"  => "R",
1236   "rd_constructor" => "NONE",
1237   "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
1238   "reg_req"   => { },
1239   "emit"      => '. faddp %ia32_emit_x87_binop /* x87 fadd(%A1, %A2) -> %D1 */',
1240 },
1241
1242 "fmul" => {
1243   "op_flags"  => "R",
1244   "rd_constructor" => "NONE",
1245   "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
1246   "reg_req"   => { },
1247   "emit"      => '. fmul %ia32_emit_x87_binop /* x87 fmul(%A1, %A2) -> %D1 */',
1248 },
1249
1250 "fmulp" => {
1251   "op_flags"  => "R",
1252   "rd_constructor" => "NONE",
1253   "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
1254   "reg_req"   => { },
1255   "emit"      => '. fmulp %ia32_emit_x87_binop /* x87 fmul(%A1, %A2) -> %D1 */',,
1256 },
1257
1258 "fsub" => {
1259   "op_flags"  => "R",
1260   "rd_constructor" => "NONE",
1261   "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
1262   "reg_req"   => { },
1263   "emit"      => '. fsub %ia32_emit_x87_binop /* x87 fsub(%A1, %A2) -> %D1 */',
1264 },
1265
1266 "fsubp" => {
1267   "op_flags"  => "R",
1268   "rd_constructor" => "NONE",
1269   "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
1270   "reg_req"   => { },
1271   "emit"      => '. fsubp %ia32_emit_x87_binop /* x87 fsub(%A1, %A2) -> %D1 */',
1272 },
1273
1274 "fsubr" => {
1275   "op_flags"  => "R",
1276   "rd_constructor" => "NONE",
1277   "irn_flags" => "R",
1278   "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
1279   "reg_req"   => { },
1280   "emit"      => '. fsubr %ia32_emit_x87_binop /* x87 fsubr(%A1, %A2) -> %D1 */',
1281 },
1282
1283 "fsubrp" => {
1284   "op_flags"  => "R",
1285   "rd_constructor" => "NONE",
1286   "irn_flags" => "R",
1287   "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
1288   "reg_req"   => { },
1289   "emit"      => '. fsubrp %ia32_emit_x87_binop /* x87 fsubr(%A1, %A2) -> %D1 */',
1290 },
1291
1292 "fdiv" => {
1293   "op_flags"  => "R",
1294   "rd_constructor" => "NONE",
1295   "comment"   => "x87 fp Div: Div(a, b) = a / b",
1296   "reg_req"   => { },
1297   "emit"      => '. fdiv %ia32_emit_x87_binop /* x87 fdiv(%A1, %A2) -> %D1 */',
1298 },
1299
1300 "fdivp" => {
1301   "op_flags"  => "R",
1302   "rd_constructor" => "NONE",
1303   "comment"   => "x87 fp Div: Div(a, b) = a / b",
1304   "reg_req"   => { },
1305   "emit"      => '. fdivp %ia32_emit_x87_binop /* x87 fdiv(%A1, %A2) -> %D1 */',
1306 },
1307
1308 "fdivr" => {
1309   "op_flags"  => "R",
1310   "rd_constructor" => "NONE",
1311   "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
1312   "reg_req"   => { },
1313   "emit"      => '. fdivr %ia32_emit_x87_binop /* x87 fdivr(%A1, %A2) -> %D1 */',
1314 },
1315
1316 "fdivrp" => {
1317   "op_flags"  => "R",
1318   "rd_constructor" => "NONE",
1319   "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
1320   "reg_req"   => { },
1321   "emit"      => '. fdivrp %ia32_emit_x87_binop /* x87 fdivr(%A1, %A2) -> %D1 */',
1322 },
1323
1324 "fabs" => {
1325   "op_flags"  => "R",
1326   "rd_constructor" => "NONE",
1327   "comment"   => "x87 fp Abs: Abs(a) = |a|",
1328   "reg_req"   => { },
1329   "emit"      => '. fabs /* x87 fabs(%S1) -> %D1 */',
1330 },
1331
1332 "fchs" => {
1333   "op_flags"  => "R",
1334   "rd_constructor" => "NONE",
1335   "comment"   => "x87 fp Chs: Chs(a) = -a",
1336   "reg_req"   => { },
1337   "emit"      => '. fchs /* x87 fchs(%S1) -> %D1 */',
1338 },
1339
1340 "fsin" => {
1341   "op_flags"  => "R",
1342   "rd_constructor" => "NONE",
1343   "comment"   => "x87 fp Sin: Sin(a) = sin(a)",
1344   "reg_req"   => { },
1345   "emit"      => '. fsin /* x87 sin(%S1) -> %D1 */',
1346 },
1347
1348 "fcos" => {
1349   "op_flags"  => "R",
1350   "rd_constructor" => "NONE",
1351   "comment"   => "x87 fp Cos: Cos(a) = cos(a)",
1352   "reg_req"   => { },
1353   "emit"      => '. fcos /* x87 cos(%S1) -> %D1 */',
1354 },
1355
1356 "fsqrt" => {
1357   "op_flags"  => "R",
1358   "rd_constructor" => "NONE",
1359   "comment"   => "x87 fp Sqrt: Sqrt(a) = a ^ 0.5",
1360   "reg_req"   => { },
1361   "emit"      => '. fsqrt $ /* x87 sqrt(%S1) -> %D1 */',
1362 },
1363
1364 # x87 Load and Store
1365
1366 "fld" => {
1367   "rd_constructor" => "NONE",
1368   "op_flags"  => "R|L|F",
1369   "state"     => "exc_pinned",
1370   "comment"   => "x87 fp Load: Load(ptr, mem) = LD ptr -> reg",
1371   "reg_req"   => { },
1372   "emit"      => '. fld %ia32_emit_am /* Load((%A1)) -> %D1 */',
1373 },
1374
1375 "fst" => {
1376   "rd_constructor" => "NONE",
1377   "op_flags"  => "R|L|F",
1378   "state"     => "exc_pinned",
1379   "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
1380   "reg_req"   => { },
1381   "emit"      => '. fst %ia32_emit_am /* Store(%A3) -> (%A1) */',
1382 },
1383
1384 "fstp" => {
1385   "rd_constructor" => "NONE",
1386   "op_flags"  => "R|L|F",
1387   "state"     => "exc_pinned",
1388   "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
1389   "reg_req"   => { },
1390   "emit"      => '. fstp %ia32_emit_am /* Store(%A3) -> (%A1) and pop */',
1391 },
1392
1393 # Conversions
1394
1395 "fild" => {
1396   "op_flags"  => "R",
1397   "irn_flags" => "R",
1398   "rd_constructor" => "NONE",
1399   "comment"   => "x87 fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
1400   "reg_req"   => { },
1401   "emit"      => '. fild %ia32_emit_am /* integer Load((%A1)) -> %D1 */',
1402 },
1403
1404 "fist" => {
1405   "op_flags"  => "R",
1406   "rd_constructor" => "NONE",
1407   "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1408   "reg_req"   => { },
1409   "emit"      => '. fist %ia32_emit_am /* integer Store(%A3) -> (%A1) */',
1410 },
1411
1412 "fistp" => {
1413   "op_flags"  => "R",
1414   "rd_constructor" => "NONE",
1415   "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1416   "reg_req"   => { },
1417   "emit"      => '. fistp %ia32_emit_am /* integer Store(%A3) -> (%A1) and pop */',
1418 },
1419
1420 # constants
1421
1422 "fldz" => {
1423   "op_flags"  => "R",
1424   "rd_constructor" => "NONE",
1425   "comment"   => "x87 fp Load 0.0: Ld 0.0 -> reg",
1426   "reg_req"   => { },
1427   "emit"      => '. fldz /* x87 0.0 -> %D1 */',
1428 },
1429
1430 "fld1" => {
1431   "op_flags"  => "R",
1432   "rd_constructor" => "NONE",
1433   "comment"   => "x87 fp Load 1.0: Ld 1.0 -> reg",
1434   "reg_req"   => { },
1435   "emit"      => '. fld1 /* x87 1.0 -> %D1 */',
1436 },
1437
1438 "fldpi" => {
1439   "op_flags"  => "R",
1440   "rd_constructor" => "NONE",
1441   "comment"   => "x87 fp Load pi: Ld pi -> reg",
1442   "reg_req"   => { },
1443   "emit"      => '. fldpi /* x87 pi -> %D1 */',
1444 },
1445
1446 "fldln2" => {
1447   "op_flags"  => "R",
1448   "rd_constructor" => "NONE",
1449   "comment"   => "x87 fp Load ln 2: Ld ln 2 -> reg",
1450   "reg_req"   => { },
1451   "emit"      => '. fldln2 /* x87 ln(2) -> %D1 */',
1452 },
1453
1454 "fldlg2" => {
1455   "op_flags"  => "R",
1456   "rd_constructor" => "NONE",
1457   "comment"   => "x87 fp Load lg 2: Ld lg 2 -> reg",
1458   "reg_req"   => { },
1459   "emit"      => '. fldlg2 /* x87 log(2) -> %D1 */',
1460 },
1461
1462 "fldl2t" => {
1463   "op_flags"  => "R",
1464   "rd_constructor" => "NONE",
1465   "comment"   => "x87 fp Load ld 10: Ld ld 10 -> reg",
1466   "reg_req"   => { },
1467   "emit"      => '. fldll2t /* x87 ld(10) -> %D1 */',
1468 },
1469
1470 "fldl2e" => {
1471   "op_flags"  => "R",
1472   "rd_constructor" => "NONE",
1473   "comment"   => "x87 fp Load ld e: Ld ld e -> reg",
1474   "reg_req"   => { },
1475   "emit"      => '. fldl2e /* x87 ld(e) -> %D1 */',
1476 },
1477
1478 "fldConst" => {
1479   "op_flags"  => "R|c",
1480   "irn_flags" => "R",
1481   "rd_constructor" => "NONE",
1482   "comment"   => "represents a x87 constant",
1483   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1484   "reg_req"   => { "out" => [ "st" ] },
1485   "emit"      => '. fld %ia32_emit_adr /* Load fConst into register -> %D1 */',
1486 },
1487
1488 # fxch, fpush, fpop
1489 # Note that it is NEVER allowed to do CSE on these nodes
1490
1491 "fxch" => {
1492   "op_flags"  => "R|K",
1493   "comment"   => "x87 stack exchange",
1494   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1495   "cmp_attr"  => "  return 1;\n",
1496   "emit"      => '. fxch %X1 /* x87 swap %X1, %X3 */',
1497 },
1498
1499 "fpush" => {
1500   "op_flags"  => "R",
1501   "comment"   => "x87 stack push",
1502   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1503   "cmp_attr"  => "  return 1;\n",
1504   "emit"      => '. fld %X1 /* x87 push %X1 */',
1505 },
1506
1507 "fpop" => {
1508   "op_flags"  => "R|K",
1509   "comment"   => "x87 stack pop",
1510   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1511   "cmp_attr"  => "  return 1;\n",
1512   "emit"      => '. fstp %X1 /* x87 pop %X1 */',
1513 },
1514
1515 # compare
1516
1517 "fcomJmp" => {
1518   "op_flags"  => "L|X|Y",
1519   "comment"   => "floating point compare",
1520   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1521   "reg_req"   => { },
1522 },
1523
1524 "fcompJmp" => {
1525   "op_flags"  => "L|X|Y",
1526   "comment"   => "floating point compare and pop",
1527   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1528   "reg_req"   => { },
1529 },
1530
1531 "fcomppJmp" => {
1532   "op_flags"  => "L|X|Y",
1533   "comment"   => "floating point compare and pop twice",
1534   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1535   "reg_req"   => { },
1536 },
1537
1538 "fcomrJmp" => {
1539   "op_flags"  => "L|X|Y",
1540   "comment"   => "floating point compare reverse",
1541   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1542   "reg_req"   => { },
1543 },
1544
1545 "fcomrpJmp" => {
1546   "op_flags"  => "L|X|Y",
1547   "comment"   => "floating point compare reverse and pop",
1548   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1549   "reg_req"   => { },
1550 },
1551
1552 "fcomrppJmp" => {
1553   "op_flags"  => "L|X|Y",
1554   "comment"   => "floating point compare reverse and pop twice",
1555   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1556   "reg_req"   => { },
1557 },
1558
1559 ); # end of %nodes