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

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

Issue 1405453003: CTZ instruction implemented as optional operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixed a bug when bmi1=false Created 5 years, 2 months 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 V(Load) \ 219 V(Load) \
220 V(Store) \ 220 V(Store) \
221 V(Word32And) \ 221 V(Word32And) \
222 V(Word32Or) \ 222 V(Word32Or) \
223 V(Word32Xor) \ 223 V(Word32Xor) \
224 V(Word32Shl) \ 224 V(Word32Shl) \
225 V(Word32Shr) \ 225 V(Word32Shr) \
226 V(Word32Sar) \ 226 V(Word32Sar) \
227 V(Word32Ror) \ 227 V(Word32Ror) \
228 V(Word32Clz) \ 228 V(Word32Clz) \
229 V(Word32Ctz) \
229 V(Word64And) \ 230 V(Word64And) \
230 V(Word64Or) \ 231 V(Word64Or) \
231 V(Word64Xor) \ 232 V(Word64Xor) \
232 V(Word64Shl) \ 233 V(Word64Shl) \
233 V(Word64Shr) \ 234 V(Word64Shr) \
234 V(Word64Sar) \ 235 V(Word64Sar) \
235 V(Word64Ror) \ 236 V(Word64Ror) \
236 V(Int32Add) \ 237 V(Int32Add) \
237 V(Int32AddWithOverflow) \ 238 V(Int32AddWithOverflow) \
238 V(Int32Sub) \ 239 V(Int32Sub) \
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 } 367 }
367 }; 368 };
368 369
369 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 370 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
370 371
371 } // namespace compiler 372 } // namespace compiler
372 } // namespace internal 373 } // namespace internal
373 } // namespace v8 374 } // namespace v8
374 375
375 #endif // V8_COMPILER_OPCODES_H_ 376 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/instruction-selector-mips64.cc ('k') | src/compiler/ppc/instruction-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698