OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |