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

Side by Side Diff: src/compiler/machine-operator.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
« no previous file with comments | « src/compiler/instruction-selector-impl.h ('k') | src/compiler/machine-operator.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_MACHINE_OPERATOR_H_ 5 #ifndef V8_COMPILER_MACHINE_OPERATOR_H_
6 #define V8_COMPILER_MACHINE_OPERATOR_H_ 6 #define V8_COMPILER_MACHINE_OPERATOR_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/machine-type.h" 9 #include "src/machine-type.h"
10 10
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 const Operator* Int32PairMul(); 235 const Operator* Int32PairMul();
236 const Operator* Word32PairShl(); 236 const Operator* Word32PairShl();
237 const Operator* Word32PairShr(); 237 const Operator* Word32PairShr();
238 const Operator* Word32PairSar(); 238 const Operator* Word32PairSar();
239 239
240 const Operator* Int32Add(); 240 const Operator* Int32Add();
241 const Operator* Int32AddWithOverflow(); 241 const Operator* Int32AddWithOverflow();
242 const Operator* Int32Sub(); 242 const Operator* Int32Sub();
243 const Operator* Int32SubWithOverflow(); 243 const Operator* Int32SubWithOverflow();
244 const Operator* Int32Mul(); 244 const Operator* Int32Mul();
245 const Operator* Int32MulWithOverflow();
245 const Operator* Int32MulHigh(); 246 const Operator* Int32MulHigh();
246 const Operator* Int32Div(); 247 const Operator* Int32Div();
247 const Operator* Int32Mod(); 248 const Operator* Int32Mod();
248 const Operator* Int32LessThan(); 249 const Operator* Int32LessThan();
249 const Operator* Int32LessThanOrEqual(); 250 const Operator* Int32LessThanOrEqual();
250 const Operator* Uint32Div(); 251 const Operator* Uint32Div();
251 const Operator* Uint32LessThan(); 252 const Operator* Uint32LessThan();
252 const Operator* Uint32LessThanOrEqual(); 253 const Operator* Uint32LessThanOrEqual();
253 const Operator* Uint32Mod(); 254 const Operator* Uint32Mod();
254 const Operator* Uint32MulHigh(); 255 const Operator* Uint32MulHigh();
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 }; 677 };
677 678
678 679
679 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) 680 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags)
680 681
681 } // namespace compiler 682 } // namespace compiler
682 } // namespace internal 683 } // namespace internal
683 } // namespace v8 684 } // namespace v8
684 685
685 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ 686 #endif // V8_COMPILER_MACHINE_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/instruction-selector-impl.h ('k') | src/compiler/machine-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698