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

Unified Diff: runtime/vm/intermediate_language.h

Issue 1263573010: Use zone when allocating handles in FlowGraphCompiler assembling operations. Add profiling VM tags… (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: sync Created 5 years, 4 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_x64.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 c9436800f88e6818215170134db905fc7623ed6d..44919ffa9451c45b08ed18efcbd1acac46d62809 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -1748,7 +1748,7 @@ class Definition : public Instruction {
// - non-constant sentinel
// - a constant (any non-sentinel value)
// - unknown sentinel
- Object& constant_value() const { return constant_value_; }
+ Object& constant_value();
virtual void InferRange(RangeAnalysis* analysis, Range* range);
@@ -1801,7 +1801,7 @@ class Definition : public Instruction {
Value* input_use_list_;
Value* env_use_list_;
- Object& constant_value_;
+ Object* constant_value_;
DISALLOW_COPY_AND_ASSIGN(Definition);
};
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698