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 #include "src/globals.h" | 10 #include "src/globals.h" |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 | 300 |
301 #define SIMPLIFIED_OTHER_OP_LIST(V) \ | 301 #define SIMPLIFIED_OTHER_OP_LIST(V) \ |
302 V(PlainPrimitiveToNumber) \ | 302 V(PlainPrimitiveToNumber) \ |
303 V(PlainPrimitiveToWord32) \ | 303 V(PlainPrimitiveToWord32) \ |
304 V(PlainPrimitiveToFloat64) \ | 304 V(PlainPrimitiveToFloat64) \ |
305 V(BooleanNot) \ | 305 V(BooleanNot) \ |
306 V(StringCharAt) \ | 306 V(StringCharAt) \ |
307 V(StringCharCodeAt) \ | 307 V(StringCharCodeAt) \ |
308 V(StringFromCharCode) \ | 308 V(StringFromCharCode) \ |
309 V(StringFromCodePoint) \ | 309 V(StringFromCodePoint) \ |
| 310 V(StringIndexOf) \ |
310 V(CheckBounds) \ | 311 V(CheckBounds) \ |
311 V(CheckIf) \ | 312 V(CheckIf) \ |
312 V(CheckMaps) \ | 313 V(CheckMaps) \ |
313 V(CheckNumber) \ | 314 V(CheckNumber) \ |
314 V(CheckInternalizedString) \ | 315 V(CheckInternalizedString) \ |
315 V(CheckReceiver) \ | 316 V(CheckReceiver) \ |
316 V(CheckString) \ | 317 V(CheckString) \ |
317 V(CheckSmi) \ | 318 V(CheckSmi) \ |
318 V(CheckHeapObject) \ | 319 V(CheckHeapObject) \ |
319 V(CheckFloat64Hole) \ | 320 V(CheckFloat64Hole) \ |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 } | 813 } |
813 }; | 814 }; |
814 | 815 |
815 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 816 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
816 | 817 |
817 } // namespace compiler | 818 } // namespace compiler |
818 } // namespace internal | 819 } // namespace internal |
819 } // namespace v8 | 820 } // namespace v8 |
820 | 821 |
821 #endif // V8_COMPILER_OPCODES_H_ | 822 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |