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

Unified Diff: runtime/vm/intermediate_language.h

Issue 15529003: A few simple cleanups. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 | « runtime/vm/flow_graph_compiler.cc ('k') | runtime/vm/intermediate_language.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.h
diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
index f881959c66c3365f9fab522ec13e37ba22c566a0..20d201203ac356d708712f01fe6d210e485aee37 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -1070,7 +1070,6 @@ class BlockEntryInstr : public Instruction {
virtual intptr_t PredecessorCount() const = 0;
virtual BlockEntryInstr* PredecessorAt(intptr_t index) const = 0;
- virtual void PrepareEntry(FlowGraphCompiler* compiler) = 0;
intptr_t preorder_number() const { return preorder_number_; }
void set_preorder_number(intptr_t number) { preorder_number_ = number; }
@@ -1292,8 +1291,6 @@ class GraphEntryInstr : public BlockEntryInstr {
CatchBlockEntryInstr* GetCatchEntry(intptr_t index);
- virtual void PrepareEntry(FlowGraphCompiler* compiler);
-
GrowableArray<Definition*>* initial_definitions() {
return &initial_definitions_;
}
@@ -1359,8 +1356,6 @@ class JoinEntryInstr : public BlockEntryInstr {
ZoneGrowableArray<PhiInstr*>* phis() const { return phis_; }
- virtual void PrepareEntry(FlowGraphCompiler* compiler);
-
void InsertPhi(intptr_t var_index, intptr_t var_count);
void RemoveDeadPhis(Definition* replacement);
@@ -1429,8 +1424,6 @@ class TargetEntryInstr : public BlockEntryInstr {
return predecessor_;
}
- virtual void PrepareEntry(FlowGraphCompiler* compiler);
-
virtual void PrintTo(BufferFormatter* f) const;
private:
@@ -1478,8 +1471,6 @@ class CatchBlockEntryInstr : public BlockEntryInstr {
return &initial_definitions_;
}
- virtual void PrepareEntry(FlowGraphCompiler* compiler);
-
virtual void PrintTo(BufferFormatter* f) const;
private:
« no previous file with comments | « runtime/vm/flow_graph_compiler.cc ('k') | runtime/vm/intermediate_language.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698