HELLO·Android
系统源代码
IT资讯
技术文章
我的收藏
注册
登录
-
我收藏的文章
创建代码块
我的代码块
我的账号
Kitkat
|
4.4.4_r1
下载
查看原文件
收藏
根目录
external
chromium_org
v8
src
objects-visiting-inl.h
// Copyright 2012 the V8 project authors. All rights reserved. // 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. #ifndef V8_OBJECTS_VISITING_INL_H_ #define V8_OBJECTS_VISITING_INL_H_ namespace v8 { namespace internal { template
void StaticNewSpaceVisitor
::Initialize() { table_.Register(kVisitShortcutCandidate, &FixedBodyVisitor
::Visit); table_.Register(kVisitConsString, &FixedBodyVisitor
::Visit); table_.Register(kVisitSlicedString, &FixedBodyVisitor
::Visit); table_.Register(kVisitSymbol, &FixedBodyVisitor
::Visit); table_.Register(kVisitFixedArray, &FlexibleBodyVisitor
::Visit); table_.Register(kVisitFixedDoubleArray, &VisitFixedDoubleArray); table_.Register(kVisitNativeContext, &FixedBodyVisitor
::Visit); table_.Register(kVisitByteArray, &VisitByteArray); table_.Register(kVisitSharedFunctionInfo, &FixedBodyVisitor
::Visit); table_.Register(kVisitSeqOneByteString, &VisitSeqOneByteString); table_.Register(kVisitSeqTwoByteString, &VisitSeqTwoByteString); table_.Register(kVisitJSFunction, &VisitJSFunction); table_.Register(kVisitJSArrayBuffer, &VisitJSArrayBuffer); table_.Register(kVisitJSTypedArray, &VisitJSTypedArray); table_.Register(kVisitJSDataView, &VisitJSDataView); table_.Register(kVisitFreeSpace, &VisitFreeSpace); table_.Register(kVisitJSWeakMap, &JSObjectVisitor::Visit); table_.Register(kVisitJSWeakSet, &JSObjectVisitor::Visit); table_.Register(kVisitJSRegExp, &JSObjectVisitor::Visit); table_.template RegisterSpecializations
(); table_.template RegisterSpecializations
(); table_.template RegisterSpecializations
(); } template
int StaticNewSpaceVisitor
::VisitJSArrayBuffer( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); STATIC_ASSERT( JSArrayBuffer::kWeakFirstViewOffset == JSArrayBuffer::kWeakNextOffset + kPointerSize); VisitPointers( heap, HeapObject::RawField(object, JSArrayBuffer::BodyDescriptor::kStartOffset), HeapObject::RawField(object, JSArrayBuffer::kWeakNextOffset)); VisitPointers( heap, HeapObject::RawField(object, JSArrayBuffer::kWeakNextOffset + 2 * kPointerSize), HeapObject::RawField(object, JSArrayBuffer::kSizeWithInternalFields)); return JSArrayBuffer::kSizeWithInternalFields; } template
int StaticNewSpaceVisitor
::VisitJSTypedArray( Map* map, HeapObject* object) { VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSTypedArray::BodyDescriptor::kStartOffset), HeapObject::RawField(object, JSTypedArray::kWeakNextOffset)); VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSTypedArray::kWeakNextOffset + kPointerSize), HeapObject::RawField(object, JSTypedArray::kSizeWithInternalFields)); return JSTypedArray::kSizeWithInternalFields; } template
int StaticNewSpaceVisitor
::VisitJSDataView( Map* map, HeapObject* object) { VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSDataView::BodyDescriptor::kStartOffset), HeapObject::RawField(object, JSDataView::kWeakNextOffset)); VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSDataView::kWeakNextOffset + kPointerSize), HeapObject::RawField(object, JSDataView::kSizeWithInternalFields)); return JSDataView::kSizeWithInternalFields; } template
void StaticMarkingVisitor
::Initialize() { table_.Register(kVisitShortcutCandidate, &FixedBodyVisitor
::Visit); table_.Register(kVisitConsString, &FixedBodyVisitor
::Visit); table_.Register(kVisitSlicedString, &FixedBodyVisitor
::Visit); table_.Register(kVisitSymbol, &FixedBodyVisitor
::Visit); table_.Register(kVisitFixedArray, &FixedArrayVisitor::Visit); table_.Register(kVisitFixedDoubleArray, &DataObjectVisitor::Visit); table_.Register(kVisitConstantPoolArray, &VisitConstantPoolArray); table_.Register(kVisitNativeContext, &VisitNativeContext); table_.Register(kVisitAllocationSite, &VisitAllocationSite); table_.Register(kVisitByteArray, &DataObjectVisitor::Visit); table_.Register(kVisitFreeSpace, &DataObjectVisitor::Visit); table_.Register(kVisitSeqOneByteString, &DataObjectVisitor::Visit); table_.Register(kVisitSeqTwoByteString, &DataObjectVisitor::Visit); table_.Register(kVisitJSWeakMap, &StaticVisitor::VisitWeakCollection); table_.Register(kVisitJSWeakSet, &StaticVisitor::VisitWeakCollection); table_.Register(kVisitOddball, &FixedBodyVisitor
::Visit); table_.Register(kVisitMap, &VisitMap); table_.Register(kVisitCode, &VisitCode); table_.Register(kVisitSharedFunctionInfo, &VisitSharedFunctionInfo); table_.Register(kVisitJSFunction, &VisitJSFunction); table_.Register(kVisitJSArrayBuffer, &VisitJSArrayBuffer); table_.Register(kVisitJSTypedArray, &VisitJSTypedArray); table_.Register(kVisitJSDataView, &VisitJSDataView); // Registration for kVisitJSRegExp is done by StaticVisitor. table_.Register(kVisitCell, &FixedBodyVisitor
::Visit); table_.Register(kVisitPropertyCell, &VisitPropertyCell); table_.template RegisterSpecializations
(); table_.template RegisterSpecializations
(); table_.template RegisterSpecializations
(); } template
void StaticMarkingVisitor
::VisitCodeEntry( Heap* heap, Address entry_address) { Code* code = Code::cast(Code::GetObjectFromEntryAddress(entry_address)); heap->mark_compact_collector()->RecordCodeEntrySlot(entry_address, code); StaticVisitor::MarkObject(heap, code); } template
void StaticMarkingVisitor
::VisitEmbeddedPointer( Heap* heap, RelocInfo* rinfo) { ASSERT(rinfo->rmode() == RelocInfo::EMBEDDED_OBJECT); ASSERT(!rinfo->target_object()->IsConsString()); HeapObject* object = HeapObject::cast(rinfo->target_object()); heap->mark_compact_collector()->RecordRelocSlot(rinfo, object); if (!Code::IsWeakEmbeddedObject(rinfo->host()->kind(), object)) { StaticVisitor::MarkObject(heap, object); } } template
void StaticMarkingVisitor
::VisitCell( Heap* heap, RelocInfo* rinfo) { ASSERT(rinfo->rmode() == RelocInfo::CELL); Cell* cell = rinfo->target_cell(); StaticVisitor::MarkObject(heap, cell); } template
void StaticMarkingVisitor
::VisitDebugTarget( Heap* heap, RelocInfo* rinfo) { ASSERT((RelocInfo::IsJSReturn(rinfo->rmode()) && rinfo->IsPatchedReturnSequence()) || (RelocInfo::IsDebugBreakSlot(rinfo->rmode()) && rinfo->IsPatchedDebugBreakSlotSequence())); Code* target = Code::GetCodeFromTargetAddress(rinfo->call_address()); heap->mark_compact_collector()->RecordRelocSlot(rinfo, target); StaticVisitor::MarkObject(heap, target); } template
void StaticMarkingVisitor
::VisitCodeTarget( Heap* heap, RelocInfo* rinfo) { ASSERT(RelocInfo::IsCodeTarget(rinfo->rmode())); Code* target = Code::GetCodeFromTargetAddress(rinfo->target_address()); // Monomorphic ICs are preserved when possible, but need to be flushed // when they might be keeping a Context alive, or when the heap is about // to be serialized. if (FLAG_cleanup_code_caches_at_gc && target->is_inline_cache_stub() && (target->ic_state() == MEGAMORPHIC || target->ic_state() == GENERIC || target->ic_state() == POLYMORPHIC || heap->flush_monomorphic_ics() || Serializer::enabled() || target->ic_age() != heap->global_ic_age())) { IC::Clear(target->GetIsolate(), rinfo->pc()); target = Code::GetCodeFromTargetAddress(rinfo->target_address()); } heap->mark_compact_collector()->RecordRelocSlot(rinfo, target); StaticVisitor::MarkObject(heap, target); } template
void StaticMarkingVisitor
::VisitCodeAgeSequence( Heap* heap, RelocInfo* rinfo) { ASSERT(RelocInfo::IsCodeAgeSequence(rinfo->rmode())); Code* target = rinfo->code_age_stub(); ASSERT(target != NULL); heap->mark_compact_collector()->RecordRelocSlot(rinfo, target); StaticVisitor::MarkObject(heap, target); } template
void StaticMarkingVisitor
::VisitNativeContext( Map* map, HeapObject* object) { FixedBodyVisitor
::Visit(map, object); MarkCompactCollector* collector = map->GetHeap()->mark_compact_collector(); for (int idx = Context::FIRST_WEAK_SLOT; idx < Context::NATIVE_CONTEXT_SLOTS; ++idx) { Object** slot = HeapObject::RawField(object, FixedArray::OffsetOfElementAt(idx)); collector->RecordSlot(slot, slot, *slot); } } template
void StaticMarkingVisitor
::VisitMap( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); Map* map_object = Map::cast(object); // Clears the cache of ICs related to this map. if (FLAG_cleanup_code_caches_at_gc) { map_object->ClearCodeCache(heap); } // When map collection is enabled we have to mark through map's transitions // and back pointers in a special way to make these links weak. if (FLAG_collect_maps && map_object->CanTransition()) { MarkMapContents(heap, map_object); } else { StaticVisitor::VisitPointers(heap, HeapObject::RawField(object, Map::kPointerFieldsBeginOffset), HeapObject::RawField(object, Map::kPointerFieldsEndOffset)); } } template
void StaticMarkingVisitor
::VisitPropertyCell( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); Object** slot = HeapObject::RawField(object, PropertyCell::kDependentCodeOffset); if (FLAG_collect_maps) { // Mark property cell dependent codes array but do not push it onto marking // stack, this will make references from it weak. We will clean dead // codes when we iterate over property cells in ClearNonLiveReferences. HeapObject* obj = HeapObject::cast(*slot); heap->mark_compact_collector()->RecordSlot(slot, slot, obj); StaticVisitor::MarkObjectWithoutPush(heap, obj); } else { StaticVisitor::VisitPointer(heap, slot); } StaticVisitor::VisitPointers(heap, HeapObject::RawField(object, PropertyCell::kPointerFieldsBeginOffset), HeapObject::RawField(object, PropertyCell::kPointerFieldsEndOffset)); } template
void StaticMarkingVisitor
::VisitAllocationSite( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); Object** slot = HeapObject::RawField(object, AllocationSite::kDependentCodeOffset); if (FLAG_collect_maps) { // Mark allocation site dependent codes array but do not push it onto // marking stack, this will make references from it weak. We will clean // dead codes when we iterate over allocation sites in // ClearNonLiveReferences. HeapObject* obj = HeapObject::cast(*slot); heap->mark_compact_collector()->RecordSlot(slot, slot, obj); StaticVisitor::MarkObjectWithoutPush(heap, obj); } else { StaticVisitor::VisitPointer(heap, slot); } StaticVisitor::VisitPointers(heap, HeapObject::RawField(object, AllocationSite::kPointerFieldsBeginOffset), HeapObject::RawField(object, AllocationSite::kPointerFieldsEndOffset)); } template
void StaticMarkingVisitor
::VisitCode( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); Code* code = Code::cast(object); if (FLAG_cleanup_code_caches_at_gc) { code->ClearTypeFeedbackCells(heap); } if (FLAG_age_code && !Serializer::enabled()) { code->MakeOlder(heap->mark_compact_collector()->marking_parity()); } code->CodeIterateBody
(heap); } template
void StaticMarkingVisitor
::VisitSharedFunctionInfo( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); SharedFunctionInfo* shared = SharedFunctionInfo::cast(object); if (shared->ic_age() != heap->global_ic_age()) { shared->ResetForNewContext(heap->global_ic_age()); } if (FLAG_cache_optimized_code && FLAG_flush_optimized_code_cache && !shared->optimized_code_map()->IsSmi()) { // Always flush the optimized code map if requested by flag. shared->ClearOptimizedCodeMap(); } MarkCompactCollector* collector = heap->mark_compact_collector(); if (collector->is_code_flushing_enabled()) { if (FLAG_cache_optimized_code && !shared->optimized_code_map()->IsSmi()) { // Add the shared function info holding an optimized code map to // the code flusher for processing of code maps after marking. collector->code_flusher()->AddOptimizedCodeMap(shared); // Treat all references within the code map weakly by marking the // code map itself but not pushing it onto the marking deque. FixedArray* code_map = FixedArray::cast(shared->optimized_code_map()); StaticVisitor::MarkObjectWithoutPush(heap, code_map); } if (IsFlushable(heap, shared)) { // This function's code looks flushable. But we have to postpone // the decision until we see all functions that point to the same // SharedFunctionInfo because some of them might be optimized. // That would also make the non-optimized version of the code // non-flushable, because it is required for bailing out from // optimized code. collector->code_flusher()->AddCandidate(shared); // Treat the reference to the code object weakly. VisitSharedFunctionInfoWeakCode(heap, object); return; } } else { if (FLAG_cache_optimized_code && !shared->optimized_code_map()->IsSmi()) { // Flush optimized code map on major GCs without code flushing, // needed because cached code doesn't contain breakpoints. shared->ClearOptimizedCodeMap(); } } VisitSharedFunctionInfoStrongCode(heap, object); } template
void StaticMarkingVisitor
::VisitConstantPoolArray( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); ConstantPoolArray* constant_pool = ConstantPoolArray::cast(object); int first_ptr_offset = constant_pool->OffsetOfElementAt( constant_pool->first_ptr_index()); int last_ptr_offset = constant_pool->OffsetOfElementAt( constant_pool->first_ptr_index() + constant_pool->count_of_ptr_entries()); StaticVisitor::VisitPointers( heap, HeapObject::RawField(object, first_ptr_offset), HeapObject::RawField(object, last_ptr_offset)); } template
void StaticMarkingVisitor
::VisitJSFunction( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); JSFunction* function = JSFunction::cast(object); MarkCompactCollector* collector = heap->mark_compact_collector(); if (collector->is_code_flushing_enabled()) { if (IsFlushable(heap, function)) { // This function's code looks flushable. But we have to postpone // the decision until we see all functions that point to the same // SharedFunctionInfo because some of them might be optimized. // That would also make the non-optimized version of the code // non-flushable, because it is required for bailing out from // optimized code. collector->code_flusher()->AddCandidate(function); // Visit shared function info immediately to avoid double checking // of its flushability later. This is just an optimization because // the shared function info would eventually be visited. SharedFunctionInfo* shared = function->shared(); if (StaticVisitor::MarkObjectWithoutPush(heap, shared)) { StaticVisitor::MarkObject(heap, shared->map()); VisitSharedFunctionInfoWeakCode(heap, shared); } // Treat the reference to the code object weakly. VisitJSFunctionWeakCode(heap, object); return; } else { // Visit all unoptimized code objects to prevent flushing them. StaticVisitor::MarkObject(heap, function->shared()->code()); if (function->code()->kind() == Code::OPTIMIZED_FUNCTION) { MarkInlinedFunctionsCode(heap, function->code()); } } } VisitJSFunctionStrongCode(heap, object); } template
void StaticMarkingVisitor
::VisitJSRegExp( Map* map, HeapObject* object) { int last_property_offset = JSRegExp::kSize + kPointerSize * map->inobject_properties(); StaticVisitor::VisitPointers(map->GetHeap(), HeapObject::RawField(object, JSRegExp::kPropertiesOffset), HeapObject::RawField(object, last_property_offset)); } template
void StaticMarkingVisitor
::VisitJSArrayBuffer( Map* map, HeapObject* object) { Heap* heap = map->GetHeap(); STATIC_ASSERT( JSArrayBuffer::kWeakFirstViewOffset == JSArrayBuffer::kWeakNextOffset + kPointerSize); StaticVisitor::VisitPointers( heap, HeapObject::RawField(object, JSArrayBuffer::BodyDescriptor::kStartOffset), HeapObject::RawField(object, JSArrayBuffer::kWeakNextOffset)); StaticVisitor::VisitPointers( heap, HeapObject::RawField(object, JSArrayBuffer::kWeakNextOffset + 2 * kPointerSize), HeapObject::RawField(object, JSArrayBuffer::kSizeWithInternalFields)); } template
void StaticMarkingVisitor
::VisitJSTypedArray( Map* map, HeapObject* object) { StaticVisitor::VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSTypedArray::BodyDescriptor::kStartOffset), HeapObject::RawField(object, JSTypedArray::kWeakNextOffset)); StaticVisitor::VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSTypedArray::kWeakNextOffset + kPointerSize), HeapObject::RawField(object, JSTypedArray::kSizeWithInternalFields)); } template
void StaticMarkingVisitor
::VisitJSDataView( Map* map, HeapObject* object) { StaticVisitor::VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSDataView::BodyDescriptor::kStartOffset), HeapObject::RawField(object, JSDataView::kWeakNextOffset)); StaticVisitor::VisitPointers( map->GetHeap(), HeapObject::RawField(object, JSDataView::kWeakNextOffset + kPointerSize), HeapObject::RawField(object, JSDataView::kSizeWithInternalFields)); } template
void StaticMarkingVisitor
::MarkMapContents( Heap* heap, Map* map) { // Make sure that the back pointer stored either in the map itself or // inside its transitions array is marked. Skip recording the back // pointer slot since map space is not compacted. StaticVisitor::MarkObject(heap, HeapObject::cast(map->GetBackPointer())); // Treat pointers in the transitions array as weak and also mark that // array to prevent visiting it later. Skip recording the transition // array slot, since it will be implicitly recorded when the pointer // fields of this map are visited. TransitionArray* transitions = map->unchecked_transition_array(); if (transitions->IsTransitionArray()) { MarkTransitionArray(heap, transitions); } else { // Already marked by marking map->GetBackPointer() above. ASSERT(transitions->IsMap() || transitions->IsUndefined()); } // Since descriptor arrays are potentially shared, ensure that only the // descriptors that belong to this map are marked. The first time a // non-empty descriptor array is marked, its header is also visited. The slot // holding the descriptor array will be implicitly recorded when the pointer // fields of this map are visited. DescriptorArray* descriptors = map->instance_descriptors(); if (StaticVisitor::MarkObjectWithoutPush(heap, descriptors) && descriptors->length() > 0) { StaticVisitor::VisitPointers(heap, descriptors->GetFirstElementAddress(), descriptors->GetDescriptorEndSlot(0)); } int start = 0; int end = map->NumberOfOwnDescriptors(); if (start < end) { StaticVisitor::VisitPointers(heap, descriptors->GetDescriptorStartSlot(start), descriptors->GetDescriptorEndSlot(end)); } // Mark prototype dependent codes array but do not push it onto marking // stack, this will make references from it weak. We will clean dead // codes when we iterate over maps in ClearNonLiveTransitions. Object** slot = HeapObject::RawField(map, Map::kDependentCodeOffset); HeapObject* obj = HeapObject::cast(*slot); heap->mark_compact_collector()->RecordSlot(slot, slot, obj); StaticVisitor::MarkObjectWithoutPush(heap, obj); // Mark the pointer fields of the Map. Since the transitions array has // been marked already, it is fine that one of these fields contains a // pointer to it. StaticVisitor::VisitPointers(heap, HeapObject::RawField(map, Map::kPointerFieldsBeginOffset), HeapObject::RawField(map, Map::kPointerFieldsEndOffset)); } template
void StaticMarkingVisitor
::MarkTransitionArray( Heap* heap, TransitionArray* transitions) { if (!StaticVisitor::MarkObjectWithoutPush(heap, transitions)) return; // Simple transitions do not have keys nor prototype transitions. if (transitions->IsSimpleTransition()) return; if (transitions->HasPrototypeTransitions()) { // Mark prototype transitions array but do not push it onto marking // stack, this will make references from it weak. We will clean dead // prototype transitions in ClearNonLiveTransitions. Object** slot = transitions->GetPrototypeTransitionsSlot(); HeapObject* obj = HeapObject::cast(*slot); heap->mark_compact_collector()->RecordSlot(slot, slot, obj); StaticVisitor::MarkObjectWithoutPush(heap, obj); } for (int i = 0; i < transitions->number_of_transitions(); ++i) { StaticVisitor::VisitPointer(heap, transitions->GetKeySlot(i)); } } template
void StaticMarkingVisitor
::MarkInlinedFunctionsCode( Heap* heap, Code* code) { // For optimized functions we should retain both non-optimized version // of its code and non-optimized version of all inlined functions. // This is required to support bailing out from inlined code. DeoptimizationInputData* data = DeoptimizationInputData::cast(code->deoptimization_data()); FixedArray* literals = data->LiteralArray(); for (int i = 0, count = data->InlinedFunctionCount()->value(); i < count; i++) { JSFunction* inlined = JSFunction::cast(literals->get(i)); StaticVisitor::MarkObject(heap, inlined->shared()->code()); } } inline static bool IsValidNonBuiltinContext(Object* context) { return context->IsContext() && !Context::cast(context)->global_object()->IsJSBuiltinsObject(); } inline static bool HasSourceCode(Heap* heap, SharedFunctionInfo* info) { Object* undefined = heap->undefined_value(); return (info->script() != undefined) && (reinterpret_cast
登录后可以享受更多权益
您还没有登录,登录后您可以:
收藏Android系统代码
收藏喜欢的文章
多个平台共享账号
去登录
首次使用?从这里
注册