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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
533 __ vmulsd(xmm0, xmm1, xmm2); | 533 __ vmulsd(xmm0, xmm1, xmm2); |
534 __ vmulsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 534 __ vmulsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
535 __ vsubsd(xmm0, xmm1, xmm2); | 535 __ vsubsd(xmm0, xmm1, xmm2); |
536 __ vsubsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 536 __ vsubsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
537 __ vdivsd(xmm0, xmm1, xmm2); | 537 __ vdivsd(xmm0, xmm1, xmm2); |
538 __ vdivsd(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); | 538 __ vdivsd(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); |
539 __ vminsd(xmm8, xmm1, xmm2); | 539 __ vminsd(xmm8, xmm1, xmm2); |
540 __ vminsd(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); | 540 __ vminsd(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); |
541 __ vmaxsd(xmm8, xmm1, xmm2); | 541 __ vmaxsd(xmm8, xmm1, xmm2); |
542 __ vmaxsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); | 542 __ vmaxsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); |
| 543 __ vsqrtsd(xmm8, xmm1, xmm2); |
| 544 __ vsqrtsd(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); |
543 __ vucomisd(xmm9, xmm1); | 545 __ vucomisd(xmm9, xmm1); |
544 __ vucomisd(xmm8, Operand(rbx, rdx, times_2, 10981)); | 546 __ vucomisd(xmm8, Operand(rbx, rdx, times_2, 10981)); |
545 | 547 |
546 __ vcvtss2sd(xmm4, xmm9, xmm11); | 548 __ vcvtss2sd(xmm4, xmm9, xmm11); |
547 __ vcvtsd2ss(xmm9, xmm3, xmm2); | 549 __ vcvtsd2ss(xmm9, xmm3, xmm2); |
548 __ vcvtss2sd(xmm4, xmm9, Operand(rbx, rcx, times_1, 10000)); | 550 __ vcvtss2sd(xmm4, xmm9, Operand(rbx, rcx, times_1, 10000)); |
549 __ vcvtsd2ss(xmm9, xmm3, Operand(rbx, rcx, times_1, 10000)); | 551 __ vcvtsd2ss(xmm9, xmm3, Operand(rbx, rcx, times_1, 10000)); |
550 __ vcvtlsi2sd(xmm5, xmm9, rcx); | 552 __ vcvtlsi2sd(xmm5, xmm9, rcx); |
551 __ vcvtlsi2sd(xmm9, xmm3, Operand(rbx, r9, times_4, 10000)); | 553 __ vcvtlsi2sd(xmm9, xmm3, Operand(rbx, r9, times_4, 10000)); |
552 __ vcvttsd2si(r9, xmm6); | 554 __ vcvttsd2si(r9, xmm6); |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
761 #ifdef OBJECT_PRINT | 763 #ifdef OBJECT_PRINT |
762 OFStream os(stdout); | 764 OFStream os(stdout); |
763 code->Print(os); | 765 code->Print(os); |
764 byte* begin = code->instruction_start(); | 766 byte* begin = code->instruction_start(); |
765 byte* end = begin + code->instruction_size(); | 767 byte* end = begin + code->instruction_size(); |
766 disasm::Disassembler::Disassemble(stdout, begin, end); | 768 disasm::Disassembler::Disassemble(stdout, begin, end); |
767 #endif | 769 #endif |
768 } | 770 } |
769 | 771 |
770 #undef __ | 772 #undef __ |
OLD | NEW |