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_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ | 5 #ifndef V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ |
6 #define V8_CRANKSHAFT_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/ast/ast.h" | 12 #include "src/ast/ast.h" |
13 #include "src/base/bits.h" | 13 #include "src/base/bits.h" |
14 #include "src/bit-vector.h" | 14 #include "src/bit-vector.h" |
15 #include "src/code-stubs.h" | 15 #include "src/code-stubs.h" |
16 #include "src/conversions.h" | 16 #include "src/conversions.h" |
17 #include "src/crankshaft/hydrogen-types.h" | 17 #include "src/crankshaft/hydrogen-types.h" |
18 #include "src/crankshaft/unique.h" | 18 #include "src/crankshaft/unique.h" |
19 #include "src/deoptimizer.h" | 19 #include "src/deoptimizer.h" |
20 #include "src/globals.h" | 20 #include "src/globals.h" |
21 #include "src/small-pointer-list.h" | 21 #include "src/small-pointer-list.h" |
22 #include "src/utils.h" | 22 #include "src/utils.h" |
23 #include "src/zone.h" | 23 #include "src/zone/zone.h" |
24 | 24 |
25 namespace v8 { | 25 namespace v8 { |
26 namespace internal { | 26 namespace internal { |
27 | 27 |
28 // Forward declarations. | 28 // Forward declarations. |
29 struct ChangesOf; | 29 struct ChangesOf; |
30 class HBasicBlock; | 30 class HBasicBlock; |
31 class HDiv; | 31 class HDiv; |
32 class HEnvironment; | 32 class HEnvironment; |
33 class HInferRepresentationPhase; | 33 class HInferRepresentationPhase; |
(...skipping 7003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7037 bool IsDeletable() const override { return true; } | 7037 bool IsDeletable() const override { return true; } |
7038 }; | 7038 }; |
7039 | 7039 |
7040 #undef DECLARE_INSTRUCTION | 7040 #undef DECLARE_INSTRUCTION |
7041 #undef DECLARE_CONCRETE_INSTRUCTION | 7041 #undef DECLARE_CONCRETE_INSTRUCTION |
7042 | 7042 |
7043 } // namespace internal | 7043 } // namespace internal |
7044 } // namespace v8 | 7044 } // namespace v8 |
7045 | 7045 |
7046 #endif // V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ | 7046 #endif // V8_CRANKSHAFT_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |