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