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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 V(NumberBitwiseOr) \ | 187 V(NumberBitwiseOr) \ |
188 V(NumberBitwiseXor) \ | 188 V(NumberBitwiseXor) \ |
189 V(NumberBitwiseAnd) \ | 189 V(NumberBitwiseAnd) \ |
190 V(NumberShiftLeft) \ | 190 V(NumberShiftLeft) \ |
191 V(NumberShiftRight) \ | 191 V(NumberShiftRight) \ |
192 V(NumberShiftRightLogical) \ | 192 V(NumberShiftRightLogical) \ |
193 V(NumberImul) \ | 193 V(NumberImul) \ |
194 V(NumberClz32) \ | 194 V(NumberClz32) \ |
195 V(NumberCeil) \ | 195 V(NumberCeil) \ |
196 V(NumberFloor) \ | 196 V(NumberFloor) \ |
| 197 V(NumberLog) \ |
197 V(NumberRound) \ | 198 V(NumberRound) \ |
198 V(NumberTrunc) \ | 199 V(NumberTrunc) \ |
199 V(NumberToInt32) \ | 200 V(NumberToInt32) \ |
200 V(NumberToUint32) \ | 201 V(NumberToUint32) \ |
201 V(NumberIsHoleNaN) \ | 202 V(NumberIsHoleNaN) \ |
202 V(StringFromCharCode) \ | 203 V(StringFromCharCode) \ |
203 V(StringToNumber) \ | 204 V(StringToNumber) \ |
204 V(ChangeTaggedSignedToInt32) \ | 205 V(ChangeTaggedSignedToInt32) \ |
205 V(ChangeTaggedToInt32) \ | 206 V(ChangeTaggedToInt32) \ |
206 V(ChangeTaggedToUint32) \ | 207 V(ChangeTaggedToUint32) \ |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 V(Float64Add) \ | 343 V(Float64Add) \ |
343 V(Float64Sub) \ | 344 V(Float64Sub) \ |
344 V(Float64SubPreserveNan) \ | 345 V(Float64SubPreserveNan) \ |
345 V(Float64Neg) \ | 346 V(Float64Neg) \ |
346 V(Float64Mul) \ | 347 V(Float64Mul) \ |
347 V(Float64Div) \ | 348 V(Float64Div) \ |
348 V(Float64Mod) \ | 349 V(Float64Mod) \ |
349 V(Float64Max) \ | 350 V(Float64Max) \ |
350 V(Float64Min) \ | 351 V(Float64Min) \ |
351 V(Float64Abs) \ | 352 V(Float64Abs) \ |
| 353 V(Float64Log) \ |
352 V(Float64Sqrt) \ | 354 V(Float64Sqrt) \ |
353 V(Float64RoundDown) \ | 355 V(Float64RoundDown) \ |
354 V(Float32RoundUp) \ | 356 V(Float32RoundUp) \ |
355 V(Float64RoundUp) \ | 357 V(Float64RoundUp) \ |
356 V(Float32RoundTruncate) \ | 358 V(Float32RoundTruncate) \ |
357 V(Float64RoundTruncate) \ | 359 V(Float64RoundTruncate) \ |
358 V(Float64RoundTiesAway) \ | 360 V(Float64RoundTiesAway) \ |
359 V(Float32RoundTiesEven) \ | 361 V(Float32RoundTiesEven) \ |
360 V(Float64RoundTiesEven) \ | 362 V(Float64RoundTiesEven) \ |
361 V(Float64ExtractLowWord32) \ | 363 V(Float64ExtractLowWord32) \ |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
640 } | 642 } |
641 }; | 643 }; |
642 | 644 |
643 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 645 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
644 | 646 |
645 } // namespace compiler | 647 } // namespace compiler |
646 } // namespace internal | 648 } // namespace internal |
647 } // namespace v8 | 649 } // namespace v8 |
648 | 650 |
649 #endif // V8_COMPILER_OPCODES_H_ | 651 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |