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

Side by Side Diff: src/compiler/opcodes.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/mips64/instruction-selector-mips64.cc ('k') | src/compiler/typer.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 V(Word32Ctz) \ 236 V(Word32Ctz) \
237 V(Word32Popcnt) \ 237 V(Word32Popcnt) \
238 V(Word64And) \ 238 V(Word64And) \
239 V(Word64Or) \ 239 V(Word64Or) \
240 V(Word64Xor) \ 240 V(Word64Xor) \
241 V(Word64Shl) \ 241 V(Word64Shl) \
242 V(Word64Shr) \ 242 V(Word64Shr) \
243 V(Word64Sar) \ 243 V(Word64Sar) \
244 V(Word64Ror) \ 244 V(Word64Ror) \
245 V(Word64Clz) \ 245 V(Word64Clz) \
246 V(Word64Ctz) \
246 V(Int32Add) \ 247 V(Int32Add) \
247 V(Int32AddWithOverflow) \ 248 V(Int32AddWithOverflow) \
248 V(Int32Sub) \ 249 V(Int32Sub) \
249 V(Int32SubWithOverflow) \ 250 V(Int32SubWithOverflow) \
250 V(Int32Mul) \ 251 V(Int32Mul) \
251 V(Int32MulHigh) \ 252 V(Int32MulHigh) \
252 V(Int32Div) \ 253 V(Int32Div) \
253 V(Int32Mod) \ 254 V(Int32Mod) \
254 V(Uint32Div) \ 255 V(Uint32Div) \
255 V(Uint32Mod) \ 256 V(Uint32Mod) \
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 } 378 }
378 }; 379 };
379 380
380 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 381 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
381 382
382 } // namespace compiler 383 } // namespace compiler
383 } // namespace internal 384 } // namespace internal
384 } // namespace v8 385 } // namespace v8
385 386
386 #endif // V8_COMPILER_OPCODES_H_ 387 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698