2012-07-25 15:23:07 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2010-08-11 14:30:14 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2010-10-01 09:30:42 +00:00
|
|
|
#ifndef V8_OBJECTS_VISITING_H_
|
|
|
|
#define V8_OBJECTS_VISITING_H_
|
2010-08-11 14:30:14 +00:00
|
|
|
|
2011-05-06 06:50:20 +00:00
|
|
|
#include "allocation.h"
|
|
|
|
|
2010-08-11 14:30:14 +00:00
|
|
|
// This file provides base classes and auxiliary methods for defining
|
|
|
|
// static object visitors used during GC.
|
|
|
|
// Visiting HeapObject body with a normal ObjectVisitor requires performing
|
|
|
|
// two switches on object's instance type to determine object size and layout
|
|
|
|
// and one or more virtual method calls on visitor itself.
|
|
|
|
// Static visitor is different: it provides a dispatch table which contains
|
|
|
|
// pointers to specialized visit functions. Each map has the visitor_id
|
|
|
|
// field which contains an index of specialized visitor to use.
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
|
|
|
|
|
|
|
// Base class for all static visitors.
|
|
|
|
class StaticVisitorBase : public AllStatic {
|
|
|
|
public:
|
2012-07-13 12:22:09 +00:00
|
|
|
#define VISITOR_ID_LIST(V) \
|
2012-11-15 13:31:27 +00:00
|
|
|
V(SeqOneByteString) \
|
2012-07-13 12:22:09 +00:00
|
|
|
V(SeqTwoByteString) \
|
|
|
|
V(ShortcutCandidate) \
|
|
|
|
V(ByteArray) \
|
|
|
|
V(FreeSpace) \
|
|
|
|
V(FixedArray) \
|
|
|
|
V(FixedDoubleArray) \
|
2012-08-17 09:03:08 +00:00
|
|
|
V(NativeContext) \
|
2013-07-17 11:50:24 +00:00
|
|
|
V(AllocationSite) \
|
2012-07-13 12:22:09 +00:00
|
|
|
V(DataObject2) \
|
|
|
|
V(DataObject3) \
|
|
|
|
V(DataObject4) \
|
|
|
|
V(DataObject5) \
|
|
|
|
V(DataObject6) \
|
|
|
|
V(DataObject7) \
|
|
|
|
V(DataObject8) \
|
|
|
|
V(DataObject9) \
|
|
|
|
V(DataObjectGeneric) \
|
|
|
|
V(JSObject2) \
|
|
|
|
V(JSObject3) \
|
|
|
|
V(JSObject4) \
|
|
|
|
V(JSObject5) \
|
|
|
|
V(JSObject6) \
|
|
|
|
V(JSObject7) \
|
|
|
|
V(JSObject8) \
|
|
|
|
V(JSObject9) \
|
|
|
|
V(JSObjectGeneric) \
|
|
|
|
V(Struct2) \
|
|
|
|
V(Struct3) \
|
|
|
|
V(Struct4) \
|
|
|
|
V(Struct5) \
|
|
|
|
V(Struct6) \
|
|
|
|
V(Struct7) \
|
|
|
|
V(Struct8) \
|
|
|
|
V(Struct9) \
|
|
|
|
V(StructGeneric) \
|
|
|
|
V(ConsString) \
|
|
|
|
V(SlicedString) \
|
2013-03-22 16:51:28 +00:00
|
|
|
V(Symbol) \
|
2012-07-13 12:22:09 +00:00
|
|
|
V(Oddball) \
|
|
|
|
V(Code) \
|
|
|
|
V(Map) \
|
2013-06-12 15:03:44 +00:00
|
|
|
V(Cell) \
|
2012-07-13 12:22:09 +00:00
|
|
|
V(PropertyCell) \
|
|
|
|
V(SharedFunctionInfo) \
|
|
|
|
V(JSFunction) \
|
|
|
|
V(JSWeakMap) \
|
2013-06-07 10:52:11 +00:00
|
|
|
V(JSArrayBuffer) \
|
|
|
|
V(JSTypedArray) \
|
2013-06-21 13:02:38 +00:00
|
|
|
V(JSDataView) \
|
2012-07-13 12:22:09 +00:00
|
|
|
V(JSRegExp)
|
|
|
|
|
|
|
|
// For data objects, JS objects and structs along with generic visitor which
|
|
|
|
// can visit object of any size we provide visitors specialized by
|
|
|
|
// object size in words.
|
|
|
|
// Ids of specialized visitors are declared in a linear order (without
|
|
|
|
// holes) starting from the id of visitor specialized for 2 words objects
|
|
|
|
// (base visitor id) and ending with the id of generic visitor.
|
|
|
|
// Method GetVisitorIdForSize depends on this ordering to calculate visitor
|
|
|
|
// id of specialized visitor from given instance size, base visitor id and
|
|
|
|
// generic visitor's id.
|
2010-08-11 14:30:14 +00:00
|
|
|
enum VisitorId {
|
2012-07-13 12:22:09 +00:00
|
|
|
#define VISITOR_ID_ENUM_DECL(id) kVisit##id,
|
|
|
|
VISITOR_ID_LIST(VISITOR_ID_ENUM_DECL)
|
|
|
|
#undef VISITOR_ID_ENUM_DECL
|
2010-08-11 14:30:14 +00:00
|
|
|
kVisitorIdCount,
|
2012-07-13 12:22:09 +00:00
|
|
|
kVisitDataObject = kVisitDataObject2,
|
|
|
|
kVisitJSObject = kVisitJSObject2,
|
|
|
|
kVisitStruct = kVisitStruct2,
|
2010-08-11 14:30:14 +00:00
|
|
|
kMinObjectSizeInWords = 2
|
|
|
|
};
|
|
|
|
|
2010-09-06 12:50:11 +00:00
|
|
|
// Visitor ID should fit in one byte.
|
|
|
|
STATIC_ASSERT(kVisitorIdCount <= 256);
|
|
|
|
|
2010-08-11 14:30:14 +00:00
|
|
|
// Determine which specialized visitor should be used for given instance type
|
|
|
|
// and instance type.
|
|
|
|
static VisitorId GetVisitorId(int instance_type, int instance_size);
|
|
|
|
|
|
|
|
static VisitorId GetVisitorId(Map* map) {
|
|
|
|
return GetVisitorId(map->instance_type(), map->instance_size());
|
|
|
|
}
|
|
|
|
|
|
|
|
// For visitors that allow specialization by size calculate VisitorId based
|
|
|
|
// on size, base visitor id and generic visitor id.
|
|
|
|
static VisitorId GetVisitorIdForSize(VisitorId base,
|
|
|
|
VisitorId generic,
|
|
|
|
int object_size) {
|
|
|
|
ASSERT((base == kVisitDataObject) ||
|
|
|
|
(base == kVisitStruct) ||
|
|
|
|
(base == kVisitJSObject));
|
|
|
|
ASSERT(IsAligned(object_size, kPointerSize));
|
|
|
|
ASSERT(kMinObjectSizeInWords * kPointerSize <= object_size);
|
2012-02-23 12:11:24 +00:00
|
|
|
ASSERT(object_size < Page::kMaxNonCodeHeapObjectSize);
|
2010-08-11 14:30:14 +00:00
|
|
|
|
|
|
|
const VisitorId specialization = static_cast<VisitorId>(
|
|
|
|
base + (object_size >> kPointerSizeLog2) - kMinObjectSizeInWords);
|
|
|
|
|
|
|
|
return Min(specialization, generic);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename Callback>
|
|
|
|
class VisitorDispatchTable {
|
|
|
|
public:
|
2011-03-30 15:17:10 +00:00
|
|
|
void CopyFrom(VisitorDispatchTable* other) {
|
|
|
|
// We are not using memcpy to guarantee that during update
|
|
|
|
// every element of callbacks_ array will remain correct
|
|
|
|
// pointer (memcpy might be implemented as a byte copying loop).
|
|
|
|
for (int i = 0; i < StaticVisitorBase::kVisitorIdCount; i++) {
|
|
|
|
NoBarrier_Store(&callbacks_[i], other->callbacks_[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-10 10:35:08 +00:00
|
|
|
inline Callback GetVisitorById(StaticVisitorBase::VisitorId id) {
|
|
|
|
return reinterpret_cast<Callback>(callbacks_[id]);
|
|
|
|
}
|
|
|
|
|
2010-08-11 14:30:14 +00:00
|
|
|
inline Callback GetVisitor(Map* map) {
|
2011-03-30 15:17:10 +00:00
|
|
|
return reinterpret_cast<Callback>(callbacks_[map->visitor_id()]);
|
2010-08-11 14:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Register(StaticVisitorBase::VisitorId id, Callback callback) {
|
2011-01-12 11:56:41 +00:00
|
|
|
ASSERT(id < StaticVisitorBase::kVisitorIdCount); // id is unsigned.
|
2011-03-30 15:17:10 +00:00
|
|
|
callbacks_[id] = reinterpret_cast<AtomicWord>(callback);
|
2010-08-11 14:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Visitor,
|
|
|
|
StaticVisitorBase::VisitorId base,
|
|
|
|
StaticVisitorBase::VisitorId generic,
|
|
|
|
int object_size_in_words>
|
|
|
|
void RegisterSpecialization() {
|
|
|
|
static const int size = object_size_in_words * kPointerSize;
|
|
|
|
Register(StaticVisitorBase::GetVisitorIdForSize(base, generic, size),
|
|
|
|
&Visitor::template VisitSpecialized<size>);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<typename Visitor,
|
|
|
|
StaticVisitorBase::VisitorId base,
|
|
|
|
StaticVisitorBase::VisitorId generic>
|
|
|
|
void RegisterSpecializations() {
|
|
|
|
STATIC_ASSERT(
|
|
|
|
(generic - base + StaticVisitorBase::kMinObjectSizeInWords) == 10);
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 2>();
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 3>();
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 4>();
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 5>();
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 6>();
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 7>();
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 8>();
|
|
|
|
RegisterSpecialization<Visitor, base, generic, 9>();
|
|
|
|
Register(generic, &Visitor::Visit);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2011-03-30 15:17:10 +00:00
|
|
|
AtomicWord callbacks_[StaticVisitorBase::kVisitorIdCount];
|
2010-08-11 14:30:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename StaticVisitor>
|
|
|
|
class BodyVisitorBase : public AllStatic {
|
|
|
|
public:
|
2011-03-18 20:35:07 +00:00
|
|
|
INLINE(static void IteratePointers(Heap* heap,
|
|
|
|
HeapObject* object,
|
2010-08-11 14:30:14 +00:00
|
|
|
int start_offset,
|
2010-12-24 14:44:15 +00:00
|
|
|
int end_offset)) {
|
2010-08-11 14:30:14 +00:00
|
|
|
Object** start_slot = reinterpret_cast<Object**>(object->address() +
|
|
|
|
start_offset);
|
|
|
|
Object** end_slot = reinterpret_cast<Object**>(object->address() +
|
|
|
|
end_offset);
|
2012-10-04 11:09:17 +00:00
|
|
|
StaticVisitor::VisitPointers(heap, start_slot, end_slot);
|
2010-08-11 14:30:14 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
|
|
|
|
class FlexibleBodyVisitor : public BodyVisitorBase<StaticVisitor> {
|
|
|
|
public:
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
|
2010-08-11 14:30:14 +00:00
|
|
|
int object_size = BodyDescriptor::SizeOf(map, object);
|
2010-08-18 15:24:52 +00:00
|
|
|
BodyVisitorBase<StaticVisitor>::IteratePointers(
|
2011-09-19 18:36:47 +00:00
|
|
|
map->GetHeap(),
|
2011-03-18 20:35:07 +00:00
|
|
|
object,
|
|
|
|
BodyDescriptor::kStartOffset,
|
|
|
|
object_size);
|
2010-08-11 14:30:14 +00:00
|
|
|
return static_cast<ReturnType>(object_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<int object_size>
|
|
|
|
static inline ReturnType VisitSpecialized(Map* map, HeapObject* object) {
|
2010-08-17 11:44:01 +00:00
|
|
|
ASSERT(BodyDescriptor::SizeOf(map, object) == object_size);
|
2010-08-18 15:24:52 +00:00
|
|
|
BodyVisitorBase<StaticVisitor>::IteratePointers(
|
2011-09-19 18:36:47 +00:00
|
|
|
map->GetHeap(),
|
2011-03-18 20:35:07 +00:00
|
|
|
object,
|
|
|
|
BodyDescriptor::kStartOffset,
|
|
|
|
object_size);
|
2010-08-11 14:30:14 +00:00
|
|
|
return static_cast<ReturnType>(object_size);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename StaticVisitor, typename BodyDescriptor, typename ReturnType>
|
|
|
|
class FixedBodyVisitor : public BodyVisitorBase<StaticVisitor> {
|
|
|
|
public:
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static ReturnType Visit(Map* map, HeapObject* object)) {
|
2010-08-18 15:24:52 +00:00
|
|
|
BodyVisitorBase<StaticVisitor>::IteratePointers(
|
2011-09-19 18:36:47 +00:00
|
|
|
map->GetHeap(),
|
2011-03-18 20:35:07 +00:00
|
|
|
object,
|
|
|
|
BodyDescriptor::kStartOffset,
|
|
|
|
BodyDescriptor::kEndOffset);
|
2010-08-11 14:30:14 +00:00
|
|
|
return static_cast<ReturnType>(BodyDescriptor::kSize);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Base class for visitors used for a linear new space iteration.
|
|
|
|
// IterateBody returns size of visited object.
|
|
|
|
// Certain types of objects (i.e. Code objects) are not handled
|
|
|
|
// by dispatch table of this visitor because they cannot appear
|
|
|
|
// in the new space.
|
|
|
|
//
|
|
|
|
// This class is intended to be used in the following way:
|
|
|
|
//
|
|
|
|
// class SomeVisitor : public StaticNewSpaceVisitor<SomeVisitor> {
|
|
|
|
// ...
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// This is an example of Curiously recurring template pattern
|
|
|
|
// (see http://en.wikipedia.org/wiki/Curiously_recurring_template_pattern).
|
|
|
|
// We use CRTP to guarantee aggressive compile time optimizations (i.e.
|
|
|
|
// inlining and specialization of StaticVisitor::VisitPointers methods).
|
|
|
|
template<typename StaticVisitor>
|
|
|
|
class StaticNewSpaceVisitor : public StaticVisitorBase {
|
|
|
|
public:
|
2011-09-19 18:36:47 +00:00
|
|
|
static void Initialize();
|
2010-08-11 14:30:14 +00:00
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int IterateBody(Map* map, HeapObject* obj)) {
|
2010-08-11 14:30:14 +00:00
|
|
|
return table_.GetVisitor(map)(map, obj);
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static void VisitPointers(Heap* heap, Object** start, Object** end)) {
|
2011-03-18 20:35:07 +00:00
|
|
|
for (Object** p = start; p < end; p++) StaticVisitor::VisitPointer(heap, p);
|
2010-08-11 14:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int VisitJSFunction(Map* map, HeapObject* object)) {
|
2012-04-17 10:37:41 +00:00
|
|
|
Heap* heap = map->GetHeap();
|
|
|
|
VisitPointers(heap,
|
2012-10-04 11:09:17 +00:00
|
|
|
HeapObject::RawField(object, JSFunction::kPropertiesOffset),
|
2012-04-17 10:37:41 +00:00
|
|
|
HeapObject::RawField(object, JSFunction::kCodeEntryOffset));
|
|
|
|
|
|
|
|
// Don't visit code entry. We are using this visitor only during scavenges.
|
|
|
|
|
|
|
|
VisitPointers(
|
|
|
|
heap,
|
|
|
|
HeapObject::RawField(object,
|
|
|
|
JSFunction::kCodeEntryOffset + kPointerSize),
|
|
|
|
HeapObject::RawField(object,
|
|
|
|
JSFunction::kNonWeakFieldsEndOffset));
|
|
|
|
return JSFunction::kSize;
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int VisitByteArray(Map* map, HeapObject* object)) {
|
2010-08-11 14:30:14 +00:00
|
|
|
return reinterpret_cast<ByteArray*>(object)->ByteArraySize();
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int VisitFixedDoubleArray(Map* map, HeapObject* object)) {
|
2011-06-09 10:03:35 +00:00
|
|
|
int length = reinterpret_cast<FixedDoubleArray*>(object)->length();
|
|
|
|
return FixedDoubleArray::SizeFor(length);
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int VisitJSObject(Map* map, HeapObject* object)) {
|
2011-08-03 12:48:30 +00:00
|
|
|
return JSObjectVisitor::Visit(map, object);
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int VisitSeqOneByteString(Map* map, HeapObject* object)) {
|
2012-11-15 13:31:27 +00:00
|
|
|
return SeqOneByteString::cast(object)->
|
|
|
|
SeqOneByteStringSize(map->instance_type());
|
2010-08-11 14:30:14 +00:00
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int VisitSeqTwoByteString(Map* map, HeapObject* object)) {
|
2010-08-11 14:30:14 +00:00
|
|
|
return SeqTwoByteString::cast(object)->
|
|
|
|
SeqTwoByteStringSize(map->instance_type());
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int VisitFreeSpace(Map* map, HeapObject* object)) {
|
2011-09-19 18:36:47 +00:00
|
|
|
return FreeSpace::cast(object)->Size();
|
|
|
|
}
|
|
|
|
|
2013-06-07 10:52:11 +00:00
|
|
|
INLINE(static int VisitJSArrayBuffer(Map* map, HeapObject* object));
|
|
|
|
INLINE(static int VisitJSTypedArray(Map* map, HeapObject* object));
|
2013-06-21 13:02:38 +00:00
|
|
|
INLINE(static int VisitJSDataView(Map* map, HeapObject* object));
|
2013-06-07 10:52:11 +00:00
|
|
|
|
2010-08-11 14:30:14 +00:00
|
|
|
class DataObjectVisitor {
|
|
|
|
public:
|
|
|
|
template<int object_size>
|
|
|
|
static inline int VisitSpecialized(Map* map, HeapObject* object) {
|
|
|
|
return object_size;
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static int Visit(Map* map, HeapObject* object)) {
|
2010-08-11 14:30:14 +00:00
|
|
|
return map->instance_size();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef FlexibleBodyVisitor<StaticVisitor,
|
|
|
|
StructBodyDescriptor,
|
|
|
|
int> StructVisitor;
|
|
|
|
|
|
|
|
typedef FlexibleBodyVisitor<StaticVisitor,
|
|
|
|
JSObject::BodyDescriptor,
|
|
|
|
int> JSObjectVisitor;
|
|
|
|
|
|
|
|
typedef int (*Callback)(Map* map, HeapObject* object);
|
|
|
|
|
|
|
|
static VisitorDispatchTable<Callback> table_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename StaticVisitor>
|
|
|
|
VisitorDispatchTable<typename StaticNewSpaceVisitor<StaticVisitor>::Callback>
|
2012-07-25 15:23:07 +00:00
|
|
|
StaticNewSpaceVisitor<StaticVisitor>::table_;
|
|
|
|
|
|
|
|
|
|
|
|
// Base class for visitors used to transitively mark the entire heap.
|
|
|
|
// IterateBody returns nothing.
|
|
|
|
// Certain types of objects might not be handled by this base class and
|
|
|
|
// no visitor function is registered by the generic initialization. A
|
|
|
|
// specialized visitor function needs to be provided by the inheriting
|
|
|
|
// class itself for those cases.
|
|
|
|
//
|
|
|
|
// This class is intended to be used in the following way:
|
|
|
|
//
|
|
|
|
// class SomeVisitor : public StaticMarkingVisitor<SomeVisitor> {
|
|
|
|
// ...
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// This is an example of Curiously recurring template pattern.
|
|
|
|
template<typename StaticVisitor>
|
|
|
|
class StaticMarkingVisitor : public StaticVisitorBase {
|
|
|
|
public:
|
|
|
|
static void Initialize();
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static void IterateBody(Map* map, HeapObject* obj)) {
|
2012-07-25 15:23:07 +00:00
|
|
|
table_.GetVisitor(map)(map, obj);
|
|
|
|
}
|
|
|
|
|
2013-06-26 16:17:12 +00:00
|
|
|
INLINE(static void VisitPropertyCell(Map* map, HeapObject* object));
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static void VisitCodeEntry(Heap* heap, Address entry_address));
|
|
|
|
INLINE(static void VisitEmbeddedPointer(Heap* heap, RelocInfo* rinfo));
|
2013-06-12 15:03:44 +00:00
|
|
|
INLINE(static void VisitCell(Heap* heap, RelocInfo* rinfo));
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static void VisitDebugTarget(Heap* heap, RelocInfo* rinfo));
|
|
|
|
INLINE(static void VisitCodeTarget(Heap* heap, RelocInfo* rinfo));
|
|
|
|
INLINE(static void VisitCodeAgeSequence(Heap* heap, RelocInfo* rinfo));
|
|
|
|
INLINE(static void VisitExternalReference(RelocInfo* rinfo)) { }
|
|
|
|
INLINE(static void VisitRuntimeEntry(RelocInfo* rinfo)) { }
|
2012-07-25 15:23:07 +00:00
|
|
|
|
2012-10-12 12:41:29 +00:00
|
|
|
// TODO(mstarzinger): This should be made protected once refactoring is done.
|
|
|
|
// Mark non-optimize code for functions inlined into the given optimized
|
|
|
|
// code. This will prevent it from being flushed.
|
|
|
|
static void MarkInlinedFunctionsCode(Heap* heap, Code* code);
|
|
|
|
|
2012-07-25 15:23:07 +00:00
|
|
|
protected:
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static void VisitMap(Map* map, HeapObject* object));
|
|
|
|
INLINE(static void VisitCode(Map* map, HeapObject* object));
|
|
|
|
INLINE(static void VisitSharedFunctionInfo(Map* map, HeapObject* object));
|
|
|
|
INLINE(static void VisitJSFunction(Map* map, HeapObject* object));
|
|
|
|
INLINE(static void VisitJSRegExp(Map* map, HeapObject* object));
|
2013-06-07 10:52:11 +00:00
|
|
|
INLINE(static void VisitJSArrayBuffer(Map* map, HeapObject* object));
|
|
|
|
INLINE(static void VisitJSTypedArray(Map* map, HeapObject* object));
|
2013-06-21 13:02:38 +00:00
|
|
|
INLINE(static void VisitJSDataView(Map* map, HeapObject* object));
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static void VisitNativeContext(Map* map, HeapObject* object));
|
2012-07-25 15:23:07 +00:00
|
|
|
|
2012-09-17 10:04:39 +00:00
|
|
|
// Mark pointers in a Map and its TransitionArray together, possibly
|
|
|
|
// treating transitions or back pointers weak.
|
|
|
|
static void MarkMapContents(Heap* heap, Map* map);
|
|
|
|
static void MarkTransitionArray(Heap* heap, TransitionArray* transitions);
|
|
|
|
|
2012-10-12 12:41:29 +00:00
|
|
|
// Code flushing support.
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static bool IsFlushable(Heap* heap, JSFunction* function));
|
|
|
|
INLINE(static bool IsFlushable(Heap* heap, SharedFunctionInfo* shared_info));
|
2012-10-12 12:41:29 +00:00
|
|
|
|
|
|
|
// Helpers used by code flushing support that visit pointer fields and treat
|
|
|
|
// references to code objects either strongly or weakly.
|
|
|
|
static void VisitSharedFunctionInfoStrongCode(Heap* heap, HeapObject* object);
|
|
|
|
static void VisitSharedFunctionInfoWeakCode(Heap* heap, HeapObject* object);
|
|
|
|
static void VisitJSFunctionStrongCode(Heap* heap, HeapObject* object);
|
|
|
|
static void VisitJSFunctionWeakCode(Heap* heap, HeapObject* object);
|
|
|
|
|
2012-07-25 15:23:07 +00:00
|
|
|
class DataObjectVisitor {
|
|
|
|
public:
|
|
|
|
template<int size>
|
|
|
|
static inline void VisitSpecialized(Map* map, HeapObject* object) {
|
|
|
|
}
|
|
|
|
|
2013-01-24 09:40:57 +00:00
|
|
|
INLINE(static void Visit(Map* map, HeapObject* object)) {
|
2012-07-25 15:23:07 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-11-15 17:57:40 +00:00
|
|
|
typedef FlexibleBodyVisitor<StaticVisitor,
|
|
|
|
FixedArray::BodyDescriptor,
|
|
|
|
void> FixedArrayVisitor;
|
|
|
|
|
2012-07-25 15:23:07 +00:00
|
|
|
typedef FlexibleBodyVisitor<StaticVisitor,
|
|
|
|
JSObject::BodyDescriptor,
|
|
|
|
void> JSObjectVisitor;
|
|
|
|
|
|
|
|
typedef FlexibleBodyVisitor<StaticVisitor,
|
|
|
|
StructBodyDescriptor,
|
|
|
|
void> StructObjectVisitor;
|
|
|
|
|
|
|
|
typedef void (*Callback)(Map* map, HeapObject* object);
|
|
|
|
|
|
|
|
static VisitorDispatchTable<Callback> table_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template<typename StaticVisitor>
|
|
|
|
VisitorDispatchTable<typename StaticMarkingVisitor<StaticVisitor>::Callback>
|
|
|
|
StaticMarkingVisitor<StaticVisitor>::table_;
|
2010-08-11 14:30:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
} } // namespace v8::internal
|
|
|
|
|
2010-10-01 09:30:42 +00:00
|
|
|
#endif // V8_OBJECTS_VISITING_H_
|