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

Side by Side Diff: src/heap.cc

Issue 99133017: Use an allocation site scratchpad to speed up allocaton site processing during gc. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/heap.h ('k') | src/heap-inl.h » ('j') | src/heap-inl.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 last_idle_notification_gc_count_init_(false), 141 last_idle_notification_gc_count_init_(false),
142 mark_sweeps_since_idle_round_started_(0), 142 mark_sweeps_since_idle_round_started_(0),
143 gc_count_at_last_idle_gc_(0), 143 gc_count_at_last_idle_gc_(0),
144 scavenges_since_last_idle_round_(kIdleScavengeThreshold), 144 scavenges_since_last_idle_round_(kIdleScavengeThreshold),
145 full_codegen_bytes_generated_(0), 145 full_codegen_bytes_generated_(0),
146 crankshaft_codegen_bytes_generated_(0), 146 crankshaft_codegen_bytes_generated_(0),
147 gcs_since_last_deopt_(0), 147 gcs_since_last_deopt_(0),
148 #ifdef VERIFY_HEAP 148 #ifdef VERIFY_HEAP
149 no_weak_object_verification_scope_depth_(0), 149 no_weak_object_verification_scope_depth_(0),
150 #endif 150 #endif
151 allocation_sites_scratchpad_pointer(0),
mvstanton 2013/12/13 10:30:17 How about using the word count or length instead o
Hannes Payer (out of office) 2013/12/18 14:29:19 Done.
151 promotion_queue_(this), 152 promotion_queue_(this),
152 configured_(false), 153 configured_(false),
153 chunks_queued_for_free_(NULL), 154 chunks_queued_for_free_(NULL),
154 relocation_mutex_(NULL) { 155 relocation_mutex_(NULL) {
155 // Allow build-time customization of the max semispace size. Building 156 // Allow build-time customization of the max semispace size. Building
156 // V8 with snapshots and a non-default max semispace size is much 157 // V8 with snapshots and a non-default max semispace size is much
157 // easier if you can define it as part of the build environment. 158 // easier if you can define it as part of the build environment.
158 #if defined(V8_MAX_SEMISPACE_SIZE) 159 #if defined(V8_MAX_SEMISPACE_SIZE)
159 max_semispace_size_ = reserved_semispace_size_ = V8_MAX_SEMISPACE_SIZE; 160 max_semispace_size_ = reserved_semispace_size_ = V8_MAX_SEMISPACE_SIZE;
160 #endif 161 #endif
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 void Heap::RepairFreeListsAfterBoot() { 498 void Heap::RepairFreeListsAfterBoot() {
498 PagedSpaces spaces(this); 499 PagedSpaces spaces(this);
499 for (PagedSpace* space = spaces.next(); 500 for (PagedSpace* space = spaces.next();
500 space != NULL; 501 space != NULL;
501 space = spaces.next()) { 502 space = spaces.next()) {
502 space->RepairFreeListsAfterBoot(); 503 space->RepairFreeListsAfterBoot();
503 } 504 }
504 } 505 }
505 506
506 507
507 void Heap::GarbageCollectionEpilogue() { 508 void Heap::ProcessPretenuringFeedback() {
508 if (FLAG_allocation_site_pretenuring) { 509 if (FLAG_allocation_site_pretenuring) {
509 int tenure_decisions = 0; 510 int tenure_decisions = 0;
510 int dont_tenure_decisions = 0; 511 int dont_tenure_decisions = 0;
511 int allocation_mementos_found = 0; 512 int allocation_mementos_found = 0;
513 int allocation_sites = 0;
514 int active_allocation_sites = 0;
515 bool use_scratchpad =
516 allocation_sites_scratchpad_pointer < kAllocationSiteScratchpadSize;
512 517
513 Object* cur = allocation_sites_list(); 518 if (use_scratchpad) {
Hannes Payer (out of office) 2013/12/12 15:26:05 Should I make an Iterator for that duplicated piec
mvstanton 2013/12/13 10:30:17 Yep that is a good idea. Alternatively, a function
Hannes Payer (out of office) 2013/12/18 14:29:19 I decided to do the simplified version, not beauti
514 while (cur->IsAllocationSite()) { 519 for (int i = 0; i < allocation_sites_scratchpad_pointer; i++) {
515 AllocationSite* casted = AllocationSite::cast(cur); 520 AllocationSite* casted = allocation_sites_scratchpad[i];
516 allocation_mementos_found += casted->memento_found_count()->value(); 521 allocation_mementos_found += casted->memento_found_count()->value();
517 if (casted->DigestPretenuringFeedback()) { 522 if (casted->memento_found_count()->value() > 0) {
518 if (casted->GetPretenureMode() == TENURED) { 523 active_allocation_sites++;
519 tenure_decisions++;
520 } else {
521 dont_tenure_decisions++;
522 } 524 }
525 if (casted->DigestPretenuringFeedback()) {
526 if (casted->GetPretenureMode() == TENURED) {
527 tenure_decisions++;
528 } else {
529 dont_tenure_decisions++;
530 }
531 }
532 allocation_sites++;
523 } 533 }
524 cur = casted->weak_next(); 534 } else {
535 Object* cur = allocation_sites_list();
536 while (cur->IsAllocationSite()) {
537 AllocationSite* casted = AllocationSite::cast(cur);
538 allocation_mementos_found += casted->memento_found_count()->value();
539 if (casted->memento_found_count()->value() > 0) {
540 active_allocation_sites++;
541 }
542 if (casted->DigestPretenuringFeedback()) {
543 if (casted->GetPretenureMode() == TENURED) {
544 tenure_decisions++;
545 } else {
546 dont_tenure_decisions++;
547 }
548 }
549 cur = casted->weak_next();
550 allocation_sites++;
551 }
525 } 552 }
553 allocation_sites_scratchpad_pointer = 0;
526 554
527 // TODO(mvstanton): Pretenure decisions are only made once for an allocation 555 // TODO(mvstanton): Pretenure decisions are only made once for an allocation
528 // site. Find a sane way to decide about revisiting the decision later. 556 // site. Find a sane way to decide about revisiting the decision later.
529 557
530 if (FLAG_trace_track_allocation_sites && 558 if (FLAG_trace_track_allocation_sites &&
531 (allocation_mementos_found > 0 || 559 (allocation_mementos_found > 0 ||
532 tenure_decisions > 0 || 560 tenure_decisions > 0 ||
533 dont_tenure_decisions > 0)) { 561 dont_tenure_decisions > 0)) {
534 PrintF("GC: (#mementos, #tenure decisions, #donttenure decisions) " 562 PrintF("GC(%d): (#allocation sites, #active allocation sites, "
535 "(%d, %d, %d)\n", 563 "#mementos, #tenure decisions, #donttenure decisions) "
564 "(%d, %d, %d, %d, %d)\n",
565 use_scratchpad,
566 allocation_sites,
567 active_allocation_sites,
536 allocation_mementos_found, 568 allocation_mementos_found,
537 tenure_decisions, 569 tenure_decisions,
538 dont_tenure_decisions); 570 dont_tenure_decisions);
539 } 571 }
540 } 572 }
573 }
541 574
575
576 void Heap::GarbageCollectionEpilogue() {
542 store_buffer()->GCEpilogue(); 577 store_buffer()->GCEpilogue();
543 578
544 // In release mode, we only zap the from space under heap verification. 579 // In release mode, we only zap the from space under heap verification.
545 if (Heap::ShouldZapGarbage()) { 580 if (Heap::ShouldZapGarbage()) {
546 ZapFromSpace(); 581 ZapFromSpace();
547 } 582 }
548 583
549 #ifdef VERIFY_HEAP 584 #ifdef VERIFY_HEAP
550 if (FLAG_verify_heap) { 585 if (FLAG_verify_heap) {
551 Verify(); 586 Verify();
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 // Set age mark. 1593 // Set age mark.
1559 new_space_.set_age_mark(new_space_.top()); 1594 new_space_.set_age_mark(new_space_.top());
1560 1595
1561 new_space_.LowerInlineAllocationLimit( 1596 new_space_.LowerInlineAllocationLimit(
1562 new_space_.inline_allocation_limit_step()); 1597 new_space_.inline_allocation_limit_step());
1563 1598
1564 // Update how much has survived scavenge. 1599 // Update how much has survived scavenge.
1565 IncrementYoungSurvivorsCounter(static_cast<int>( 1600 IncrementYoungSurvivorsCounter(static_cast<int>(
1566 (PromotedSpaceSizeOfObjects() - survived_watermark) + new_space_.Size())); 1601 (PromotedSpaceSizeOfObjects() - survived_watermark) + new_space_.Size()));
1567 1602
1603 ProcessPretenuringFeedback();
1604
1568 LOG(isolate_, ResourceEvent("scavenge", "end")); 1605 LOG(isolate_, ResourceEvent("scavenge", "end"));
1569 1606
1570 gc_state_ = NOT_IN_GC; 1607 gc_state_ = NOT_IN_GC;
1571 1608
1572 scavenges_since_last_idle_round_++; 1609 scavenges_since_last_idle_round_++;
1573 } 1610 }
1574 1611
1575 1612
1576 String* Heap::UpdateNewSpaceReferenceInExternalStringTableEntry(Heap* heap, 1613 String* Heap::UpdateNewSpaceReferenceInExternalStringTableEntry(Heap* heap,
1577 Object** p) { 1614 Object** p) {
(...skipping 6379 matching lines...) Expand 10 before | Expand all | Expand 10 after
7957 static_cast<int>(object_sizes_last_time_[index])); 7994 static_cast<int>(object_sizes_last_time_[index]));
7958 CODE_AGE_LIST_COMPLETE(ADJUST_LAST_TIME_OBJECT_COUNT) 7995 CODE_AGE_LIST_COMPLETE(ADJUST_LAST_TIME_OBJECT_COUNT)
7959 #undef ADJUST_LAST_TIME_OBJECT_COUNT 7996 #undef ADJUST_LAST_TIME_OBJECT_COUNT
7960 7997
7961 OS::MemCopy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); 7998 OS::MemCopy(object_counts_last_time_, object_counts_, sizeof(object_counts_));
7962 OS::MemCopy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); 7999 OS::MemCopy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_));
7963 ClearObjectStats(); 8000 ClearObjectStats();
7964 } 8001 }
7965 8002
7966 } } // namespace v8::internal 8003 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap.h ('k') | src/heap-inl.h » ('j') | src/heap-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698