| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(NumberLog) \ | 200 V(NumberLog) \ |
| 201 V(NumberLog1p) \ |
| 201 V(NumberRound) \ | 202 V(NumberRound) \ |
| 202 V(NumberTrunc) \ | 203 V(NumberTrunc) \ |
| 203 V(NumberToInt32) \ | 204 V(NumberToInt32) \ |
| 204 V(NumberToUint32) \ | 205 V(NumberToUint32) \ |
| 205 V(NumberIsHoleNaN) \ | 206 V(NumberIsHoleNaN) \ |
| 206 V(StringFromCharCode) \ | 207 V(StringFromCharCode) \ |
| 207 V(StringToNumber) \ | 208 V(StringToNumber) \ |
| 208 V(ChangeTaggedSignedToInt32) \ | 209 V(ChangeTaggedSignedToInt32) \ |
| 209 V(ChangeTaggedToInt32) \ | 210 V(ChangeTaggedToInt32) \ |
| 210 V(ChangeTaggedToUint32) \ | 211 V(ChangeTaggedToUint32) \ |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 V(Float64Sub) \ | 350 V(Float64Sub) \ |
| 350 V(Float64SubPreserveNan) \ | 351 V(Float64SubPreserveNan) \ |
| 351 V(Float64Neg) \ | 352 V(Float64Neg) \ |
| 352 V(Float64Mul) \ | 353 V(Float64Mul) \ |
| 353 V(Float64Div) \ | 354 V(Float64Div) \ |
| 354 V(Float64Mod) \ | 355 V(Float64Mod) \ |
| 355 V(Float64Max) \ | 356 V(Float64Max) \ |
| 356 V(Float64Min) \ | 357 V(Float64Min) \ |
| 357 V(Float64Abs) \ | 358 V(Float64Abs) \ |
| 358 V(Float64Log) \ | 359 V(Float64Log) \ |
| 360 V(Float64Log1p) \ |
| 359 V(Float64Sqrt) \ | 361 V(Float64Sqrt) \ |
| 360 V(Float64RoundDown) \ | 362 V(Float64RoundDown) \ |
| 361 V(Float32RoundUp) \ | 363 V(Float32RoundUp) \ |
| 362 V(Float64RoundUp) \ | 364 V(Float64RoundUp) \ |
| 363 V(Float32RoundTruncate) \ | 365 V(Float32RoundTruncate) \ |
| 364 V(Float64RoundTruncate) \ | 366 V(Float64RoundTruncate) \ |
| 365 V(Float64RoundTiesAway) \ | 367 V(Float64RoundTiesAway) \ |
| 366 V(Float32RoundTiesEven) \ | 368 V(Float32RoundTiesEven) \ |
| 367 V(Float64RoundTiesEven) \ | 369 V(Float64RoundTiesEven) \ |
| 368 V(Float64ExtractLowWord32) \ | 370 V(Float64ExtractLowWord32) \ |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 } | 649 } |
| 648 }; | 650 }; |
| 649 | 651 |
| 650 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 652 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 651 | 653 |
| 652 } // namespace compiler | 654 } // namespace compiler |
| 653 } // namespace internal | 655 } // namespace internal |
| 654 } // namespace v8 | 656 } // namespace v8 |
| 655 | 657 |
| 656 #endif // V8_COMPILER_OPCODES_H_ | 658 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |