Searched refs:newStructure (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/JavaScriptCore/runtime/ |
D | JSObject.h | 734 inline void JSObject::transitionTo(JSGlobalData& globalData, Structure* newStructure) in transitionTo() argument 736 if (m_structure->propertyStorageCapacity() != newStructure->propertyStorageCapacity()) in transitionTo() 737 …allocatePropertyStorage(m_structure->propertyStorageCapacity(), newStructure->propertyStorageCapac… in transitionTo() 738 setStructure(globalData, newStructure); in transitionTo()
|
/external/webkit/Source/JavaScriptCore/jit/ |
D | JITPropertyAccess.cpp | 574 …tion(StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedO… in privateCompilePutByIdTransition() argument 591 …bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertySto… in privateCompilePutByIdTransition() 602 stubCall.addArgument(TrustedImm32(newStructure->propertyStorageCapacity())); in privateCompilePutByIdTransition() 609 …storePtrWithWriteBarrier(TrustedImmPtr(newStructure), regT0, Address(regT0, JSCell::structureOffse… in privateCompilePutByIdTransition() 612 compilePutDirectOffset(regT0, regT1, newStructure, cachedOffset); in privateCompilePutByIdTransition()
|
D | JITPropertyAccess32_64.cpp | 589 …tion(StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedO… in privateCompilePutByIdTransition() argument 606 …bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertySto… in privateCompilePutByIdTransition() 617 stubCall.addArgument(TrustedImm32(newStructure->propertyStorageCapacity())); in privateCompilePutByIdTransition() 623 …storePtrWithWriteBarrier(TrustedImmPtr(newStructure), regT0, Address(regT0, JSCell::structureOffse… in privateCompilePutByIdTransition() 635 compilePutDirectOffset(regT0, regT2, regT3, newStructure, cachedOffset); in privateCompilePutByIdTransition()
|
D | JIT.h | 214 …ock, StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedO… in compilePutByIdTransition() argument 217 …jit.privateCompilePutByIdTransition(stubInfo, oldStructure, newStructure, cachedOffset, chain, ret… in compilePutByIdTransition()
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 3062 Structure* newStructure = vPC[5].u.structure.get(); in privateExecute() local 3082 baseObject->transitionTo(*globalData, newStructure); in privateExecute()
|