Searched refs:oldStructure (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/jit/
H A DJITPropertyAccess.cpp574 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedOffset, StructureChain* chain, ReturnAddressPtr returnAddress, bool direct) argument
579 failureCases.append(branchPtr(NotEqual, Address(regT0, JSCell::structureOffset()), TrustedImmPtr(oldStructure)));
580 testPrototype(oldStructure->storedPrototype(), failureCases);
591 bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertyStorageCapacity();
601 stubCall.addArgument(TrustedImm32(oldStructure->propertyStorageCapacity()));
H A DJITPropertyAccess32_64.cpp589 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedOffset, StructureChain* chain, ReturnAddressPtr returnAddress, bool direct) argument
595 failureCases.append(branchPtr(NotEqual, Address(regT0, JSCell::structureOffset()), TrustedImmPtr(oldStructure)));
596 testPrototype(oldStructure->storedPrototype(), failureCases);
606 bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertyStorageCapacity();
616 stubCall.addArgument(TrustedImm32(oldStructure->propertyStorageCapacity()));
H A DJIT.h214 static void compilePutByIdTransition(JSGlobalData* globalData, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedOffset, StructureChain* chain, ReturnAddressPtr returnAddress, bool direct) argument
217 jit.privateCompilePutByIdTransition(stubInfo, oldStructure, newStructure, cachedOffset, chain, returnAddress, direct);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.cpp3046 /* op_put_by_id_transition base(r) property(id) value(r) oldStructure(sID) newStructure(sID) structureChain(chain) offset(n) direct(b)
3061 Structure* oldStructure = vPC[4].u.structure.get();
3064 if (LIKELY(baseCell->structure() == oldStructure)) {

Completed in 122 milliseconds