Searched refs:oldStructure (Results 1 – 3 of 3) sorted by relevance
/external/webkit/JavaScriptCore/jit/ |
D | JITPropertyAccess.cpp | 191 static inline bool transitionWillNeedStorageRealloc(Structure* oldStructure, Structure* newStructur… 193 return oldStructure->propertyStorageCapacity() != newStructure->propertyStorageCapacity(); 196 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Str… 201 …reCases.append(jnePtr(Address(X86::eax, FIELD_OFFSET(JSCell, m_structure)), ImmPtr(oldStructure))); 229 if (transitionWillNeedStorageRealloc(oldStructure, newStructure)) { 233 move(Imm32(oldStructure->propertyStorageCapacity()), X86::esi); 238 push(Imm32(oldStructure->propertyStorageCapacity())); 249 sub32(Imm32(1), AbsoluteAddress(oldStructure->addressOfCount())); 274 if (transitionWillNeedStorageRealloc(oldStructure, newStructure))
|
D | JIT.h | 329 …alData, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* oldStructure, Structure* new… in compilePutByIdTransition() argument 332 …jit.privateCompilePutByIdTransition(stubInfo, oldStructure, newStructure, cachedOffset, chain, ret… in compilePutByIdTransition()
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 2682 Structure* oldStructure = vPC[4].u.structure; in privateExecute() local 2685 if (LIKELY(baseCell->structure() == oldStructure)) { in privateExecute()
|