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

Side by Side Diff: src/x64/assembler-x64.h

Issue 1405453003: CTZ instruction implemented as optional operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed a bug when bmi1=false 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 | « src/ia32/macro-assembler-ia32.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 void testb(Register dst, Register src); 837 void testb(Register dst, Register src);
838 void testb(Register reg, Immediate mask); 838 void testb(Register reg, Immediate mask);
839 void testb(const Operand& op, Immediate mask); 839 void testb(const Operand& op, Immediate mask);
840 void testb(const Operand& op, Register reg); 840 void testb(const Operand& op, Register reg);
841 841
842 // Bit operations. 842 // Bit operations.
843 void bt(const Operand& dst, Register src); 843 void bt(const Operand& dst, Register src);
844 void bts(const Operand& dst, Register src); 844 void bts(const Operand& dst, Register src);
845 void bsrl(Register dst, Register src); 845 void bsrl(Register dst, Register src);
846 void bsrl(Register dst, const Operand& src); 846 void bsrl(Register dst, const Operand& src);
847 void bsfl(Register dst, Register src);
848 void bsfl(Register dst, const Operand& src);
847 849
848 // Miscellaneous 850 // Miscellaneous
849 void clc(); 851 void clc();
850 void cld(); 852 void cld();
851 void cpuid(); 853 void cpuid();
852 void hlt(); 854 void hlt();
853 void int3(); 855 void int3();
854 void nop(); 856 void nop();
855 void ret(int imm16); 857 void ret(int imm16);
856 void ud2(); 858 void ud2();
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after
2104 Assembler* assembler_; 2106 Assembler* assembler_;
2105 #ifdef DEBUG 2107 #ifdef DEBUG
2106 int space_before_; 2108 int space_before_;
2107 #endif 2109 #endif
2108 }; 2110 };
2109 2111
2110 } // namespace internal 2112 } // namespace internal
2111 } // namespace v8 2113 } // namespace v8
2112 2114
2113 #endif // V8_X64_ASSEMBLER_X64_H_ 2115 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/macro-assembler-ia32.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698