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

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

Issue 483683005: Move IC code into a subdir and move ic-compilation related code from stub-cache into ic-compiler (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix BUILD.gn Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « src/heap/mark-compact.cc ('k') | src/hydrogen.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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/heap/objects-visiting.h" 7 #include "src/heap/objects-visiting.h"
8 #include "src/ic-inl.h"
9 8
10 namespace v8 { 9 namespace v8 {
11 namespace internal { 10 namespace internal {
12 11
13 12
14 StaticVisitorBase::VisitorId StaticVisitorBase::GetVisitorId( 13 StaticVisitorBase::VisitorId StaticVisitorBase::GetVisitorId(
15 int instance_type, int instance_size) { 14 int instance_type, int instance_size) {
16 if (instance_type < FIRST_NONSTRING_TYPE) { 15 if (instance_type < FIRST_NONSTRING_TYPE) {
17 switch (instance_type & kStringRepresentationMask) { 16 switch (instance_type & kStringRepresentationMask) {
18 case kSeqStringTag: 17 case kSeqStringTag:
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 404
406 405
407 template Object* VisitWeakList<JSArrayBuffer>(Heap* heap, Object* list, 406 template Object* VisitWeakList<JSArrayBuffer>(Heap* heap, Object* list,
408 WeakObjectRetainer* retainer); 407 WeakObjectRetainer* retainer);
409 408
410 409
411 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list, 410 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list,
412 WeakObjectRetainer* retainer); 411 WeakObjectRetainer* retainer);
413 } 412 }
414 } // namespace v8::internal 413 } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap/mark-compact.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698