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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 __ vsubsd(xmm0, xmm1, xmm2); | 523 __ vsubsd(xmm0, xmm1, xmm2); |
524 __ vsubsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 524 __ vsubsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
525 __ vdivsd(xmm0, xmm1, xmm2); | 525 __ vdivsd(xmm0, xmm1, xmm2); |
526 __ vdivsd(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); | 526 __ vdivsd(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); |
527 __ vminsd(xmm8, xmm1, xmm2); | 527 __ vminsd(xmm8, xmm1, xmm2); |
528 __ vminsd(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); | 528 __ vminsd(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); |
529 __ vmaxsd(xmm8, xmm1, xmm2); | 529 __ vmaxsd(xmm8, xmm1, xmm2); |
530 __ vmaxsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); | 530 __ vmaxsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); |
531 __ vucomisd(xmm9, xmm1); | 531 __ vucomisd(xmm9, xmm1); |
532 __ vucomisd(xmm8, Operand(rbx, rdx, times_2, 10981)); | 532 __ vucomisd(xmm8, Operand(rbx, rdx, times_2, 10981)); |
533 __ vcvtlsi2sd(xmm5, xmm9, rcx); | |
534 __ vcvtlsi2sd(xmm9, xmm3, Operand(rbx, r9, times_4, 10000)); | |
535 | 533 |
536 __ vandps(xmm0, xmm9, xmm2); | 534 __ vandps(xmm0, xmm9, xmm2); |
537 __ vandps(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000)); | 535 __ vandps(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000)); |
538 __ vxorps(xmm0, xmm1, xmm9); | 536 __ vxorps(xmm0, xmm1, xmm9); |
539 __ vxorps(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 537 __ vxorps(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
540 | 538 |
541 __ vandpd(xmm0, xmm9, xmm2); | 539 __ vandpd(xmm0, xmm9, xmm2); |
542 __ vandpd(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000)); | 540 __ vandpd(xmm9, xmm1, Operand(rbx, rcx, times_4, 10000)); |
543 __ vxorpd(xmm0, xmm1, xmm9); | 541 __ vxorpd(xmm0, xmm1, xmm9); |
544 __ vxorpd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 542 __ vxorpd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 #ifdef OBJECT_PRINT | 727 #ifdef OBJECT_PRINT |
730 OFStream os(stdout); | 728 OFStream os(stdout); |
731 code->Print(os); | 729 code->Print(os); |
732 byte* begin = code->instruction_start(); | 730 byte* begin = code->instruction_start(); |
733 byte* end = begin + code->instruction_size(); | 731 byte* end = begin + code->instruction_size(); |
734 disasm::Disassembler::Disassemble(stdout, begin, end); | 732 disasm::Disassembler::Disassemble(stdout, begin, end); |
735 #endif | 733 #endif |
736 } | 734 } |
737 | 735 |
738 #undef __ | 736 #undef __ |
OLD | NEW |