Changeset 44705 in webkit for trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
- Timestamp:
- Jun 15, 2009, 8:01:12 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
r44700 r44705 422 422 } 423 423 424 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedOffset, StructureChain* chain, ProcessorReturnAddressreturnAddress)424 void JIT::privateCompilePutByIdTransition(StructureStubInfo* stubInfo, Structure* oldStructure, Structure* newStructure, size_t cachedOffset, StructureChain* chain, ReturnAddressPtr returnAddress) 425 425 { 426 426 JumpList failureCases; … … 503 503 } 504 504 505 void JIT::patchGetByIdSelf(StructureStubInfo* stubInfo, Structure* structure, size_t cachedOffset, ProcessorReturnAddressreturnAddress)505 void JIT::patchGetByIdSelf(StructureStubInfo* stubInfo, Structure* structure, size_t cachedOffset, ReturnAddressPtr returnAddress) 506 506 { 507 507 RepatchBuffer repatchBuffer; … … 537 537 } 538 538 539 void JIT::patchPutByIdReplace(StructureStubInfo* stubInfo, Structure* structure, size_t cachedOffset, ProcessorReturnAddressreturnAddress)539 void JIT::patchPutByIdReplace(StructureStubInfo* stubInfo, Structure* structure, size_t cachedOffset, ReturnAddressPtr returnAddress) 540 540 { 541 541 RepatchBuffer repatchBuffer; … … 557 557 } 558 558 559 void JIT::privateCompilePatchGetArrayLength( ProcessorReturnAddressreturnAddress)560 { 561 StructureStubInfo* stubInfo = &m_codeBlock->getStubInfo(returnAddress .addressForLookup());559 void JIT::privateCompilePatchGetArrayLength(ReturnAddressPtr returnAddress) 560 { 561 StructureStubInfo* stubInfo = &m_codeBlock->getStubInfo(returnAddress); 562 562 563 563 // Check eax is an array … … 596 596 } 597 597 598 void JIT::privateCompileGetByIdProto(StructureStubInfo* stubInfo, Structure* structure, Structure* prototypeStructure, size_t cachedOffset, ProcessorReturnAddressreturnAddress, CallFrame* callFrame)598 void JIT::privateCompileGetByIdProto(StructureStubInfo* stubInfo, Structure* structure, Structure* prototypeStructure, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame) 599 599 { 600 600 // The prototype object definitely exists (if this stub exists the CodeBlock is referencing a Structure that is … … 770 770 } 771 771 772 void JIT::privateCompileGetByIdChain(StructureStubInfo* stubInfo, Structure* structure, StructureChain* chain, size_t count, size_t cachedOffset, ProcessorReturnAddressreturnAddress, CallFrame* callFrame)772 void JIT::privateCompileGetByIdChain(StructureStubInfo* stubInfo, Structure* structure, StructureChain* chain, size_t count, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame) 773 773 { 774 774 ASSERT(count);
Note:
See TracChangeset
for help on using the changeset viewer.