OLD | NEW |
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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
518 | 518 |
519 // If the first word is a forwarding address, the object has already been | 519 // If the first word is a forwarding address, the object has already been |
520 // copied. | 520 // copied. |
521 if (first_word.IsForwardingAddress()) { | 521 if (first_word.IsForwardingAddress()) { |
522 HeapObject* dest = first_word.ToForwardingAddress(); | 522 HeapObject* dest = first_word.ToForwardingAddress(); |
523 ASSERT(object->GetIsolate()->heap()->InFromSpace(*p)); | 523 ASSERT(object->GetIsolate()->heap()->InFromSpace(*p)); |
524 *p = dest; | 524 *p = dest; |
525 return; | 525 return; |
526 } | 526 } |
527 | 527 |
| 528 if (FLAG_trace_track_allocation_sites && |
| 529 AllocationSite::CanTrack(object->map()->instance_type()) && |
| 530 object->IsJSObject()) { |
| 531 if (AllocationMemento::FindForJSObject(JSObject::cast(object)) != NULL) { |
| 532 object->GetIsolate()->heap()->allocation_mementos_found_on_scavenge_++; |
| 533 } |
| 534 } |
| 535 |
528 // AllocationMementos are unrooted and shouldn't survive a scavenge | 536 // AllocationMementos are unrooted and shouldn't survive a scavenge |
529 ASSERT(object->map() != object->GetHeap()->allocation_memento_map()); | 537 ASSERT(object->map() != object->GetHeap()->allocation_memento_map()); |
530 // Call the slow part of scavenge object. | 538 // Call the slow part of scavenge object. |
531 return ScavengeObjectSlow(p, object); | 539 return ScavengeObjectSlow(p, object); |
532 } | 540 } |
533 | 541 |
534 | 542 |
535 bool Heap::CollectGarbage(AllocationSpace space, const char* gc_reason) { | 543 bool Heap::CollectGarbage(AllocationSpace space, const char* gc_reason) { |
536 const char* collector_reason = NULL; | 544 const char* collector_reason = NULL; |
537 GarbageCollector collector = SelectGarbageCollector(space, &collector_reason); | 545 GarbageCollector collector = SelectGarbageCollector(space, &collector_reason); |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
881 #ifdef DEBUG | 889 #ifdef DEBUG |
882 Isolate* isolate = Isolate::Current(); | 890 Isolate* isolate = Isolate::Current(); |
883 isolate->heap()->disallow_allocation_failure_ = old_state_; | 891 isolate->heap()->disallow_allocation_failure_ = old_state_; |
884 #endif | 892 #endif |
885 } | 893 } |
886 | 894 |
887 | 895 |
888 } } // namespace v8::internal | 896 } } // namespace v8::internal |
889 | 897 |
890 #endif // V8_HEAP_INL_H_ | 898 #endif // V8_HEAP_INL_H_ |
OLD | NEW |