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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 1569613002: Add a token position to LoadLocal, StoreLocal, and LoadStaticField instructions (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 5511db4dd47f4ca771feb8ec92a8b6260a3db0ca..d448a56a32cc7cbe3b77558674ab251e2f37f0d2 100644
--- a/runtime/vm/flow_graph_builder.h
+++ b/runtime/vm/flow_graph_builder.h
@@ -304,8 +304,11 @@ class EffectGraphVisitor : public AstNodeVisitor {
Definition* BuildStoreExprTemp(Value* value);
Definition* BuildLoadExprTemp();
- Definition* BuildStoreLocal(const LocalVariable& local, Value* value);
- Definition* BuildLoadLocal(const LocalVariable& local);
+ Definition* BuildStoreLocal(const LocalVariable& local,
+ Value* value,
+ intptr_t token_pos = Scanner::kNoSourcePos);
+ Definition* BuildLoadLocal(const LocalVariable& local,
+ intptr_t token_pos = Scanner::kNoSourcePos);
LoadLocalInstr* BuildLoadThisVar(LocalScope* scope);
LoadFieldInstr* BuildNativeGetter(
NativeBodyNode* node,
« 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