Changeset 60637 in webkit for trunk/JavaScriptCore/interpreter
- Timestamp:
- Jun 3, 2010, 2:29:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r60631 r60637 3595 3595 3596 3596 CallData callData; 3597 CallType callType = v.getCallData(callData);3597 CallType callType = getCallData(v, callData); 3598 3598 3599 3599 if (callType == CallTypeJS) { … … 3633 3633 { 3634 3634 SamplingTool::HostCallRecord callRecord(m_sampler.get()); 3635 returnValue = callData.native.function(newCallFrame);3635 returnValue = JSValue::decode(callData.native.function(newCallFrame)); 3636 3636 } 3637 3637 CHECK_FOR_EXCEPTION(); … … 3745 3745 registerOffset += argCount; 3746 3746 CallData callData; 3747 CallType callType = v.getCallData(callData);3747 CallType callType = getCallData(v, callData); 3748 3748 3749 3749 if (callType == CallTypeJS) { … … 3783 3783 { 3784 3784 SamplingTool::HostCallRecord callRecord(m_sampler.get()); 3785 returnValue = callData.native.function(newCallFrame);3785 returnValue = JSValue::decode(callData.native.function(newCallFrame)); 3786 3786 } 3787 3787 CHECK_FOR_EXCEPTION(); … … 4067 4067 4068 4068 ConstructData constructData; 4069 ConstructType constructType = v.getConstructData(constructData);4069 ConstructType constructType = getConstructData(v, constructData); 4070 4070 4071 4071 if (constructType == ConstructTypeJS) {
Note:
See TracChangeset
for help on using the changeset viewer.