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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
482 ScavengeObject(p, *p); | 482 ScavengeObject(p, *p); |
483 } | 483 } |
484 | 484 |
485 | 485 |
486 void Heap::UpdateAllocationSiteFeedback(HeapObject* object) { | 486 void Heap::UpdateAllocationSiteFeedback(HeapObject* object) { |
487 if (FLAG_allocation_site_pretenuring && object->IsJSObject()) { | 487 if (FLAG_allocation_site_pretenuring && object->IsJSObject()) { |
488 AllocationMemento* memento = AllocationMemento::FindForJSObject( | 488 AllocationMemento* memento = AllocationMemento::FindForJSObject( |
489 JSObject::cast(object), true); | 489 JSObject::cast(object), true); |
490 if (memento != NULL) { | 490 if (memento != NULL) { |
491 ASSERT(memento->IsValid()); | 491 ASSERT(memento->IsValid()); |
492 memento->GetAllocationSite()->IncrementMementoFoundCount(); | 492 bool add_to_scratchpad = |
493 memento->GetAllocationSite()->IncrementMementoFoundCount(); | |
494 Heap* heap = object->GetIsolate()->heap(); | |
495 if (heap->allocation_sites_scratchpad_pointer < | |
496 kAllocationSiteScratchpadSize && | |
497 add_to_scratchpad) { | |
mvstanton
2013/12/13 10:30:17
put add_to_scratchpad first in the if expression.
Hannes Payer (out of office)
2013/12/18 14:29:19
Done.
| |
498 heap->allocation_sites_scratchpad[ | |
499 heap->allocation_sites_scratchpad_pointer] = | |
mvstanton
2013/12/13 10:30:17
nit: I'd be into the more compact heap->allocation
Hannes Payer (out of office)
2013/12/18 14:29:19
Done.
| |
500 memento->GetAllocationSite(); | |
501 heap->allocation_sites_scratchpad_pointer++; | |
502 } | |
493 } | 503 } |
494 } | 504 } |
495 } | 505 } |
496 | 506 |
497 | 507 |
498 void Heap::ScavengeObject(HeapObject** p, HeapObject* object) { | 508 void Heap::ScavengeObject(HeapObject** p, HeapObject* object) { |
499 ASSERT(object->GetIsolate()->heap()->InFromSpace(object)); | 509 ASSERT(object->GetIsolate()->heap()->InFromSpace(object)); |
500 | 510 |
501 // We use the first word (where the map pointer usually is) of a heap | 511 // We use the first word (where the map pointer usually is) of a heap |
502 // object to record the forwarding pointer. A forwarding pointer can | 512 // object to record the forwarding pointer. A forwarding pointer can |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
858 #ifdef DEBUG | 868 #ifdef DEBUG |
859 Isolate* isolate = Isolate::Current(); | 869 Isolate* isolate = Isolate::Current(); |
860 isolate->heap()->disallow_allocation_failure_ = old_state_; | 870 isolate->heap()->disallow_allocation_failure_ = old_state_; |
861 #endif | 871 #endif |
862 } | 872 } |
863 | 873 |
864 | 874 |
865 } } // namespace v8::internal | 875 } } // namespace v8::internal |
866 | 876 |
867 #endif // V8_HEAP_INL_H_ | 877 #endif // V8_HEAP_INL_H_ |
OLD | NEW |