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_COMPILER_H_ | 5 #ifndef V8_COMPILER_H_ |
6 #define V8_COMPILER_H_ | 6 #define V8_COMPILER_H_ |
7 | 7 |
8 #include "allocation.h" | 8 #include "allocation.h" |
9 #include "ast.h" | 9 #include "ast.h" |
10 #include "zone.h" | 10 #include "zone.h" |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 } | 136 } |
137 | 137 |
138 void MarkAsRequiresFrame() { | 138 void MarkAsRequiresFrame() { |
139 flags_ |= RequiresFrame::encode(true); | 139 flags_ |= RequiresFrame::encode(true); |
140 } | 140 } |
141 | 141 |
142 bool requires_frame() const { | 142 bool requires_frame() const { |
143 return RequiresFrame::decode(flags_); | 143 return RequiresFrame::decode(flags_); |
144 } | 144 } |
145 | 145 |
146 void MarkMustNotHaveEagerFrame() { | |
147 flags_ |= MustNotHaveEagerFrame::encode(true); | |
148 } | |
149 | |
150 bool GetMustNotHaveEagerFrame() const { | |
151 return MustNotHaveEagerFrame::decode(flags_); | |
152 } | |
153 | |
154 void SetParseRestriction(ParseRestriction restriction) { | 146 void SetParseRestriction(ParseRestriction restriction) { |
155 flags_ = ParseRestricitonField::update(flags_, restriction); | 147 flags_ = ParseRestricitonField::update(flags_, restriction); |
156 } | 148 } |
157 | 149 |
158 ParseRestriction parse_restriction() const { | 150 ParseRestriction parse_restriction() const { |
159 return ParseRestricitonField::decode(flags_); | 151 return ParseRestricitonField::decode(flags_); |
160 } | 152 } |
161 | 153 |
162 void SetFunction(FunctionLiteral* literal) { | 154 void SetFunction(FunctionLiteral* literal) { |
163 ASSERT(function_ == NULL); | 155 ASSERT(function_ == NULL); |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 // If the compiled code contains calls that require building a frame | 361 // If the compiled code contains calls that require building a frame |
370 class IsDeferredCalling: public BitField<bool, 9, 1> {}; | 362 class IsDeferredCalling: public BitField<bool, 9, 1> {}; |
371 // If the compiled code contains calls that require building a frame | 363 // If the compiled code contains calls that require building a frame |
372 class IsNonDeferredCalling: public BitField<bool, 10, 1> {}; | 364 class IsNonDeferredCalling: public BitField<bool, 10, 1> {}; |
373 // If the compiled code saves double caller registers that it clobbers. | 365 // If the compiled code saves double caller registers that it clobbers. |
374 class SavesCallerDoubles: public BitField<bool, 11, 1> {}; | 366 class SavesCallerDoubles: public BitField<bool, 11, 1> {}; |
375 // If the set of valid statements is restricted. | 367 // If the set of valid statements is restricted. |
376 class ParseRestricitonField: public BitField<ParseRestriction, 12, 1> {}; | 368 class ParseRestricitonField: public BitField<ParseRestriction, 12, 1> {}; |
377 // If the function requires a frame (for unspecified reasons) | 369 // If the function requires a frame (for unspecified reasons) |
378 class RequiresFrame: public BitField<bool, 13, 1> {}; | 370 class RequiresFrame: public BitField<bool, 13, 1> {}; |
379 // If the function cannot build a frame (for unspecified reasons) | |
380 class MustNotHaveEagerFrame: public BitField<bool, 14, 1> {}; | |
381 | 371 |
382 unsigned flags_; | 372 unsigned flags_; |
383 | 373 |
384 // Fields filled in by the compilation pipeline. | 374 // Fields filled in by the compilation pipeline. |
385 // AST filled in by the parser. | 375 // AST filled in by the parser. |
386 FunctionLiteral* function_; | 376 FunctionLiteral* function_; |
387 // The scope of the function literal as a convenience. Set to indicate | 377 // The scope of the function literal as a convenience. Set to indicate |
388 // that scopes have been analyzed. | 378 // that scopes have been analyzed. |
389 Scope* scope_; | 379 Scope* scope_; |
390 // The global scope provided as a convenience. | 380 // The global scope provided as a convenience. |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
686 unsigned info_zone_start_allocation_size_; | 676 unsigned info_zone_start_allocation_size_; |
687 ElapsedTimer timer_; | 677 ElapsedTimer timer_; |
688 | 678 |
689 DISALLOW_COPY_AND_ASSIGN(CompilationPhase); | 679 DISALLOW_COPY_AND_ASSIGN(CompilationPhase); |
690 }; | 680 }; |
691 | 681 |
692 | 682 |
693 } } // namespace v8::internal | 683 } } // namespace v8::internal |
694 | 684 |
695 #endif // V8_COMPILER_H_ | 685 #endif // V8_COMPILER_H_ |
OLD | NEW |