| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 V(Allocate) \ | 326 V(Allocate) \ |
| 327 V(LoadField) \ | 327 V(LoadField) \ |
| 328 V(LoadBuffer) \ | 328 V(LoadBuffer) \ |
| 329 V(LoadElement) \ | 329 V(LoadElement) \ |
| 330 V(LoadTypedElement) \ | 330 V(LoadTypedElement) \ |
| 331 V(StoreField) \ | 331 V(StoreField) \ |
| 332 V(StoreBuffer) \ | 332 V(StoreBuffer) \ |
| 333 V(StoreElement) \ | 333 V(StoreElement) \ |
| 334 V(StoreTypedElement) \ | 334 V(StoreTypedElement) \ |
| 335 V(ObjectIsDetectableCallable) \ | 335 V(ObjectIsDetectableCallable) \ |
| 336 V(ObjectIsNaN) \ |
| 336 V(ObjectIsNonCallable) \ | 337 V(ObjectIsNonCallable) \ |
| 337 V(ObjectIsNumber) \ | 338 V(ObjectIsNumber) \ |
| 338 V(ObjectIsReceiver) \ | 339 V(ObjectIsReceiver) \ |
| 339 V(ObjectIsSmi) \ | 340 V(ObjectIsSmi) \ |
| 340 V(ObjectIsString) \ | 341 V(ObjectIsString) \ |
| 341 V(ObjectIsUndetectable) \ | 342 V(ObjectIsUndetectable) \ |
| 342 V(ArgumentsFrame) \ | 343 V(ArgumentsFrame) \ |
| 343 V(ArgumentsLength) \ | 344 V(ArgumentsLength) \ |
| 344 V(NewUnmappedArgumentsElements) \ | 345 V(NewUnmappedArgumentsElements) \ |
| 345 V(ArrayBufferWasNeutered) \ | 346 V(ArrayBufferWasNeutered) \ |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 } | 789 } |
| 789 }; | 790 }; |
| 790 | 791 |
| 791 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); | 792 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, IrOpcode::Value); |
| 792 | 793 |
| 793 } // namespace compiler | 794 } // namespace compiler |
| 794 } // namespace internal | 795 } // namespace internal |
| 795 } // namespace v8 | 796 } // namespace v8 |
| 796 | 797 |
| 797 #endif // V8_COMPILER_OPCODES_H_ | 798 #endif // V8_COMPILER_OPCODES_H_ |
| OLD | NEW |