| 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_DEOPTIMIZER_H_ | 5 #ifndef V8_DEOPTIMIZER_H_ |
| 6 #define V8_DEOPTIMIZER_H_ | 6 #define V8_DEOPTIMIZER_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | |
| 9 | |
| 10 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 11 #include "src/macro-assembler.h" | 9 #include "src/macro-assembler.h" |
| 12 | 10 |
| 13 | 11 |
| 14 namespace v8 { | 12 namespace v8 { |
| 15 namespace internal { | 13 namespace internal { |
| 16 | 14 |
| 17 class FrameDescription; | 15 class FrameDescription; |
| 18 class TranslationIterator; | 16 class TranslationIterator; |
| 19 class DeoptimizedFrameInfo; | 17 class DeoptimizedFrameInfo; |
| (...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 Object** expression_stack_; | 1137 Object** expression_stack_; |
| 1140 int source_position_; | 1138 int source_position_; |
| 1141 | 1139 |
| 1142 friend class Deoptimizer; | 1140 friend class Deoptimizer; |
| 1143 }; | 1141 }; |
| 1144 | 1142 |
| 1145 } // namespace internal | 1143 } // namespace internal |
| 1146 } // namespace v8 | 1144 } // namespace v8 |
| 1147 | 1145 |
| 1148 #endif // V8_DEOPTIMIZER_H_ | 1146 #endif // V8_DEOPTIMIZER_H_ |
| OLD | NEW |