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

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

Issue 1413183002: [x64] Emit vmovss when AVX is enabled. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « test/cctest/test-assembler-x64.cc ('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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 __ vmulss(xmm0, xmm1, xmm2); 501 __ vmulss(xmm0, xmm1, xmm2);
502 __ vmulss(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000)); 502 __ vmulss(xmm0, xmm1, Operand(rbx, rcx, times_4, 10000));
503 __ vsubss(xmm0, xmm1, xmm2); 503 __ vsubss(xmm0, xmm1, xmm2);
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 __ vmovss(xmm9, Operand(r11, rcx, times_8, -10000));
512 __ vmovss(Operand(rbx, r9, times_4, 10000), xmm1);
511 __ vucomiss(xmm9, xmm1); 513 __ vucomiss(xmm9, xmm1);
512 __ vucomiss(xmm8, Operand(rbx, rdx, times_2, 10981)); 514 __ vucomiss(xmm8, Operand(rbx, rdx, times_2, 10981));
513 515
514 __ vmovd(xmm5, rdi); 516 __ vmovd(xmm5, rdi);
515 __ vmovd(xmm9, Operand(rbx, rcx, times_4, 10000)); 517 __ vmovd(xmm9, Operand(rbx, rcx, times_4, 10000));
516 __ vmovd(r9, xmm6); 518 __ vmovd(r9, xmm6);
517 __ vmovq(xmm5, rdi); 519 __ vmovq(xmm5, rdi);
518 __ vmovq(xmm9, Operand(rbx, rcx, times_4, 10000)); 520 __ vmovq(xmm9, Operand(rbx, rcx, times_4, 10000));
519 __ vmovq(r9, xmm6); 521 __ vmovq(r9, xmm6);
520 522
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 #ifdef OBJECT_PRINT 749 #ifdef OBJECT_PRINT
748 OFStream os(stdout); 750 OFStream os(stdout);
749 code->Print(os); 751 code->Print(os);
750 byte* begin = code->instruction_start(); 752 byte* begin = code->instruction_start();
751 byte* end = begin + code->instruction_size(); 753 byte* end = begin + code->instruction_size();
752 disasm::Disassembler::Disassemble(stdout, begin, end); 754 disasm::Disassembler::Disassemble(stdout, begin, end);
753 #endif 755 #endif
754 } 756 }
755 757
756 #undef __ 758 #undef __
OLDNEW
« no previous file with comments | « test/cctest/test-assembler-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698