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

Unified Diff: src/lithium.h

Issue 17572011: Split HPhase for Lithium and Hydrogen using common CompilationPhase base. (Closed) Base URL: git@github.com:v8/v8.git@master
Patch Set: Created 7 years, 6 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
Index: src/lithium.h
diff --git a/src/lithium.h b/src/lithium.h
index ab34453beff6015a37dc9a00afc02e4251f93414..416a82417a33c72c559775e2f49e8d34df8eabd3 100644
--- a/src/lithium.h
+++ b/src/lithium.h
@@ -778,6 +778,18 @@ enum NumberUntagDMode {
};
+class LPhase : public CompilationPhase {
+ public:
+ LPhase(const char* name, LAllocator* allocator);
+ LPhase(const char* name, LChunk* chunk);
+ ~LPhase();
+
+ private:
+ LAllocator* allocator_;
+ LChunk* chunk_;
+};
+
+
} } // namespace v8::internal
#endif // V8_LITHIUM_H_
« src/compiler.cc ('K') | « src/ia32/lithium-ia32.cc ('k') | src/lithium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698