/* * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``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 APPLE COMPUTER, INC. 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. */ #include "config.h" #include "Structure.h" #include "Identifier.h" #include "JSObject.h" #include "JSPropertyNameIterator.h" #include "Lookup.h" #include "PropertyNameArray.h" #include "StructureChain.h" #include #include #if ENABLE(JSC_MULTIPLE_THREADS) #include #endif #define DUMP_STRUCTURE_ID_STATISTICS 0 #ifndef NDEBUG #define DO_PROPERTYMAP_CONSTENCY_CHECK 0 #else #define DO_PROPERTYMAP_CONSTENCY_CHECK 0 #endif using namespace std; using namespace WTF; #if DUMP_PROPERTYMAP_STATS int numProbes; int numCollisions; int numRehashes; int numRemoves; #endif namespace JSC { #ifndef NDEBUG static WTF::RefCountedLeakCounter structureCounter("Structure"); #if ENABLE(JSC_MULTIPLE_THREADS) static Mutex& ignoreSetMutex() { DEFINE_STATIC_LOCAL(Mutex, mutex, ()); return mutex; } #endif static bool shouldIgnoreLeaks; static HashSet& ignoreSet = *(new HashSet); #endif #if DUMP_STRUCTURE_ID_STATISTICS static HashSet& liveStructureSet = *(new HashSet); #endif bool StructureTransitionTable::contains(StringImpl* rep, unsigned attributes) const { if (isUsingSingleSlot()) { Structure* transition = singleTransition(); return transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes; } return map()->contains(make_pair(rep, attributes)); } inline Structure* StructureTransitionTable::get(StringImpl* rep, unsigned attributes) const { if (isUsingSingleSlot()) { Structure* transition = singleTransition(); return (transition && transition->m_nameInPrevious == rep && transition->m_attributesInPrevious == attributes) ? transition : 0; } return map()->get(make_pair(rep, attributes)); } inline void StructureTransitionTable::remove(Structure* structure) { if (isUsingSingleSlot()) { // If more than one transition had been added, then we wouldn't be in // single slot mode (even despecifying a from a specific value triggers // map mode). // As such, the passed structure *must* be the existing transition. ASSERT(singleTransition() == structure); setSingleTransition(0); } else { // Check whether a mapping exists for structure's key, and whether the // entry is structure (the latter check may fail if we initially had a // transition with a specific value, and this has been despecified). TransitionMap::iterator entry = map()->find(make_pair(structure->m_nameInPrevious, structure->m_attributesInPrevious)); if (entry != map()->end() && structure == entry->second) map()->remove(entry); } } inline void StructureTransitionTable::add(Structure* structure) { if (isUsingSingleSlot()) { Structure* existingTransition = singleTransition(); // This handles the first transition being added. if (!existingTransition) { setSingleTransition(structure); return; } // This handles the second transition being added // (or the first transition being despecified!) setMap(new TransitionMap()); add(existingTransition); } // Add the structure to the map. std::pair result = map()->add(make_pair(structure->m_nameInPrevious, structure->m_attributesInPrevious), structure); if (!result.second) { // There already is an entry! - we should only hit this when despecifying. ASSERT(result.first->second->m_specificValueInPrevious); ASSERT(!structure->m_specificValueInPrevious); result.first->second = structure; } } void Structure::dumpStatistics() { #if DUMP_STRUCTURE_ID_STATISTICS unsigned numberLeaf = 0; unsigned numberUsingSingleSlot = 0; unsigned numberSingletons = 0; unsigned numberWithPropertyMaps = 0; unsigned totalPropertyMapsSize = 0; HashSet::const_iterator end = liveStructureSet.end(); for (HashSet::const_iterator it = liveStructureSet.begin(); it != end; ++it) { Structure* structure = *it; switch (structure->m_transitionTable.size()) { case 0: ++numberLeaf; if (!structure->m_previous) ++numberSingletons; break; case 1: ++numberUsingSingleSlot; break; } if (structure->m_propertyTable) { ++numberWithPropertyMaps; totalPropertyMapsSize += structure->m_propertyTable->sizeInMemory(); } } printf("Number of live Structures: %d\n", liveStructureSet.size()); printf("Number of Structures using the single item optimization for transition map: %d\n", numberUsingSingleSlot); printf("Number of Structures that are leaf nodes: %d\n", numberLeaf); printf("Number of Structures that singletons: %d\n", numberSingletons); printf("Number of Structures with PropertyMaps: %d\n", numberWithPropertyMaps); printf("Size of a single Structures: %d\n", static_cast(sizeof(Structure))); printf("Size of sum of all property maps: %d\n", totalPropertyMapsSize); printf("Size of average of all property maps: %f\n", static_cast(totalPropertyMapsSize) / static_cast(liveStructureSet.size())); #else printf("Dumping Structure statistics is not enabled.\n"); #endif } Structure::Structure(JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount, const ClassInfo* classInfo) : m_typeInfo(typeInfo) , m_prototype(prototype) , m_specificValueInPrevious(0) , m_classInfo(classInfo) , m_propertyStorageCapacity(typeInfo.isFinal() ? JSFinalObject_inlineStorageCapacity : JSNonFinalObject_inlineStorageCapacity) , m_offset(noOffset) , m_dictionaryKind(NoneDictionaryKind) , m_isPinnedPropertyTable(false) , m_hasGetterSetterProperties(false) , m_hasNonEnumerableProperties(false) , m_attributesInPrevious(0) , m_specificFunctionThrashCount(0) , m_anonymousSlotCount(anonymousSlotCount) , m_preventExtensions(false) { ASSERT(m_prototype); ASSERT(m_prototype->isObject() || m_prototype->isNull()); #ifndef NDEBUG #if ENABLE(JSC_MULTIPLE_THREADS) MutexLocker protect(ignoreSetMutex()); #endif if (shouldIgnoreLeaks) ignoreSet.add(this); else structureCounter.increment(); #endif #if DUMP_STRUCTURE_ID_STATISTICS liveStructureSet.add(this); #endif } Structure::Structure(const Structure* previous) : m_typeInfo(previous->typeInfo()) , m_prototype(previous->storedPrototype()) , m_specificValueInPrevious(0) , m_classInfo(previous->m_classInfo) , m_propertyStorageCapacity(previous->m_propertyStorageCapacity) , m_offset(noOffset) , m_dictionaryKind(NoneDictionaryKind) , m_isPinnedPropertyTable(false) , m_hasGetterSetterProperties(previous->m_hasGetterSetterProperties) , m_hasNonEnumerableProperties(previous->m_hasNonEnumerableProperties) , m_attributesInPrevious(0) , m_specificFunctionThrashCount(previous->m_specificFunctionThrashCount) , m_anonymousSlotCount(previous->anonymousSlotCount()) , m_preventExtensions(previous->m_preventExtensions) { ASSERT(m_prototype); ASSERT(m_prototype->isObject() || m_prototype->isNull()); #ifndef NDEBUG #if ENABLE(JSC_MULTIPLE_THREADS) MutexLocker protect(ignoreSetMutex()); #endif if (shouldIgnoreLeaks) ignoreSet.add(this); else structureCounter.increment(); #endif #if DUMP_STRUCTURE_ID_STATISTICS liveStructureSet.add(this); #endif } Structure::~Structure() { if (m_previous) { ASSERT(m_nameInPrevious); m_previous->m_transitionTable.remove(this); } #ifndef NDEBUG #if ENABLE(JSC_MULTIPLE_THREADS) MutexLocker protect(ignoreSetMutex()); #endif HashSet::iterator it = ignoreSet.find(this); if (it != ignoreSet.end()) ignoreSet.remove(it); else structureCounter.decrement(); #endif #if DUMP_STRUCTURE_ID_STATISTICS liveStructureSet.remove(this); #endif } void Structure::startIgnoringLeaks() { #ifndef NDEBUG shouldIgnoreLeaks = true; #endif } void Structure::stopIgnoringLeaks() { #ifndef NDEBUG shouldIgnoreLeaks = false; #endif } void Structure::materializePropertyMap() { ASSERT(!m_propertyTable); Vector structures; structures.append(this); Structure* structure = this; // Search for the last Structure with a property table. while ((structure = structure->previousID())) { if (structure->m_isPinnedPropertyTable) { ASSERT(structure->m_propertyTable); ASSERT(!structure->m_previous); m_propertyTable = structure->m_propertyTable->copy(m_offset + 1); break; } structures.append(structure); } if (!m_propertyTable) createPropertyMap(m_offset + 1); for (ptrdiff_t i = structures.size() - 2; i >= 0; --i) { structure = structures[i]; PropertyMapEntry entry(structure->m_nameInPrevious.get(), m_anonymousSlotCount + structure->m_offset, structure->m_attributesInPrevious, structure->m_specificValueInPrevious); m_propertyTable->add(entry); } } void Structure::growPropertyStorageCapacity() { if (isUsingInlineStorage()) m_propertyStorageCapacity = JSObject::baseExternalStorageCapacity; else m_propertyStorageCapacity *= 2; } void Structure::despecifyDictionaryFunction(const Identifier& propertyName) { StringImpl* rep = propertyName.impl(); materializePropertyMapIfNecessary(); ASSERT(isDictionary()); ASSERT(m_propertyTable); PropertyMapEntry* entry = m_propertyTable->find(rep).first; ASSERT(entry); entry->specificValue = 0; } PassRefPtr Structure::addPropertyTransitionToExistingStructure(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset) { ASSERT(!structure->isDictionary()); ASSERT(structure->typeInfo().type() == ObjectType); if (Structure* existingTransition = structure->m_transitionTable.get(propertyName.impl(), attributes)) { JSCell* specificValueInPrevious = existingTransition->m_specificValueInPrevious; if (specificValueInPrevious && specificValueInPrevious != specificValue) return 0; ASSERT(existingTransition->m_offset != noOffset); offset = existingTransition->m_offset + existingTransition->m_anonymousSlotCount; ASSERT(offset >= structure->m_anonymousSlotCount); ASSERT(structure->m_anonymousSlotCount == existingTransition->m_anonymousSlotCount); return existingTransition; } return 0; } PassRefPtr Structure::addPropertyTransition(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset) { // If we have a specific function, we may have got to this point if there is // already a transition with the correct property name and attributes, but // specialized to a different function. In this case we just want to give up // and despecialize the transition. // In this case we clear the value of specificFunction which will result // in us adding a non-specific transition, and any subsequent lookup in // Structure::addPropertyTransitionToExistingStructure will just use that. if (specificValue && structure->m_transitionTable.contains(propertyName.impl(), attributes)) specificValue = 0; ASSERT(!structure->isDictionary()); ASSERT(structure->typeInfo().type() == ObjectType); ASSERT(!Structure::addPropertyTransitionToExistingStructure(structure, propertyName, attributes, specificValue, offset)); if (structure->m_specificFunctionThrashCount == maxSpecificFunctionThrashCount) specificValue = 0; if (structure->transitionCount() > s_maxTransitionLength) { RefPtr transition = toCacheableDictionaryTransition(structure); ASSERT(structure != transition); offset = transition->put(propertyName, attributes, specificValue); ASSERT(offset >= structure->m_anonymousSlotCount); ASSERT(structure->m_anonymousSlotCount == transition->m_anonymousSlotCount); if (transition->propertyStorageSize() > transition->propertyStorageCapacity()) transition->growPropertyStorageCapacity(); return transition.release(); } RefPtr transition = create(structure); transition->m_cachedPrototypeChain = structure->m_cachedPrototypeChain; transition->m_previous = structure; transition->m_nameInPrevious = propertyName.impl(); transition->m_attributesInPrevious = attributes; transition->m_specificValueInPrevious = specificValue; if (structure->m_propertyTable) { if (structure->m_isPinnedPropertyTable) transition->m_propertyTable = structure->m_propertyTable->copy(structure->m_propertyTable->size() + 1); else transition->m_propertyTable = structure->m_propertyTable.release(); } else { if (structure->m_previous) transition->materializePropertyMap(); else transition->createPropertyMap(); } offset = transition->put(propertyName, attributes, specificValue); ASSERT(offset >= structure->m_anonymousSlotCount); ASSERT(structure->m_anonymousSlotCount == transition->m_anonymousSlotCount); if (transition->propertyStorageSize() > transition->propertyStorageCapacity()) transition->growPropertyStorageCapacity(); transition->m_offset = offset - structure->m_anonymousSlotCount; ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount()); structure->m_transitionTable.add(transition.get()); return transition.release(); } PassRefPtr Structure::removePropertyTransition(Structure* structure, const Identifier& propertyName, size_t& offset) { ASSERT(!structure->isUncacheableDictionary()); RefPtr transition = toUncacheableDictionaryTransition(structure); offset = transition->remove(propertyName); ASSERT(offset >= structure->m_anonymousSlotCount); ASSERT(structure->m_anonymousSlotCount == transition->m_anonymousSlotCount); return transition.release(); } PassRefPtr Structure::changePrototypeTransition(Structure* structure, JSValue prototype) { RefPtr transition = create(structure); transition->m_prototype = prototype; // Don't set m_offset, as one can not transition to this. structure->materializePropertyMapIfNecessary(); transition->m_propertyTable = structure->copyPropertyTable(); transition->m_isPinnedPropertyTable = true; ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount()); return transition.release(); } PassRefPtr Structure::despecifyFunctionTransition(Structure* structure, const Identifier& replaceFunction) { ASSERT(structure->m_specificFunctionThrashCount < maxSpecificFunctionThrashCount); RefPtr transition = create(structure); ++transition->m_specificFunctionThrashCount; // Don't set m_offset, as one can not transition to this. structure->materializePropertyMapIfNecessary(); transition->m_propertyTable = structure->copyPropertyTable(); transition->m_isPinnedPropertyTable = true; if (transition->m_specificFunctionThrashCount == maxSpecificFunctionThrashCount) transition->despecifyAllFunctions(); else { bool removed = transition->despecifyFunction(replaceFunction); ASSERT_UNUSED(removed, removed); } ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount()); return transition.release(); } PassRefPtr Structure::getterSetterTransition(Structure* structure) { RefPtr transition = create(structure); // Don't set m_offset, as one can not transition to this. structure->materializePropertyMapIfNecessary(); transition->m_propertyTable = structure->copyPropertyTable(); transition->m_isPinnedPropertyTable = true; ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount()); return transition.release(); } PassRefPtr Structure::toDictionaryTransition(Structure* structure, DictionaryKind kind) { ASSERT(!structure->isUncacheableDictionary()); RefPtr transition = create(structure); structure->materializePropertyMapIfNecessary(); transition->m_propertyTable = structure->copyPropertyTable(); transition->m_isPinnedPropertyTable = true; transition->m_dictionaryKind = kind; ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount()); return transition.release(); } PassRefPtr Structure::toCacheableDictionaryTransition(Structure* structure) { return toDictionaryTransition(structure, CachedDictionaryKind); } PassRefPtr Structure::toUncacheableDictionaryTransition(Structure* structure) { return toDictionaryTransition(structure, UncachedDictionaryKind); } // In future we may want to cache this transition. PassRefPtr Structure::sealTransition(Structure* structure) { RefPtr transition = preventExtensionsTransition(structure); if (transition->m_propertyTable) { PropertyTable::iterator end = transition->m_propertyTable->end(); for (PropertyTable::iterator iter = transition->m_propertyTable->begin(); iter != end; ++iter) iter->attributes |= DontDelete; } return transition.release(); } // In future we may want to cache this transition. PassRefPtr Structure::freezeTransition(Structure* structure) { RefPtr transition = preventExtensionsTransition(structure); if (transition->m_propertyTable) { PropertyTable::iterator end = transition->m_propertyTable->end(); for (PropertyTable::iterator iter = transition->m_propertyTable->begin(); iter != end; ++iter) iter->attributes |= (DontDelete | ReadOnly); } return transition.release(); } // In future we may want to cache this transition. PassRefPtr Structure::preventExtensionsTransition(Structure* structure) { RefPtr transition = create(structure); // Don't set m_offset, as one can not transition to this. structure->materializePropertyMapIfNecessary(); transition->m_propertyTable = structure->copyPropertyTable(); transition->m_isPinnedPropertyTable = true; transition->m_preventExtensions = true; ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount()); return transition.release(); } // In future we may want to cache this property. bool Structure::isSealed() { if (isExtensible()) return false; materializePropertyMapIfNecessary(); if (!m_propertyTable) return true; PropertyTable::iterator end = m_propertyTable->end(); for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter) { if ((iter->attributes & DontDelete) != DontDelete) return false; } return true; } // In future we may want to cache this property. bool Structure::isFrozen() { if (isExtensible()) return false; materializePropertyMapIfNecessary(); if (!m_propertyTable) return true; PropertyTable::iterator end = m_propertyTable->end(); for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter) { if ((iter->attributes & (DontDelete | ReadOnly)) != (DontDelete | ReadOnly)) return false; } return true; } PassRefPtr Structure::flattenDictionaryStructure(JSGlobalData& globalData, JSObject* object) { ASSERT(isDictionary()); if (isUncacheableDictionary()) { ASSERT(m_propertyTable); unsigned anonymousSlotCount = m_anonymousSlotCount; size_t propertyCount = m_propertyTable->size(); Vector values(propertyCount); unsigned i = 0; PropertyTable::iterator end = m_propertyTable->end(); for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter, ++i) { values[i] = object->getDirectOffset(iter->offset); // Update property table to have the new property offsets iter->offset = anonymousSlotCount + i; } // Copy the original property values into their final locations for (unsigned i = 0; i < propertyCount; i++) object->putDirectOffset(globalData, anonymousSlotCount + i, values[i]); m_propertyTable->clearDeletedOffsets(); } m_dictionaryKind = NoneDictionaryKind; return this; } size_t Structure::addPropertyWithoutTransition(const Identifier& propertyName, unsigned attributes, JSCell* specificValue) { ASSERT(!m_enumerationCache); if (m_specificFunctionThrashCount == maxSpecificFunctionThrashCount) specificValue = 0; materializePropertyMapIfNecessary(); m_isPinnedPropertyTable = true; size_t offset = put(propertyName, attributes, specificValue); ASSERT(offset >= m_anonymousSlotCount); if (propertyStorageSize() > propertyStorageCapacity()) growPropertyStorageCapacity(); return offset; } size_t Structure::removePropertyWithoutTransition(const Identifier& propertyName) { ASSERT(isUncacheableDictionary()); ASSERT(!m_enumerationCache); materializePropertyMapIfNecessary(); m_isPinnedPropertyTable = true; size_t offset = remove(propertyName); ASSERT(offset >= m_anonymousSlotCount); return offset; } #if DUMP_PROPERTYMAP_STATS struct PropertyMapStatisticsExitLogger { ~PropertyMapStatisticsExitLogger(); }; static PropertyMapStatisticsExitLogger logger; PropertyMapStatisticsExitLogger::~PropertyMapStatisticsExitLogger() { printf("\nJSC::PropertyMap statistics\n\n"); printf("%d probes\n", numProbes); printf("%d collisions (%.1f%%)\n", numCollisions, 100.0 * numCollisions / numProbes); printf("%d rehashes\n", numRehashes); printf("%d removes\n", numRemoves); } #endif #if !DO_PROPERTYMAP_CONSTENCY_CHECK inline void Structure::checkConsistency() { } #endif PropertyTable* Structure::copyPropertyTable() { return m_propertyTable ? new PropertyTable(*m_propertyTable) : 0; } size_t Structure::get(StringImpl* propertyName, unsigned& attributes, JSCell*& specificValue) { materializePropertyMapIfNecessary(); if (!m_propertyTable) return WTF::notFound; PropertyMapEntry* entry = m_propertyTable->find(propertyName).first; if (!entry) return WTF::notFound; attributes = entry->attributes; specificValue = entry->specificValue; ASSERT(entry->offset >= m_anonymousSlotCount); return entry->offset; } bool Structure::despecifyFunction(const Identifier& propertyName) { materializePropertyMapIfNecessary(); if (!m_propertyTable) return false; ASSERT(!propertyName.isNull()); PropertyMapEntry* entry = m_propertyTable->find(propertyName.impl()).first; if (!entry) return false; ASSERT(entry->specificValue); entry->specificValue = 0; return true; } void Structure::despecifyAllFunctions() { materializePropertyMapIfNecessary(); if (!m_propertyTable) return; PropertyTable::iterator end = m_propertyTable->end(); for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter) iter->specificValue = 0; } size_t Structure::put(const Identifier& propertyName, unsigned attributes, JSCell* specificValue) { ASSERT(!propertyName.isNull()); ASSERT(get(propertyName) == notFound); checkConsistency(); if (attributes & DontEnum) m_hasNonEnumerableProperties = true; StringImpl* rep = propertyName.impl(); if (!m_propertyTable) createPropertyMap(); unsigned newOffset; if (m_propertyTable->hasDeletedOffset()) newOffset = m_propertyTable->getDeletedOffset(); else newOffset = m_propertyTable->size() + m_anonymousSlotCount; ASSERT(newOffset >= m_anonymousSlotCount); m_propertyTable->add(PropertyMapEntry(rep, newOffset, attributes, specificValue)); checkConsistency(); return newOffset; } size_t Structure::remove(const Identifier& propertyName) { ASSERT(!propertyName.isNull()); checkConsistency(); StringImpl* rep = propertyName.impl(); if (!m_propertyTable) return notFound; PropertyTable::find_iterator position = m_propertyTable->find(rep); if (!position.first) return notFound; size_t offset = position.first->offset; ASSERT(offset >= m_anonymousSlotCount); m_propertyTable->remove(position); m_propertyTable->addDeletedOffset(offset); checkConsistency(); return offset; } void Structure::createPropertyMap(unsigned capacity) { ASSERT(!m_propertyTable); checkConsistency(); m_propertyTable = new PropertyTable(capacity); checkConsistency(); } void Structure::getPropertyNames(PropertyNameArray& propertyNames, EnumerationMode mode) { materializePropertyMapIfNecessary(); if (!m_propertyTable) return; bool knownUnique = !propertyNames.size(); PropertyTable::iterator end = m_propertyTable->end(); for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter) { ASSERT(m_hasNonEnumerableProperties || !(iter->attributes & DontEnum)); if (!(iter->attributes & DontEnum) || (mode == IncludeDontEnumProperties)) { if (knownUnique) propertyNames.addKnownUnique(iter->key); else propertyNames.add(iter->key); } } } void Structure::initializeThreading() { #if !defined(NDEBUG) && ENABLE(JSC_MULTIPLE_THREADS) ignoreSetMutex(); #endif } #if DO_PROPERTYMAP_CONSTENCY_CHECK void PropertyTable::checkConsistency() { ASSERT(m_indexSize >= PropertyTable::MinimumTableSize); ASSERT(m_indexMask); ASSERT(m_indexSize == m_indexMask + 1); ASSERT(!(m_indexSize & m_indexMask)); ASSERT(m_keyCount <= m_indexSize / 2); ASSERT(m_keyCount + m_deletedCount <= m_indexSize / 2); ASSERT(m_deletedCount <= m_indexSize / 4); unsigned indexCount = 0; unsigned deletedIndexCount = 0; for (unsigned a = 0; a != m_indexSize; ++a) { unsigned entryIndex = m_index[a]; if (entryIndex == PropertyTable::EmptyEntryIndex) continue; if (entryIndex == deletedEntryIndex()) { ++deletedIndexCount; continue; } ASSERT(entryIndex < deletedEntryIndex()); ASSERT(entryIndex - 1 <= usedCount()); ++indexCount; for (unsigned b = a + 1; b != m_indexSize; ++b) ASSERT(m_index[b] != entryIndex); } ASSERT(indexCount == m_keyCount); ASSERT(deletedIndexCount == m_deletedCount); ASSERT(!table()[deletedEntryIndex() - 1].key); unsigned nonEmptyEntryCount = 0; for (unsigned c = 0; c < usedCount(); ++c) { StringImpl* rep = table()[c].key; if (rep == PROPERTY_MAP_DELETED_ENTRY_KEY) continue; ++nonEmptyEntryCount; unsigned i = rep->existingHash(); unsigned k = 0; unsigned entryIndex; while (1) { entryIndex = m_index[i & m_indexMask]; ASSERT(entryIndex != PropertyTable::EmptyEntryIndex); if (rep == table()[entryIndex - 1].key) break; if (k == 0) k = 1 | doubleHash(rep->existingHash()); i += k; } ASSERT(entryIndex == c + 1); } ASSERT(nonEmptyEntryCount == m_keyCount); } void Structure::checkConsistency() { if (!m_propertyTable) return; if (!m_hasNonEnumerableProperties) { PropertyTable::iterator end = m_propertyTable->end(); for (PropertyTable::iterator iter = m_propertyTable->begin(); iter != end; ++iter) { ASSERT(!(iter->attributes & DontEnum)); ASSERT(iter->offset >= m_anonymousSlotCount); } } m_propertyTable->checkConsistency(); } #endif // DO_PROPERTYMAP_CONSTENCY_CHECK } // namespace JSC