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

Unified Diff: runtime/vm/flow_graph.h

Issue 2856543002: Use off-heap data for class check instructions (Closed)
Patch Set: Feedback from Slava: rejig inheritance of CallTargets Created 3 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
Index: runtime/vm/flow_graph.h
diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h
index 5cfd9310d7724f5df5d60d820db272fcd7217616..705f6743a6004028fe20aadbfa08396b546beae9 100644
--- a/runtime/vm/flow_graph.h
+++ b/runtime/vm/flow_graph.h
@@ -133,6 +133,11 @@ class FlowGraph : public ZoneAllocated {
Instruction* current,
Instruction* replacement);
+ Instruction* CreateCheckClass(Definition* to_check,
+ const Cids& cids,
+ intptr_t deopt_id,
+ TokenPosition token_pos);
+
intptr_t current_ssa_temp_index() const { return current_ssa_temp_index_; }
void set_current_ssa_temp_index(intptr_t index) {
current_ssa_temp_index_ = index;

Powered by Google App Engine
This is Rietveld 408576698