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

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

Issue 1413463009: Implemented the Word64Clz TurboFan operator for x64, arm64, and mips64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed a typing problem, and added mips64. Created 5 years, 1 month 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/mips64/simulator-mips64.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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 } 840 }
841 841
842 void testb(Register dst, Register src); 842 void testb(Register dst, Register src);
843 void testb(Register reg, Immediate mask); 843 void testb(Register reg, Immediate mask);
844 void testb(const Operand& op, Immediate mask); 844 void testb(const Operand& op, Immediate mask);
845 void testb(const Operand& op, Register reg); 845 void testb(const Operand& op, Register reg);
846 846
847 // Bit operations. 847 // Bit operations.
848 void bt(const Operand& dst, Register src); 848 void bt(const Operand& dst, Register src);
849 void bts(const Operand& dst, Register src); 849 void bts(const Operand& dst, Register src);
850 void bsrq(Register dst, Register src);
851 void bsrq(Register dst, const Operand& src);
850 void bsrl(Register dst, Register src); 852 void bsrl(Register dst, Register src);
851 void bsrl(Register dst, const Operand& src); 853 void bsrl(Register dst, const Operand& src);
852 void bsfl(Register dst, Register src); 854 void bsfl(Register dst, Register src);
853 void bsfl(Register dst, const Operand& src); 855 void bsfl(Register dst, const Operand& src);
854 856
855 // Miscellaneous 857 // Miscellaneous
856 void clc(); 858 void clc();
857 void cld(); 859 void cld();
858 void cpuid(); 860 void cpuid();
859 void hlt(); 861 void hlt();
(...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after
2161 Assembler* assembler_; 2163 Assembler* assembler_;
2162 #ifdef DEBUG 2164 #ifdef DEBUG
2163 int space_before_; 2165 int space_before_;
2164 #endif 2166 #endif
2165 }; 2167 };
2166 2168
2167 } // namespace internal 2169 } // namespace internal
2168 } // namespace v8 2170 } // namespace v8
2169 2171
2170 #endif // V8_X64_ASSEMBLER_X64_H_ 2172 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/mips64/simulator-mips64.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698