| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 V(NumberExp) \ | 211 V(NumberExp) \ |
| 212 V(NumberExpm1) \ | 212 V(NumberExpm1) \ |
| 213 V(NumberLog) \ | 213 V(NumberLog) \ |
| 214 V(NumberLog1p) \ | 214 V(NumberLog1p) \ |
| 215 V(NumberLog2) \ | 215 V(NumberLog2) \ |
| 216 V(NumberLog10) \ | 216 V(NumberLog10) \ |
| 217 V(NumberCbrt) \ | 217 V(NumberCbrt) \ |
| 218 V(NumberRound) \ | 218 V(NumberRound) \ |
| 219 V(NumberSin) \ | 219 V(NumberSin) \ |
| 220 V(NumberSqrt) \ | 220 V(NumberSqrt) \ |
| 221 V(NumberTan) \ |
| 221 V(NumberTrunc) \ | 222 V(NumberTrunc) \ |
| 222 V(NumberToInt32) \ | 223 V(NumberToInt32) \ |
| 223 V(NumberToUint32) \ | 224 V(NumberToUint32) \ |
| 224 V(NumberSilenceNaN) \ | 225 V(NumberSilenceNaN) \ |
| 225 V(StringFromCharCode) \ | 226 V(StringFromCharCode) \ |
| 226 V(StringToNumber) \ | 227 V(StringToNumber) \ |
| 227 V(ChangeTaggedSignedToInt32) \ | 228 V(ChangeTaggedSignedToInt32) \ |
| 228 V(ChangeTaggedToInt32) \ | 229 V(ChangeTaggedToInt32) \ |
| 229 V(ChangeTaggedToUint32) \ | 230 V(ChangeTaggedToUint32) \ |
| 230 V(ChangeTaggedToFloat64) \ | 231 V(ChangeTaggedToFloat64) \ |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 V(Float64Cbrt) \ | 385 V(Float64Cbrt) \ |
| 385 V(Float64Cos) \ | 386 V(Float64Cos) \ |
| 386 V(Float64Exp) \ | 387 V(Float64Exp) \ |
| 387 V(Float64Expm1) \ | 388 V(Float64Expm1) \ |
| 388 V(Float64Log) \ | 389 V(Float64Log) \ |
| 389 V(Float64Log1p) \ | 390 V(Float64Log1p) \ |
| 390 V(Float64Log10) \ | 391 V(Float64Log10) \ |
| 391 V(Float64Log2) \ | 392 V(Float64Log2) \ |
| 392 V(Float64Sin) \ | 393 V(Float64Sin) \ |
| 393 V(Float64Sqrt) \ | 394 V(Float64Sqrt) \ |
| 395 V(Float64Tan) \ |
| 394 V(Float64RoundDown) \ | 396 V(Float64RoundDown) \ |
| 395 V(Float32RoundUp) \ | 397 V(Float32RoundUp) \ |
| 396 V(Float64RoundUp) \ | 398 V(Float64RoundUp) \ |
| 397 V(Float32RoundTruncate) \ | 399 V(Float32RoundTruncate) \ |
| 398 V(Float64RoundTruncate) \ | 400 V(Float64RoundTruncate) \ |
| 399 V(Float64RoundTiesAway) \ | 401 V(Float64RoundTiesAway) \ |
| 400 V(Float32RoundTiesEven) \ | 402 V(Float32RoundTiesEven) \ |
| 401 V(Float64RoundTiesEven) \ | 403 V(Float64RoundTiesEven) \ |
| 402 V(Float64ExtractLowWord32) \ | 404 V(Float64ExtractLowWord32) \ |
| 403 V(Float64ExtractHighWord32) \ | 405 V(Float64ExtractHighWord32) \ |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 } | 683 } |
| 682 }; | 684 }; |
| 683 | 685 |
| 684 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 686 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 685 | 687 |
| 686 } // namespace compiler | 688 } // namespace compiler |
| 687 } // namespace internal | 689 } // namespace internal |
| 688 } // namespace v8 | 690 } // namespace v8 |
| 689 | 691 |
| 690 #endif // V8_COMPILER_OPCODES_H_ | 692 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |