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

Unified Diff: src/full-codegen/full-codegen.h

Issue 2618553004: [compiler] Collect eager inner functions for compilation during renumbering. (Closed)
Patch Set: Address comments and remove field from ParseInfo Created 3 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/full-codegen/arm64/full-codegen-arm64.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/full-codegen/full-codegen.h
diff --git a/src/full-codegen/full-codegen.h b/src/full-codegen/full-codegen.h
index fbcf6c3a397457a6b36d7cf23fff8505dc207403..3635e29f6be09c0b35f20866a71048a59f014182 100644
--- a/src/full-codegen/full-codegen.h
+++ b/src/full-codegen/full-codegen.h
@@ -25,7 +25,6 @@ class CompilationInfo;
class CompilationJob;
class JumpPatchSite;
class Scope;
-enum class LazyCompilationMode;
// -----------------------------------------------------------------------------
// Full code generator.
@@ -33,15 +32,13 @@ enum class LazyCompilationMode;
class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> {
public:
FullCodeGenerator(MacroAssembler* masm, CompilationInfo* info,
- uintptr_t stack_limit, LazyCompilationMode mode);
+ uintptr_t stack_limit);
void Initialize(uintptr_t stack_limit);
- static CompilationJob* NewCompilationJob(CompilationInfo* info,
- LazyCompilationMode mode);
+ static CompilationJob* NewCompilationJob(CompilationInfo* info);
- static bool MakeCode(CompilationInfo* info, uintptr_t stack_limit,
- LazyCompilationMode mode);
+ static bool MakeCode(CompilationInfo* info, uintptr_t stack_limit);
static bool MakeCode(CompilationInfo* info);
// Encode bailout state and pc-offset as a BitField<type, start, size>.
@@ -802,7 +799,6 @@ class FullCodeGenerator final : public AstVisitor<FullCodeGenerator> {
MacroAssembler* masm_;
CompilationInfo* info_;
Isolate* isolate_;
- LazyCompilationMode compilation_mode_;
Zone* zone_;
Scope* scope_;
Label return_label_;
« no previous file with comments | « src/full-codegen/arm64/full-codegen-arm64.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698