OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 __ vsubsd(xmm0, xmm1, xmm2); | 518 __ vsubsd(xmm0, xmm1, xmm2); |
519 __ vsubsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 519 __ vsubsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
520 __ vdivsd(xmm0, xmm1, xmm2); | 520 __ vdivsd(xmm0, xmm1, xmm2); |
521 __ vdivsd(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); | 521 __ vdivsd(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); |
522 __ vminsd(xmm8, xmm1, xmm2); | 522 __ vminsd(xmm8, xmm1, xmm2); |
523 __ vminsd(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); | 523 __ vminsd(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); |
524 __ vmaxsd(xmm8, xmm1, xmm2); | 524 __ vmaxsd(xmm8, xmm1, xmm2); |
525 __ vmaxsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); | 525 __ vmaxsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); |
526 __ vucomisd(xmm9, xmm1); | 526 __ vucomisd(xmm9, xmm1); |
527 __ vucomisd(xmm8, Operand(rbx, rdx, times_2, 10981)); | 527 __ vucomisd(xmm8, Operand(rbx, rdx, times_2, 10981)); |
| 528 |
| 529 __ vandps(xmm0, xmm9, xmm2); |
| 530 __ vandps(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 531 __ vxorps(xmm0, xmm1, xmm9); |
| 532 __ vxorps(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 533 |
| 534 __ vandpd(xmm0, xmm9, xmm2); |
| 535 __ vandpd(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 536 __ vxorpd(xmm0, xmm1, xmm9); |
| 537 __ vxorpd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
528 } | 538 } |
529 } | 539 } |
530 | 540 |
531 // FMA3 instruction | 541 // FMA3 instruction |
532 { | 542 { |
533 if (CpuFeatures::IsSupported(FMA3)) { | 543 if (CpuFeatures::IsSupported(FMA3)) { |
534 CpuFeatureScope scope(&assm, FMA3); | 544 CpuFeatureScope scope(&assm, FMA3); |
535 __ vfmadd132sd(xmm0, xmm1, xmm2); | 545 __ vfmadd132sd(xmm0, xmm1, xmm2); |
536 __ vfmadd132sd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 546 __ vfmadd132sd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
537 __ vfmadd213sd(xmm0, xmm1, xmm2); | 547 __ vfmadd213sd(xmm0, xmm1, xmm2); |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 #ifdef OBJECT_PRINT | 722 #ifdef OBJECT_PRINT |
713 OFStream os(stdout); | 723 OFStream os(stdout); |
714 code->Print(os); | 724 code->Print(os); |
715 byte* begin = code->instruction_start(); | 725 byte* begin = code->instruction_start(); |
716 byte* end = begin + code->instruction_size(); | 726 byte* end = begin + code->instruction_size(); |
717 disasm::Disassembler::Disassemble(stdout, begin, end); | 727 disasm::Disassembler::Disassemble(stdout, begin, end); |
718 #endif | 728 #endif |
719 } | 729 } |
720 | 730 |
721 #undef __ | 731 #undef __ |
OLD | NEW |