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

Side by Side Diff: src/heap/objects-visiting.h

Issue 2624203002: Version 5.7.440.1 (cherry-pick) (Closed)
Patch Set: Created 3 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/mark-compact.cc ('k') | src/heap/objects-visiting.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 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_OBJECTS_VISITING_H_ 5 #ifndef V8_OBJECTS_VISITING_H_
6 #define V8_OBJECTS_VISITING_H_ 6 #define V8_OBJECTS_VISITING_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/heap/embedder-tracing.h" 9 #include "src/heap/embedder-tracing.h"
10 #include "src/heap/heap.h" 10 #include "src/heap/heap.h"
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 V(Struct3) \ 72 V(Struct3) \
73 V(Struct4) \ 73 V(Struct4) \
74 V(Struct5) \ 74 V(Struct5) \
75 V(Struct6) \ 75 V(Struct6) \
76 V(Struct7) \ 76 V(Struct7) \
77 V(Struct8) \ 77 V(Struct8) \
78 V(Struct9) \ 78 V(Struct9) \
79 V(StructGeneric) \ 79 V(StructGeneric) \
80 V(ConsString) \ 80 V(ConsString) \
81 V(SlicedString) \ 81 V(SlicedString) \
82 V(ThinString) \
83 V(Symbol) \ 82 V(Symbol) \
84 V(Oddball) \ 83 V(Oddball) \
85 V(Code) \ 84 V(Code) \
86 V(Map) \ 85 V(Map) \
87 V(Cell) \ 86 V(Cell) \
88 V(PropertyCell) \ 87 V(PropertyCell) \
89 V(WeakCell) \ 88 V(WeakCell) \
90 V(TransitionArray) \ 89 V(TransitionArray) \
91 V(SharedFunctionInfo) \ 90 V(SharedFunctionInfo) \
92 V(JSFunction) \ 91 V(JSFunction) \
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 // the next element. Given the head of the list, this function removes dead 453 // the next element. Given the head of the list, this function removes dead
455 // elements from the list and if requested records slots for next-element 454 // elements from the list and if requested records slots for next-element
456 // pointers. The template parameter T is a WeakListVisitor that defines how to 455 // pointers. The template parameter T is a WeakListVisitor that defines how to
457 // access the next-element pointers. 456 // access the next-element pointers.
458 template <class T> 457 template <class T>
459 Object* VisitWeakList(Heap* heap, Object* list, WeakObjectRetainer* retainer); 458 Object* VisitWeakList(Heap* heap, Object* list, WeakObjectRetainer* retainer);
460 } // namespace internal 459 } // namespace internal
461 } // namespace v8 460 } // namespace v8
462 461
463 #endif // V8_OBJECTS_VISITING_H_ 462 #endif // V8_OBJECTS_VISITING_H_
OLDNEW
« no previous file with comments | « src/heap/mark-compact.cc ('k') | src/heap/objects-visiting.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698