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

Unified Diff: runtime/vm/flow_graph_compiler_ia32.cc

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_ia32.cc
===================================================================
--- runtime/vm/flow_graph_compiler_ia32.cc (revision 38030)
+++ runtime/vm/flow_graph_compiler_ia32.cc (working copy)
@@ -1115,7 +1115,7 @@
void FlowGraphCompiler::GenerateCall(intptr_t token_pos,
const ExternalLabel* label,
- PcDescriptors::Kind kind,
+ RawPcDescriptors::Kind kind,
LocationSummary* locs) {
__ call(label);
AddCurrentDescriptor(kind, Isolate::kNoDeoptId, token_pos);
@@ -1126,7 +1126,7 @@
void FlowGraphCompiler::GenerateDartCall(intptr_t deopt_id,
intptr_t token_pos,
const ExternalLabel* label,
- PcDescriptors::Kind kind,
+ RawPcDescriptors::Kind kind,
LocationSummary* locs) {
__ call(label);
AddCurrentDescriptor(kind, deopt_id, token_pos);
@@ -1139,7 +1139,7 @@
} else {
// Add deoptimization continuation point after the call and before the
// arguments are removed.
- AddCurrentDescriptor(PcDescriptors::kDeopt, deopt_id_after, token_pos);
+ AddCurrentDescriptor(RawPcDescriptors::kDeopt, deopt_id_after, token_pos);
}
}
@@ -1150,7 +1150,7 @@
intptr_t argument_count,
LocationSummary* locs) {
__ CallRuntime(entry, argument_count);
- AddCurrentDescriptor(PcDescriptors::kOther, deopt_id, token_pos);
+ AddCurrentDescriptor(RawPcDescriptors::kOther, deopt_id, token_pos);
RecordSafepoint(locs);
if (deopt_id != Isolate::kNoDeoptId) {
// Marks either the continuation point in unoptimized code or the
@@ -1161,7 +1161,7 @@
} else {
// Add deoptimization continuation point after the call and before the
// arguments are removed.
- AddCurrentDescriptor(PcDescriptors::kDeopt, deopt_id_after, token_pos);
+ AddCurrentDescriptor(RawPcDescriptors::kDeopt, deopt_id_after, token_pos);
}
}
}
@@ -1187,7 +1187,7 @@
GenerateDartCall(deopt_id,
token_pos,
&target_label,
- PcDescriptors::kUnoptStaticCall,
+ RawPcDescriptors::kUnoptStaticCall,
locs);
__ Drop(argument_count);
#if defined(DEBUG)
@@ -1230,7 +1230,7 @@
GenerateDartCall(deopt_id,
token_pos,
target_label,
- PcDescriptors::kIcCall,
+ RawPcDescriptors::kIcCall,
locs);
__ Drop(argument_count);
}
@@ -1248,7 +1248,7 @@
GenerateDartCall(deopt_id,
token_pos,
target_label,
- PcDescriptors::kIcCall,
+ RawPcDescriptors::kIcCall,
locs);
__ Drop(argument_count);
#if defined(DEBUG)
@@ -1311,7 +1311,8 @@
__ LoadObject(EDX, arguments_descriptor);
__ addl(EBX, Immediate(Instructions::HeaderSize() - kHeapObjectTag));
__ call(EBX);
- AddCurrentDescriptor(PcDescriptors::kOther, Isolate::kNoDeoptId, token_pos);
+ AddCurrentDescriptor(RawPcDescriptors::kOther,
+ Isolate::kNoDeoptId, token_pos);
RecordSafepoint(locs);
AddDeoptIndexAtCall(Isolate::ToDeoptAfter(deopt_id), token_pos);
__ Drop(argument_count);
@@ -1331,7 +1332,7 @@
GenerateDartCall(deopt_id,
token_pos,
&StubCode::CallStaticFunctionLabel(),
- PcDescriptors::kOptStaticCall,
+ RawPcDescriptors::kOptStaticCall,
locs);
AddStaticCallTarget(function);
__ Drop(argument_count);
@@ -1360,7 +1361,7 @@
__ call(&StubCode::UnoptimizedIdenticalWithNumberCheckLabel());
}
if (token_pos != Scanner::kNoSourcePos) {
- AddCurrentDescriptor(PcDescriptors::kRuntimeCall,
+ AddCurrentDescriptor(RawPcDescriptors::kRuntimeCall,
Isolate::kNoDeoptId,
token_pos);
}
@@ -1388,7 +1389,7 @@
__ call(&StubCode::UnoptimizedIdenticalWithNumberCheckLabel());
}
if (token_pos != Scanner::kNoSourcePos) {
- AddCurrentDescriptor(PcDescriptors::kRuntimeCall,
+ AddCurrentDescriptor(RawPcDescriptors::kRuntimeCall,
Isolate::kNoDeoptId,
token_pos);
}
@@ -1500,7 +1501,7 @@
GenerateDartCall(deopt_id,
token_index,
&StubCode::CallStaticFunctionLabel(),
- PcDescriptors::kOptStaticCall,
+ RawPcDescriptors::kOptStaticCall,
locs);
const Function& function = *sorted[i].target;
AddStaticCallTarget(function);

Powered by Google App Engine
This is Rietveld 408576698