Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: test/cctest/test-disasm-ia32.cc

Issue 2744643004: [ia32] Add some SSE2, SSE4 instructions and AVX version for SIMD (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« src/ia32/assembler-ia32.h ('K') | « src/ia32/sse-instr.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 __ maxsd(xmm1, xmm0); 455 __ maxsd(xmm1, xmm0);
456 __ maxsd(xmm1, Operand(ebx, ecx, times_4, 10000)); 456 __ maxsd(xmm1, Operand(ebx, ecx, times_4, 10000));
457 __ ucomisd(xmm0, xmm1); 457 __ ucomisd(xmm0, xmm1);
458 __ cmpltsd(xmm0, xmm1); 458 __ cmpltsd(xmm0, xmm1);
459 459
460 __ andpd(xmm0, xmm1); 460 __ andpd(xmm0, xmm1);
461 __ psllq(xmm0, 17); 461 __ psllq(xmm0, 17);
462 __ psllq(xmm0, xmm1); 462 __ psllq(xmm0, xmm1);
463 __ psrlq(xmm0, 17); 463 __ psrlq(xmm0, 17);
464 __ psrlq(xmm0, xmm1); 464 __ psrlq(xmm0, xmm1);
465 __ por(xmm0, xmm1);
466
467 __ pcmpeqd(xmm1, xmm0);
468 465
469 __ punpckldq(xmm1, xmm6); 466 __ punpckldq(xmm1, xmm6);
470 __ punpckhdq(xmm7, xmm5); 467 __ punpckhdq(xmm7, xmm5);
471 468
472 __ pinsrw(xmm5, edx, 5); 469 __ pinsrw(xmm5, edx, 5);
473 __ pinsrw(xmm5, Operand(edx, 4), 5); 470 __ pinsrw(xmm5, Operand(edx, 4), 5);
474 471
475 #define EMIT_SSE2_INSTR(instruction, notUsed1, notUsed2, notUsed3) \ 472 #define EMIT_SSE2_INSTR(instruction, notUsed1, notUsed2, notUsed3) \
476 __ instruction(xmm5, xmm1); \ 473 __ instruction(xmm5, xmm1); \
477 __ instruction(xmm5, Operand(edx, 4)); 474 __ instruction(xmm5, Operand(edx, 4));
(...skipping 21 matching lines...) Expand all
499 __ cmov(less_equal, eax, Operand(edx, 2)); 496 __ cmov(less_equal, eax, Operand(edx, 2));
500 __ cmov(greater, eax, Operand(edx, 3)); 497 __ cmov(greater, eax, Operand(edx, 3));
501 } 498 }
502 499
503 { 500 {
504 if (CpuFeatures::IsSupported(SSE4_1)) { 501 if (CpuFeatures::IsSupported(SSE4_1)) {
505 CpuFeatureScope scope(&assm, SSE4_1); 502 CpuFeatureScope scope(&assm, SSE4_1);
506 __ pextrd(eax, xmm0, 1); 503 __ pextrd(eax, xmm0, 1);
507 __ pinsrd(xmm1, eax, 0); 504 __ pinsrd(xmm1, eax, 0);
508 __ extractps(eax, xmm1, 0); 505 __ extractps(eax, xmm1, 0);
506
507 #define EMIT_SSE4_INSTR(instruction, notUsed1, notUsed2, notUsed3, notUsed4) \
508 __ instruction(xmm5, xmm1); \
509 __ instruction(xmm5, Operand(edx, 4));
510
511 SSE4_INSTRUCTION_LIST(EMIT_SSE4_INSTR)
512 #undef EMIT_SSE4_INSTR
509 } 513 }
510 } 514 }
511 515
512 // AVX instruction 516 // AVX instruction
513 { 517 {
514 if (CpuFeatures::IsSupported(AVX)) { 518 if (CpuFeatures::IsSupported(AVX)) {
515 CpuFeatureScope scope(&assm, AVX); 519 CpuFeatureScope scope(&assm, AVX);
516 __ vaddsd(xmm0, xmm1, xmm2); 520 __ vaddsd(xmm0, xmm1, xmm2);
517 __ vaddsd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000)); 521 __ vaddsd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
518 __ vmulsd(xmm0, xmm1, xmm2); 522 __ vmulsd(xmm0, xmm1, xmm2);
(...skipping 29 matching lines...) Expand all
548 __ vandpd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000)); 552 __ vandpd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
549 __ vxorpd(xmm0, xmm1, xmm2); 553 __ vxorpd(xmm0, xmm1, xmm2);
550 __ vxorpd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000)); 554 __ vxorpd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
551 555
552 #define EMIT_SSE2_AVXINSTR(instruction, notUsed1, notUsed2, notUsed3) \ 556 #define EMIT_SSE2_AVXINSTR(instruction, notUsed1, notUsed2, notUsed3) \
553 __ v##instruction(xmm7, xmm5, xmm1); \ 557 __ v##instruction(xmm7, xmm5, xmm1); \
554 __ v##instruction(xmm7, xmm5, Operand(edx, 4)); 558 __ v##instruction(xmm7, xmm5, Operand(edx, 4));
555 559
556 SSE2_INSTRUCTION_LIST(EMIT_SSE2_AVXINSTR) 560 SSE2_INSTRUCTION_LIST(EMIT_SSE2_AVXINSTR)
557 #undef EMIT_SSE2_AVXINSTR 561 #undef EMIT_SSE2_AVXINSTR
562
563 #define EMIT_SSE4_AVXINSTR(instruction, notUsed1, notUsed2, notUsed3, \
564 notUsed4) \
565 __ v##instruction(xmm7, xmm5, xmm1); \
566 __ v##instruction(xmm7, xmm5, Operand(edx, 4));
567
568 SSE4_INSTRUCTION_LIST(EMIT_SSE4_AVXINSTR)
569 #undef EMIT_SSE4_AVXINSTR
558 } 570 }
559 } 571 }
560 572
561 // FMA3 instruction 573 // FMA3 instruction
562 { 574 {
563 if (CpuFeatures::IsSupported(FMA3)) { 575 if (CpuFeatures::IsSupported(FMA3)) {
564 CpuFeatureScope scope(&assm, FMA3); 576 CpuFeatureScope scope(&assm, FMA3);
565 __ vfmadd132sd(xmm0, xmm1, xmm2); 577 __ vfmadd132sd(xmm0, xmm1, xmm2);
566 __ vfmadd132sd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000)); 578 __ vfmadd132sd(xmm0, xmm1, Operand(ebx, ecx, times_4, 10000));
567 __ vfmadd213sd(xmm0, xmm1, xmm2); 579 __ vfmadd213sd(xmm0, xmm1, xmm2);
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 #ifdef OBJECT_PRINT 733 #ifdef OBJECT_PRINT
722 OFStream os(stdout); 734 OFStream os(stdout);
723 code->Print(os); 735 code->Print(os);
724 byte* begin = code->instruction_start(); 736 byte* begin = code->instruction_start();
725 byte* end = begin + code->instruction_size(); 737 byte* end = begin + code->instruction_size();
726 disasm::Disassembler::Disassemble(stdout, begin, end); 738 disasm::Disassembler::Disassemble(stdout, begin, end);
727 #endif 739 #endif
728 } 740 }
729 741
730 #undef __ 742 #undef __
OLDNEW
« src/ia32/assembler-ia32.h ('K') | « src/ia32/sse-instr.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698