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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 } | 478 } |
479 | 479 |
480 | 480 |
481 void Heap::ScavengePointer(HeapObject** p) { | 481 void Heap::ScavengePointer(HeapObject** p) { |
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::FindForHeapObject( |
489 JSObject::cast(object), true); | 489 object, true); |
490 if (memento != NULL) { | 490 if (memento != NULL) { |
491 ASSERT(memento->IsValid()); | 491 ASSERT(memento->IsValid()); |
492 memento->GetAllocationSite()->IncrementMementoFoundCount(); | 492 memento->GetAllocationSite()->IncrementMementoFoundCount(); |
493 } | 493 } |
494 } | 494 } |
495 } | 495 } |
496 | 496 |
497 | 497 |
498 void Heap::ScavengeObject(HeapObject** p, HeapObject* object) { | 498 void Heap::ScavengeObject(HeapObject** p, HeapObject* object) { |
499 ASSERT(object->GetIsolate()->heap()->InFromSpace(object)); | 499 ASSERT(object->GetIsolate()->heap()->InFromSpace(object)); |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
871 #ifdef DEBUG | 871 #ifdef DEBUG |
872 Isolate* isolate = Isolate::Current(); | 872 Isolate* isolate = Isolate::Current(); |
873 isolate->heap()->disallow_allocation_failure_ = old_state_; | 873 isolate->heap()->disallow_allocation_failure_ = old_state_; |
874 #endif | 874 #endif |
875 } | 875 } |
876 | 876 |
877 | 877 |
878 } } // namespace v8::internal | 878 } } // namespace v8::internal |
879 | 879 |
880 #endif // V8_HEAP_INL_H_ | 880 #endif // V8_HEAP_INL_H_ |
OLD | NEW |