Merge commit 'origin/gallium-0.1'
[mesa.git] / src / gallium / auxiliary / rtasm / rtasm_x86sse.c
1 /**************************************************************************
2 *
3 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included
13 * in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 **************************************************************************/
23
24 #include "pipe/p_config.h"
25
26 #if defined(PIPE_ARCH_X86)
27
28 #include "pipe/p_compiler.h"
29 #include "util/u_debug.h"
30 #include "util/u_pointer.h"
31
32 #include "rtasm_execmem.h"
33 #include "rtasm_x86sse.h"
34
35 #define DISASSEM 0
36 #define X86_TWOB 0x0f
37
38
39 #define DUMP_SSE 0
40
41
42 void x86_print_reg( struct x86_reg reg )
43 {
44 if (reg.mod != mod_REG)
45 debug_printf( "[" );
46
47 switch( reg.file ) {
48 case file_REG32:
49 switch( reg.idx ) {
50 case reg_AX: debug_printf( "EAX" ); break;
51 case reg_CX: debug_printf( "ECX" ); break;
52 case reg_DX: debug_printf( "EDX" ); break;
53 case reg_BX: debug_printf( "EBX" ); break;
54 case reg_SP: debug_printf( "ESP" ); break;
55 case reg_BP: debug_printf( "EBP" ); break;
56 case reg_SI: debug_printf( "ESI" ); break;
57 case reg_DI: debug_printf( "EDI" ); break;
58 }
59 break;
60 case file_MMX:
61 debug_printf( "MMX%u", reg.idx );
62 break;
63 case file_XMM:
64 debug_printf( "XMM%u", reg.idx );
65 break;
66 case file_x87:
67 debug_printf( "fp%u", reg.idx );
68 break;
69 }
70
71 if (reg.mod == mod_DISP8 ||
72 reg.mod == mod_DISP32)
73 debug_printf("+%d", reg.disp);
74
75 if (reg.mod != mod_REG)
76 debug_printf( "]" );
77 }
78
79 #if DUMP_SSE
80
81 #define DUMP_START() debug_printf( "\n" )
82 #define DUMP_END() debug_printf( "\n" )
83
84 #define DUMP() do { \
85 const char *foo = __FUNCTION__; \
86 while (*foo && *foo != '_') \
87 foo++; \
88 if (*foo) \
89 foo++; \
90 debug_printf( "\n% 4x% 15s ", p->csr - p->store, foo ); \
91 } while (0)
92
93 #define DUMP_I( I ) do { \
94 DUMP(); \
95 debug_printf( "%u", I ); \
96 } while( 0 )
97
98 #define DUMP_R( R0 ) do { \
99 DUMP(); \
100 x86_print_reg( R0 ); \
101 } while( 0 )
102
103 #define DUMP_RR( R0, R1 ) do { \
104 DUMP(); \
105 x86_print_reg( R0 ); \
106 debug_printf( ", " ); \
107 x86_print_reg( R1 ); \
108 } while( 0 )
109
110 #define DUMP_RI( R0, I ) do { \
111 DUMP(); \
112 x86_print_reg( R0 ); \
113 debug_printf( ", %u", I ); \
114 } while( 0 )
115
116 #define DUMP_RRI( R0, R1, I ) do { \
117 DUMP(); \
118 x86_print_reg( R0 ); \
119 debug_printf( ", " ); \
120 x86_print_reg( R1 ); \
121 debug_printf( ", %u", I ); \
122 } while( 0 )
123
124 #else
125
126 #define DUMP_START()
127 #define DUMP_END()
128 #define DUMP( )
129 #define DUMP_I( I )
130 #define DUMP_R( R0 )
131 #define DUMP_RR( R0, R1 )
132 #define DUMP_RI( R0, I )
133 #define DUMP_RRI( R0, R1, I )
134
135 #endif
136
137
138 static void do_realloc( struct x86_function *p )
139 {
140 if (p->store == p->error_overflow) {
141 p->csr = p->store;
142 }
143 else if (p->size == 0) {
144 p->size = 1024;
145 p->store = rtasm_exec_malloc(p->size);
146 p->csr = p->store;
147 }
148 else {
149 uintptr_t used = pointer_to_uintptr( p->csr ) - pointer_to_uintptr( p->store );
150 unsigned char *tmp = p->store;
151 p->size *= 2;
152 p->store = rtasm_exec_malloc(p->size);
153
154 if (p->store) {
155 memcpy(p->store, tmp, used);
156 p->csr = p->store + used;
157 }
158 else {
159 p->csr = p->store;
160 }
161
162 rtasm_exec_free(tmp);
163 }
164
165 if (p->store == NULL) {
166 p->store = p->csr = p->error_overflow;
167 p->size = sizeof(p->error_overflow);
168 }
169 }
170
171 /* Emit bytes to the instruction stream:
172 */
173 static unsigned char *reserve( struct x86_function *p, int bytes )
174 {
175 if (p->csr + bytes - p->store > (int) p->size)
176 do_realloc(p);
177
178 {
179 unsigned char *csr = p->csr;
180 p->csr += bytes;
181 return csr;
182 }
183 }
184
185
186
187 static void emit_1b( struct x86_function *p, char b0 )
188 {
189 char *csr = (char *)reserve(p, 1);
190 *csr = b0;
191 }
192
193 static void emit_1i( struct x86_function *p, int i0 )
194 {
195 int *icsr = (int *)reserve(p, sizeof(i0));
196 *icsr = i0;
197 }
198
199 static void emit_1ub( struct x86_function *p, unsigned char b0 )
200 {
201 unsigned char *csr = reserve(p, 1);
202 *csr++ = b0;
203 }
204
205 static void emit_2ub( struct x86_function *p, unsigned char b0, unsigned char b1 )
206 {
207 unsigned char *csr = reserve(p, 2);
208 *csr++ = b0;
209 *csr++ = b1;
210 }
211
212 static void emit_3ub( struct x86_function *p, unsigned char b0, unsigned char b1, unsigned char b2 )
213 {
214 unsigned char *csr = reserve(p, 3);
215 *csr++ = b0;
216 *csr++ = b1;
217 *csr++ = b2;
218 }
219
220
221 /* Build a modRM byte + possible displacement. No treatment of SIB
222 * indexing. BZZT - no way to encode an absolute address.
223 *
224 * This is the "/r" field in the x86 manuals...
225 */
226 static void emit_modrm( struct x86_function *p,
227 struct x86_reg reg,
228 struct x86_reg regmem )
229 {
230 unsigned char val = 0;
231
232 assert(reg.mod == mod_REG);
233
234 val |= regmem.mod << 6; /* mod field */
235 val |= reg.idx << 3; /* reg field */
236 val |= regmem.idx; /* r/m field */
237
238 emit_1ub(p, val);
239
240 /* Oh-oh we've stumbled into the SIB thing.
241 */
242 if (regmem.file == file_REG32 &&
243 regmem.idx == reg_SP &&
244 regmem.mod != mod_REG) {
245 emit_1ub(p, 0x24); /* simplistic! */
246 }
247
248 switch (regmem.mod) {
249 case mod_REG:
250 case mod_INDIRECT:
251 break;
252 case mod_DISP8:
253 emit_1b(p, (char) regmem.disp);
254 break;
255 case mod_DISP32:
256 emit_1i(p, regmem.disp);
257 break;
258 default:
259 assert(0);
260 break;
261 }
262 }
263
264 /* Emits the "/0".."/7" specialized versions of the modrm ("/r") bytes.
265 */
266 static void emit_modrm_noreg( struct x86_function *p,
267 unsigned op,
268 struct x86_reg regmem )
269 {
270 struct x86_reg dummy = x86_make_reg(file_REG32, op);
271 emit_modrm(p, dummy, regmem);
272 }
273
274 /* Many x86 instructions have two opcodes to cope with the situations
275 * where the destination is a register or memory reference
276 * respectively. This function selects the correct opcode based on
277 * the arguments presented.
278 */
279 static void emit_op_modrm( struct x86_function *p,
280 unsigned char op_dst_is_reg,
281 unsigned char op_dst_is_mem,
282 struct x86_reg dst,
283 struct x86_reg src )
284 {
285 switch (dst.mod) {
286 case mod_REG:
287 emit_1ub(p, op_dst_is_reg);
288 emit_modrm(p, dst, src);
289 break;
290 case mod_INDIRECT:
291 case mod_DISP32:
292 case mod_DISP8:
293 assert(src.mod == mod_REG);
294 emit_1ub(p, op_dst_is_mem);
295 emit_modrm(p, src, dst);
296 break;
297 default:
298 assert(0);
299 break;
300 }
301 }
302
303
304
305
306
307
308
309 /* Create and manipulate registers and regmem values:
310 */
311 struct x86_reg x86_make_reg( enum x86_reg_file file,
312 enum x86_reg_name idx )
313 {
314 struct x86_reg reg;
315
316 reg.file = file;
317 reg.idx = idx;
318 reg.mod = mod_REG;
319 reg.disp = 0;
320
321 return reg;
322 }
323
324 struct x86_reg x86_make_disp( struct x86_reg reg,
325 int disp )
326 {
327 assert(reg.file == file_REG32);
328
329 if (reg.mod == mod_REG)
330 reg.disp = disp;
331 else
332 reg.disp += disp;
333
334 if (reg.disp == 0 && reg.idx != reg_BP)
335 reg.mod = mod_INDIRECT;
336 else if (reg.disp <= 127 && reg.disp >= -128)
337 reg.mod = mod_DISP8;
338 else
339 reg.mod = mod_DISP32;
340
341 return reg;
342 }
343
344 struct x86_reg x86_deref( struct x86_reg reg )
345 {
346 return x86_make_disp(reg, 0);
347 }
348
349 struct x86_reg x86_get_base_reg( struct x86_reg reg )
350 {
351 return x86_make_reg( reg.file, reg.idx );
352 }
353
354 int x86_get_label( struct x86_function *p )
355 {
356 return p->csr - p->store;
357 }
358
359
360
361 /***********************************************************************
362 * x86 instructions
363 */
364
365
366 void x86_jcc( struct x86_function *p,
367 enum x86_cc cc,
368 int label )
369 {
370 int offset = label - (x86_get_label(p) + 2);
371 DUMP_I(cc);
372
373 if (offset < 0) {
374 /*assert(p->csr - p->store > -offset);*/
375 if (p->csr - p->store <= -offset) {
376 /* probably out of memory (using the error_overflow buffer) */
377 return;
378 }
379 }
380
381 if (offset <= 127 && offset >= -128) {
382 emit_1ub(p, 0x70 + cc);
383 emit_1b(p, (char) offset);
384 }
385 else {
386 offset = label - (x86_get_label(p) + 6);
387 emit_2ub(p, 0x0f, 0x80 + cc);
388 emit_1i(p, offset);
389 }
390 }
391
392 /* Always use a 32bit offset for forward jumps:
393 */
394 int x86_jcc_forward( struct x86_function *p,
395 enum x86_cc cc )
396 {
397 DUMP_I(cc);
398 emit_2ub(p, 0x0f, 0x80 + cc);
399 emit_1i(p, 0);
400 return x86_get_label(p);
401 }
402
403 int x86_jmp_forward( struct x86_function *p)
404 {
405 DUMP();
406 emit_1ub(p, 0xe9);
407 emit_1i(p, 0);
408 return x86_get_label(p);
409 }
410
411 int x86_call_forward( struct x86_function *p)
412 {
413 DUMP();
414
415 emit_1ub(p, 0xe8);
416 emit_1i(p, 0);
417 return x86_get_label(p);
418 }
419
420 /* Fixup offset from forward jump:
421 */
422 void x86_fixup_fwd_jump( struct x86_function *p,
423 int fixup )
424 {
425 *(int *)(p->store + fixup - 4) = x86_get_label(p) - fixup;
426 }
427
428 void x86_jmp( struct x86_function *p, int label)
429 {
430 DUMP_I( label );
431 emit_1ub(p, 0xe9);
432 emit_1i(p, label - x86_get_label(p) - 4);
433 }
434
435 void x86_call( struct x86_function *p, struct x86_reg reg)
436 {
437 DUMP_R( reg );
438 emit_1ub(p, 0xff);
439 emit_modrm_noreg(p, 2, reg);
440 }
441
442
443 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm )
444 {
445 DUMP_RI( dst, imm );
446 assert(dst.file == file_REG32);
447 assert(dst.mod == mod_REG);
448 emit_1ub(p, 0xb8 + dst.idx);
449 emit_1i(p, imm);
450 }
451
452 /**
453 * Immediate group 1 instructions.
454 */
455 static INLINE void
456 x86_group1_imm( struct x86_function *p,
457 unsigned op, struct x86_reg dst, int imm )
458 {
459 assert(dst.file == file_REG32);
460 assert(dst.mod == mod_REG);
461 if(-0x80 <= imm && imm < 0x80) {
462 emit_1ub(p, 0x83);
463 emit_modrm_noreg(p, op, dst);
464 emit_1b(p, (char)imm);
465 }
466 else {
467 emit_1ub(p, 0x81);
468 emit_modrm_noreg(p, op, dst);
469 emit_1i(p, imm);
470 }
471 }
472
473 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm )
474 {
475 DUMP_RI( dst, imm );
476 x86_group1_imm(p, 0, dst, imm);
477 }
478
479 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm )
480 {
481 DUMP_RI( dst, imm );
482 x86_group1_imm(p, 1, dst, imm);
483 }
484
485 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm )
486 {
487 DUMP_RI( dst, imm );
488 x86_group1_imm(p, 4, dst, imm);
489 }
490
491 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm )
492 {
493 DUMP_RI( dst, imm );
494 x86_group1_imm(p, 5, dst, imm);
495 }
496
497 void x86_xor_imm( struct x86_function *p, struct x86_reg dst, int imm )
498 {
499 DUMP_RI( dst, imm );
500 x86_group1_imm(p, 6, dst, imm);
501 }
502
503 void x86_cmp_imm( struct x86_function *p, struct x86_reg dst, int imm )
504 {
505 DUMP_RI( dst, imm );
506 x86_group1_imm(p, 7, dst, imm);
507 }
508
509
510 void x86_push( struct x86_function *p,
511 struct x86_reg reg )
512 {
513 DUMP_R( reg );
514 if (reg.mod == mod_REG)
515 emit_1ub(p, 0x50 + reg.idx);
516 else
517 {
518 emit_1ub(p, 0xff);
519 emit_modrm_noreg(p, 6, reg);
520 }
521
522
523 p->stack_offset += 4;
524 }
525
526 void x86_push_imm32( struct x86_function *p,
527 int imm32 )
528 {
529 DUMP_I( imm32 );
530 emit_1ub(p, 0x68);
531 emit_1i(p, imm32);
532
533 p->stack_offset += 4;
534 }
535
536
537 void x86_pop( struct x86_function *p,
538 struct x86_reg reg )
539 {
540 DUMP_R( reg );
541 assert(reg.mod == mod_REG);
542 emit_1ub(p, 0x58 + reg.idx);
543 p->stack_offset -= 4;
544 }
545
546 void x86_inc( struct x86_function *p,
547 struct x86_reg reg )
548 {
549 DUMP_R( reg );
550 assert(reg.mod == mod_REG);
551 emit_1ub(p, 0x40 + reg.idx);
552 }
553
554 void x86_dec( struct x86_function *p,
555 struct x86_reg reg )
556 {
557 DUMP_R( reg );
558 assert(reg.mod == mod_REG);
559 emit_1ub(p, 0x48 + reg.idx);
560 }
561
562 void x86_ret( struct x86_function *p )
563 {
564 DUMP();
565 assert(p->stack_offset == 0);
566 emit_1ub(p, 0xc3);
567 }
568
569 void x86_retw( struct x86_function *p, unsigned short imm )
570 {
571 DUMP();
572 emit_3ub(p, 0xc2, imm & 0xff, (imm >> 8) & 0xff);
573 }
574
575 void x86_sahf( struct x86_function *p )
576 {
577 DUMP();
578 emit_1ub(p, 0x9e);
579 }
580
581 void x86_mov( struct x86_function *p,
582 struct x86_reg dst,
583 struct x86_reg src )
584 {
585 DUMP_RR( dst, src );
586 emit_op_modrm( p, 0x8b, 0x89, dst, src );
587 }
588
589 void x86_xor( struct x86_function *p,
590 struct x86_reg dst,
591 struct x86_reg src )
592 {
593 DUMP_RR( dst, src );
594 emit_op_modrm( p, 0x33, 0x31, dst, src );
595 }
596
597 void x86_cmp( struct x86_function *p,
598 struct x86_reg dst,
599 struct x86_reg src )
600 {
601 DUMP_RR( dst, src );
602 emit_op_modrm( p, 0x3b, 0x39, dst, src );
603 }
604
605 void x86_lea( struct x86_function *p,
606 struct x86_reg dst,
607 struct x86_reg src )
608 {
609 DUMP_RR( dst, src );
610 emit_1ub(p, 0x8d);
611 emit_modrm( p, dst, src );
612 }
613
614 void x86_test( struct x86_function *p,
615 struct x86_reg dst,
616 struct x86_reg src )
617 {
618 DUMP_RR( dst, src );
619 emit_1ub(p, 0x85);
620 emit_modrm( p, dst, src );
621 }
622
623 void x86_add( struct x86_function *p,
624 struct x86_reg dst,
625 struct x86_reg src )
626 {
627 DUMP_RR( dst, src );
628 emit_op_modrm(p, 0x03, 0x01, dst, src );
629 }
630
631 /* Calculate EAX * src, results in EDX:EAX.
632 */
633 void x86_mul( struct x86_function *p,
634 struct x86_reg src )
635 {
636 DUMP_R( src );
637 emit_1ub(p, 0xf7);
638 emit_modrm_noreg(p, 4, src );
639 }
640
641
642 void x86_imul( struct x86_function *p,
643 struct x86_reg dst,
644 struct x86_reg src )
645 {
646 DUMP_RR( dst, src );
647 emit_2ub(p, X86_TWOB, 0xAF);
648 emit_modrm(p, dst, src);
649 }
650
651
652 void x86_sub( struct x86_function *p,
653 struct x86_reg dst,
654 struct x86_reg src )
655 {
656 DUMP_RR( dst, src );
657 emit_op_modrm(p, 0x2b, 0x29, dst, src );
658 }
659
660 void x86_or( struct x86_function *p,
661 struct x86_reg dst,
662 struct x86_reg src )
663 {
664 DUMP_RR( dst, src );
665 emit_op_modrm( p, 0x0b, 0x09, dst, src );
666 }
667
668 void x86_and( struct x86_function *p,
669 struct x86_reg dst,
670 struct x86_reg src )
671 {
672 DUMP_RR( dst, src );
673 emit_op_modrm( p, 0x23, 0x21, dst, src );
674 }
675
676
677
678 /***********************************************************************
679 * SSE instructions
680 */
681
682 void sse_prefetchnta( struct x86_function *p, struct x86_reg ptr)
683 {
684 DUMP_R( ptr );
685 assert(ptr.mod != mod_REG);
686 emit_2ub(p, 0x0f, 0x18);
687 emit_modrm_noreg(p, 0, ptr);
688 }
689
690 void sse_prefetch0( struct x86_function *p, struct x86_reg ptr)
691 {
692 DUMP_R( ptr );
693 assert(ptr.mod != mod_REG);
694 emit_2ub(p, 0x0f, 0x18);
695 emit_modrm_noreg(p, 1, ptr);
696 }
697
698 void sse_prefetch1( struct x86_function *p, struct x86_reg ptr)
699 {
700 DUMP_R( ptr );
701 assert(ptr.mod != mod_REG);
702 emit_2ub(p, 0x0f, 0x18);
703 emit_modrm_noreg(p, 2, ptr);
704 }
705
706 void sse_movntps( struct x86_function *p,
707 struct x86_reg dst,
708 struct x86_reg src)
709 {
710 DUMP_RR( dst, src );
711
712 assert(dst.mod != mod_REG);
713 assert(src.mod == mod_REG);
714 emit_2ub(p, 0x0f, 0x2b);
715 emit_modrm(p, src, dst);
716 }
717
718
719
720
721 void sse_movss( struct x86_function *p,
722 struct x86_reg dst,
723 struct x86_reg src )
724 {
725 DUMP_RR( dst, src );
726 emit_2ub(p, 0xF3, X86_TWOB);
727 emit_op_modrm( p, 0x10, 0x11, dst, src );
728 }
729
730 void sse_movaps( struct x86_function *p,
731 struct x86_reg dst,
732 struct x86_reg src )
733 {
734 DUMP_RR( dst, src );
735 emit_1ub(p, X86_TWOB);
736 emit_op_modrm( p, 0x28, 0x29, dst, src );
737 }
738
739 void sse_movups( struct x86_function *p,
740 struct x86_reg dst,
741 struct x86_reg src )
742 {
743 DUMP_RR( dst, src );
744 emit_1ub(p, X86_TWOB);
745 emit_op_modrm( p, 0x10, 0x11, dst, src );
746 }
747
748 void sse_movhps( struct x86_function *p,
749 struct x86_reg dst,
750 struct x86_reg src )
751 {
752 DUMP_RR( dst, src );
753 assert(dst.mod != mod_REG || src.mod != mod_REG);
754 emit_1ub(p, X86_TWOB);
755 emit_op_modrm( p, 0x16, 0x17, dst, src ); /* cf movlhps */
756 }
757
758 void sse_movlps( struct x86_function *p,
759 struct x86_reg dst,
760 struct x86_reg src )
761 {
762 DUMP_RR( dst, src );
763 assert(dst.mod != mod_REG || src.mod != mod_REG);
764 emit_1ub(p, X86_TWOB);
765 emit_op_modrm( p, 0x12, 0x13, dst, src ); /* cf movhlps */
766 }
767
768 void sse_maxps( struct x86_function *p,
769 struct x86_reg dst,
770 struct x86_reg src )
771 {
772 DUMP_RR( dst, src );
773 emit_2ub(p, X86_TWOB, 0x5F);
774 emit_modrm( p, dst, src );
775 }
776
777 void sse_maxss( struct x86_function *p,
778 struct x86_reg dst,
779 struct x86_reg src )
780 {
781 DUMP_RR( dst, src );
782 emit_3ub(p, 0xF3, X86_TWOB, 0x5F);
783 emit_modrm( p, dst, src );
784 }
785
786 void sse_divss( struct x86_function *p,
787 struct x86_reg dst,
788 struct x86_reg src )
789 {
790 DUMP_RR( dst, src );
791 emit_3ub(p, 0xF3, X86_TWOB, 0x5E);
792 emit_modrm( p, dst, src );
793 }
794
795 void sse_minps( struct x86_function *p,
796 struct x86_reg dst,
797 struct x86_reg src )
798 {
799 DUMP_RR( dst, src );
800 emit_2ub(p, X86_TWOB, 0x5D);
801 emit_modrm( p, dst, src );
802 }
803
804 void sse_subps( struct x86_function *p,
805 struct x86_reg dst,
806 struct x86_reg src )
807 {
808 DUMP_RR( dst, src );
809 emit_2ub(p, X86_TWOB, 0x5C);
810 emit_modrm( p, dst, src );
811 }
812
813 void sse_mulps( struct x86_function *p,
814 struct x86_reg dst,
815 struct x86_reg src )
816 {
817 DUMP_RR( dst, src );
818 emit_2ub(p, X86_TWOB, 0x59);
819 emit_modrm( p, dst, src );
820 }
821
822 void sse_mulss( struct x86_function *p,
823 struct x86_reg dst,
824 struct x86_reg src )
825 {
826 DUMP_RR( dst, src );
827 emit_3ub(p, 0xF3, X86_TWOB, 0x59);
828 emit_modrm( p, dst, src );
829 }
830
831 void sse_addps( struct x86_function *p,
832 struct x86_reg dst,
833 struct x86_reg src )
834 {
835 DUMP_RR( dst, src );
836 emit_2ub(p, X86_TWOB, 0x58);
837 emit_modrm( p, dst, src );
838 }
839
840 void sse_addss( struct x86_function *p,
841 struct x86_reg dst,
842 struct x86_reg src )
843 {
844 DUMP_RR( dst, src );
845 emit_3ub(p, 0xF3, X86_TWOB, 0x58);
846 emit_modrm( p, dst, src );
847 }
848
849 void sse_andnps( struct x86_function *p,
850 struct x86_reg dst,
851 struct x86_reg src )
852 {
853 DUMP_RR( dst, src );
854 emit_2ub(p, X86_TWOB, 0x55);
855 emit_modrm( p, dst, src );
856 }
857
858 void sse_andps( struct x86_function *p,
859 struct x86_reg dst,
860 struct x86_reg src )
861 {
862 DUMP_RR( dst, src );
863 emit_2ub(p, X86_TWOB, 0x54);
864 emit_modrm( p, dst, src );
865 }
866
867 void sse_rsqrtps( struct x86_function *p,
868 struct x86_reg dst,
869 struct x86_reg src )
870 {
871 DUMP_RR( dst, src );
872 emit_2ub(p, X86_TWOB, 0x52);
873 emit_modrm( p, dst, src );
874 }
875
876 void sse_rsqrtss( struct x86_function *p,
877 struct x86_reg dst,
878 struct x86_reg src )
879 {
880 DUMP_RR( dst, src );
881 emit_3ub(p, 0xF3, X86_TWOB, 0x52);
882 emit_modrm( p, dst, src );
883
884 }
885
886 void sse_movhlps( struct x86_function *p,
887 struct x86_reg dst,
888 struct x86_reg src )
889 {
890 DUMP_RR( dst, src );
891 assert(dst.mod == mod_REG && src.mod == mod_REG);
892 emit_2ub(p, X86_TWOB, 0x12);
893 emit_modrm( p, dst, src );
894 }
895
896 void sse_movlhps( struct x86_function *p,
897 struct x86_reg dst,
898 struct x86_reg src )
899 {
900 DUMP_RR( dst, src );
901 assert(dst.mod == mod_REG && src.mod == mod_REG);
902 emit_2ub(p, X86_TWOB, 0x16);
903 emit_modrm( p, dst, src );
904 }
905
906 void sse_orps( struct x86_function *p,
907 struct x86_reg dst,
908 struct x86_reg src )
909 {
910 DUMP_RR( dst, src );
911 emit_2ub(p, X86_TWOB, 0x56);
912 emit_modrm( p, dst, src );
913 }
914
915 void sse_xorps( struct x86_function *p,
916 struct x86_reg dst,
917 struct x86_reg src )
918 {
919 DUMP_RR( dst, src );
920 emit_2ub(p, X86_TWOB, 0x57);
921 emit_modrm( p, dst, src );
922 }
923
924 void sse_cvtps2pi( struct x86_function *p,
925 struct x86_reg dst,
926 struct x86_reg src )
927 {
928 DUMP_RR( dst, src );
929 assert(dst.file == file_MMX &&
930 (src.file == file_XMM || src.mod != mod_REG));
931
932 p->need_emms = 1;
933
934 emit_2ub(p, X86_TWOB, 0x2d);
935 emit_modrm( p, dst, src );
936 }
937
938 void sse2_cvtdq2ps( struct x86_function *p,
939 struct x86_reg dst,
940 struct x86_reg src )
941 {
942 DUMP_RR( dst, src );
943 emit_2ub(p, X86_TWOB, 0x5b);
944 emit_modrm( p, dst, src );
945 }
946
947
948 /* Shufps can also be used to implement a reduced swizzle when dest ==
949 * arg0.
950 */
951 void sse_shufps( struct x86_function *p,
952 struct x86_reg dst,
953 struct x86_reg src,
954 unsigned char shuf)
955 {
956 DUMP_RRI( dst, src, shuf );
957 emit_2ub(p, X86_TWOB, 0xC6);
958 emit_modrm(p, dst, src);
959 emit_1ub(p, shuf);
960 }
961
962 void sse_unpckhps( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
963 {
964 DUMP_RR( dst, src );
965 emit_2ub( p, X86_TWOB, 0x15 );
966 emit_modrm( p, dst, src );
967 }
968
969 void sse_unpcklps( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
970 {
971 DUMP_RR( dst, src );
972 emit_2ub( p, X86_TWOB, 0x14 );
973 emit_modrm( p, dst, src );
974 }
975
976 void sse_cmpps( struct x86_function *p,
977 struct x86_reg dst,
978 struct x86_reg src,
979 enum sse_cc cc)
980 {
981 DUMP_RRI( dst, src, cc );
982 emit_2ub(p, X86_TWOB, 0xC2);
983 emit_modrm(p, dst, src);
984 emit_1ub(p, cc);
985 }
986
987 void sse_pmovmskb( struct x86_function *p,
988 struct x86_reg dst,
989 struct x86_reg src)
990 {
991 DUMP_RR( dst, src );
992 emit_3ub(p, 0x66, X86_TWOB, 0xD7);
993 emit_modrm(p, dst, src);
994 }
995
996 /***********************************************************************
997 * SSE2 instructions
998 */
999
1000 /**
1001 * Perform a reduced swizzle:
1002 */
1003 void sse2_pshufd( struct x86_function *p,
1004 struct x86_reg dst,
1005 struct x86_reg src,
1006 unsigned char shuf)
1007 {
1008 DUMP_RRI( dst, src, shuf );
1009 emit_3ub(p, 0x66, X86_TWOB, 0x70);
1010 emit_modrm(p, dst, src);
1011 emit_1ub(p, shuf);
1012 }
1013
1014 void sse2_cvttps2dq( struct x86_function *p,
1015 struct x86_reg dst,
1016 struct x86_reg src )
1017 {
1018 DUMP_RR( dst, src );
1019 emit_3ub( p, 0xF3, X86_TWOB, 0x5B );
1020 emit_modrm( p, dst, src );
1021 }
1022
1023 void sse2_cvtps2dq( struct x86_function *p,
1024 struct x86_reg dst,
1025 struct x86_reg src )
1026 {
1027 DUMP_RR( dst, src );
1028 emit_3ub(p, 0x66, X86_TWOB, 0x5B);
1029 emit_modrm( p, dst, src );
1030 }
1031
1032 void sse2_packssdw( struct x86_function *p,
1033 struct x86_reg dst,
1034 struct x86_reg src )
1035 {
1036 DUMP_RR( dst, src );
1037 emit_3ub(p, 0x66, X86_TWOB, 0x6B);
1038 emit_modrm( p, dst, src );
1039 }
1040
1041 void sse2_packsswb( struct x86_function *p,
1042 struct x86_reg dst,
1043 struct x86_reg src )
1044 {
1045 DUMP_RR( dst, src );
1046 emit_3ub(p, 0x66, X86_TWOB, 0x63);
1047 emit_modrm( p, dst, src );
1048 }
1049
1050 void sse2_packuswb( struct x86_function *p,
1051 struct x86_reg dst,
1052 struct x86_reg src )
1053 {
1054 DUMP_RR( dst, src );
1055 emit_3ub(p, 0x66, X86_TWOB, 0x67);
1056 emit_modrm( p, dst, src );
1057 }
1058
1059 void sse2_punpcklbw( struct x86_function *p,
1060 struct x86_reg dst,
1061 struct x86_reg src )
1062 {
1063 DUMP_RR( dst, src );
1064 emit_3ub(p, 0x66, X86_TWOB, 0x60);
1065 emit_modrm( p, dst, src );
1066 }
1067
1068
1069 void sse2_rcpps( struct x86_function *p,
1070 struct x86_reg dst,
1071 struct x86_reg src )
1072 {
1073 DUMP_RR( dst, src );
1074 emit_2ub(p, X86_TWOB, 0x53);
1075 emit_modrm( p, dst, src );
1076 }
1077
1078 void sse2_rcpss( struct x86_function *p,
1079 struct x86_reg dst,
1080 struct x86_reg src )
1081 {
1082 DUMP_RR( dst, src );
1083 emit_3ub(p, 0xF3, X86_TWOB, 0x53);
1084 emit_modrm( p, dst, src );
1085 }
1086
1087 void sse2_movd( struct x86_function *p,
1088 struct x86_reg dst,
1089 struct x86_reg src )
1090 {
1091 DUMP_RR( dst, src );
1092 emit_2ub(p, 0x66, X86_TWOB);
1093 emit_op_modrm( p, 0x6e, 0x7e, dst, src );
1094 }
1095
1096
1097
1098
1099 /***********************************************************************
1100 * x87 instructions
1101 */
1102 static void note_x87_pop( struct x86_function *p )
1103 {
1104 p->x87_stack--;
1105 assert(p->x87_stack >= 0);
1106 }
1107
1108 static void note_x87_push( struct x86_function *p )
1109 {
1110 p->x87_stack++;
1111 assert(p->x87_stack <= 7);
1112 }
1113
1114 void x87_assert_stack_empty( struct x86_function *p )
1115 {
1116 assert (p->x87_stack == 0);
1117 }
1118
1119
1120 void x87_fist( struct x86_function *p, struct x86_reg dst )
1121 {
1122 DUMP_R( dst );
1123 emit_1ub(p, 0xdb);
1124 emit_modrm_noreg(p, 2, dst);
1125 }
1126
1127 void x87_fistp( struct x86_function *p, struct x86_reg dst )
1128 {
1129 DUMP_R( dst );
1130 emit_1ub(p, 0xdb);
1131 emit_modrm_noreg(p, 3, dst);
1132 note_x87_pop(p);
1133 }
1134
1135 void x87_fild( struct x86_function *p, struct x86_reg arg )
1136 {
1137 DUMP_R( arg );
1138 emit_1ub(p, 0xdf);
1139 emit_modrm_noreg(p, 0, arg);
1140 note_x87_push(p);
1141 }
1142
1143 void x87_fldz( struct x86_function *p )
1144 {
1145 DUMP();
1146 emit_2ub(p, 0xd9, 0xee);
1147 note_x87_push(p);
1148 }
1149
1150
1151 void x87_fldcw( struct x86_function *p, struct x86_reg arg )
1152 {
1153 DUMP_R( arg );
1154 assert(arg.file == file_REG32);
1155 assert(arg.mod != mod_REG);
1156 emit_1ub(p, 0xd9);
1157 emit_modrm_noreg(p, 5, arg);
1158 }
1159
1160 void x87_fld1( struct x86_function *p )
1161 {
1162 DUMP();
1163 emit_2ub(p, 0xd9, 0xe8);
1164 note_x87_push(p);
1165 }
1166
1167 void x87_fldl2e( struct x86_function *p )
1168 {
1169 DUMP();
1170 emit_2ub(p, 0xd9, 0xea);
1171 note_x87_push(p);
1172 }
1173
1174 void x87_fldln2( struct x86_function *p )
1175 {
1176 DUMP();
1177 emit_2ub(p, 0xd9, 0xed);
1178 note_x87_push(p);
1179 }
1180
1181 void x87_fwait( struct x86_function *p )
1182 {
1183 DUMP();
1184 emit_1ub(p, 0x9b);
1185 }
1186
1187 void x87_fnclex( struct x86_function *p )
1188 {
1189 DUMP();
1190 emit_2ub(p, 0xdb, 0xe2);
1191 }
1192
1193 void x87_fclex( struct x86_function *p )
1194 {
1195 x87_fwait(p);
1196 x87_fnclex(p);
1197 }
1198
1199 void x87_fcmovb( struct x86_function *p, struct x86_reg arg )
1200 {
1201 DUMP_R( arg );
1202 assert(arg.file == file_x87);
1203 emit_2ub(p, 0xda, 0xc0+arg.idx);
1204 }
1205
1206 void x87_fcmove( struct x86_function *p, struct x86_reg arg )
1207 {
1208 DUMP_R( arg );
1209 assert(arg.file == file_x87);
1210 emit_2ub(p, 0xda, 0xc8+arg.idx);
1211 }
1212
1213 void x87_fcmovbe( struct x86_function *p, struct x86_reg arg )
1214 {
1215 DUMP_R( arg );
1216 assert(arg.file == file_x87);
1217 emit_2ub(p, 0xda, 0xd0+arg.idx);
1218 }
1219
1220 void x87_fcmovnb( struct x86_function *p, struct x86_reg arg )
1221 {
1222 DUMP_R( arg );
1223 assert(arg.file == file_x87);
1224 emit_2ub(p, 0xdb, 0xc0+arg.idx);
1225 }
1226
1227 void x87_fcmovne( struct x86_function *p, struct x86_reg arg )
1228 {
1229 DUMP_R( arg );
1230 assert(arg.file == file_x87);
1231 emit_2ub(p, 0xdb, 0xc8+arg.idx);
1232 }
1233
1234 void x87_fcmovnbe( struct x86_function *p, struct x86_reg arg )
1235 {
1236 DUMP_R( arg );
1237 assert(arg.file == file_x87);
1238 emit_2ub(p, 0xdb, 0xd0+arg.idx);
1239 }
1240
1241
1242
1243 static void x87_arith_op( struct x86_function *p, struct x86_reg dst, struct x86_reg arg,
1244 unsigned char dst0ub0,
1245 unsigned char dst0ub1,
1246 unsigned char arg0ub0,
1247 unsigned char arg0ub1,
1248 unsigned char argmem_noreg)
1249 {
1250 assert(dst.file == file_x87);
1251
1252 if (arg.file == file_x87) {
1253 if (dst.idx == 0)
1254 emit_2ub(p, dst0ub0, dst0ub1+arg.idx);
1255 else if (arg.idx == 0)
1256 emit_2ub(p, arg0ub0, arg0ub1+arg.idx);
1257 else
1258 assert(0);
1259 }
1260 else if (dst.idx == 0) {
1261 assert(arg.file == file_REG32);
1262 emit_1ub(p, 0xd8);
1263 emit_modrm_noreg(p, argmem_noreg, arg);
1264 }
1265 else
1266 assert(0);
1267 }
1268
1269 void x87_fmul( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
1270 {
1271 DUMP_RR( dst, src );
1272 x87_arith_op(p, dst, src,
1273 0xd8, 0xc8,
1274 0xdc, 0xc8,
1275 4);
1276 }
1277
1278 void x87_fsub( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
1279 {
1280 DUMP_RR( dst, src );
1281 x87_arith_op(p, dst, src,
1282 0xd8, 0xe0,
1283 0xdc, 0xe8,
1284 4);
1285 }
1286
1287 void x87_fsubr( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
1288 {
1289 DUMP_RR( dst, src );
1290 x87_arith_op(p, dst, src,
1291 0xd8, 0xe8,
1292 0xdc, 0xe0,
1293 5);
1294 }
1295
1296 void x87_fadd( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
1297 {
1298 DUMP_RR( dst, src );
1299 x87_arith_op(p, dst, src,
1300 0xd8, 0xc0,
1301 0xdc, 0xc0,
1302 0);
1303 }
1304
1305 void x87_fdiv( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
1306 {
1307 DUMP_RR( dst, src );
1308 x87_arith_op(p, dst, src,
1309 0xd8, 0xf0,
1310 0xdc, 0xf8,
1311 6);
1312 }
1313
1314 void x87_fdivr( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
1315 {
1316 DUMP_RR( dst, src );
1317 x87_arith_op(p, dst, src,
1318 0xd8, 0xf8,
1319 0xdc, 0xf0,
1320 7);
1321 }
1322
1323 void x87_fmulp( struct x86_function *p, struct x86_reg dst )
1324 {
1325 DUMP_R( dst );
1326 assert(dst.file == file_x87);
1327 assert(dst.idx >= 1);
1328 emit_2ub(p, 0xde, 0xc8+dst.idx);
1329 note_x87_pop(p);
1330 }
1331
1332 void x87_fsubp( struct x86_function *p, struct x86_reg dst )
1333 {
1334 DUMP_R( dst );
1335 assert(dst.file == file_x87);
1336 assert(dst.idx >= 1);
1337 emit_2ub(p, 0xde, 0xe8+dst.idx);
1338 note_x87_pop(p);
1339 }
1340
1341 void x87_fsubrp( struct x86_function *p, struct x86_reg dst )
1342 {
1343 DUMP_R( dst );
1344 assert(dst.file == file_x87);
1345 assert(dst.idx >= 1);
1346 emit_2ub(p, 0xde, 0xe0+dst.idx);
1347 note_x87_pop(p);
1348 }
1349
1350 void x87_faddp( struct x86_function *p, struct x86_reg dst )
1351 {
1352 DUMP_R( dst );
1353 assert(dst.file == file_x87);
1354 assert(dst.idx >= 1);
1355 emit_2ub(p, 0xde, 0xc0+dst.idx);
1356 note_x87_pop(p);
1357 }
1358
1359 void x87_fdivp( struct x86_function *p, struct x86_reg dst )
1360 {
1361 DUMP_R( dst );
1362 assert(dst.file == file_x87);
1363 assert(dst.idx >= 1);
1364 emit_2ub(p, 0xde, 0xf8+dst.idx);
1365 note_x87_pop(p);
1366 }
1367
1368 void x87_fdivrp( struct x86_function *p, struct x86_reg dst )
1369 {
1370 DUMP_R( dst );
1371 assert(dst.file == file_x87);
1372 assert(dst.idx >= 1);
1373 emit_2ub(p, 0xde, 0xf0+dst.idx);
1374 note_x87_pop(p);
1375 }
1376
1377 void x87_ftst( struct x86_function *p )
1378 {
1379 DUMP();
1380 emit_2ub(p, 0xd9, 0xe4);
1381 }
1382
1383 void x87_fucom( struct x86_function *p, struct x86_reg arg )
1384 {
1385 DUMP_R( arg );
1386 assert(arg.file == file_x87);
1387 emit_2ub(p, 0xdd, 0xe0+arg.idx);
1388 }
1389
1390 void x87_fucomp( struct x86_function *p, struct x86_reg arg )
1391 {
1392 DUMP_R( arg );
1393 assert(arg.file == file_x87);
1394 emit_2ub(p, 0xdd, 0xe8+arg.idx);
1395 note_x87_pop(p);
1396 }
1397
1398 void x87_fucompp( struct x86_function *p )
1399 {
1400 DUMP();
1401 emit_2ub(p, 0xda, 0xe9);
1402 note_x87_pop(p); /* pop twice */
1403 note_x87_pop(p); /* pop twice */
1404 }
1405
1406 void x87_fxch( struct x86_function *p, struct x86_reg arg )
1407 {
1408 DUMP_R( arg );
1409 assert(arg.file == file_x87);
1410 emit_2ub(p, 0xd9, 0xc8+arg.idx);
1411 }
1412
1413 void x87_fabs( struct x86_function *p )
1414 {
1415 DUMP();
1416 emit_2ub(p, 0xd9, 0xe1);
1417 }
1418
1419 void x87_fchs( struct x86_function *p )
1420 {
1421 DUMP();
1422 emit_2ub(p, 0xd9, 0xe0);
1423 }
1424
1425 void x87_fcos( struct x86_function *p )
1426 {
1427 DUMP();
1428 emit_2ub(p, 0xd9, 0xff);
1429 }
1430
1431
1432 void x87_fprndint( struct x86_function *p )
1433 {
1434 DUMP();
1435 emit_2ub(p, 0xd9, 0xfc);
1436 }
1437
1438 void x87_fscale( struct x86_function *p )
1439 {
1440 DUMP();
1441 emit_2ub(p, 0xd9, 0xfd);
1442 }
1443
1444 void x87_fsin( struct x86_function *p )
1445 {
1446 DUMP();
1447 emit_2ub(p, 0xd9, 0xfe);
1448 }
1449
1450 void x87_fsincos( struct x86_function *p )
1451 {
1452 DUMP();
1453 emit_2ub(p, 0xd9, 0xfb);
1454 }
1455
1456 void x87_fsqrt( struct x86_function *p )
1457 {
1458 DUMP();
1459 emit_2ub(p, 0xd9, 0xfa);
1460 }
1461
1462 void x87_fxtract( struct x86_function *p )
1463 {
1464 DUMP();
1465 emit_2ub(p, 0xd9, 0xf4);
1466 }
1467
1468 /* st0 = (2^st0)-1
1469 *
1470 * Restrictions: -1.0 <= st0 <= 1.0
1471 */
1472 void x87_f2xm1( struct x86_function *p )
1473 {
1474 DUMP();
1475 emit_2ub(p, 0xd9, 0xf0);
1476 }
1477
1478 /* st1 = st1 * log2(st0);
1479 * pop_stack;
1480 */
1481 void x87_fyl2x( struct x86_function *p )
1482 {
1483 DUMP();
1484 emit_2ub(p, 0xd9, 0xf1);
1485 note_x87_pop(p);
1486 }
1487
1488 /* st1 = st1 * log2(st0 + 1.0);
1489 * pop_stack;
1490 *
1491 * A fast operation, with restrictions: -.29 < st0 < .29
1492 */
1493 void x87_fyl2xp1( struct x86_function *p )
1494 {
1495 DUMP();
1496 emit_2ub(p, 0xd9, 0xf9);
1497 note_x87_pop(p);
1498 }
1499
1500
1501 void x87_fld( struct x86_function *p, struct x86_reg arg )
1502 {
1503 DUMP_R( arg );
1504 if (arg.file == file_x87)
1505 emit_2ub(p, 0xd9, 0xc0 + arg.idx);
1506 else {
1507 emit_1ub(p, 0xd9);
1508 emit_modrm_noreg(p, 0, arg);
1509 }
1510 note_x87_push(p);
1511 }
1512
1513 void x87_fst( struct x86_function *p, struct x86_reg dst )
1514 {
1515 DUMP_R( dst );
1516 if (dst.file == file_x87)
1517 emit_2ub(p, 0xdd, 0xd0 + dst.idx);
1518 else {
1519 emit_1ub(p, 0xd9);
1520 emit_modrm_noreg(p, 2, dst);
1521 }
1522 }
1523
1524 void x87_fstp( struct x86_function *p, struct x86_reg dst )
1525 {
1526 DUMP_R( dst );
1527 if (dst.file == file_x87)
1528 emit_2ub(p, 0xdd, 0xd8 + dst.idx);
1529 else {
1530 emit_1ub(p, 0xd9);
1531 emit_modrm_noreg(p, 3, dst);
1532 }
1533 note_x87_pop(p);
1534 }
1535
1536 void x87_fpop( struct x86_function *p )
1537 {
1538 x87_fstp( p, x86_make_reg( file_x87, 0 ));
1539 }
1540
1541
1542 void x87_fcom( struct x86_function *p, struct x86_reg dst )
1543 {
1544 DUMP_R( dst );
1545 if (dst.file == file_x87)
1546 emit_2ub(p, 0xd8, 0xd0 + dst.idx);
1547 else {
1548 emit_1ub(p, 0xd8);
1549 emit_modrm_noreg(p, 2, dst);
1550 }
1551 }
1552
1553
1554 void x87_fcomp( struct x86_function *p, struct x86_reg dst )
1555 {
1556 DUMP_R( dst );
1557 if (dst.file == file_x87)
1558 emit_2ub(p, 0xd8, 0xd8 + dst.idx);
1559 else {
1560 emit_1ub(p, 0xd8);
1561 emit_modrm_noreg(p, 3, dst);
1562 }
1563 note_x87_pop(p);
1564 }
1565
1566 void x87_fcomi( struct x86_function *p, struct x86_reg arg )
1567 {
1568 DUMP_R( arg );
1569 emit_2ub(p, 0xdb, 0xf0+arg.idx);
1570 }
1571
1572 void x87_fcomip( struct x86_function *p, struct x86_reg arg )
1573 {
1574 DUMP_R( arg );
1575 emit_2ub(p, 0xdb, 0xf0+arg.idx);
1576 note_x87_pop(p);
1577 }
1578
1579
1580 void x87_fnstsw( struct x86_function *p, struct x86_reg dst )
1581 {
1582 DUMP_R( dst );
1583 assert(dst.file == file_REG32);
1584
1585 if (dst.idx == reg_AX &&
1586 dst.mod == mod_REG)
1587 emit_2ub(p, 0xdf, 0xe0);
1588 else {
1589 emit_1ub(p, 0xdd);
1590 emit_modrm_noreg(p, 7, dst);
1591 }
1592 }
1593
1594
1595 void x87_fnstcw( struct x86_function *p, struct x86_reg dst )
1596 {
1597 DUMP_R( dst );
1598 assert(dst.file == file_REG32);
1599
1600 emit_1ub(p, 0x9b); /* WAIT -- needed? */
1601 emit_1ub(p, 0xd9);
1602 emit_modrm_noreg(p, 7, dst);
1603 }
1604
1605
1606
1607
1608 /***********************************************************************
1609 * MMX instructions
1610 */
1611
1612 void mmx_emms( struct x86_function *p )
1613 {
1614 DUMP();
1615 assert(p->need_emms);
1616 emit_2ub(p, 0x0f, 0x77);
1617 p->need_emms = 0;
1618 }
1619
1620 void mmx_packssdw( struct x86_function *p,
1621 struct x86_reg dst,
1622 struct x86_reg src )
1623 {
1624 DUMP_RR( dst, src );
1625 assert(dst.file == file_MMX &&
1626 (src.file == file_MMX || src.mod != mod_REG));
1627
1628 p->need_emms = 1;
1629
1630 emit_2ub(p, X86_TWOB, 0x6b);
1631 emit_modrm( p, dst, src );
1632 }
1633
1634 void mmx_packuswb( struct x86_function *p,
1635 struct x86_reg dst,
1636 struct x86_reg src )
1637 {
1638 DUMP_RR( dst, src );
1639 assert(dst.file == file_MMX &&
1640 (src.file == file_MMX || src.mod != mod_REG));
1641
1642 p->need_emms = 1;
1643
1644 emit_2ub(p, X86_TWOB, 0x67);
1645 emit_modrm( p, dst, src );
1646 }
1647
1648 void mmx_movd( struct x86_function *p,
1649 struct x86_reg dst,
1650 struct x86_reg src )
1651 {
1652 DUMP_RR( dst, src );
1653 p->need_emms = 1;
1654 emit_1ub(p, X86_TWOB);
1655 emit_op_modrm( p, 0x6e, 0x7e, dst, src );
1656 }
1657
1658 void mmx_movq( struct x86_function *p,
1659 struct x86_reg dst,
1660 struct x86_reg src )
1661 {
1662 DUMP_RR( dst, src );
1663 p->need_emms = 1;
1664 emit_1ub(p, X86_TWOB);
1665 emit_op_modrm( p, 0x6f, 0x7f, dst, src );
1666 }
1667
1668
1669 /***********************************************************************
1670 * Helper functions
1671 */
1672
1673
1674 void x86_cdecl_caller_push_regs( struct x86_function *p )
1675 {
1676 x86_push(p, x86_make_reg(file_REG32, reg_AX));
1677 x86_push(p, x86_make_reg(file_REG32, reg_CX));
1678 x86_push(p, x86_make_reg(file_REG32, reg_DX));
1679 }
1680
1681 void x86_cdecl_caller_pop_regs( struct x86_function *p )
1682 {
1683 x86_pop(p, x86_make_reg(file_REG32, reg_DX));
1684 x86_pop(p, x86_make_reg(file_REG32, reg_CX));
1685 x86_pop(p, x86_make_reg(file_REG32, reg_AX));
1686 }
1687
1688
1689 /* Retreive a reference to one of the function arguments, taking into
1690 * account any push/pop activity:
1691 */
1692 struct x86_reg x86_fn_arg( struct x86_function *p,
1693 unsigned arg )
1694 {
1695 return x86_make_disp(x86_make_reg(file_REG32, reg_SP),
1696 p->stack_offset + arg * 4); /* ??? */
1697 }
1698
1699
1700 void x86_init_func( struct x86_function *p )
1701 {
1702 p->size = 0;
1703 p->store = NULL;
1704 p->csr = p->store;
1705 DUMP_START();
1706 }
1707
1708 void x86_init_func_size( struct x86_function *p, unsigned code_size )
1709 {
1710 p->size = code_size;
1711 p->store = rtasm_exec_malloc(code_size);
1712 if (p->store == NULL) {
1713 p->store = p->error_overflow;
1714 }
1715 p->csr = p->store;
1716 DUMP_START();
1717 }
1718
1719 void x86_release_func( struct x86_function *p )
1720 {
1721 if (p->store && p->store != p->error_overflow)
1722 rtasm_exec_free(p->store);
1723
1724 p->store = NULL;
1725 p->csr = NULL;
1726 p->size = 0;
1727 }
1728
1729
1730 void (*x86_get_func( struct x86_function *p ))(void)
1731 {
1732 DUMP_END();
1733 if (DISASSEM && p->store)
1734 debug_printf("disassemble %p %p\n", p->store, p->csr);
1735
1736 if (p->store == p->error_overflow)
1737 return (void (*)(void)) NULL;
1738 else
1739 return (void (*)(void)) p->store;
1740 }
1741
1742 #else
1743
1744 void x86sse_dummy( void )
1745 {
1746 }
1747
1748 #endif