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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 V(NumberSin) \ | 241 V(NumberSin) \ |
242 V(NumberSqrt) \ | 242 V(NumberSqrt) \ |
243 V(NumberTan) \ | 243 V(NumberTan) \ |
244 V(NumberTrunc) \ | 244 V(NumberTrunc) \ |
245 V(NumberToInt32) \ | 245 V(NumberToInt32) \ |
246 V(NumberToUint32) \ | 246 V(NumberToUint32) \ |
247 V(NumberSilenceNaN) \ | 247 V(NumberSilenceNaN) \ |
248 V(StringFromCharCode) \ | 248 V(StringFromCharCode) \ |
249 V(StringToNumber) \ | 249 V(StringToNumber) \ |
250 V(CheckBounds) \ | 250 V(CheckBounds) \ |
| 251 V(CheckIf) \ |
251 V(CheckNumber) \ | 252 V(CheckNumber) \ |
252 V(CheckTaggedPointer) \ | 253 V(CheckTaggedPointer) \ |
253 V(CheckTaggedSigned) \ | 254 V(CheckTaggedSigned) \ |
254 V(CheckFloat64Hole) \ | 255 V(CheckFloat64Hole) \ |
255 V(CheckTaggedHole) \ | 256 V(CheckTaggedHole) \ |
256 V(Allocate) \ | 257 V(Allocate) \ |
257 V(LoadField) \ | 258 V(LoadField) \ |
258 V(LoadBuffer) \ | 259 V(LoadBuffer) \ |
259 V(LoadElement) \ | 260 V(LoadElement) \ |
260 V(StoreField) \ | 261 V(StoreField) \ |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
697 } | 698 } |
698 }; | 699 }; |
699 | 700 |
700 std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 701 std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
701 | 702 |
702 } // namespace compiler | 703 } // namespace compiler |
703 } // namespace internal | 704 } // namespace internal |
704 } // namespace v8 | 705 } // namespace v8 |
705 | 706 |
706 #endif // V8_COMPILER_OPCODES_H_ | 707 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |