| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 __ cvttsd2siq(rdx, Operand(rbx, rcx, times_4, 10000)); | 410 __ cvttsd2siq(rdx, Operand(rbx, rcx, times_4, 10000)); |
| 411 __ cvtqsi2sd(xmm1, Operand(rbx, rcx, times_4, 10000)); | 411 __ cvtqsi2sd(xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 412 __ cvtqsi2sd(xmm1, rdx); | 412 __ cvtqsi2sd(xmm1, rdx); |
| 413 __ movsd(xmm1, Operand(rbx, rcx, times_4, 10000)); | 413 __ movsd(xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 414 __ movsd(Operand(rbx, rcx, times_4, 10000), xmm1); | 414 __ movsd(Operand(rbx, rcx, times_4, 10000), xmm1); |
| 415 // 128 bit move instructions. | 415 // 128 bit move instructions. |
| 416 __ movdqa(xmm0, Operand(rbx, rcx, times_4, 10000)); | 416 __ movdqa(xmm0, Operand(rbx, rcx, times_4, 10000)); |
| 417 __ movdqa(Operand(rbx, rcx, times_4, 10000), xmm0); | 417 __ movdqa(Operand(rbx, rcx, times_4, 10000), xmm0); |
| 418 | 418 |
| 419 __ addsd(xmm1, xmm0); | 419 __ addsd(xmm1, xmm0); |
| 420 __ addsd(xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 420 __ mulsd(xmm1, xmm0); | 421 __ mulsd(xmm1, xmm0); |
| 422 __ mulsd(xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 421 __ subsd(xmm1, xmm0); | 423 __ subsd(xmm1, xmm0); |
| 424 __ subsd(xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 422 __ divsd(xmm1, xmm0); | 425 __ divsd(xmm1, xmm0); |
| 426 __ divsd(xmm1, Operand(rbx, rcx, times_4, 10000)); |
| 423 __ ucomisd(xmm0, xmm1); | 427 __ ucomisd(xmm0, xmm1); |
| 424 | 428 |
| 425 __ andpd(xmm0, xmm1); | 429 __ andpd(xmm0, xmm1); |
| 426 | 430 |
| 427 __ pslld(xmm0, 6); | 431 __ pslld(xmm0, 6); |
| 428 __ psrld(xmm0, 6); | 432 __ psrld(xmm0, 6); |
| 429 __ psllq(xmm0, 6); | 433 __ psllq(xmm0, 6); |
| 430 __ psrlq(xmm0, 6); | 434 __ psrlq(xmm0, 6); |
| 431 | 435 |
| 432 __ pcmpeqd(xmm1, xmm0); | 436 __ pcmpeqd(xmm1, xmm0); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 #ifdef OBJECT_PRINT | 486 #ifdef OBJECT_PRINT |
| 483 OFStream os(stdout); | 487 OFStream os(stdout); |
| 484 code->Print(os); | 488 code->Print(os); |
| 485 byte* begin = code->instruction_start(); | 489 byte* begin = code->instruction_start(); |
| 486 byte* end = begin + code->instruction_size(); | 490 byte* end = begin + code->instruction_size(); |
| 487 disasm::Disassembler::Disassemble(stdout, begin, end); | 491 disasm::Disassembler::Disassemble(stdout, begin, end); |
| 488 #endif | 492 #endif |
| 489 } | 493 } |
| 490 | 494 |
| 491 #undef __ | 495 #undef __ |
| OLD | NEW |