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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 V(NumberShiftRightLogical) \ | 198 V(NumberShiftRightLogical) \ |
199 V(NumberImul) \ | 199 V(NumberImul) \ |
200 V(NumberClz32) \ | 200 V(NumberClz32) \ |
201 V(NumberCeil) \ | 201 V(NumberCeil) \ |
202 V(NumberFloor) \ | 202 V(NumberFloor) \ |
203 V(NumberFround) \ | 203 V(NumberFround) \ |
204 V(NumberAtan) \ | 204 V(NumberAtan) \ |
205 V(NumberAtan2) \ | 205 V(NumberAtan2) \ |
206 V(NumberLog) \ | 206 V(NumberLog) \ |
207 V(NumberLog1p) \ | 207 V(NumberLog1p) \ |
| 208 V(NumberLog2) \ |
| 209 V(NumberLog10) \ |
208 V(NumberRound) \ | 210 V(NumberRound) \ |
209 V(NumberSqrt) \ | 211 V(NumberSqrt) \ |
210 V(NumberTrunc) \ | 212 V(NumberTrunc) \ |
211 V(NumberToInt32) \ | 213 V(NumberToInt32) \ |
212 V(NumberToUint32) \ | 214 V(NumberToUint32) \ |
213 V(NumberSilenceNaN) \ | 215 V(NumberSilenceNaN) \ |
214 V(StringFromCharCode) \ | 216 V(StringFromCharCode) \ |
215 V(StringToNumber) \ | 217 V(StringToNumber) \ |
216 V(ChangeTaggedSignedToInt32) \ | 218 V(ChangeTaggedSignedToInt32) \ |
217 V(ChangeTaggedToInt32) \ | 219 V(ChangeTaggedToInt32) \ |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 V(Float64Mul) \ | 366 V(Float64Mul) \ |
365 V(Float64Div) \ | 367 V(Float64Div) \ |
366 V(Float64Mod) \ | 368 V(Float64Mod) \ |
367 V(Float64Max) \ | 369 V(Float64Max) \ |
368 V(Float64Min) \ | 370 V(Float64Min) \ |
369 V(Float64Abs) \ | 371 V(Float64Abs) \ |
370 V(Float64Atan) \ | 372 V(Float64Atan) \ |
371 V(Float64Atan2) \ | 373 V(Float64Atan2) \ |
372 V(Float64Log) \ | 374 V(Float64Log) \ |
373 V(Float64Log1p) \ | 375 V(Float64Log1p) \ |
| 376 V(Float64Log2) \ |
| 377 V(Float64Log10) \ |
374 V(Float64Sqrt) \ | 378 V(Float64Sqrt) \ |
375 V(Float64RoundDown) \ | 379 V(Float64RoundDown) \ |
376 V(Float32RoundUp) \ | 380 V(Float32RoundUp) \ |
377 V(Float64RoundUp) \ | 381 V(Float64RoundUp) \ |
378 V(Float32RoundTruncate) \ | 382 V(Float32RoundTruncate) \ |
379 V(Float64RoundTruncate) \ | 383 V(Float64RoundTruncate) \ |
380 V(Float64RoundTiesAway) \ | 384 V(Float64RoundTiesAway) \ |
381 V(Float32RoundTiesEven) \ | 385 V(Float32RoundTiesEven) \ |
382 V(Float64RoundTiesEven) \ | 386 V(Float64RoundTiesEven) \ |
383 V(Float64ExtractLowWord32) \ | 387 V(Float64ExtractLowWord32) \ |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 } | 666 } |
663 }; | 667 }; |
664 | 668 |
665 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 669 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
666 | 670 |
667 } // namespace compiler | 671 } // namespace compiler |
668 } // namespace internal | 672 } // namespace internal |
669 } // namespace v8 | 673 } // namespace v8 |
670 | 674 |
671 #endif // V8_COMPILER_OPCODES_H_ | 675 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |