HomeSort by relevance Sort by last modified time
    Searched refs:newStructure (Results 1 - 4 of 4) sorted by null

  /external/webkit/JavaScriptCore/runtime/
JSObject.h 312 RefPtr<Structure> newStructure = Structure::changePrototypeTransition(m_structure, prototype);
313 setStructure(newStructure.release());
575 inline void JSObject::transitionTo(Structure* newStructure)
577 if (m_structure->propertyStorageCapacity() != newStructure->propertyStorageCapacity())
578 allocatePropertyStorage(m_structure->propertyStorageCapacity(), newStructure->propertyStorageCapacity());
579 setStructure(newStructure);
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 553 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedOffset, StructureChain* chain, ReturnAddressPtr returnAddress)
568 bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertyStorageCapacity();
579 stubCall.addArgument(Imm32(newStructure->propertyStorageCapacity()));
586 add32(Imm32(1), AbsoluteAddress(newStructure->addressOfCount()));
587 storePtr(ImmPtr(newStructure), Address(regT0, OBJECT_OFFSETOF(JSCell, m_structure)));
593 compilePutDirectOffset(regT0, regT2, regT3, newStructure, cachedOffset);
    [all...]
JIT.h 314 static void compilePutByIdTransition(JSGlobalData* globalData, CodeBlock* codeBlock, StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedOffset, StructureChain* chain, ReturnAddressPtr returnAddress)
317 jit.privateCompilePutByIdTransition(stubInfo, oldStructure, newStructure, cachedOffset, chain, returnAddress);
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]

Completed in 107 milliseconds