Changeset 52729 in webkit for trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
- Timestamp:
- Jan 4, 2010, 3:38:56 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
r50982 r52729 731 731 // Check the prototype object's Structure had not changed. 732 732 Structure** prototypeStructureAddress = &(protoObject->m_structure); 733 #if PLATFORM(X86_64)733 #if CPU(X86_64) 734 734 move(ImmPtr(prototypeStructure), regT3); 735 735 Jump failureCases2 = branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3); … … 811 811 // Check the prototype object's Structure had not changed. 812 812 Structure** prototypeStructureAddress = &(protoObject->m_structure); 813 #if PLATFORM(X86_64)813 #if CPU(X86_64) 814 814 move(ImmPtr(prototypeStructure), regT3); 815 815 Jump failureCases2 = branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3); … … 864 864 // Check the prototype object's Structure had not changed. 865 865 Structure** prototypeStructureAddress = &(protoObject->m_structure); 866 #if PLATFORM(X86_64)866 #if CPU(X86_64) 867 867 move(ImmPtr(currStructure), regT3); 868 868 bucketsOfFail.append(branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3)); … … 919 919 // Check the prototype object's Structure had not changed. 920 920 Structure** prototypeStructureAddress = &(protoObject->m_structure); 921 #if PLATFORM(X86_64)921 #if CPU(X86_64) 922 922 move(ImmPtr(currStructure), regT3); 923 923 bucketsOfFail.append(branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3)); … … 1677 1677 // Check the prototype object's Structure had not changed. 1678 1678 Structure** prototypeStructureAddress = &(protoObject->m_structure); 1679 #if PLATFORM(X86_64)1679 #if CPU(X86_64) 1680 1680 move(ImmPtr(prototypeStructure), regT3); 1681 1681 Jump failureCases2 = branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3); … … 1752 1752 // Check the prototype object's Structure had not changed. 1753 1753 Structure** prototypeStructureAddress = &(protoObject->m_structure); 1754 #if PLATFORM(X86_64)1754 #if CPU(X86_64) 1755 1755 move(ImmPtr(prototypeStructure), regT3); 1756 1756 Jump failureCases2 = branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3); … … 1805 1805 // Check the prototype object's Structure had not changed. 1806 1806 Structure** prototypeStructureAddress = &(protoObject->m_structure); 1807 #if PLATFORM(X86_64)1807 #if CPU(X86_64) 1808 1808 move(ImmPtr(currStructure), regT3); 1809 1809 bucketsOfFail.append(branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3)); … … 1858 1858 // Check the prototype object's Structure had not changed. 1859 1859 Structure** prototypeStructureAddress = &(protoObject->m_structure); 1860 #if PLATFORM(X86_64)1860 #if CPU(X86_64) 1861 1861 move(ImmPtr(currStructure), regT3); 1862 1862 bucketsOfFail.append(branchPtr(NotEqual, AbsoluteAddress(prototypeStructureAddress), regT3));
Note:
See TracChangeset
for help on using the changeset viewer.