| OLD | NEW |
| 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_OBJECTS_VISITING_INL_H_ | 5 #ifndef V8_OBJECTS_VISITING_INL_H_ |
| 6 #define V8_OBJECTS_VISITING_INL_H_ | 6 #define V8_OBJECTS_VISITING_INL_H_ |
| 7 | 7 |
| 8 #include "src/heap/objects-visiting.h" | 8 #include "src/heap/objects-visiting.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 &FixedBodyVisitor<StaticVisitor, Symbol::BodyDescriptor, void>::Visit); | 134 &FixedBodyVisitor<StaticVisitor, Symbol::BodyDescriptor, void>::Visit); |
| 135 | 135 |
| 136 table_.Register(kVisitFixedArray, &FixedArrayVisitor::Visit); | 136 table_.Register(kVisitFixedArray, &FixedArrayVisitor::Visit); |
| 137 | 137 |
| 138 table_.Register(kVisitFixedDoubleArray, &DataObjectVisitor::Visit); | 138 table_.Register(kVisitFixedDoubleArray, &DataObjectVisitor::Visit); |
| 139 | 139 |
| 140 table_.Register(kVisitFixedTypedArray, &DataObjectVisitor::Visit); | 140 table_.Register(kVisitFixedTypedArray, &DataObjectVisitor::Visit); |
| 141 | 141 |
| 142 table_.Register(kVisitFixedFloat64Array, &DataObjectVisitor::Visit); | 142 table_.Register(kVisitFixedFloat64Array, &DataObjectVisitor::Visit); |
| 143 | 143 |
| 144 table_.Register(kVisitFeedbackVector, &FixedArrayVisitor::Visit); |
| 145 |
| 144 table_.Register(kVisitNativeContext, &VisitNativeContext); | 146 table_.Register(kVisitNativeContext, &VisitNativeContext); |
| 145 | 147 |
| 146 table_.Register(kVisitAllocationSite, &VisitAllocationSite); | 148 table_.Register(kVisitAllocationSite, &VisitAllocationSite); |
| 147 | 149 |
| 148 table_.Register(kVisitByteArray, &DataObjectVisitor::Visit); | 150 table_.Register(kVisitByteArray, &DataObjectVisitor::Visit); |
| 149 | 151 |
| 150 table_.Register(kVisitFreeSpace, &DataObjectVisitor::Visit); | 152 table_.Register(kVisitFreeSpace, &DataObjectVisitor::Visit); |
| 151 | 153 |
| 152 table_.Register(kVisitSeqOneByteString, &DataObjectVisitor::Visit); | 154 table_.Register(kVisitSeqOneByteString, &DataObjectVisitor::Visit); |
| 153 | 155 |
| (...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 | 837 |
| 836 RelocIterator it(this, mode_mask); | 838 RelocIterator it(this, mode_mask); |
| 837 for (; !it.done(); it.next()) { | 839 for (; !it.done(); it.next()) { |
| 838 it.rinfo()->template Visit<StaticVisitor>(heap); | 840 it.rinfo()->template Visit<StaticVisitor>(heap); |
| 839 } | 841 } |
| 840 } | 842 } |
| 841 } | 843 } |
| 842 } // namespace v8::internal | 844 } // namespace v8::internal |
| 843 | 845 |
| 844 #endif // V8_OBJECTS_VISITING_INL_H_ | 846 #endif // V8_OBJECTS_VISITING_INL_H_ |
| OLD | NEW |