add a memory input to all constants, needed for the optimized scheduler
[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" => "ebp", "type" => 2 },
108             { "name" => "esp", "type" => 4 },
109             { "name" => "gp_NOREG", "type" => 6 },  # we need a dummy register for NoReg nodes
110             { "name" => "gp_UKNWN", "type" => 6 },  # we need a dummy register for Unknown nodes
111                         { "mode" => "mode_P" }
112           ],
113   "xmm" => [
114             { "name" => "xmm0", "type" => 1 },
115             { "name" => "xmm1", "type" => 1 },
116             { "name" => "xmm2", "type" => 1 },
117             { "name" => "xmm3", "type" => 1 },
118             { "name" => "xmm4", "type" => 1 },
119             { "name" => "xmm5", "type" => 1 },
120             { "name" => "xmm6", "type" => 1 },
121             { "name" => "xmm7", "type" => 1 },
122             { "name" => "xmm_NOREG", "type" => 6 },  # we need a dummy register for NoReg nodes
123             { "name" => "xmm_UKNWN", "type" => 6 },  # we need a dummy register for Unknown nodes
124                         { "mode" => "mode_D" }
125           ],
126   "vfp" => [
127             { "name" => "vf0", "type" => 1 },
128             { "name" => "vf1", "type" => 1 },
129             { "name" => "vf2", "type" => 1 },
130             { "name" => "vf3", "type" => 1 },
131             { "name" => "vf4", "type" => 1 },
132             { "name" => "vf5", "type" => 1 },
133             { "name" => "vf6", "type" => 1 },
134             { "name" => "vf7", "type" => 1 },
135             { "name" => "vfp_NOREG", "type" => 6 },  # we need a dummy register for NoReg nodes
136             { "name" => "vfp_UKNWN", "type" => 6 },  # we need a dummy register for Unknown nodes
137                         { "mode" => "mode_E" }
138           ],
139   "st" => [
140             { "name" => "st0", "type" => 1 },
141             { "name" => "st1", "type" => 1 },
142             { "name" => "st2", "type" => 1 },
143             { "name" => "st3", "type" => 1 },
144             { "name" => "st4", "type" => 1 },
145             { "name" => "st5", "type" => 1 },
146             { "name" => "st6", "type" => 1 },
147             { "name" => "st7", "type" => 1 },
148             { "name" => "st_NOREG", "type" => 6 },  # we need a dummy register for NoReg nodes
149             { "name" => "st_UKNWN", "type" => 6 },  # we need a dummy register for Unknown nodes
150                         { "mode" => "mode_E" }
151           ]
152 ); # %reg_classes
153
154 #--------------------------------------------------#
155 #                        _                         #
156 #                       (_)                        #
157 #  _ __   _____      __  _ _ __    ___  _ __  ___  #
158 # | '_ \ / _ \ \ /\ / / | | '__|  / _ \| '_ \/ __| #
159 # | | | |  __/\ V  V /  | | |    | (_) | |_) \__ \ #
160 # |_| |_|\___| \_/\_/   |_|_|     \___/| .__/|___/ #
161 #                                      | |         #
162 #                                      |_|         #
163 #--------------------------------------------------#
164
165 %operands = (
166 );
167
168 %nodes = (
169
170 #-----------------------------------------------------------------#
171 #  _       _                                         _            #
172 # (_)     | |                                       | |           #
173 #  _ _ __ | |_ ___  __ _  ___ _ __   _ __   ___   __| | ___  ___  #
174 # | | '_ \| __/ _ \/ _` |/ _ \ '__| | '_ \ / _ \ / _` |/ _ \/ __| #
175 # | | | | | ||  __/ (_| |  __/ |    | | | | (_) | (_| |  __/\__ \ #
176 # |_|_| |_|\__\___|\__, |\___|_|    |_| |_|\___/ \__,_|\___||___/ #
177 #                   __/ |                                         #
178 #                  |___/                                          #
179 #-----------------------------------------------------------------#
180
181 # commutative operations
182
183 # NOTE:
184 # All nodes supporting Addressmode have 5 INs:
185 # 1 - base    r1 == NoReg in case of no AM or no base
186 # 2 - index   r2 == NoReg in case of no AM or no index
187 # 3 - op1     r3 == always present
188 # 4 - op2     r4 == NoReg in case of immediate operation
189 # 5 - mem     NoMem in case of no AM otherwise it takes the mem from the Load
190
191 "Add" => {
192   "irn_flags" => "R",
193   "comment"   => "construct Add: Add(a, b) = Add(b, a) = a + b",
194   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
195   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
196   "emit"      => '. add %ia32_emit_binop /* Add(%A1, %A2) -> %D1 */',
197   "outs"      => [ "res", "M" ],
198 },
199
200 "Mul" => {
201   "irn_flags" => "R",
202   "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
203   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
204   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
205   "emit"      => '. imul %ia32_emit_binop /* Mul(%A1, %A2) -> %D1 */',
206   "outs"      => [ "res", "M" ],
207 },
208
209 # Mulh is an exception from the 4 INs with AM because the target is always EAX:EDX
210 "Mulh" => {
211   "comment"   => "construct Mul: Mul(a, b) = Mul(b, a) = a * b",
212   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
213   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "eax in_r3", "edx in_r4" ] },
214   "emit"      => '. imul %ia32_emit_binop /* Mulh(%A1, %A2) -> %D1 */',
215   "outs"      => [ "EAX", "EDX", "M" ],
216 },
217
218 "And" => {
219   "irn_flags" => "R",
220   "comment"   => "construct And: And(a, b) = And(b, a) = a AND b",
221   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
222   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
223   "emit"      => '. and %ia32_emit_binop /* And(%A1, %A2) -> %D1 */',
224   "outs"      => [ "res", "M" ],
225 },
226
227 "Or" => {
228   "irn_flags" => "R",
229   "comment"   => "construct Or: Or(a, b) = Or(b, a) = a OR b",
230   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
231   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
232   "emit"      => '. or %ia32_emit_binop /* Or(%A1, %A2) -> %D1 */',
233   "outs"      => [ "res", "M" ],
234 },
235
236 "Eor" => {
237   "irn_flags" => "R",
238   "comment"   => "construct Eor: Eor(a, b) = Eor(b, a) = a EOR b",
239   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
240   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
241   "emit"      => '. xor %ia32_emit_binop /* Xor(%A1, %A2) -> %D1 */',
242   "outs"      => [ "res", "M" ],
243 },
244
245 "Max" => {
246   "irn_flags" => "R",
247   "comment"   => "construct Max: Max(a, b) = Max(b, a) = a > b ? a : b",
248   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
249   "emit"      =>
250 '2. cmp %S1, %S2 /* prepare Max (%S1 - %S2), (%A1, %A2) */
251   if (mode_is_signed(get_irn_mode(n))) {
252 4.  cmovl %D1, %S2 /* %S1 is less %S2 */
253   }
254   else {
255 4.  cmovb %D1, %S2 /* %S1 is below %S2 */
256   }
257 '
258 },
259
260 "Min" => {
261   "irn_flags" => "R",
262   "comment"   => "construct Min: Min(a, b) = Min(b, a) = a < b ? a : b",
263   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
264   "emit"      =>
265 '2. cmp %S1, %S2 /* prepare Min (%S1 - %S2), (%A1, %A2) */
266   if (mode_is_signed(get_irn_mode(n))) {
267 2.  cmovg %D1, %S2 /* %S1 is greater %S2 */
268   }
269   else {
270 2.  cmova %D1, %S2, %D1 /* %S1 is above %S2 */
271   }
272 '
273 },
274
275 "CMov" => {
276   "irn_flags" => "R",
277   "comment"   => "construct Mux: Mux(sel, a, b) == sel ? a : b",
278   "reg_req"   => { "in" => [ "gp", "gp", "gp" ], "out" => [ "in_r2" ] },
279   "emit"      =>
280 '. cmp %S1, 0 /* compare Sel for CMov (%A2, %A3) */
281 . cmovne %D1, %S3 /* sel == true -> return %S3 */
282 '
283 },
284
285 # not commutative operations
286
287 "Sub" => {
288   "irn_flags" => "R",
289   "comment"   => "construct Sub: Sub(a, b) = a - b",
290   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
291   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
292   "emit"      => '. sub %ia32_emit_binop /* Sub(%A1, %A2) -> %D1 */',
293   "outs"      => [ "res", "M" ],
294 },
295
296 "DivMod" => {
297   "op_flags"  => "F|L",
298   "state"     => "exc_pinned",
299   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "eax in_r1", "edx in_r3" ] },
300   "attr"      => "ia32_op_flavour_t dm_flav",
301   "init_attr" => "  attr->data.op_flav = dm_flav;",
302   "cmp_attr"  => "  return attr_a->data.op_flav != attr_b->data.op_flav;\n",
303   "emit"      =>
304 '  if (mode_is_signed(get_irn_mode(n))) {
305 4.  idiv %S2 /* signed DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
306   }
307   else {
308 4.  div %S2 /* unsigned DivMod(%S1, %S2) -> %D1, (%A1, %A2, %A3) */
309   }
310 ',
311   "outs"      => [ "div_res", "mod_res", "M" ],
312 },
313
314 "Shl" => {
315   "irn_flags" => "R",
316   "comment"   => "construct Shl: Shl(a, b) = a << b",
317   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
318   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
319   "emit"      => '. shl %ia32_emit_binop /* Shl(%A1, %A2) -> %D1 */',
320   "outs"      => [ "res", "M" ],
321 },
322
323 "Shr" => {
324   "irn_flags" => "R",
325   "comment"   => "construct Shr: Shr(a, b) = a >> b",
326   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
327   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
328   "emit"      => '. shr %ia32_emit_binop /* Shr(%A1, %A2) -> %D1 */',
329   "outs"      => [ "res", "M" ],
330 },
331
332 "Shrs" => {
333   "irn_flags" => "R",
334   "comment"   => "construct Shrs: Shrs(a, b) = a >> b",
335   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
336   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
337   "emit"      => '. sar %ia32_emit_binop /* Shrs(%A1, %A2) -> %D1 */',
338   "outs"      => [ "res", "M" ],
339 },
340
341 "RotR" => {
342   "irn_flags" => "R",
343   "comment"     => "construct RotR: RotR(a, b) = a ROTR b",
344   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
345   "reg_req"     => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
346   "emit"        => '. ror %ia32_emit_binop /* RotR(%A1, %A2) -> %D1 */',
347   "outs"      => [ "res", "M" ],
348 },
349
350 "RotL" => {
351   "irn_flags" => "R",
352   "comment"   => "construct RotL: RotL(a, b) = a ROTL b",
353   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
354   "reg_req"   => { "in" => [ "gp", "gp", "gp", "ecx", "none" ], "out" => [ "in_r3 !in_r4" ] },
355   "emit"      => '. rol %ia32_emit_binop /* RotL(%A1, %A2) -> %D1 */',
356   "outs"      => [ "res", "M" ],
357 },
358
359 # unary operations
360
361 "Minus" => {
362   "irn_flags" => "R",
363   "comment"   => "construct Minus: Minus(a) = -a",
364   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
365   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
366   "emit"      => '. neg %ia32_emit_unop /* Neg(%A1) -> %D1, (%A1) */',
367   "outs"      => [ "res", "M" ],
368 },
369
370 "Inc" => {
371   "irn_flags" => "R",
372   "comment"   => "construct Increment: Inc(a) = a++",
373   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
374   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
375   "emit"      => '. inc %ia32_emit_unop /* Inc(%S1) -> %D1, (%A1) */',
376   "outs"      => [ "res", "M" ],
377 },
378
379 "Dec" => {
380   "irn_flags" => "R",
381   "comment"   => "construct Decrement: Dec(a) = a--",
382   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
383   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
384   "emit"      => '. dec %ia32_emit_unop /* Dec(%S1) -> %D1, (%A1) */',
385   "outs"      => [ "res", "M" ],
386 },
387
388 "Not" => {
389   "irn_flags" => "R",
390   "comment"   => "construct Not: Not(a) = !a",
391   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
392   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3" ] },
393   "emit"      => '. not %ia32_emit_unop /* Not(%S1) -> %D1, (%A1) */',
394   "outs"      => [ "res", "M" ],
395 },
396
397 # other operations
398
399 "CondJmp" => {
400   "op_flags"  => "L|X|Y",
401   "comment"   => "construct conditional jump: CMP A, B && JMPxx LABEL",
402   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
403   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ] },
404   "outs"      => [ "false", "true" ],
405 },
406
407 "TestJmp" => {
408   "op_flags"  => "L|X|Y",
409   "comment"   => "construct conditional jump: TEST A, B && JMPxx LABEL",
410   "reg_req"  => { "in" => [ "gp", "gp" ] },
411   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
412   "outs"      => [ "false", "true" ],
413 },
414
415 "CJmpAM" => {
416   "op_flags"  => "L|X|Y",
417   "comment"   => "construct conditional jump without CMP (replaces CondJmp): JMPxx LABEL",
418   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
419   "reg_req"   => { "in" => [ "gp", "gp", "gp", "gp", "none" ], "out" => [ "none", "none" ] },
420   "outs"      => [ "false", "true" ],
421 },
422
423 "CJmp" => {
424   "op_flags"  => "L|X|Y",
425   "comment"   => "construct conditional jump without CMP (replaces TestJmp): JMPxx LABEL",
426   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
427   "reg_req"   => { "in" => [ "gp", "gp" ] },
428 },
429
430 "SwitchJmp" => {
431   "op_flags"  => "L|X|Y",
432   "comment"   => "construct switch",
433   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
434   "reg_req"   => { "in" => [ "gp" ], "out" => [ "none" ] },
435 },
436
437 "Const" => {
438   "op_flags"  => "c",
439   "irn_flags" => "R",
440   "comment"   => "represents an integer constant",
441   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
442   "reg_req"   => { "in" => [ "none" ], "out" => [ "gp" ] },
443 },
444
445 "Cdq" => {
446   "irn_flags" => "R",
447   "comment"   => "construct CDQ: sign extend EAX -> EDX:EAX",
448   "reg_req"   => { "in" => [ "gp" ], "out" => [ "eax in_r1", "edx" ] },
449   "emit"      => '. cdq /* sign extend EAX -> EDX:EAX, (%A1) */',
450   "outs"      => [ "EAX", "EDX" ],
451 },
452
453 # Load / Store
454
455 "Load" => {
456   "op_flags"  => "L|F",
457   "irn_flags" => "R",
458   "state"     => "exc_pinned",
459   "comment"   => "construct Load: Load(ptr, mem) = LD ptr -> reg",
460   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
461   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "gp" ] },
462   "emit"      =>
463 '  if (get_mode_size_bits(get_ia32_ls_mode(n)) < 32) {
464 4.   mov%Mx %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
465   }
466   else {
467 4.   mov %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */
468   }
469 ',
470   "outs"      => [ "res", "M" ],
471 },
472
473 "Store" => {
474   "op_flags"  => "L|F",
475   "state"     => "exc_pinned",
476   "comment"   => "construct Store: Store(ptr, val, mem) = ST ptr,val",
477   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
478   "reg_req"   => { "in" => [ "gp", "gp", "gp", "none" ] },
479   "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
480   "outs"      => [ "M" ],
481 },
482
483 "Store8Bit" => {
484   "op_flags"  => "L|F",
485   "state"     => "exc_pinned",
486   "comment"   => "construct 8Bit Store: Store(ptr, val, mem) = ST ptr,val",
487   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
488   "reg_req"   => { "in" => [ "gp", "gp", "eax ebx ecx edx", "none" ] },
489   "emit"      => '. mov %ia32_emit_binop /* Store(%A3) -> (%A1) */',
490   "outs"      => [ "M" ],
491 },
492
493 "Lea" => {
494   "irn_flags" => "R",
495   "comment"   => "construct Lea: Lea(a,b) = lea [a+b*const+offs] | res = a + b * const + offs with const = 0,1,2,4,8",
496   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
497   "reg_req"   => { "in" => [ "gp", "gp" ], "out" => [ "in_r1" ] },
498   "emit"      => '. lea %D1, %ia32_emit_am /* LEA(%A1, %A2) */'
499 },
500
501 "Push" => {
502   "comment"   => "push a gp register on the stack",
503   "reg_req"   => { "in" => [ "esp", "gp", "none" ], "out" => [ "esp" ] },
504   "emit"      => '. push %S2 /* Push(%A2) */',
505   "outs"      => [ "stack", "M" ],
506 },
507
508 "Pop" => {
509   "comment"   => "pop a gp register from the stack",
510   "reg_req"   => { "in" => [ "esp", "none" ], "out" => [ "gp", "esp" ] },
511   "emit"      => '. pop %D1 /* Pop -> %D1 */',
512   "outs"      => [ "res", "stack", "M" ],
513 },
514
515 "Enter" => {
516   "comment"   => "create stack frame",
517   "reg_req"   => { "in" => [ "esp" ], "out" => [ "ebp", "esp" ] },
518   "emit"      => '. enter /* Enter */',
519   "outs"      => [ "frame", "stack", "M" ],
520 },
521
522 "Leave" => {
523   "comment"   => "destroy stack frame",
524   "reg_req"   => { "in" => [ "esp", "ebp" ], "out" => [ "ebp", "esp" ] },
525   "emit"      => '. leave /* Leave */',
526   "outs"      => [ "frame", "stack", "M" ],
527 },
528
529 #-----------------------------------------------------------------------------#
530 #   _____ _____ ______    __ _             _                     _            #
531 #  / ____/ ____|  ____|  / _| |           | |                   | |           #
532 # | (___| (___ | |__    | |_| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
533 #  \___ \\___ \|  __|   |  _| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
534 #  ____) |___) | |____  | | | | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
535 # |_____/_____/|______| |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
536 #-----------------------------------------------------------------------------#
537
538 # commutative operations
539
540 "xAdd" => {
541   "irn_flags" => "R",
542   "comment"   => "construct SSE Add: Add(a, b) = Add(b, a) = a + b",
543   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
544   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
545   "emit"      => '. adds%M %ia32_emit_binop /* SSE Add(%A3, %A4) -> %D1 */',
546   "outs"      => [ "res", "M" ],
547 },
548
549 "xMul" => {
550   "irn_flags" => "R",
551   "comment"   => "construct SSE Mul: Mul(a, b) = Mul(b, a) = a * b",
552   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
553   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
554   "emit"      => '. muls%M %ia32_emit_binop /* SSE Mul(%A3, %A4) -> %D1 */',
555   "outs"      => [ "res", "M" ],
556 },
557
558 "xMax" => {
559   "irn_flags" => "R",
560   "comment"   => "construct SSE Max: Max(a, b) = Max(b, a) = a > b ? a : b",
561   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
562   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
563   "emit"      => '. maxs%M %ia32_emit_binop /* SSE Max(%A3, %A4) -> %D1 */',
564   "outs"      => [ "res", "M" ],
565 },
566
567 "xMin" => {
568   "irn_flags" => "R",
569   "comment"   => "construct SSE Min: Min(a, b) = Min(b, a) = a < b ? a : b",
570   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
571   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
572   "emit"      => '. mins%M %ia32_emit_binop /* SSE Min(%A3, %A4) -> %D1 */',
573   "outs"      => [ "res", "M" ],
574 },
575
576 "xAnd" => {
577   "irn_flags" => "R",
578   "comment"   => "construct SSE And: And(a, b) = a AND b",
579   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
580   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
581   "emit"      => '. andp%M %ia32_emit_binop /* SSE And(%A3, %A4) -> %D1 */',
582   "outs"      => [ "res", "M" ],
583 },
584
585 "xOr" => {
586   "irn_flags" => "R",
587   "comment"   => "construct SSE Or: Or(a, b) = a OR b",
588   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
589   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
590   "emit"      => '. orp%M %ia32_emit_binop /* SSE Or(%A3, %A4) -> %D1 */',
591   "outs"      => [ "res", "M" ],
592 },
593
594 "xEor" => {
595   "irn_flags" => "R",
596   "comment"   => "construct SSE Eor: Eor(a, b) = a XOR b",
597   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
598   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
599   "emit"      => '. xorp%M %ia32_emit_binop /* SSE Xor(%A3, %A4) -> %D1 */',
600   "outs"      => [ "res", "M" ],
601 },
602
603 # not commutative operations
604
605 "xSub" => {
606   "irn_flags" => "R",
607   "comment"   => "construct SSE Sub: Sub(a, b) = a - b",
608   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
609   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3" ] },
610   "emit"      => '. subs%M %ia32_emit_binop /* SSE Sub(%A1, %A2) -> %D1 */',
611   "outs"      => [ "res", "M" ],
612 },
613
614 "xDiv" => {
615   "irn_flags" => "R",
616   "comment"   => "construct SSE Div: Div(a, b) = a / b",
617   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
618   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "in_r3 !in_r4" ] },
619   "emit"      => '. divs%M %ia32_emit_binop /* SSE Div(%A1, %A2) -> %D1 */',
620   "outs"      => [ "res", "M" ],
621 },
622
623 # other operations
624
625 "xCondJmp" => {
626   "op_flags"  => "L|X|Y",
627   "comment"   => "construct conditional jump: UCOMIS A, B && JMPxx LABEL",
628   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
629   "reg_req"   => { "in" => [ "gp", "gp", "xmm", "xmm", "none" ], "out" => [ "none", "none" ] },
630   "outs"      => [ "false", "true" ],
631 },
632
633 "xConst" => {
634   "op_flags"  => "c",
635   "irn_flags" => "R",
636   "comment"   => "represents a SSE constant",
637   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
638   "reg_req"   => { "in" => [ "none" ], "out" => [ "xmm" ] },
639   "emit"      => '. mov%M %D1, %C /* Load fConst into register */',
640 },
641
642 # Load / Store
643
644 "xLoad" => {
645   "op_flags"  => "L|F",
646   "irn_flags" => "R",
647   "state"     => "exc_pinned",
648   "comment"   => "construct SSE Load: Load(ptr, mem) = LD ptr",
649   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
650   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "xmm" ] },
651   "emit"      => '. movs%M %D1, %ia32_emit_am /* Load((%A1)) -> %D1 */',
652   "outs"      => [ "res", "M" ],
653 },
654
655 "xStore" => {
656   "op_flags" => "L|F",
657   "state"    => "exc_pinned",
658   "comment"  => "construct Store: Store(ptr, val, mem) = ST ptr,val",
659   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
660   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ] },
661   "emit"     => '. movs%M %ia32_emit_binop /* Store(%S3) -> (%A1) */',
662   "outs"      => [ "M" ],
663 },
664
665 # CopyB
666
667 "CopyB" => {
668   "op_flags" => "F|H",
669   "state"    => "pinned",
670   "comment"  => "implements a memcopy: CopyB(dst, src, size, mem) == memcpy(dst, src, size)",
671   "reg_req"  => { "in" => [ "edi", "esi", "ecx", "none" ], "out" => [ "none" ] },
672 },
673
674 "CopyB_i" => {
675   "op_flags" => "F|H",
676   "state"    => "pinned",
677   "comment"  => "implements a memcopy: CopyB(dst, src, mem) == memcpy(dst, src, attr(size))",
678   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
679   "reg_req"  => { "in" => [ "edi", "esi", "none" ], "out" => [ "none" ] },
680 },
681
682 # Conversions
683
684 "Conv_I2I" => {
685   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "in_r3", "none" ] },
686   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
687   "comment"  => "construct Conv Int -> Int",
688   "outs"      => [ "res", "M" ],
689 },
690
691 "Conv_I2I8Bit" => {
692   "reg_req"  => { "in" => [ "gp", "gp", "eax ebx ecx edx", "none" ], "out" => [ "in_r3", "none" ] },
693   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
694   "comment"  => "construct Conv Int -> Int",
695   "outs"      => [ "res", "M" ],
696 },
697
698 "Conv_I2FP" => {
699   "reg_req"  => { "in" => [ "gp", "gp", "gp", "none" ], "out" => [ "xmm", "none" ] },
700   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
701   "comment"  => "construct Conv Int -> Floating Point",
702   "outs"      => [ "res", "M" ],
703 },
704
705 "Conv_FP2I" => {
706   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "gp", "none" ] },
707   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
708   "comment"  => "construct Conv Floating Point -> Int",
709   "outs"      => [ "res", "M" ],
710 },
711
712 "Conv_FP2FP" => {
713   "reg_req"  => { "in" => [ "gp", "gp", "xmm", "none" ], "out" => [ "xmm", "none" ] },
714   "cmp_attr"  => "  return ia32_compare_conv_attr(attr_a, attr_b);\n",
715   "comment"  => "construct Conv Floating Point -> Floating Point",
716   "outs"      => [ "res", "M" ],
717 },
718
719 #----------------------------------------------------------#
720 #        _      _               _    __ _             _    #
721 #       (_)    | |             | |  / _| |           | |   #
722 # __   ___ _ __| |_ _   _  __ _| | | |_| | ___   __ _| |_  #
723 # \ \ / / | '__| __| | | |/ _` | | |  _| |/ _ \ / _` | __| #
724 #  \ V /| | |  | |_| |_| | (_| | | | | | | (_) | (_| | |_  #
725 #   \_/ |_|_|   \__|\__,_|\__,_|_| |_| |_|\___/ \__,_|\__| #
726 #                 | |                                      #
727 #  _ __   ___   __| | ___  ___                             #
728 # | '_ \ / _ \ / _` |/ _ \/ __|                            #
729 # | | | | (_) | (_| |  __/\__ \                            #
730 # |_| |_|\___/ \__,_|\___||___/                            #
731 #----------------------------------------------------------#
732
733 "vfadd" => {
734   "irn_flags" => "R",
735   "comment"   => "virtual fp Add: Add(a, b) = Add(b, a) = a + b",
736   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
737   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
738   "outs"      => [ "res", "M" ],
739 },
740
741 "vfmul" => {
742   "irn_flags" => "R",
743   "comment"   => "virtual fp Mul: Mul(a, b) = Mul(b, a) = a + b",
744   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
745   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
746   "outs"      => [ "res", "M" ],
747 },
748
749 "vfsub" => {
750   "irn_flags" => "R",
751   "comment"   => "virtual fp Sub: Sub(a, b) = a - b",
752   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
753   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
754   "outs"      => [ "res", "M" ],
755 },
756
757 "vfdiv" => {
758   "comment"   => "virtual fp Div: Div(a, b) = a / b",
759   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
760   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "vfp" ] },
761   "outs"      => [ "res", "M" ],
762 },
763
764 "vfabs" => {
765   "irn_flags" => "R",
766   "comment"   => "virtual fp Abs: Abs(a) = |a|",
767   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
768 },
769
770 "vfchs" => {
771   "irn_flags" => "R",
772   "comment"   => "virtual fp Chs: Chs(a) = -a",
773   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
774 },
775
776 "vfsin" => {
777   "irn_flags" => "R",
778   "comment"   => "virtual fp Sin: Sin(a) = sin(a)",
779   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
780 },
781
782 "vfcos" => {
783   "irn_flags" => "R",
784   "comment"   => "virtual fp Cos: Cos(a) = cos(a)",
785   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
786 },
787
788 "vfsqrt" => {
789   "irn_flags" => "R",
790   "comment"   => "virtual fp Sqrt: Sqrt(a) = a ^ 0.5",
791   "reg_req"   => { "in" => [ "vfp"], "out" => [ "vfp" ] },
792 },
793
794 # virtual Load and Store
795
796 "vfld" => {
797   "op_flags"  => "L|F",
798   "irn_flags" => "R",
799   "state"     => "exc_pinned",
800   "comment"   => "virtual fp Load: Load(ptr, mem) = LD ptr -> reg",
801   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
802   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
803   "outs"      => [ "res", "M" ],
804 },
805
806 "vfst" => {
807   "op_flags"  => "L|F",
808   "state"     => "exc_pinned",
809   "comment"   => "virtual fp Store: Store(ptr, val, mem) = ST ptr,val",
810   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
811   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
812   "outs"      => [ "M" ],
813 },
814
815 # Conversions
816
817 "vfild" => {
818   "irn_flags" => "R",
819   "comment"   => "virtual fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
820   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
821   "reg_req"   => { "in" => [ "gp", "gp", "none" ], "out" => [ "vfp", "none" ] },
822   "outs"      => [ "res", "M" ],
823 },
824
825 "vfist" => {
826   "comment"   => "virtual fp integer Store: Store(ptr, val, mem) = iST ptr,val",
827   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
828   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "none" ] },
829   "outs"      => [ "M" ],
830 },
831
832 # constants
833
834 "vfldz" => {
835   "irn_flags" => "R",
836   "comment"   => "virtual fp Load 0.0: Ld 0.0 -> reg",
837   "reg_req"   => { "out" => [ "vfp" ] },
838 },
839
840 "vfld1" => {
841   "irn_flags" => "R",
842   "comment"   => "virtual fp Load 1.0: Ld 1.0 -> reg",
843   "reg_req"   => { "out" => [ "vfp" ] },
844 },
845
846 "vfldpi" => {
847   "irn_flags" => "R",
848   "comment"   => "virtual fp Load pi: Ld pi -> reg",
849   "reg_req"   => { "out" => [ "vfp" ] },
850 },
851
852 "vfldln2" => {
853   "irn_flags" => "R",
854   "comment"   => "virtual fp Load ln 2: Ld ln 2 -> reg",
855   "reg_req"   => { "out" => [ "vfp" ] },
856 },
857
858 "vfldlg2" => {
859   "irn_flags" => "R",
860   "comment"   => "virtual fp Load lg 2: Ld lg 2 -> reg",
861   "reg_req"   => { "out" => [ "vfp" ] },
862 },
863
864 "vfldl2t" => {
865   "irn_flags" => "R",
866   "comment"   => "virtual fp Load ld 10: Ld ld 10 -> reg",
867   "reg_req"   => { "out" => [ "vfp" ] },
868 },
869
870 "vfldl2e" => {
871   "irn_flags" => "R",
872   "comment"   => "virtual fp Load ld e: Ld ld e -> reg",
873   "reg_req"   => { "out" => [ "vfp" ] },
874 },
875
876 "vfConst" => {
877   "op_flags"  => "c",
878   "irn_flags" => "R",
879   "comment"   => "represents a virtual floating point constant",
880   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
881   "reg_req"   => { "in" => [ "none" ], "out" => [ "vfp" ] },
882 },
883
884 # other
885
886 "vfCondJmp" => {
887   "op_flags"  => "L|X|Y",
888   "comment"   => "represents a virtual floating point compare",
889   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
890   "reg_req"   => { "in" => [ "gp", "gp", "vfp", "vfp", "none" ], "out" => [ "none", "none", "eax" ] },
891   "outs"      => [ "false", "true", "temp_reg_eax" ],
892 },
893
894 #------------------------------------------------------------------------#
895 #       ___ _____    __ _             _                     _            #
896 # __  _( _ )___  |  / _| | ___   __ _| |_   _ __   ___   __| | ___  ___  #
897 # \ \/ / _ \  / /  | |_| |/ _ \ / _` | __| | '_ \ / _ \ / _` |/ _ \/ __| #
898 #  >  < (_) |/ /   |  _| | (_) | (_| | |_  | | | | (_) | (_| |  __/\__ \ #
899 # /_/\_\___//_/    |_| |_|\___/ \__,_|\__| |_| |_|\___/ \__,_|\___||___/ #
900 #------------------------------------------------------------------------#
901
902 "fadd" => {
903   "op_flags"  => "R",
904   "rd_constructor" => "NONE",
905   "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
906   "reg_req"   => { },
907   "emit"      => '. fadd %ia32_emit_x87_binop /* x87 fadd(%A1, %A2) -> %D1 */',
908 },
909
910 "faddp" => {
911   "op_flags"  => "R",
912   "rd_constructor" => "NONE",
913   "comment"   => "x87 Add: Add(a, b) = Add(b, a) = a + b",
914   "reg_req"   => { },
915   "emit"      => '. faddp %ia32_emit_x87_binop /* x87 fadd(%A1, %A2) -> %D1 */',
916 },
917
918 "fmul" => {
919   "op_flags"  => "R",
920   "rd_constructor" => "NONE",
921   "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
922   "reg_req"   => { },
923   "emit"      => '. fmul %ia32_emit_x87_binop /* x87 fmul(%A1, %A2) -> %D1 */',
924 },
925
926 "fmulp" => {
927   "op_flags"  => "R",
928   "rd_constructor" => "NONE",
929   "comment"   => "x87 fp Mul: Mul(a, b) = Mul(b, a) = a + b",
930   "reg_req"   => { },
931   "emit"      => '. fmulp %ia32_emit_x87_binop /* x87 fmul(%A1, %A2) -> %D1 */',,
932 },
933
934 "fsub" => {
935   "op_flags"  => "R",
936   "rd_constructor" => "NONE",
937   "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
938   "reg_req"   => { },
939   "emit"      => '. fsub %ia32_emit_x87_binop /* x87 fsub(%A1, %A2) -> %D1 */',
940 },
941
942 "fsubp" => {
943   "op_flags"  => "R",
944   "rd_constructor" => "NONE",
945   "comment"   => "x87 fp Sub: Sub(a, b) = a - b",
946   "reg_req"   => { },
947   "emit"      => '. fsubp %ia32_emit_x87_binop /* x87 fsub(%A1, %A2) -> %D1 */',
948 },
949
950 "fsubr" => {
951   "op_flags"  => "R",
952   "rd_constructor" => "NONE",
953   "irn_flags" => "R",
954   "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
955   "reg_req"   => { },
956   "emit"      => '. fsubr %ia32_emit_x87_binop /* x87 fsubr(%A1, %A2) -> %D1 */',
957 },
958
959 "fsubrp" => {
960   "op_flags"  => "R",
961   "rd_constructor" => "NONE",
962   "irn_flags" => "R",
963   "comment"   => "x87 fp SubR: SubR(a, b) = b - a",
964   "reg_req"   => { },
965   "emit"      => '. fsubrp %ia32_emit_x87_binop /* x87 fsubr(%A1, %A2) -> %D1 */',
966 },
967
968 "fdiv" => {
969   "op_flags"  => "R",
970   "rd_constructor" => "NONE",
971   "comment"   => "x87 fp Div: Div(a, b) = a / b",
972   "reg_req"   => { },
973   "emit"      => '. fdiv %ia32_emit_x87_binop /* x87 fdiv(%A1, %A2) -> %D1 */',
974 },
975
976 "fdivp" => {
977   "op_flags"  => "R",
978   "rd_constructor" => "NONE",
979   "comment"   => "x87 fp Div: Div(a, b) = a / b",
980   "reg_req"   => { },
981   "emit"      => '. fdivp %ia32_emit_x87_binop /* x87 fdiv(%A1, %A2) -> %D1 */',
982 },
983
984 "fdivr" => {
985   "op_flags"  => "R",
986   "rd_constructor" => "NONE",
987   "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
988   "reg_req"   => { },
989   "emit"      => '. fdivr %ia32_emit_x87_binop /* x87 fdivr(%A1, %A2) -> %D1 */',
990 },
991
992 "fdivrp" => {
993   "op_flags"  => "R",
994   "rd_constructor" => "NONE",
995   "comment"   => "x87 fp DivR: DivR(a, b) = b / a",
996   "reg_req"   => { },
997   "emit"      => '. fdivrp %ia32_emit_x87_binop /* x87 fdivr(%A1, %A2) -> %D1 */',
998 },
999
1000 "fabs" => {
1001   "op_flags"  => "R",
1002   "rd_constructor" => "NONE",
1003   "comment"   => "x87 fp Abs: Abs(a) = |a|",
1004   "reg_req"   => { },
1005   "emit"      => '. fabs /* x87 fabs(%S1) -> %D1 */',
1006 },
1007
1008 "fchs" => {
1009   "op_flags"  => "R",
1010   "rd_constructor" => "NONE",
1011   "comment"   => "x87 fp Chs: Chs(a) = -a",
1012   "reg_req"   => { },
1013   "emit"      => '. fchs /* x87 fchs(%S1) -> %D1 */',
1014 },
1015
1016 "fsin" => {
1017   "op_flags"  => "R",
1018   "rd_constructor" => "NONE",
1019   "comment"   => "x87 fp Sin: Sin(a) = sin(a)",
1020   "reg_req"   => { },
1021   "emit"      => '. fsin /* x87 sin(%S1) -> %D1 */',
1022 },
1023
1024 "fcos" => {
1025   "op_flags"  => "R",
1026   "rd_constructor" => "NONE",
1027   "comment"   => "x87 fp Cos: Cos(a) = cos(a)",
1028   "reg_req"   => { },
1029   "emit"      => '. fcos /* x87 cos(%S1) -> %D1 */',
1030 },
1031
1032 "fsqrt" => {
1033   "op_flags"  => "R",
1034   "rd_constructor" => "NONE",
1035   "comment"   => "x87 fp Sqrt: Sqrt(a) = a ^ 0.5",
1036   "reg_req"   => { },
1037   "emit"      => '. fsqrt $ /* x87 sqrt(%S1) -> %D1 */',
1038 },
1039
1040 # x87 Load and Store
1041
1042 "fld" => {
1043   "rd_constructor" => "NONE",
1044   "op_flags"  => "R|L|F",
1045   "state"     => "exc_pinned",
1046   "comment"   => "x87 fp Load: Load(ptr, mem) = LD ptr -> reg",
1047   "reg_req"   => { },
1048   "emit"      => '. fld %ia32_emit_am /* Load((%A1)) -> %D1 */',
1049 },
1050
1051 "fst" => {
1052   "rd_constructor" => "NONE",
1053   "op_flags"  => "R|L|F",
1054   "state"     => "exc_pinned",
1055   "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
1056   "reg_req"   => { },
1057   "emit"      => '. fst %ia32_emit_am /* Store(%A3) -> (%A1) */',
1058 },
1059
1060 "fstp" => {
1061   "rd_constructor" => "NONE",
1062   "op_flags"  => "R|L|F",
1063   "state"     => "exc_pinned",
1064   "comment"   => "x87 fp Store: Store(ptr, val, mem) = ST ptr,val",
1065   "reg_req"   => { },
1066   "emit"      => '. fstp %ia32_emit_am /* Store(%A3) -> (%A1) and pop */',
1067 },
1068
1069 # Conversions
1070
1071 "fild" => {
1072   "op_flags"  => "R",
1073   "irn_flags" => "R",
1074   "comment"   => "x87 fp integer Load: Load(ptr, mem) = iLD ptr -> reg",
1075   "reg_req"   => { },
1076   "emit"      => '. fild %ia32_emit_am /* integer Load((%A1)) -> %D1 */',
1077 },
1078
1079 "fist" => {
1080   "op_flags"  => "R",
1081   "rd_constructor" => "NONE",
1082   "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1083   "reg_req"   => { },
1084   "emit"      => '. fist %ia32_emit_am /* integer Store(%A3) -> (%A1) */',
1085 },
1086
1087 "fistp" => {
1088   "op_flags"  => "R",
1089   "rd_constructor" => "NONE",
1090   "comment"   => "x87 fp integer Store: Store(ptr, val, mem) = iST ptr,val",
1091   "reg_req"   => { },
1092   "emit"      => '. fistp %ia32_emit_am /* integer Store(%A3) -> (%A1) and pop */',
1093 },
1094
1095 # constants
1096
1097 "fldz" => {
1098   "op_flags"  => "R",
1099   "rd_constructor" => "NONE",
1100   "comment"   => "x87 fp Load 0.0: Ld 0.0 -> reg",
1101   "reg_req"   => { },
1102   "emit"      => '. fldz /* x87 0.0 -> %D1 */',
1103 },
1104
1105 "fld1" => {
1106   "op_flags"  => "R",
1107   "rd_constructor" => "NONE",
1108   "comment"   => "x87 fp Load 1.0: Ld 1.0 -> reg",
1109   "reg_req"   => { },
1110   "emit"      => '. fld1 /* x87 1.0 -> %D1 */',
1111 },
1112
1113 "fldpi" => {
1114   "op_flags"  => "R",
1115   "rd_constructor" => "NONE",
1116   "comment"   => "x87 fp Load pi: Ld pi -> reg",
1117   "reg_req"   => { },
1118   "emit"      => '. fldpi /* x87 pi -> %D1 */',
1119 },
1120
1121 "fldln2" => {
1122   "op_flags"  => "R",
1123   "rd_constructor" => "NONE",
1124   "comment"   => "x87 fp Load ln 2: Ld ln 2 -> reg",
1125   "reg_req"   => { },
1126   "emit"      => '. fldln2 /* x87 ln(2) -> %D1 */',
1127 },
1128
1129 "fldlg2" => {
1130   "op_flags"  => "R",
1131   "rd_constructor" => "NONE",
1132   "comment"   => "x87 fp Load lg 2: Ld lg 2 -> reg",
1133   "reg_req"   => { },
1134   "emit"      => '. fldlg2 /* x87 log(2) -> %D1 */',
1135 },
1136
1137 "fldl2t" => {
1138   "op_flags"  => "R",
1139   "rd_constructor" => "NONE",
1140   "comment"   => "x87 fp Load ld 10: Ld ld 10 -> reg",
1141   "reg_req"   => { },
1142   "emit"      => '. fldll2t /* x87 ld(10) -> %D1 */',
1143 },
1144
1145 "fldl2e" => {
1146   "op_flags"  => "R",
1147   "rd_constructor" => "NONE",
1148   "comment"   => "x87 fp Load ld e: Ld ld e -> reg",
1149   "reg_req"   => { },
1150   "emit"      => '. fldl2e /* x87 ld(e) -> %D1 */',
1151 },
1152
1153 "fldConst" => {
1154   "op_flags"  => "R",
1155   "op_flags"  => "c",
1156   "irn_flags" => "R",
1157   "comment"   => "represents a x87 constant",
1158   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1159   "reg_req"   => { "out" => [ "st" ] },
1160   "emit"      => '. fld%M %C /* Load fConst into register -> %D1 */',
1161 },
1162
1163 # fxch, fpush, fpop
1164 # Note that it is NEVER allowed to do CSE on these nodes
1165
1166 "fxch" => {
1167   "op_flags"  => "R|K",
1168   "comment"   => "x87 stack exchange",
1169   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1170   "cmp_attr"  => "  return 1;\n",
1171   "emit"      => '. fxch %X1 /* x87 swap %X1, %X3 */',
1172 },
1173
1174 "fpush" => {
1175   "op_flags"  => "R",
1176   "comment"   => "x87 stack push",
1177   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1178   "cmp_attr"  => "  return 1;\n",
1179   "emit"      => '. fld %X1 /* x87 push %X1 */',
1180 },
1181
1182 "fpop" => {
1183   "op_flags"  => "R|K",
1184   "comment"   => "x87 stack pop",
1185   "reg_req"   => { "in" => [ "st"], "out" => [ "st" ] },
1186   "cmp_attr"  => "  return 1;\n",
1187   "emit"      => '. fstp %X1 /* x87 pop %X1 */',
1188 },
1189
1190 # compare
1191
1192 "fcomJmp" => {
1193   "op_flags"  => "L|X|Y",
1194   "comment"   => "floating point compare",
1195   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1196   "reg_req"   => { },
1197 },
1198
1199 "fcompJmp" => {
1200   "op_flags"  => "L|X|Y",
1201   "comment"   => "floating point compare and pop",
1202   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1203   "reg_req"   => { },
1204 },
1205
1206 "fcomppJmp" => {
1207   "op_flags"  => "L|X|Y",
1208   "comment"   => "floating point compare and pop twice",
1209   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1210   "reg_req"   => { },
1211 },
1212
1213 "fcomrJmp" => {
1214   "op_flags"  => "L|X|Y",
1215   "comment"   => "floating point compare reverse",
1216   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1217   "reg_req"   => { },
1218 },
1219
1220 "fcomrpJmp" => {
1221   "op_flags"  => "L|X|Y",
1222   "comment"   => "floating point compare reverse and pop",
1223   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1224   "reg_req"   => { },
1225 },
1226
1227 "fcomrppJmp" => {
1228   "op_flags"  => "L|X|Y",
1229   "comment"   => "floating point compare reverse and pop twice",
1230   "cmp_attr"  => "  return ia32_compare_immop_attr(attr_a, attr_b);\n",
1231   "reg_req"   => { },
1232 },
1233
1234 ); # end of %nodes