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 <cstring> | 8 #include <cstring> |
9 #include <iosfwd> | 9 #include <iosfwd> |
10 | 10 |
11 #include "src/v8.h" | |
12 | |
13 #include "src/allocation.h" | 11 #include "src/allocation.h" |
14 #include "src/base/bits.h" | 12 #include "src/base/bits.h" |
15 #include "src/bit-vector.h" | 13 #include "src/bit-vector.h" |
16 #include "src/code-stubs.h" | 14 #include "src/code-stubs.h" |
17 #include "src/conversions.h" | 15 #include "src/conversions.h" |
18 #include "src/deoptimizer.h" | 16 #include "src/deoptimizer.h" |
19 #include "src/hydrogen-types.h" | 17 #include "src/hydrogen-types.h" |
20 #include "src/small-pointer-list.h" | 18 #include "src/small-pointer-list.h" |
21 #include "src/unique.h" | 19 #include "src/unique.h" |
22 #include "src/utils.h" | 20 #include "src/utils.h" |
(...skipping 8035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8058 }; | 8056 }; |
8059 | 8057 |
8060 | 8058 |
8061 | 8059 |
8062 #undef DECLARE_INSTRUCTION | 8060 #undef DECLARE_INSTRUCTION |
8063 #undef DECLARE_CONCRETE_INSTRUCTION | 8061 #undef DECLARE_CONCRETE_INSTRUCTION |
8064 | 8062 |
8065 } } // namespace v8::internal | 8063 } } // namespace v8::internal |
8066 | 8064 |
8067 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 8065 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |