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

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

Issue 918113002: Fix JSArrayBufferView visitor template to fix ARM build. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | no next file » | 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 8
9 namespace v8 { 9 namespace v8 {
10 namespace internal { 10 namespace internal {
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 416
417 template Object* VisitWeakList<Context>(Heap* heap, Object* list, 417 template Object* VisitWeakList<Context>(Heap* heap, Object* list,
418 WeakObjectRetainer* retainer, 418 WeakObjectRetainer* retainer,
419 bool stop_after_young); 419 bool stop_after_young);
420 420
421 421
422 template Object* VisitWeakList<JSArrayBuffer>(Heap* heap, Object* list, 422 template Object* VisitWeakList<JSArrayBuffer>(Heap* heap, Object* list,
423 WeakObjectRetainer* retainer, 423 WeakObjectRetainer* retainer,
424 bool stop_after_young); 424 bool stop_after_young);
425 425
426 template Object* VisitWeakList<JSArrayBufferView>(Heap* heap, Object* list,
427 WeakObjectRetainer* retainer,
428 bool stop_after_young);
426 429
427 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list, 430 template Object* VisitWeakList<AllocationSite>(Heap* heap, Object* list,
428 WeakObjectRetainer* retainer, 431 WeakObjectRetainer* retainer,
429 bool stop_after_young); 432 bool stop_after_young);
430 } 433 }
431 } // namespace v8::internal 434 } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698