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

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

Issue 1496503002: [runtime] [proxy] removing JSFunctionProxy and related code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixing merge artifacts 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/full-codegen/x87/full-codegen-x87.cc ('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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 case JS_WEAK_SET_TYPE: 86 case JS_WEAK_SET_TYPE:
87 return kVisitJSWeakCollection; 87 return kVisitJSWeakCollection;
88 88
89 case JS_REGEXP_TYPE: 89 case JS_REGEXP_TYPE:
90 return kVisitJSRegExp; 90 return kVisitJSRegExp;
91 91
92 case SHARED_FUNCTION_INFO_TYPE: 92 case SHARED_FUNCTION_INFO_TYPE:
93 return kVisitSharedFunctionInfo; 93 return kVisitSharedFunctionInfo;
94 94
95 case JS_PROXY_TYPE: 95 case JS_PROXY_TYPE:
96 case JS_FUNCTION_PROXY_TYPE:
97 return GetVisitorIdForSize(kVisitStruct, kVisitStructGeneric, 96 return GetVisitorIdForSize(kVisitStruct, kVisitStructGeneric,
98 instance_size, has_unboxed_fields); 97 instance_size, has_unboxed_fields);
99 98
100 case SYMBOL_TYPE: 99 case SYMBOL_TYPE:
101 return kVisitSymbol; 100 return kVisitSymbol;
102 101
103 case JS_ARRAY_BUFFER_TYPE: 102 case JS_ARRAY_BUFFER_TYPE:
104 return kVisitJSArrayBuffer; 103 return kVisitJSArrayBuffer;
105 104
106 case JS_OBJECT_TYPE: 105 case JS_OBJECT_TYPE:
(...skipping 246 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/full-codegen/x87/full-codegen-x87.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698