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_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ |
6 #define V8_HYDROGEN_INSTRUCTIONS_H_ | 6 #define V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ |
7 | 7 |
8 #include <cstring> | 8 #include <cstring> |
9 #include <iosfwd> | 9 #include <iosfwd> |
10 | 10 |
11 #include "src/allocation.h" | 11 #include "src/allocation.h" |
12 #include "src/base/bits.h" | 12 #include "src/base/bits.h" |
13 #include "src/bit-vector.h" | 13 #include "src/bit-vector.h" |
14 #include "src/code-stubs.h" | 14 #include "src/code-stubs.h" |
15 #include "src/conversions.h" | 15 #include "src/conversions.h" |
| 16 #include "src/crankshaft/hydrogen-types.h" |
| 17 #include "src/crankshaft/unique.h" |
16 #include "src/deoptimizer.h" | 18 #include "src/deoptimizer.h" |
17 #include "src/hydrogen-types.h" | |
18 #include "src/small-pointer-list.h" | 19 #include "src/small-pointer-list.h" |
19 #include "src/unique.h" | |
20 #include "src/utils.h" | 20 #include "src/utils.h" |
21 #include "src/zone.h" | 21 #include "src/zone.h" |
22 | 22 |
23 namespace v8 { | 23 namespace v8 { |
24 namespace internal { | 24 namespace internal { |
25 | 25 |
26 // Forward declarations. | 26 // Forward declarations. |
27 struct ChangesOf; | 27 struct ChangesOf; |
28 class HBasicBlock; | 28 class HBasicBlock; |
29 class HDiv; | 29 class HDiv; |
(...skipping 7942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7972 }; | 7972 }; |
7973 | 7973 |
7974 | 7974 |
7975 | 7975 |
7976 #undef DECLARE_INSTRUCTION | 7976 #undef DECLARE_INSTRUCTION |
7977 #undef DECLARE_CONCRETE_INSTRUCTION | 7977 #undef DECLARE_CONCRETE_INSTRUCTION |
7978 | 7978 |
7979 } // namespace internal | 7979 } // namespace internal |
7980 } // namespace v8 | 7980 } // namespace v8 |
7981 | 7981 |
7982 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 7982 #endif // V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |