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

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

Issue 1698483002: [arm][arm64] Improve CountTrailingZero implementation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: comments addressed Created 4 years, 10 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 V(StackSlot) \ 230 V(StackSlot) \
231 V(Word32And) \ 231 V(Word32And) \
232 V(Word32Or) \ 232 V(Word32Or) \
233 V(Word32Xor) \ 233 V(Word32Xor) \
234 V(Word32Shl) \ 234 V(Word32Shl) \
235 V(Word32Shr) \ 235 V(Word32Shr) \
236 V(Word32Sar) \ 236 V(Word32Sar) \
237 V(Word32Ror) \ 237 V(Word32Ror) \
238 V(Word32Clz) \ 238 V(Word32Clz) \
239 V(Word32Ctz) \ 239 V(Word32Ctz) \
240 V(Word32ReverseBits) \
240 V(Word32Popcnt) \ 241 V(Word32Popcnt) \
241 V(Word64Popcnt) \ 242 V(Word64Popcnt) \
242 V(Word64And) \ 243 V(Word64And) \
243 V(Word64Or) \ 244 V(Word64Or) \
244 V(Word64Xor) \ 245 V(Word64Xor) \
245 V(Word64Shl) \ 246 V(Word64Shl) \
246 V(Word64Shr) \ 247 V(Word64Shr) \
247 V(Word64Sar) \ 248 V(Word64Sar) \
248 V(Word64Ror) \ 249 V(Word64Ror) \
249 V(Word64Clz) \ 250 V(Word64Clz) \
250 V(Word64Ctz) \ 251 V(Word64Ctz) \
252 V(Word64ReverseBits) \
251 V(Int32Add) \ 253 V(Int32Add) \
252 V(Int32AddWithOverflow) \ 254 V(Int32AddWithOverflow) \
253 V(Int32Sub) \ 255 V(Int32Sub) \
254 V(Int32SubWithOverflow) \ 256 V(Int32SubWithOverflow) \
255 V(Int32Mul) \ 257 V(Int32Mul) \
256 V(Int32MulHigh) \ 258 V(Int32MulHigh) \
257 V(Int32Div) \ 259 V(Int32Div) \
258 V(Int32Mod) \ 260 V(Int32Mod) \
259 V(Uint32Div) \ 261 V(Uint32Div) \
260 V(Uint32Mod) \ 262 V(Uint32Mod) \
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 } 408 }
407 }; 409 };
408 410
409 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 411 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
410 412
411 } // namespace compiler 413 } // namespace compiler
412 } // namespace internal 414 } // namespace internal
413 } // namespace v8 415 } // namespace v8
414 416
415 #endif // V8_COMPILER_OPCODES_H_ 417 #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