| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 const Operator* Word64Or(); | 172 const Operator* Word64Or(); |
| 173 const Operator* Word64Xor(); | 173 const Operator* Word64Xor(); |
| 174 const Operator* Word64Shl(); | 174 const Operator* Word64Shl(); |
| 175 const Operator* Word64Shr(); | 175 const Operator* Word64Shr(); |
| 176 const Operator* Word64Sar(); | 176 const Operator* Word64Sar(); |
| 177 const Operator* Word64Ror(); | 177 const Operator* Word64Ror(); |
| 178 const Operator* Word64Clz(); | 178 const Operator* Word64Clz(); |
| 179 const OptionalOperator Word64Ctz(); | 179 const OptionalOperator Word64Ctz(); |
| 180 const Operator* Word64Equal(); | 180 const Operator* Word64Equal(); |
| 181 | 181 |
| 182 const Operator* Word32PairShl(); |
| 183 |
| 182 const Operator* Int32Add(); | 184 const Operator* Int32Add(); |
| 183 const Operator* Int32AddWithOverflow(); | 185 const Operator* Int32AddWithOverflow(); |
| 184 const Operator* Int32Sub(); | 186 const Operator* Int32Sub(); |
| 185 const Operator* Int32SubWithOverflow(); | 187 const Operator* Int32SubWithOverflow(); |
| 186 const Operator* Int32Mul(); | 188 const Operator* Int32Mul(); |
| 187 const Operator* Int32MulHigh(); | 189 const Operator* Int32MulHigh(); |
| 188 const Operator* Int32Div(); | 190 const Operator* Int32Div(); |
| 189 const Operator* Int32Mod(); | 191 const Operator* Int32Mod(); |
| 190 const Operator* Int32LessThan(); | 192 const Operator* Int32LessThan(); |
| 191 const Operator* Int32LessThanOrEqual(); | 193 const Operator* Int32LessThanOrEqual(); |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 }; | 370 }; |
| 369 | 371 |
| 370 | 372 |
| 371 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) | 373 DEFINE_OPERATORS_FOR_FLAGS(MachineOperatorBuilder::Flags) |
| 372 | 374 |
| 373 } // namespace compiler | 375 } // namespace compiler |
| 374 } // namespace internal | 376 } // namespace internal |
| 375 } // namespace v8 | 377 } // namespace v8 |
| 376 | 378 |
| 377 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ | 379 #endif // V8_COMPILER_MACHINE_OPERATOR_H_ |
| OLD | NEW |