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

Side by Side Diff: src/heap.h

Issue 362723003: Added a promotion queue unit test that test promotion queue memory corruption (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/heap.cc » ('j') | src/heap.cc » ('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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HEAP_H_ 5 #ifndef V8_HEAP_H_
6 #define V8_HEAP_H_ 6 #define V8_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 ASSERT(GetHeadPage() == Page::FromAllocationTop(limit)); 418 ASSERT(GetHeadPage() == Page::FromAllocationTop(limit));
419 limit_ = reinterpret_cast<intptr_t*>(limit); 419 limit_ = reinterpret_cast<intptr_t*>(limit);
420 420
421 if (limit_ <= rear_) { 421 if (limit_ <= rear_) {
422 return; 422 return;
423 } 423 }
424 424
425 RelocateQueueHead(); 425 RelocateQueueHead();
426 } 426 }
427 427
428 bool IsBelowPromotionQueue(Address address) {
titzer 2014/07/01 11:58:20 Can you split the condition up into multiple branc
Hannes Payer (out of office) 2014/07/01 16:08:12 Done.
429 return (GetHeadPage() != Page::FromAddress(address) ||
430 NewSpacePage::IsAtStart(reinterpret_cast<Address>(rear_)) ||
431 reinterpret_cast<intptr_t*>(address) <= rear_);
432 }
433
428 bool is_empty() { 434 bool is_empty() {
429 return (front_ == rear_) && 435 return (front_ == rear_) &&
430 (emergency_stack_ == NULL || emergency_stack_->length() == 0); 436 (emergency_stack_ == NULL || emergency_stack_->length() == 0);
431 } 437 }
432 438
433 inline void insert(HeapObject* target, int size); 439 inline void insert(HeapObject* target, int size);
434 440
435 void remove(HeapObject** target, int* size) { 441 void remove(HeapObject** target, int* size) {
436 ASSERT(!is_empty()); 442 ASSERT(!is_empty());
437 if (front_ == rear_) { 443 if (front_ == rear_) {
(...skipping 2327 matching lines...) Expand 10 before | Expand all | Expand 10 after
2765 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2771 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2766 2772
2767 private: 2773 private:
2768 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2774 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2769 }; 2775 };
2770 #endif // DEBUG 2776 #endif // DEBUG
2771 2777
2772 } } // namespace v8::internal 2778 } } // namespace v8::internal
2773 2779
2774 #endif // V8_HEAP_H_ 2780 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap.cc » ('j') | src/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698