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