Home
last modified time | relevance | path

Searched refs:oldStructure (Results 1 – 3 of 3) sorted by relevance

/external/webkit/JavaScriptCore/jit/
DJITPropertyAccess.cpp548 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Str… in privateCompilePutByIdTransition() argument
556 failureCases.append(branchPtr(NotEqual, regT2, ImmPtr(oldStructure))); in privateCompilePutByIdTransition()
567 …bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertySto… in privateCompilePutByIdTransition()
577 stubCall.addArgument(Imm32(oldStructure->propertyStorageCapacity())); in privateCompilePutByIdTransition()
584 sub32(Imm32(1), AbsoluteAddress(oldStructure->addressOfCount())); in privateCompilePutByIdTransition()
1339 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Str…
1344 …d(branchPtr(NotEqual, Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)), ImmPtr(oldStructure)));
1372 …bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertySto…
1382 stubCall.addArgument(Imm32(oldStructure->propertyStorageCapacity()));
1392 sub32(Imm32(1), AbsoluteAddress(oldStructure->addressOfCount()));
DJIT.h314 …alData, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* oldStructure, Structure* new… in compilePutByIdTransition() argument
317 …jit.privateCompilePutByIdTransition(stubInfo, oldStructure, newStructure, cachedOffset, chain, ret… in compilePutByIdTransition()
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp2357 Structure* oldStructure = vPC[4].u.structure; in privateExecute() local
2360 if (LIKELY(baseCell->structure() == oldStructure)) { in privateExecute()