| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 V(NumberAtan) \ | 208 V(NumberAtan) \ |
| 209 V(NumberAtan2) \ | 209 V(NumberAtan2) \ |
| 210 V(NumberAtanh) \ | 210 V(NumberAtanh) \ |
| 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(NumberPow) \ |
| 218 V(NumberRound) \ | 219 V(NumberRound) \ |
| 219 V(NumberSin) \ | 220 V(NumberSin) \ |
| 220 V(NumberSqrt) \ | 221 V(NumberSqrt) \ |
| 221 V(NumberTan) \ | 222 V(NumberTan) \ |
| 222 V(NumberTrunc) \ | 223 V(NumberTrunc) \ |
| 223 V(NumberToInt32) \ | 224 V(NumberToInt32) \ |
| 224 V(NumberToUint32) \ | 225 V(NumberToUint32) \ |
| 225 V(NumberSilenceNaN) \ | 226 V(NumberSilenceNaN) \ |
| 226 V(StringFromCharCode) \ | 227 V(StringFromCharCode) \ |
| 227 V(StringToNumber) \ | 228 V(StringToNumber) \ |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 V(Float64Atan2) \ | 387 V(Float64Atan2) \ |
| 387 V(Float64Atanh) \ | 388 V(Float64Atanh) \ |
| 388 V(Float64Cbrt) \ | 389 V(Float64Cbrt) \ |
| 389 V(Float64Cos) \ | 390 V(Float64Cos) \ |
| 390 V(Float64Exp) \ | 391 V(Float64Exp) \ |
| 391 V(Float64Expm1) \ | 392 V(Float64Expm1) \ |
| 392 V(Float64Log) \ | 393 V(Float64Log) \ |
| 393 V(Float64Log1p) \ | 394 V(Float64Log1p) \ |
| 394 V(Float64Log10) \ | 395 V(Float64Log10) \ |
| 395 V(Float64Log2) \ | 396 V(Float64Log2) \ |
| 397 V(Float64Pow) \ |
| 396 V(Float64Sin) \ | 398 V(Float64Sin) \ |
| 397 V(Float64Sqrt) \ | 399 V(Float64Sqrt) \ |
| 398 V(Float64Tan) \ | 400 V(Float64Tan) \ |
| 399 V(Float64RoundDown) \ | 401 V(Float64RoundDown) \ |
| 400 V(Float32RoundUp) \ | 402 V(Float32RoundUp) \ |
| 401 V(Float64RoundUp) \ | 403 V(Float64RoundUp) \ |
| 402 V(Float32RoundTruncate) \ | 404 V(Float32RoundTruncate) \ |
| 403 V(Float64RoundTruncate) \ | 405 V(Float64RoundTruncate) \ |
| 404 V(Float64RoundTiesAway) \ | 406 V(Float64RoundTiesAway) \ |
| 405 V(Float32RoundTiesEven) \ | 407 V(Float32RoundTiesEven) \ |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 } | 688 } |
| 687 }; | 689 }; |
| 688 | 690 |
| 689 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 691 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 690 | 692 |
| 691 } // namespace compiler | 693 } // namespace compiler |
| 692 } // namespace internal | 694 } // namespace internal |
| 693 } // namespace v8 | 695 } // namespace v8 |
| 694 | 696 |
| 695 #endif // V8_COMPILER_OPCODES_H_ | 697 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |