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

Side by Side Diff: src/heap/heap-inl.h

Issue 2758563002: [gn] Enable stricter build flags (Closed)
Patch Set: Address comment Created 3 years, 9 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.cc ('k') | src/heap/spaces.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #ifndef V8_HEAP_HEAP_INL_H_ 5 #ifndef V8_HEAP_HEAP_INL_H_
6 #define V8_HEAP_HEAP_INL_H_ 6 #define V8_HEAP_HEAP_INL_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "src/base/platform/platform.h" 10 #include "src/base/platform/platform.h"
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 } 845 }
846 } 846 }
847 847
848 AlwaysAllocateScope::AlwaysAllocateScope(Isolate* isolate) 848 AlwaysAllocateScope::AlwaysAllocateScope(Isolate* isolate)
849 : heap_(isolate->heap()) { 849 : heap_(isolate->heap()) {
850 heap_->always_allocate_scope_count_.Increment(1); 850 heap_->always_allocate_scope_count_.Increment(1);
851 } 851 }
852 852
853 853
854 AlwaysAllocateScope::~AlwaysAllocateScope() { 854 AlwaysAllocateScope::~AlwaysAllocateScope() {
855 heap_->always_allocate_scope_count_.Increment(-1); 855 heap_->always_allocate_scope_count_.Decrement(1);
856 } 856 }
857 857
858 858
859 void VerifyPointersVisitor::VisitPointers(Object** start, Object** end) { 859 void VerifyPointersVisitor::VisitPointers(Object** start, Object** end) {
860 for (Object** current = start; current < end; current++) { 860 for (Object** current = start; current < end; current++) {
861 if ((*current)->IsHeapObject()) { 861 if ((*current)->IsHeapObject()) {
862 HeapObject* object = HeapObject::cast(*current); 862 HeapObject* object = HeapObject::cast(*current);
863 CHECK(object->GetIsolate()->heap()->Contains(object)); 863 CHECK(object->GetIsolate()->heap()->Contains(object));
864 CHECK(object->map()->IsMap()); 864 CHECK(object->map()->IsMap());
865 } else { 865 } else {
866 CHECK((*current)->IsSmi()); 866 CHECK((*current)->IsSmi());
867 } 867 }
868 } 868 }
869 } 869 }
870 870
871 871
872 void VerifySmisVisitor::VisitPointers(Object** start, Object** end) { 872 void VerifySmisVisitor::VisitPointers(Object** start, Object** end) {
873 for (Object** current = start; current < end; current++) { 873 for (Object** current = start; current < end; current++) {
874 CHECK((*current)->IsSmi()); 874 CHECK((*current)->IsSmi());
875 } 875 }
876 } 876 }
877 } // namespace internal 877 } // namespace internal
878 } // namespace v8 878 } // namespace v8
879 879
880 #endif // V8_HEAP_HEAP_INL_H_ 880 #endif // V8_HEAP_HEAP_INL_H_
OLDNEW
« no previous file with comments | « src/heap/heap.cc ('k') | src/heap/spaces.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698