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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 __ cvtss2sd(xmm1, xmm0); | 417 __ cvtss2sd(xmm1, xmm0); |
418 __ movsd(xmm1, Operand(ebx, ecx, times_4, 10000)); | 418 __ movsd(xmm1, Operand(ebx, ecx, times_4, 10000)); |
419 __ movsd(Operand(ebx, ecx, times_4, 10000), xmm1); | 419 __ movsd(Operand(ebx, ecx, times_4, 10000), xmm1); |
420 // 128 bit move instructions. | 420 // 128 bit move instructions. |
421 __ movdqa(xmm0, Operand(ebx, ecx, times_4, 10000)); | 421 __ movdqa(xmm0, Operand(ebx, ecx, times_4, 10000)); |
422 __ movdqa(Operand(ebx, ecx, times_4, 10000), xmm0); | 422 __ movdqa(Operand(ebx, ecx, times_4, 10000), xmm0); |
423 __ movdqu(xmm0, Operand(ebx, ecx, times_4, 10000)); | 423 __ movdqu(xmm0, Operand(ebx, ecx, times_4, 10000)); |
424 __ movdqu(Operand(ebx, ecx, times_4, 10000), xmm0); | 424 __ movdqu(Operand(ebx, ecx, times_4, 10000), xmm0); |
425 | 425 |
426 __ addsd(xmm1, xmm0); | 426 __ addsd(xmm1, xmm0); |
| 427 __ addsd(xmm1, Operand(ebx, ecx, times_4, 10000)); |
427 __ mulsd(xmm1, xmm0); | 428 __ mulsd(xmm1, xmm0); |
| 429 __ mulsd(xmm1, Operand(ebx, ecx, times_4, 10000)); |
428 __ subsd(xmm1, xmm0); | 430 __ subsd(xmm1, xmm0); |
429 __ subsd(xmm1, Operand(ebx, ecx, times_4, 10000)); | 431 __ subsd(xmm1, Operand(ebx, ecx, times_4, 10000)); |
430 __ divsd(xmm1, xmm0); | 432 __ divsd(xmm1, xmm0); |
| 433 __ divsd(xmm1, Operand(ebx, ecx, times_4, 10000)); |
431 __ ucomisd(xmm0, xmm1); | 434 __ ucomisd(xmm0, xmm1); |
432 __ cmpltsd(xmm0, xmm1); | 435 __ cmpltsd(xmm0, xmm1); |
433 | 436 |
434 __ andpd(xmm0, xmm1); | 437 __ andpd(xmm0, xmm1); |
435 __ psllq(xmm0, 17); | 438 __ psllq(xmm0, 17); |
436 __ psllq(xmm0, xmm1); | 439 __ psllq(xmm0, xmm1); |
437 __ psrlq(xmm0, 17); | 440 __ psrlq(xmm0, 17); |
438 __ psrlq(xmm0, xmm1); | 441 __ psrlq(xmm0, xmm1); |
439 __ por(xmm0, xmm1); | 442 __ por(xmm0, xmm1); |
440 } | 443 } |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 #ifdef OBJECT_PRINT | 494 #ifdef OBJECT_PRINT |
492 OFStream os(stdout); | 495 OFStream os(stdout); |
493 code->Print(os); | 496 code->Print(os); |
494 byte* begin = code->instruction_start(); | 497 byte* begin = code->instruction_start(); |
495 byte* end = begin + code->instruction_size(); | 498 byte* end = begin + code->instruction_size(); |
496 disasm::Disassembler::Disassemble(stdout, begin, end); | 499 disasm::Disassembler::Disassemble(stdout, begin, end); |
497 #endif | 500 #endif |
498 } | 501 } |
499 | 502 |
500 #undef __ | 503 #undef __ |
OLD | NEW |