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

Side by Side Diff: src/compiler/opcodes.h

Issue 1424173006: Implemented the Word64Popcnt TurboFan operator for x64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 V(Word32And) \ 228 V(Word32And) \
229 V(Word32Or) \ 229 V(Word32Or) \
230 V(Word32Xor) \ 230 V(Word32Xor) \
231 V(Word32Shl) \ 231 V(Word32Shl) \
232 V(Word32Shr) \ 232 V(Word32Shr) \
233 V(Word32Sar) \ 233 V(Word32Sar) \
234 V(Word32Ror) \ 234 V(Word32Ror) \
235 V(Word32Clz) \ 235 V(Word32Clz) \
236 V(Word32Ctz) \ 236 V(Word32Ctz) \
237 V(Word32Popcnt) \ 237 V(Word32Popcnt) \
238 V(Word64Popcnt) \
238 V(Word64And) \ 239 V(Word64And) \
239 V(Word64Or) \ 240 V(Word64Or) \
240 V(Word64Xor) \ 241 V(Word64Xor) \
241 V(Word64Shl) \ 242 V(Word64Shl) \
242 V(Word64Shr) \ 243 V(Word64Shr) \
243 V(Word64Sar) \ 244 V(Word64Sar) \
244 V(Word64Ror) \ 245 V(Word64Ror) \
245 V(Word64Clz) \ 246 V(Word64Clz) \
246 V(Word64Ctz) \ 247 V(Word64Ctz) \
247 V(Int32Add) \ 248 V(Int32Add) \
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 } 379 }
379 }; 380 };
380 381
381 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 382 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
382 383
383 } // namespace compiler 384 } // namespace compiler
384 } // namespace internal 385 } // namespace internal
385 } // namespace v8 386 } // namespace v8
386 387
387 #endif // V8_COMPILER_OPCODES_H_ 388 #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