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

Unified Diff: runtime/vm/flow_graph_compiler_ia32.cc

Issue 1343383003: VM: Store edge counters in one per-function array. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « runtime/vm/flow_graph_compiler_arm64.cc ('k') | runtime/vm/flow_graph_compiler_mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_ia32.cc
diff --git a/runtime/vm/flow_graph_compiler_ia32.cc b/runtime/vm/flow_graph_compiler_ia32.cc
index 77931c9c735531c8dfa7bc177cf3b06bc7b6bb0a..4b5979872b97dbd975ba45bde775ad43bd1e2417 100644
--- a/runtime/vm/flow_graph_compiler_ia32.cc
+++ b/runtime/vm/flow_graph_compiler_ia32.cc
@@ -1210,31 +1210,16 @@ void FlowGraphCompiler::EmitUnoptimizedStaticCall(
}
-void FlowGraphCompiler::EmitEdgeCounter() {
+void FlowGraphCompiler::EmitEdgeCounter(intptr_t edge_id) {
// We do not check for overflow when incrementing the edge counter. The
// function should normally be optimized long before the counter can
// overflow; and though we do not reset the counters when we optimize or
// deoptimize, there is a bound on the number of
// optimization/deoptimization cycles we will attempt.
- const Array& counter = Array::ZoneHandle(zone(), Array::New(1, Heap::kOld));
- counter.SetAt(0, Smi::Handle(zone(), Smi::New(0)));
+ ASSERT(!edge_counters_array_.IsNull());
__ Comment("Edge counter");
- __ LoadObject(EAX, counter);
- intptr_t increment_start = assembler_->CodeSize();
- __ IncrementSmiField(FieldAddress(EAX, Array::element_offset(0)), 1);
- int32_t size = assembler_->CodeSize() - increment_start;
- if (isolate()->edge_counter_increment_size() == -1) {
- isolate()->set_edge_counter_increment_size(size);
- } else {
- ASSERT(size == isolate()->edge_counter_increment_size());
- }
-}
-
-
-int32_t FlowGraphCompiler::EdgeCounterIncrementSizeInBytes() {
- const int32_t size = Isolate::Current()->edge_counter_increment_size();
- ASSERT(size != -1);
- return size;
+ __ LoadObject(EAX, edge_counters_array_);
+ __ IncrementSmiField(FieldAddress(EAX, Array::element_offset(edge_id)), 1);
}
« no previous file with comments | « runtime/vm/flow_graph_compiler_arm64.cc ('k') | runtime/vm/flow_graph_compiler_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698