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

Unified Diff: src/hydrogen.cc

Issue 10701141: Remove duplicated LChunk code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix nits. Created 8 years, 5 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/hydrogen.h ('k') | src/ia32/lithium-ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index 3ce76c1ef19a2a2be7b70dac589a5ee5761a9fea..60889f009805a2dec644596069e3844980f3148f 100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -9266,7 +9266,7 @@ void HTracer::TraceCompilation(FunctionLiteral* function) {
}
-void HTracer::TraceLithium(const char* name, LChunk* chunk) {
+void HTracer::TraceLithium(const char* name, LChunkBase* chunk) {
Trace(name, chunk->graph(), chunk);
}
@@ -9276,7 +9276,7 @@ void HTracer::TraceHydrogen(const char* name, HGraph* graph) {
}
-void HTracer::Trace(const char* name, HGraph* graph, LChunk* chunk) {
+void HTracer::Trace(const char* name, HGraph* graph, LChunkBase* chunk) {
Tag tag(this, "cfg");
PrintStringProperty("name", name);
const ZoneList<HBasicBlock*>* blocks = graph->blocks();
@@ -9538,7 +9538,7 @@ const char* const HPhase::kTotal = "Total";
void HPhase::Begin(const char* name,
HGraph* graph,
- LChunk* chunk,
+ LChunkBase* chunk,
LAllocator* allocator) {
name_ = name;
graph_ = graph;
« no previous file with comments | « src/hydrogen.h ('k') | src/ia32/lithium-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698