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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 10198028: Remove some more uses of named temporaries. (Closed) Base URL: https://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 | « no previous file | 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
diff --git a/runtime/vm/flow_graph_builder.h b/runtime/vm/flow_graph_builder.h
index bf3934b093493bbe00c185dc0e001619d638d1d2..eebda25c53d3b28c1372fac6f080f0ca4450aa5c 100644
--- a/runtime/vm/flow_graph_builder.h
+++ b/runtime/vm/flow_graph_builder.h
@@ -142,15 +142,13 @@ class EffectGraphVisitor : public AstNodeVisitor {
// 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.
- Value* BuildFactoryTypeArguments(ConstructorCallNode* node,
- intptr_t start_index);
+ Definition* BuildFactoryTypeArguments(ConstructorCallNode* node);
// Creates a possibly uninstantiated type argument vector and the type
// argument vector of the instantiator (two values in 'args') used in
// preparation of a constructor call.
// May be called only if allocating an object of a parameterized class.
void BuildConstructorTypeArguments(ConstructorCallNode* node,
- intptr_t start_index,
ZoneGrowableArray<Value*>* args);
// Returns the value of the type arguments of the instantiator.
@@ -187,11 +185,8 @@ class EffectGraphVisitor : public AstNodeVisitor {
virtual void CompiletimeStringInterpolation(const Function& interpol_func,
const Array& literals);
- TempVal* BuildObjectAllocation(ConstructorCallNode* node,
- int start_index);
- void BuildConstructorCall(ConstructorCallNode* node,
- int start_index,
- Value* alloc_value);
+ Definition* BuildObjectAllocation(ConstructorCallNode* node);
+ void BuildConstructorCall(ConstructorCallNode* node, Value* alloc_value);
void BuildStoreContext(const LocalVariable& variable);
void BuildLoadContext(const LocalVariable& variable);
« no previous file with comments | « no previous file | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698