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

Side by Side Diff: src/compiler/opcodes.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
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 V(Word32Clz) \ 233 V(Word32Clz) \
234 V(Word32Ctz) \ 234 V(Word32Ctz) \
235 V(Word32Popcnt) \ 235 V(Word32Popcnt) \
236 V(Word64And) \ 236 V(Word64And) \
237 V(Word64Or) \ 237 V(Word64Or) \
238 V(Word64Xor) \ 238 V(Word64Xor) \
239 V(Word64Shl) \ 239 V(Word64Shl) \
240 V(Word64Shr) \ 240 V(Word64Shr) \
241 V(Word64Sar) \ 241 V(Word64Sar) \
242 V(Word64Ror) \ 242 V(Word64Ror) \
243 V(Word64Clz) \
243 V(Int32Add) \ 244 V(Int32Add) \
244 V(Int32AddWithOverflow) \ 245 V(Int32AddWithOverflow) \
245 V(Int32Sub) \ 246 V(Int32Sub) \
246 V(Int32SubWithOverflow) \ 247 V(Int32SubWithOverflow) \
247 V(Int32Mul) \ 248 V(Int32Mul) \
248 V(Int32MulHigh) \ 249 V(Int32MulHigh) \
249 V(Int32Div) \ 250 V(Int32Div) \
250 V(Int32Mod) \ 251 V(Int32Mod) \
251 V(Uint32Div) \ 252 V(Uint32Div) \
252 V(Uint32Mod) \ 253 V(Uint32Mod) \
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 } 375 }
375 }; 376 };
376 377
377 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 378 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
378 379
379 } // namespace compiler 380 } // namespace compiler
380 } // namespace internal 381 } // namespace internal
381 } // namespace v8 382 } // namespace v8
382 383
383 #endif // V8_COMPILER_OPCODES_H_ 384 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698