HomeSort by relevance Sort by last modified time
    Searched full:m_structure (Results 1 - 7 of 7) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSObject.h 143 size_t offset = m_structure->get(propertyName);
149 size_t offset = m_structure->get(propertyName);
156 size_t offset = m_structure->get(propertyName, attributes, specificFunction);
168 bool hasCustomProperties() { return !m_structure->isEmpty(); }
169 bool hasGetterSetterProperties() { return m_structure->hasGetterSetterProperties(); }
202 bool isUsingInlineStorage() const { return m_structure->isUsingInlineStorage(); }
214 m_structure->flattenDictionaryStructure(this);
222 ASSERT(index < m_structure->anonymousSlotCount());
227 ASSERT(index < m_structure->anonymousSlotCount());
288 ASSERT(m_structure->propertyStorageCapacity() == inlineStorageCapacity)
    [all...]
JSCell.h 125 Structure* m_structure; member in class:JSC::JSCell
129 : m_structure(structure)
140 return m_structure->typeInfo().type() == NumberType;
146 return m_structure->typeInfo().type() == ObjectType;
151 return m_structure->typeInfo().type() == StringType;
156 return m_structure;
JSObject.cpp 133 if ((m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly)
205 if (m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) {
301 ASSERT(m_structure->hasGetterSetterProperties());
314 if (!m_structure->isDictionary()) {
315 RefPtr<Structure> structure = Structure::getterSetterTransition(m_structure);
320 m_structure->setHasGetterSetterProperties(true);
328 ASSERT(m_structure->hasGetterSetterProperties());
341 if (!m_structure->isDictionary()) {
342 RefPtr<Structure> structure = Structure::getterSetterTransition(m_structure);
347 m_structure->setHasGetterSetterProperties(true)
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 217 Jump structureCheck = branchPtrWithPatch(NotEqual, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), info.structureToCompare, ImmPtr(reinterpret_cast<void*>(patchGetByIdDefaultStructure)));
219 Jump protoStructureCheck = branchPtrWithPatch(NotEqual, Address(regT2, OBJECT_OFFSETOF(JSCell, m_structure)), protoStructureToCompare, ImmPtr(reinterpret_cast<void*>(patchGetByIdDefaultStructure)));
390 Jump structureCheck = branchPtrWithPatch(NotEqual, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), structureToCompare, ImmPtr(reinterpret_cast<void*>(patchGetByIdDefaultStructure)));
470 addSlowCase(branchPtrWithPatch(NotEqual, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), structureToCompare, ImmPtr(reinterpret_cast<void*>(patchGetByIdDefaultStructure))));
550 failureCases.append(branchPtr(NotEqual, AbsoluteAddress(&asCell(structure->m_prototype)->m_structure), ImmPtr(asCell(structure->m_prototype)->m_structure)));
559 failureCases.append(branchPtr(NotEqual, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), ImmPtr(oldStructure)));
587 storePtr(ImmPtr(newStructure), Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)));
732 Structure** prototypeStructureAddress = &(protoObject->m_structure);
    [all...]
JITOpcodes.cpp 488 loadPtr(Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), regT0);
499 loadPtr(Address(regT2, OBJECT_OFFSETOF(JSCell, m_structure)), regT2);
696 addSlowCase(branchPtr(NotEqual, regT1, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure))));
    [all...]
JITCall.cpp 161 loadPtr(Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), regT2);
JITInlineMethods.h 209 return branchPtr(NotEqual, Address(reg, OBJECT_OFFSETOF(JSCell, m_structure)), ImmPtr(structure));

Completed in 123 milliseconds