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

Side by Side Diff: src/objects.h

Issue 1640563004: Reland of "[heap] Parallel newspace evacuation, semispace copy, and compaction \o/" (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Convert bogus DCHECK into proper branch Created 4 years, 11 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
« no previous file with comments | « src/heap/store-buffer-inl.h ('k') | src/objects.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 8271 matching lines...) Expand 10 before | Expand all | Expand 10 after
8282 8282
8283 class AllocationMemento: public Struct { 8283 class AllocationMemento: public Struct {
8284 public: 8284 public:
8285 static const int kAllocationSiteOffset = HeapObject::kHeaderSize; 8285 static const int kAllocationSiteOffset = HeapObject::kHeaderSize;
8286 static const int kSize = kAllocationSiteOffset + kPointerSize; 8286 static const int kSize = kAllocationSiteOffset + kPointerSize;
8287 8287
8288 DECL_ACCESSORS(allocation_site, Object) 8288 DECL_ACCESSORS(allocation_site, Object)
8289 8289
8290 inline bool IsValid(); 8290 inline bool IsValid();
8291 inline AllocationSite* GetAllocationSite(); 8291 inline AllocationSite* GetAllocationSite();
8292 inline Address GetAllocationSiteUnchecked();
8292 8293
8293 DECLARE_PRINTER(AllocationMemento) 8294 DECLARE_PRINTER(AllocationMemento)
8294 DECLARE_VERIFIER(AllocationMemento) 8295 DECLARE_VERIFIER(AllocationMemento)
8295 8296
8296 DECLARE_CAST(AllocationMemento) 8297 DECLARE_CAST(AllocationMemento)
8297 8298
8298 private: 8299 private:
8299 DISALLOW_IMPLICIT_CONSTRUCTORS(AllocationMemento); 8300 DISALLOW_IMPLICIT_CONSTRUCTORS(AllocationMemento);
8300 }; 8301 };
8301 8302
(...skipping 2476 matching lines...) Expand 10 before | Expand all | Expand 10 after
10778 } 10779 }
10779 return value; 10780 return value;
10780 } 10781 }
10781 }; 10782 };
10782 10783
10783 10784
10784 } // NOLINT, false-positive due to second-order macros. 10785 } // NOLINT, false-positive due to second-order macros.
10785 } // NOLINT, false-positive due to second-order macros. 10786 } // NOLINT, false-positive due to second-order macros.
10786 10787
10787 #endif // V8_OBJECTS_H_ 10788 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/heap/store-buffer-inl.h ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698