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

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

Issue 1552473002: Revert of [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: 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/heap.h ('k') | src/ia32/builtins-ia32.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 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 case JS_GLOBAL_OBJECT_TYPE: 113 case JS_GLOBAL_OBJECT_TYPE:
114 case JS_MESSAGE_OBJECT_TYPE: 114 case JS_MESSAGE_OBJECT_TYPE:
115 case JS_TYPED_ARRAY_TYPE: 115 case JS_TYPED_ARRAY_TYPE:
116 case JS_DATA_VIEW_TYPE: 116 case JS_DATA_VIEW_TYPE:
117 case JS_SET_TYPE: 117 case JS_SET_TYPE:
118 case JS_MAP_TYPE: 118 case JS_MAP_TYPE:
119 case JS_SET_ITERATOR_TYPE: 119 case JS_SET_ITERATOR_TYPE:
120 case JS_MAP_ITERATOR_TYPE: 120 case JS_MAP_ITERATOR_TYPE:
121 case JS_ITERATOR_RESULT_TYPE: 121 case JS_ITERATOR_RESULT_TYPE:
122 case JS_PROMISE_TYPE: 122 case JS_PROMISE_TYPE:
123 case JS_BOUND_FUNCTION_TYPE:
124 return GetVisitorIdForSize(kVisitJSObject, kVisitJSObjectGeneric, 123 return GetVisitorIdForSize(kVisitJSObject, kVisitJSObjectGeneric,
125 instance_size, has_unboxed_fields); 124 instance_size, has_unboxed_fields);
126 125
127 case JS_FUNCTION_TYPE: 126 case JS_FUNCTION_TYPE:
128 return kVisitJSFunction; 127 return kVisitJSFunction;
129 128
130 case FILLER_TYPE: 129 case FILLER_TYPE:
131 if (instance_size == kPointerSize) return kVisitDataObjectGeneric; 130 if (instance_size == kPointerSize) return kVisitDataObjectGeneric;
132 // Fall through. 131 // Fall through.
133 case FOREIGN_TYPE: 132 case FOREIGN_TYPE:
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 }; 352 };
354 353
355 354
356 template Object* VisitWeakList<Context>(Heap* heap, Object* list, 355 template Object* VisitWeakList<Context>(Heap* heap, Object* list,
357 WeakObjectRetainer* retainer); 356 WeakObjectRetainer* retainer);
358 357
359 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list, 358 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list,
360 WeakObjectRetainer* retainer); 359 WeakObjectRetainer* retainer);
361 } // namespace internal 360 } // namespace internal
362 } // namespace v8 361 } // namespace v8
OLDNEW
« no previous file with comments | « src/heap/heap.h ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698