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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 const Operator* Word64Shr(); | 176 const Operator* Word64Shr(); |
177 const Operator* Word64Sar(); | 177 const Operator* Word64Sar(); |
178 const Operator* Word64Ror(); | 178 const Operator* Word64Ror(); |
179 const Operator* Word64Clz(); | 179 const Operator* Word64Clz(); |
180 const OptionalOperator Word64Ctz(); | 180 const OptionalOperator Word64Ctz(); |
181 const Operator* Word64CtzPlaceholder(); | 181 const Operator* Word64CtzPlaceholder(); |
182 const Operator* Word64Equal(); | 182 const Operator* Word64Equal(); |
183 | 183 |
184 const Operator* Int32PairAdd(); | 184 const Operator* Int32PairAdd(); |
185 const Operator* Int32PairSub(); | 185 const Operator* Int32PairSub(); |
| 186 const Operator* Int32PairMul(); |
186 const Operator* Word32PairShl(); | 187 const Operator* Word32PairShl(); |
187 const Operator* Word32PairShr(); | 188 const Operator* Word32PairShr(); |
188 const Operator* Word32PairSar(); | 189 const Operator* Word32PairSar(); |
189 | 190 |
190 const Operator* Int32Add(); | 191 const Operator* Int32Add(); |
191 const Operator* Int32AddWithOverflow(); | 192 const Operator* Int32AddWithOverflow(); |
192 const Operator* Int32Sub(); | 193 const Operator* Int32Sub(); |
193 const Operator* Int32SubWithOverflow(); | 194 const Operator* Int32SubWithOverflow(); |
194 const Operator* Int32Mul(); | 195 const Operator* Int32Mul(); |
195 const Operator* Int32MulHigh(); | 196 const Operator* Int32MulHigh(); |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 }; | 377 }; |
377 | 378 |
378 | 379 |
379 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 380 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
380 | 381 |
381 } // namespace compiler | 382 } // namespace compiler |
382 } // namespace internal | 383 } // namespace internal |
383 } // namespace v8 | 384 } // namespace v8 |
384 | 385 |
385 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 386 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
OLD | NEW |