| 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_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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 V(NumberBitwiseOr) \ | 190 V(NumberBitwiseOr) \ |
| 191 V(NumberBitwiseXor) \ | 191 V(NumberBitwiseXor) \ |
| 192 V(NumberBitwiseAnd) \ | 192 V(NumberBitwiseAnd) \ |
| 193 V(NumberShiftLeft) \ | 193 V(NumberShiftLeft) \ |
| 194 V(NumberShiftRight) \ | 194 V(NumberShiftRight) \ |
| 195 V(NumberShiftRightLogical) \ | 195 V(NumberShiftRightLogical) \ |
| 196 V(NumberImul) \ | 196 V(NumberImul) \ |
| 197 V(NumberClz32) \ | 197 V(NumberClz32) \ |
| 198 V(NumberCeil) \ | 198 V(NumberCeil) \ |
| 199 V(NumberFloor) \ | 199 V(NumberFloor) \ |
| 200 V(NumberAtan) \ |
| 201 V(NumberAtan2) \ |
| 200 V(NumberLog) \ | 202 V(NumberLog) \ |
| 201 V(NumberLog1p) \ | 203 V(NumberLog1p) \ |
| 202 V(NumberRound) \ | 204 V(NumberRound) \ |
| 203 V(NumberTrunc) \ | 205 V(NumberTrunc) \ |
| 204 V(NumberToInt32) \ | 206 V(NumberToInt32) \ |
| 205 V(NumberToUint32) \ | 207 V(NumberToUint32) \ |
| 206 V(NumberIsHoleNaN) \ | 208 V(NumberIsHoleNaN) \ |
| 207 V(StringFromCharCode) \ | 209 V(StringFromCharCode) \ |
| 208 V(StringToNumber) \ | 210 V(StringToNumber) \ |
| 209 V(ChangeTaggedSignedToInt32) \ | 211 V(ChangeTaggedSignedToInt32) \ |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 V(Float64Add) \ | 351 V(Float64Add) \ |
| 350 V(Float64Sub) \ | 352 V(Float64Sub) \ |
| 351 V(Float64SubPreserveNan) \ | 353 V(Float64SubPreserveNan) \ |
| 352 V(Float64Neg) \ | 354 V(Float64Neg) \ |
| 353 V(Float64Mul) \ | 355 V(Float64Mul) \ |
| 354 V(Float64Div) \ | 356 V(Float64Div) \ |
| 355 V(Float64Mod) \ | 357 V(Float64Mod) \ |
| 356 V(Float64Max) \ | 358 V(Float64Max) \ |
| 357 V(Float64Min) \ | 359 V(Float64Min) \ |
| 358 V(Float64Abs) \ | 360 V(Float64Abs) \ |
| 361 V(Float64Atan) \ |
| 362 V(Float64Atan2) \ |
| 359 V(Float64Log) \ | 363 V(Float64Log) \ |
| 360 V(Float64Log1p) \ | 364 V(Float64Log1p) \ |
| 361 V(Float64Sqrt) \ | 365 V(Float64Sqrt) \ |
| 362 V(Float64RoundDown) \ | 366 V(Float64RoundDown) \ |
| 363 V(Float32RoundUp) \ | 367 V(Float32RoundUp) \ |
| 364 V(Float64RoundUp) \ | 368 V(Float64RoundUp) \ |
| 365 V(Float32RoundTruncate) \ | 369 V(Float32RoundTruncate) \ |
| 366 V(Float64RoundTruncate) \ | 370 V(Float64RoundTruncate) \ |
| 367 V(Float64RoundTiesAway) \ | 371 V(Float64RoundTiesAway) \ |
| 368 V(Float32RoundTiesEven) \ | 372 V(Float32RoundTiesEven) \ |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 } | 653 } |
| 650 }; | 654 }; |
| 651 | 655 |
| 652 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 656 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 653 | 657 |
| 654 } // namespace compiler | 658 } // namespace compiler |
| 655 } // namespace internal | 659 } // namespace internal |
| 656 } // namespace v8 | 660 } // namespace v8 |
| 657 | 661 |
| 658 #endif // V8_COMPILER_OPCODES_H_ | 662 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |