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

Unified Diff: runtime/vm/flow_graph_compiler.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_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 7aaafe43a99d98bfb465b0d341b96a1da905e95d..90abda5405448f99987e3e1b31fbe5d59efc6420 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -573,11 +573,6 @@ class FlowGraphCompiler : public ValueObject {
bool may_reoptimize() const { return may_reoptimize_; }
- // Returns 'sorted' array in decreasing count order.
- static void SortICDataByCount(const ICData& ic_data,
- GrowableArray<CidRangeTarget>* sorted,
- bool drop_smi);
-
// Use in unoptimized compilation to preserve/reuse ICData.
const ICData* GetOrAddInstanceCallICData(intptr_t deopt_id,
const String& target_name,
@@ -674,7 +669,7 @@ class FlowGraphCompiler : public ValueObject {
// Returns new class-id bias.
int EmitTestAndCallCheckCid(Label* next_label,
- const CidRangeTarget& target,
+ const CidRange& range,
int bias);
// DBC handles type tests differently from all other architectures due

Powered by Google App Engine
This is Rietveld 408576698