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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 356923006: Iterate over PcDescriptors only via iterators, not via an index. (preparation for more compression … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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
===================================================================
--- runtime/vm/flow_graph_compiler.h (revision 38030)
+++ runtime/vm/flow_graph_compiler.h (working copy)
@@ -301,13 +301,13 @@
void GenerateCall(intptr_t token_pos,
const ExternalLabel* label,
- PcDescriptors::Kind kind,
+ RawPcDescriptors::Kind kind,
LocationSummary* locs);
void GenerateDartCall(intptr_t deopt_id,
intptr_t token_pos,
const ExternalLabel* label,
- PcDescriptors::Kind kind,
+ RawPcDescriptors::Kind kind,
LocationSummary* locs);
void GenerateAssertAssignable(intptr_t token_pos,
@@ -415,7 +415,7 @@
const Array& handler_types,
bool needs_stacktrace);
void SetNeedsStacktrace(intptr_t try_index);
- void AddCurrentDescriptor(PcDescriptors::Kind kind,
+ void AddCurrentDescriptor(RawPcDescriptors::Kind kind,
intptr_t deopt_id,
intptr_t token_pos);

Powered by Google App Engine
This is Rietveld 408576698