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

Unified Diff: runtime/vm/flow_graph.h

Issue 313403004: Fix deferred library code disabling for inlined functions. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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
===================================================================
--- runtime/vm/flow_graph.h (revision 37101)
+++ runtime/vm/flow_graph.h (working copy)
@@ -216,11 +216,18 @@
static void AddToGuardedFields(ZoneGrowableArray<const Field*>* array,
const Field* field);
+ static void AddToDeferredPrefixes(
+ ZoneGrowableArray<const LibraryPrefix*>* to,
+ ZoneGrowableArray<const LibraryPrefix*>* from);
ZoneGrowableArray<const Field*>* guarded_fields() const {
return guarded_fields_;
}
+ ZoneGrowableArray<const LibraryPrefix*>* deferred_prefixes() const {
+ return deferred_prefixes_;
+ }
+
private:
friend class IfConverter;
friend class BranchSimplifier;
@@ -300,6 +307,7 @@
ZoneGrowableArray<BlockEntryInstr*>* loop_headers_;
ZoneGrowableArray<BitVector*>* loop_invariant_loads_;
ZoneGrowableArray<const Field*>* guarded_fields_;
+ ZoneGrowableArray<const LibraryPrefix*>* deferred_prefixes_;
};

Powered by Google App Engine
This is Rietveld 408576698