Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: src/ast.h

Issue 549158: Refactor the selection of code generator (toplevel or optimizing) and... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.h
===================================================================
--- src/ast.h (revision 3711)
+++ src/ast.h (working copy)
@@ -1324,7 +1324,7 @@
loop_nesting_(0),
function_token_position_(RelocInfo::kNoPosition),
inferred_name_(Heap::empty_string()),
- try_fast_codegen_(false) {
+ try_full_codegen_(false) {
#ifdef DEBUG
already_compiled_ = false;
#endif
@@ -1364,8 +1364,8 @@
inferred_name_ = inferred_name;
}
- bool try_fast_codegen() { return try_fast_codegen_; }
- void set_try_fast_codegen(bool flag) { try_fast_codegen_ = flag; }
+ bool try_full_codegen() { return try_full_codegen_; }
+ void set_try_full_codegen(bool flag) { try_full_codegen_ = flag; }
#ifdef DEBUG
void mark_as_compiled() {
@@ -1389,7 +1389,7 @@
int loop_nesting_;
int function_token_position_;
Handle<String> inferred_name_;
- bool try_fast_codegen_;
+ bool try_full_codegen_;
#ifdef DEBUG
bool already_compiled_;
#endif
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698