Changeset 60637 in webkit for trunk/JavaScriptCore/interpreter


Ignore:
Timestamp:
Jun 3, 2010, 2:29:10 PM (15 years ago)
Author:
[email protected]
Message:

(JSC::Interpreter::privateExecute):

Reviewed by NOBODY (Interpreter build fix).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/interpreter/Interpreter.cpp

    r60631 r60637  
    35953595
    35963596        CallData callData;
    3597         CallType callType = v.getCallData(callData);
     3597        CallType callType = getCallData(v, callData);
    35983598
    35993599        if (callType == CallTypeJS) {
     
    36333633            {
    36343634                SamplingTool::HostCallRecord callRecord(m_sampler.get());
    3635                 returnValue = callData.native.function(newCallFrame);
     3635                returnValue = JSValue::decode(callData.native.function(newCallFrame));
    36363636            }
    36373637            CHECK_FOR_EXCEPTION();
     
    37453745        registerOffset += argCount;
    37463746        CallData callData;
    3747         CallType callType = v.getCallData(callData);
     3747        CallType callType = getCallData(v, callData);
    37483748       
    37493749        if (callType == CallTypeJS) {
     
    37833783            {
    37843784                SamplingTool::HostCallRecord callRecord(m_sampler.get());
    3785                 returnValue = callData.native.function(newCallFrame);
     3785                returnValue = JSValue::decode(callData.native.function(newCallFrame));
    37863786            }
    37873787            CHECK_FOR_EXCEPTION();
     
    40674067
    40684068        ConstructData constructData;
    4069         ConstructType constructType = v.getConstructData(constructData);
     4069        ConstructType constructType = getConstructData(v, constructData);
    40704070
    40714071        if (constructType == ConstructTypeJS) {
Note: See TracChangeset for help on using the changeset viewer.