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

Unified Diff: runtime/vm/assembler_mips.cc

Issue 51653006: Track live instance and allocation counts for classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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/assembler_mips.h ('k') | runtime/vm/assembler_x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_mips.cc
diff --git a/runtime/vm/assembler_mips.cc b/runtime/vm/assembler_mips.cc
index bcedc07eb8a5d06f9ef781198b1384faf3e4b9cc..7d17451848606518922917df93dfce375124c071 100644
--- a/runtime/vm/assembler_mips.cc
+++ b/runtime/vm/assembler_mips.cc
@@ -681,9 +681,96 @@ void Assembler::LeaveStubFrameAndReturn(Register ra) {
}
+void Assembler::UpdateAllocationStats(intptr_t cid,
+ Register temp_reg,
+ Heap::Space space) {
+ ASSERT(temp_reg != kNoRegister);
+ ASSERT(temp_reg != TMP);
+ ASSERT(cid > 0);
+ Isolate* isolate = Isolate::Current();
+ ClassTable* class_table = isolate->class_table();
+ if (cid < kNumPredefinedCids) {
+ const uword class_heap_stats_table_address =
+ class_table->PredefinedClassHeapStatsTableAddress();
+ const uword class_offset = cid * sizeof(ClassHeapStats); // NOLINT
+ const uword count_field_offset = (space == Heap::kNew) ?
+ ClassHeapStats::allocated_since_gc_new_space_offset() :
+ ClassHeapStats::allocated_since_gc_old_space_offset();
+ LoadImmediate(temp_reg, class_heap_stats_table_address + class_offset);
+ const Address& count_address = Address(temp_reg, count_field_offset);
+ lw(TMP, count_address);
+ AddImmediate(TMP, 1);
+ sw(TMP, count_address);
+ } else {
+ ASSERT(temp_reg != kNoRegister);
+ const uword class_offset = cid * sizeof(ClassHeapStats); // NOLINT
+ const uword count_field_offset = (space == Heap::kNew) ?
+ ClassHeapStats::allocated_since_gc_new_space_offset() :
+ ClassHeapStats::allocated_since_gc_old_space_offset();
+ LoadImmediate(temp_reg, class_table->ClassStatsTableAddress());
+ lw(temp_reg, Address(temp_reg, 0));
+ AddImmediate(temp_reg, class_offset);
+ lw(TMP, Address(temp_reg, count_field_offset));
+ AddImmediate(TMP, 1);
+ sw(TMP, Address(temp_reg, count_field_offset));
+ }
+}
+
+
+void Assembler::UpdateAllocationStatsWithSize(intptr_t cid,
+ Register size_reg,
+ Register temp_reg,
+ Heap::Space space) {
+ ASSERT(temp_reg != kNoRegister);
+ ASSERT(cid > 0);
+ ASSERT(temp_reg != TMP);
+ Isolate* isolate = Isolate::Current();
+ ClassTable* class_table = isolate->class_table();
+ if (cid < kNumPredefinedCids) {
+ const uword class_heap_stats_table_address =
+ class_table->PredefinedClassHeapStatsTableAddress();
+ const uword class_offset = cid * sizeof(ClassHeapStats); // NOLINT
+ const uword count_field_offset = (space == Heap::kNew) ?
+ ClassHeapStats::allocated_since_gc_new_space_offset() :
+ ClassHeapStats::allocated_since_gc_old_space_offset();
+ const uword size_field_offset = (space == Heap::kNew) ?
+ ClassHeapStats::allocated_size_since_gc_new_space_offset() :
+ ClassHeapStats::allocated_size_since_gc_old_space_offset();
+ LoadImmediate(temp_reg, class_heap_stats_table_address + class_offset);
+ const Address& count_address = Address(temp_reg, count_field_offset);
+ const Address& size_address = Address(temp_reg, size_field_offset);
+ lw(TMP, count_address);
+ AddImmediate(TMP, 1);
+ sw(TMP, count_address);
+ lw(TMP, size_address);
+ addu(TMP, TMP, size_reg);
+ sw(TMP, size_address);
+ } else {
+ ASSERT(temp_reg != kNoRegister);
+ const uword class_offset = cid * sizeof(ClassHeapStats); // NOLINT
+ const uword count_field_offset = (space == Heap::kNew) ?
+ ClassHeapStats::allocated_since_gc_new_space_offset() :
+ ClassHeapStats::allocated_since_gc_old_space_offset();
+ const uword size_field_offset = (space == Heap::kNew) ?
+ ClassHeapStats::allocated_size_since_gc_new_space_offset() :
+ ClassHeapStats::allocated_size_since_gc_old_space_offset();
+ LoadImmediate(temp_reg, class_table->ClassStatsTableAddress());
+ lw(temp_reg, Address(temp_reg, 0));
+ AddImmediate(temp_reg, class_offset);
+ lw(TMP, Address(temp_reg, count_field_offset));
+ AddImmediate(TMP, 1);
+ sw(TMP, Address(temp_reg, count_field_offset));
+ lw(TMP, Address(temp_reg, size_field_offset));
+ addu(TMP, TMP, size_reg);
+ sw(TMP, Address(temp_reg, size_field_offset));
+ }
+}
+
+
void Assembler::TryAllocate(const Class& cls,
Label* failure,
- Register instance_reg) {
+ Register instance_reg,
+ Register temp_reg) {
ASSERT(failure != NULL);
if (FLAG_inline_alloc) {
Heap* heap = Isolate::Current()->heap();
@@ -705,7 +792,7 @@ void Assembler::TryAllocate(const Class& cls,
ASSERT(instance_size >= kHeapObjectTag);
AddImmediate(instance_reg, -instance_size + kHeapObjectTag);
-
+ UpdateAllocationStats(cls.id(), temp_reg);
uword tags = 0;
tags = RawObject::SizeTag::update(instance_size, tags);
ASSERT(cls.id() != kIllegalCid);
« no previous file with comments | « runtime/vm/assembler_mips.h ('k') | runtime/vm/assembler_x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698