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

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

Issue 2101123005: [turbofan] Introduce integer multiplication with overflow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 4 years, 5 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 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 V(Word64Sar) \ 330 V(Word64Sar) \
331 V(Word64Ror) \ 331 V(Word64Ror) \
332 V(Word64Clz) \ 332 V(Word64Clz) \
333 V(Word64Ctz) \ 333 V(Word64Ctz) \
334 V(Word64ReverseBits) \ 334 V(Word64ReverseBits) \
335 V(Int32Add) \ 335 V(Int32Add) \
336 V(Int32AddWithOverflow) \ 336 V(Int32AddWithOverflow) \
337 V(Int32Sub) \ 337 V(Int32Sub) \
338 V(Int32SubWithOverflow) \ 338 V(Int32SubWithOverflow) \
339 V(Int32Mul) \ 339 V(Int32Mul) \
340 V(Int32MulWithOverflow) \
340 V(Int32MulHigh) \ 341 V(Int32MulHigh) \
341 V(Int32Div) \ 342 V(Int32Div) \
342 V(Int32Mod) \ 343 V(Int32Mod) \
343 V(Uint32Div) \ 344 V(Uint32Div) \
344 V(Uint32Mod) \ 345 V(Uint32Mod) \
345 V(Uint32MulHigh) \ 346 V(Uint32MulHigh) \
346 V(Int64Add) \ 347 V(Int64Add) \
347 V(Int64AddWithOverflow) \ 348 V(Int64AddWithOverflow) \
348 V(Int64Sub) \ 349 V(Int64Sub) \
349 V(Int64SubWithOverflow) \ 350 V(Int64SubWithOverflow) \
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 } 716 }
716 }; 717 };
717 718
718 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 719 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
719 720
720 } // namespace compiler 721 } // namespace compiler
721 } // namespace internal 722 } // namespace internal
722 } // namespace v8 723 } // namespace v8
723 724
724 #endif // V8_COMPILER_OPCODES_H_ 725 #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