| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 V(NumberShiftRight) \ | 220 V(NumberShiftRight) \ |
| 221 V(NumberShiftRightLogical) \ | 221 V(NumberShiftRightLogical) \ |
| 222 V(NumberImul) \ | 222 V(NumberImul) \ |
| 223 V(NumberAbs) \ | 223 V(NumberAbs) \ |
| 224 V(NumberClz32) \ | 224 V(NumberClz32) \ |
| 225 V(NumberCeil) \ | 225 V(NumberCeil) \ |
| 226 V(NumberCos) \ | 226 V(NumberCos) \ |
| 227 V(NumberCosh) \ | 227 V(NumberCosh) \ |
| 228 V(NumberFloor) \ | 228 V(NumberFloor) \ |
| 229 V(NumberFround) \ | 229 V(NumberFround) \ |
| 230 V(NumberAcos) \ |
| 231 V(NumberAcosh) \ |
| 232 V(NumberAsin) \ |
| 233 V(NumberAsinh) \ |
| 230 V(NumberAtan) \ | 234 V(NumberAtan) \ |
| 235 V(NumberAtanh) \ |
| 231 V(NumberAtan2) \ | 236 V(NumberAtan2) \ |
| 232 V(NumberAtanh) \ | |
| 233 V(NumberExp) \ | 237 V(NumberExp) \ |
| 234 V(NumberExpm1) \ | 238 V(NumberExpm1) \ |
| 235 V(NumberLog) \ | 239 V(NumberLog) \ |
| 236 V(NumberLog1p) \ | 240 V(NumberLog1p) \ |
| 237 V(NumberLog2) \ | 241 V(NumberLog2) \ |
| 238 V(NumberLog10) \ | 242 V(NumberLog10) \ |
| 239 V(NumberCbrt) \ | 243 V(NumberCbrt) \ |
| 240 V(NumberPow) \ | 244 V(NumberPow) \ |
| 241 V(NumberRound) \ | 245 V(NumberRound) \ |
| 246 V(NumberSign) \ |
| 242 V(NumberSin) \ | 247 V(NumberSin) \ |
| 243 V(NumberSinh) \ | 248 V(NumberSinh) \ |
| 244 V(NumberSqrt) \ | 249 V(NumberSqrt) \ |
| 245 V(NumberTan) \ | 250 V(NumberTan) \ |
| 246 V(NumberTanh) \ | 251 V(NumberTanh) \ |
| 247 V(NumberTrunc) \ | 252 V(NumberTrunc) \ |
| 248 V(NumberToInt32) \ | 253 V(NumberToInt32) \ |
| 249 V(NumberToUint32) \ | 254 V(NumberToUint32) \ |
| 250 V(NumberSilenceNaN) \ | 255 V(NumberSilenceNaN) \ |
| 251 V(StringFromCharCode) \ | 256 V(StringFromCharCode) \ |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 V(Float64Add) \ | 394 V(Float64Add) \ |
| 390 V(Float64Sub) \ | 395 V(Float64Sub) \ |
| 391 V(Float64SubPreserveNan) \ | 396 V(Float64SubPreserveNan) \ |
| 392 V(Float64Neg) \ | 397 V(Float64Neg) \ |
| 393 V(Float64Mul) \ | 398 V(Float64Mul) \ |
| 394 V(Float64Div) \ | 399 V(Float64Div) \ |
| 395 V(Float64Mod) \ | 400 V(Float64Mod) \ |
| 396 V(Float64Max) \ | 401 V(Float64Max) \ |
| 397 V(Float64Min) \ | 402 V(Float64Min) \ |
| 398 V(Float64Abs) \ | 403 V(Float64Abs) \ |
| 404 V(Float64Acos) \ |
| 405 V(Float64Acosh) \ |
| 406 V(Float64Asin) \ |
| 407 V(Float64Asinh) \ |
| 399 V(Float64Atan) \ | 408 V(Float64Atan) \ |
| 409 V(Float64Atanh) \ |
| 400 V(Float64Atan2) \ | 410 V(Float64Atan2) \ |
| 401 V(Float64Atanh) \ | |
| 402 V(Float64Cbrt) \ | 411 V(Float64Cbrt) \ |
| 403 V(Float64Cos) \ | 412 V(Float64Cos) \ |
| 404 V(Float64Cosh) \ | 413 V(Float64Cosh) \ |
| 405 V(Float64Exp) \ | 414 V(Float64Exp) \ |
| 406 V(Float64Expm1) \ | 415 V(Float64Expm1) \ |
| 407 V(Float64Log) \ | 416 V(Float64Log) \ |
| 408 V(Float64Log1p) \ | 417 V(Float64Log1p) \ |
| 409 V(Float64Log10) \ | 418 V(Float64Log10) \ |
| 410 V(Float64Log2) \ | 419 V(Float64Log2) \ |
| 411 V(Float64Pow) \ | 420 V(Float64Pow) \ |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 } | 713 } |
| 705 }; | 714 }; |
| 706 | 715 |
| 707 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 716 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 708 | 717 |
| 709 } // namespace compiler | 718 } // namespace compiler |
| 710 } // namespace internal | 719 } // namespace internal |
| 711 } // namespace v8 | 720 } // namespace v8 |
| 712 | 721 |
| 713 #endif // V8_COMPILER_OPCODES_H_ | 722 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |