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

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

Issue 1421163005: Implemented the ctz Turbo Fan operator for x64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed the comments 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/compiler/x64/instruction-selector-x64.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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
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); 850 void bsrq(Register dst, Register src);
851 void bsrq(Register dst, const Operand& src); 851 void bsrq(Register dst, const Operand& src);
852 void bsrl(Register dst, Register src); 852 void bsrl(Register dst, Register src);
853 void bsrl(Register dst, const Operand& src); 853 void bsrl(Register dst, const Operand& src);
854 void bsfq(Register dst, Register src);
855 void bsfq(Register dst, const Operand& src);
854 void bsfl(Register dst, Register src); 856 void bsfl(Register dst, Register src);
855 void bsfl(Register dst, const Operand& src); 857 void bsfl(Register dst, const Operand& src);
856 858
857 // Miscellaneous 859 // Miscellaneous
858 void clc(); 860 void clc();
859 void cld(); 861 void cld();
860 void cpuid(); 862 void cpuid();
861 void hlt(); 863 void hlt();
862 void int3(); 864 void int3();
863 void nop(); 865 void nop();
(...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
2160 Assembler* assembler_; 2162 Assembler* assembler_;
2161 #ifdef DEBUG 2163 #ifdef DEBUG
2162 int space_before_; 2164 int space_before_;
2163 #endif 2165 #endif
2164 }; 2166 };
2165 2167
2166 } // namespace internal 2168 } // namespace internal
2167 } // namespace v8 2169 } // namespace v8
2168 2170
2169 #endif // V8_X64_ASSEMBLER_X64_H_ 2171 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698