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

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

Issue 1483003002: Revert of Introduce instance type for transition arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/objects-visiting.h ('k') | src/heap/objects-visiting-inl.h » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 #include "src/heap/objects-visiting.h" 5 #include "src/heap/objects-visiting.h"
6 6
7 #include "src/heap/mark-compact-inl.h" 7 #include "src/heap/mark-compact-inl.h"
8 #include "src/heap/objects-visiting-inl.h" 8 #include "src/heap/objects-visiting-inl.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 case CELL_TYPE: 73 case CELL_TYPE:
74 return kVisitCell; 74 return kVisitCell;
75 75
76 case PROPERTY_CELL_TYPE: 76 case PROPERTY_CELL_TYPE:
77 return kVisitPropertyCell; 77 return kVisitPropertyCell;
78 78
79 case WEAK_CELL_TYPE: 79 case WEAK_CELL_TYPE:
80 return kVisitWeakCell; 80 return kVisitWeakCell;
81 81
82 case TRANSITION_ARRAY_TYPE:
83 return kVisitTransitionArray;
84
85 case JS_WEAK_MAP_TYPE: 82 case JS_WEAK_MAP_TYPE:
86 case JS_WEAK_SET_TYPE: 83 case JS_WEAK_SET_TYPE:
87 return kVisitJSWeakCollection; 84 return kVisitJSWeakCollection;
88 85
89 case JS_REGEXP_TYPE: 86 case JS_REGEXP_TYPE:
90 return kVisitJSRegExp; 87 return kVisitJSRegExp;
91 88
92 case SHARED_FUNCTION_INFO_TYPE: 89 case SHARED_FUNCTION_INFO_TYPE:
93 return kVisitSharedFunctionInfo; 90 return kVisitSharedFunctionInfo;
94 91
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 }; 350 };
354 351
355 352
356 template Object* VisitWeakList<Context>(Heap* heap, Object* list, 353 template Object* VisitWeakList<Context>(Heap* heap, Object* list,
357 WeakObjectRetainer* retainer); 354 WeakObjectRetainer* retainer);
358 355
359 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list, 356 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list,
360 WeakObjectRetainer* retainer); 357 WeakObjectRetainer* retainer);
361 } // namespace internal 358 } // namespace internal
362 } // namespace v8 359 } // namespace v8
OLDNEW
« no previous file with comments | « src/heap/objects-visiting.h ('k') | src/heap/objects-visiting-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698