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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 10354019: Removing all incr-op nodes. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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/code_generator_x64.cc ('k') | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_builder.h
===================================================================
--- runtime/vm/flow_graph_builder.h (revision 7300)
+++ runtime/vm/flow_graph_builder.h (working copy)
@@ -117,26 +117,6 @@
void TranslateArgumentList(const ArgumentListNode& node,
ZoneGrowableArray<Value*>* values);
- // Build the load part of a instance field increment. Translates the
- // receiver and loads the value. The receiver will be returned in the
- // output parameter 'receiver'.
- Definition* BuildIncrOpFieldLoad(IncrOpInstanceFieldNode* node,
- Value** receiver);
-
- // Build the load part of an indexed increment. Translates the receiver
- // and index and loads the value. The receiver will be returned in the
- // output parameter 'receiver' and the index will be returned in the
- // output parameter 'index'..
- Definition* BuildIncrOpIndexedLoad(IncrOpIndexedNode* node,
- Value** receiver,
- Value** index);
-
- // Build the increment part of an increment operation (add or subtract 1).
- // Consumes the original value and produces the value +/- 1.
- Definition* BuildIncrOpIncrement(Token::Kind kind,
- intptr_t token_index,
- Value* original);
-
// Creates an instantiated type argument vector used in preparation of a
// factory call.
// May be called only if allocating an object of a parameterized class.
@@ -221,8 +201,6 @@
// Visit functions overridden by this class.
virtual void VisitLiteralNode(LiteralNode* node);
virtual void VisitAssignableNode(AssignableNode* node);
- virtual void VisitIncrOpInstanceFieldNode(IncrOpInstanceFieldNode* node);
- virtual void VisitIncrOpIndexedNode(IncrOpIndexedNode* node);
virtual void VisitConstructorCallNode(ConstructorCallNode* node);
virtual void VisitBinaryOpNode(BinaryOpNode* node);
virtual void VisitConditionalExprNode(ConditionalExprNode* node);
« no previous file with comments | « runtime/vm/code_generator_x64.cc ('k') | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698