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/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/deoptimize-reason.h" | 9 #include "src/deoptimize-reason.h" |
10 #include "src/macro-assembler.h" | 10 #include "src/macro-assembler.h" |
11 | 11 #include "src/source-position.h" |
12 | 12 |
13 namespace v8 { | 13 namespace v8 { |
14 namespace internal { | 14 namespace internal { |
15 | 15 |
16 class FrameDescription; | 16 class FrameDescription; |
17 class TranslationIterator; | 17 class TranslationIterator; |
18 class DeoptimizedFrameInfo; | 18 class DeoptimizedFrameInfo; |
19 class TranslatedState; | 19 class TranslatedState; |
20 class RegisterValues; | 20 class RegisterValues; |
21 | 21 |
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 std::vector<Handle<Object> > expression_stack_; | 1068 std::vector<Handle<Object> > expression_stack_; |
1069 int source_position_; | 1069 int source_position_; |
1070 | 1070 |
1071 friend class Deoptimizer; | 1071 friend class Deoptimizer; |
1072 }; | 1072 }; |
1073 | 1073 |
1074 } // namespace internal | 1074 } // namespace internal |
1075 } // namespace v8 | 1075 } // namespace v8 |
1076 | 1076 |
1077 #endif // V8_DEOPTIMIZER_H_ | 1077 #endif // V8_DEOPTIMIZER_H_ |
OLD | NEW |