| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_HYDROGEN_INSTRUCTIONS_H_ | 5 #ifndef V8_HYDROGEN_INSTRUCTIONS_H_ |
| 6 #define V8_HYDROGEN_INSTRUCTIONS_H_ | 6 #define V8_HYDROGEN_INSTRUCTIONS_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 | 9 |
| 10 #include "src/v8.h" | 10 #include "src/v8.h" |
| 11 | 11 |
| 12 #include "src/allocation.h" | 12 #include "src/allocation.h" |
| 13 #include "src/base/bits.h" | 13 #include "src/base/bits.h" |
| 14 #include "src/bit-vector.h" |
| 14 #include "src/code-stubs.h" | 15 #include "src/code-stubs.h" |
| 15 #include "src/conversions.h" | 16 #include "src/conversions.h" |
| 16 #include "src/data-flow.h" | |
| 17 #include "src/deoptimizer.h" | 17 #include "src/deoptimizer.h" |
| 18 #include "src/hydrogen-types.h" | 18 #include "src/hydrogen-types.h" |
| 19 #include "src/small-pointer-list.h" | 19 #include "src/small-pointer-list.h" |
| 20 #include "src/unique.h" | 20 #include "src/unique.h" |
| 21 #include "src/utils.h" | 21 #include "src/utils.h" |
| 22 #include "src/zone.h" | 22 #include "src/zone.h" |
| 23 | 23 |
| 24 namespace v8 { | 24 namespace v8 { |
| 25 namespace internal { | 25 namespace internal { |
| 26 | 26 |
| (...skipping 7884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7911 }; | 7911 }; |
| 7912 | 7912 |
| 7913 | 7913 |
| 7914 | 7914 |
| 7915 #undef DECLARE_INSTRUCTION | 7915 #undef DECLARE_INSTRUCTION |
| 7916 #undef DECLARE_CONCRETE_INSTRUCTION | 7916 #undef DECLARE_CONCRETE_INSTRUCTION |
| 7917 | 7917 |
| 7918 } } // namespace v8::internal | 7918 } } // namespace v8::internal |
| 7919 | 7919 |
| 7920 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 7920 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
| OLD | NEW |