| 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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 __ vsubss(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 504 __ vsubss(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 505 __ vdivss(xmm0, xmm1, xmm2); | 505 __ vdivss(xmm0, xmm1, xmm2); |
| 506 __ vdivss(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); | 506 __ vdivss(xmm0, xmm1, Operand(rbx, rcx, times_2, 10000)); |
| 507 __ vminss(xmm8, xmm1, xmm2); | 507 __ vminss(xmm8, xmm1, xmm2); |
| 508 __ vminss(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); | 508 __ vminss(xmm9, xmm1, Operand(rbx, rcx, times_8, 10000)); |
| 509 __ vmaxss(xmm8, xmm1, xmm2); | 509 __ vmaxss(xmm8, xmm1, xmm2); |
| 510 __ vmaxss(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); | 510 __ vmaxss(xmm9, xmm1, Operand(rbx, rcx, times_1, 10000)); |
| 511 __ vucomiss(xmm9, xmm1); | 511 __ vucomiss(xmm9, xmm1); |
| 512 __ vucomiss(xmm8, Operand(rbx, rdx, times_2, 10981)); | 512 __ vucomiss(xmm8, Operand(rbx, rdx, times_2, 10981)); |
| 513 | 513 |
| 514 __ vmovd(xmm5, rdi); |
| 515 __ vmovd(xmm9, Operand(rbx, rcx, times_4, 10000)); |
| 516 __ vmovd(r9, xmm6); |
| 517 __ vmovq(xmm5, rdi); |
| 518 __ vmovq(xmm9, Operand(rbx, rcx, times_4, 10000)); |
| 519 __ vmovq(r9, xmm6); |
| 520 |
| 514 __ vmovapd(xmm7, xmm0); | 521 __ vmovapd(xmm7, xmm0); |
| 515 __ vmovsd(xmm6, xmm2); | 522 __ vmovsd(xmm6, xmm2); |
| 516 __ vmovsd(xmm9, Operand(rbx, rcx, times_4, 10000)); | 523 __ vmovsd(xmm9, Operand(rbx, rcx, times_4, 10000)); |
| 517 __ vmovsd(Operand(rbx, rcx, times_4, 10000), xmm0); | 524 __ vmovsd(Operand(rbx, rcx, times_4, 10000), xmm0); |
| 518 | 525 |
| 519 __ vaddsd(xmm0, xmm1, xmm2); | 526 __ vaddsd(xmm0, xmm1, xmm2); |
| 520 __ vaddsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 527 __ vaddsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 521 __ vmulsd(xmm0, xmm1, xmm2); | 528 __ vmulsd(xmm0, xmm1, xmm2); |
| 522 __ vmulsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); | 529 __ vmulsd(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 523 __ vsubsd(xmm0, xmm1, xmm2); | 530 __ vsubsd(xmm0, xmm1, xmm2); |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 729 #ifdef OBJECT_PRINT | 736 #ifdef OBJECT_PRINT |
| 730 OFStream os(stdout); | 737 OFStream os(stdout); |
| 731 code->Print(os); | 738 code->Print(os); |
| 732 byte* begin = code->instruction_start(); | 739 byte* begin = code->instruction_start(); |
| 733 byte* end = begin + code->instruction_size(); | 740 byte* end = begin + code->instruction_size(); |
| 734 disasm::Disassembler::Disassemble(stdout, begin, end); | 741 disasm::Disassembler::Disassemble(stdout, begin, end); |
| 735 #endif | 742 #endif |
| 736 } | 743 } |
| 737 | 744 |
| 738 #undef __ | 745 #undef __ |
| OLD | NEW |