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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 V(Allocate) \ | 318 V(Allocate) \ |
319 V(LoadField) \ | 319 V(LoadField) \ |
320 V(LoadBuffer) \ | 320 V(LoadBuffer) \ |
321 V(LoadElement) \ | 321 V(LoadElement) \ |
322 V(LoadTypedElement) \ | 322 V(LoadTypedElement) \ |
323 V(StoreField) \ | 323 V(StoreField) \ |
324 V(StoreBuffer) \ | 324 V(StoreBuffer) \ |
325 V(StoreElement) \ | 325 V(StoreElement) \ |
326 V(StoreTypedElement) \ | 326 V(StoreTypedElement) \ |
327 V(ObjectIsCallable) \ | 327 V(ObjectIsCallable) \ |
| 328 V(ObjectIsNonCallable) \ |
328 V(ObjectIsNumber) \ | 329 V(ObjectIsNumber) \ |
329 V(ObjectIsReceiver) \ | 330 V(ObjectIsReceiver) \ |
330 V(ObjectIsSmi) \ | 331 V(ObjectIsSmi) \ |
331 V(ObjectIsString) \ | 332 V(ObjectIsString) \ |
332 V(ObjectIsUndetectable) \ | 333 V(ObjectIsUndetectable) \ |
333 V(NewRestParameterElements) \ | 334 V(NewRestParameterElements) \ |
334 V(NewUnmappedArgumentsElements) \ | 335 V(NewUnmappedArgumentsElements) \ |
335 V(ArrayBufferWasNeutered) \ | 336 V(ArrayBufferWasNeutered) \ |
336 V(EnsureWritableFastElements) \ | 337 V(EnsureWritableFastElements) \ |
337 V(MaybeGrowFastElements) \ | 338 V(MaybeGrowFastElements) \ |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 } | 808 } |
808 }; | 809 }; |
809 | 810 |
810 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 811 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
811 | 812 |
812 } // namespace compiler | 813 } // namespace compiler |
813 } // namespace internal | 814 } // namespace internal |
814 } // namespace v8 | 815 } // namespace v8 |
815 | 816 |
816 #endif // V8_COMPILER_OPCODES_H_ | 817 #endif // V8_COMPILER_OPCODES_H_ |
OLD | NEW |