| 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 "v8.h" | 8 #include "src/v8.h" |
| 9 | 9 |
| 10 #include "allocation.h" | 10 #include "src/allocation.h" |
| 11 #include "code-stubs.h" | 11 #include "src/code-stubs.h" |
| 12 #include "conversions.h" | 12 #include "src/conversions.h" |
| 13 #include "data-flow.h" | 13 #include "src/data-flow.h" |
| 14 #include "deoptimizer.h" | 14 #include "src/deoptimizer.h" |
| 15 #include "hydrogen-types.h" | 15 #include "src/hydrogen-types.h" |
| 16 #include "small-pointer-list.h" | 16 #include "src/small-pointer-list.h" |
| 17 #include "string-stream.h" | 17 #include "src/string-stream.h" |
| 18 #include "unique.h" | 18 #include "src/unique.h" |
| 19 #include "utils.h" | 19 #include "src/utils.h" |
| 20 #include "zone.h" | 20 #include "src/zone.h" |
| 21 | 21 |
| 22 namespace v8 { | 22 namespace v8 { |
| 23 namespace internal { | 23 namespace internal { |
| 24 | 24 |
| 25 // Forward declarations. | 25 // Forward declarations. |
| 26 class HBasicBlock; | 26 class HBasicBlock; |
| 27 class HDiv; | 27 class HDiv; |
| 28 class HEnvironment; | 28 class HEnvironment; |
| 29 class HInferRepresentationPhase; | 29 class HInferRepresentationPhase; |
| 30 class HInstruction; | 30 class HInstruction; |
| (...skipping 7639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7670 virtual bool IsDeletable() const V8_OVERRIDE { return true; } | 7670 virtual bool IsDeletable() const V8_OVERRIDE { return true; } |
| 7671 }; | 7671 }; |
| 7672 | 7672 |
| 7673 | 7673 |
| 7674 #undef DECLARE_INSTRUCTION | 7674 #undef DECLARE_INSTRUCTION |
| 7675 #undef DECLARE_CONCRETE_INSTRUCTION | 7675 #undef DECLARE_CONCRETE_INSTRUCTION |
| 7676 | 7676 |
| 7677 } } // namespace v8::internal | 7677 } } // namespace v8::internal |
| 7678 | 7678 |
| 7679 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 7679 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
| OLD | NEW |