Changeset 39342 in webkit for trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
- Timestamp:
- Dec 16, 2008, 4:03:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITPropertyAccess.cpp
r39325 r39342 62 62 63 63 emitPutJITStubArg(X86::eax, 1); 64 emitPutJITStubArgConstant( reinterpret_cast<unsigned>(ident), 2);64 emitPutJITStubArgConstant(ident, 2); 65 65 emitCTICall(Interpreter::cti_op_get_by_id_generic); 66 66 emitPutVirtualRegister(resultVReg); … … 81 81 emitGetVirtualRegisters(baseVReg, X86::eax, valueVReg, X86::edx); 82 82 83 emitPutJITStubArgConstant( reinterpret_cast<unsigned>(ident), 2);83 emitPutJITStubArgConstant(ident, 2); 84 84 emitPutJITStubArg(X86::eax, 1); 85 85 emitPutJITStubArg(X86::edx, 3); … … 182 182 m_propertyAccessCompilationInfo[propertyAccessInstructionIndex].callReturnLocation = call; 183 183 } 184 185 #endif186 184 187 185 static JSObject* resizePropertyStorage(JSObject* baseObject, size_t oldSize, size_t newSize) … … 677 675 } 678 676 677 #endif 678 679 679 } // namespace JSC 680 680
Note:
See TracChangeset
for help on using the changeset viewer.