Changeset 56842 in webkit


Ignore:
Timestamp:
Mar 31, 2010 8:59:00 AM (14 years ago)
Author:
Laszlo Gombos
Message:

2010-03-31 Laszlo Gombos <Laszlo Gombos>

Unreviewed, Symbian build fix.

Refactor JITStubs.cpp so that the list of STUB_FUNCTIONs
are not dependent on the JSVALUE32_64 guard.

  • jit/JITStubs.cpp: Place the JSVALUE32_64 guard inside the body of cti_op_eq_strings.
  • jit/JITStubs.h: Remove JSVALUE32_64 guard from cti_op_eq_strings stub.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r56826 r56842  
     12010-03-31  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Unreviewed, Symbian build fix.
     4
     5        Refactor JITStubs.cpp so that the list of STUB_FUNCTIONs
     6        are not dependent on the JSVALUE32_64 guard.
     7
     8        * jit/JITStubs.cpp: Place the JSVALUE32_64 guard inside
     9        the body of cti_op_eq_strings.
     10        * jit/JITStubs.h: Remove JSVALUE32_64 guard from
     11        cti_op_eq_strings stub.
     12
    1132010-03-30  Gavin Barraclough  <barraclough@apple.com>
    214
  • trunk/JavaScriptCore/jit/JITStubs.cpp

    r56759 r56842  
    26592659}
    26602660
     2661DEFINE_STUB_FUNCTION(int, op_eq_strings)
     2662{
    26612663#if USE(JSVALUE32_64)
    2662 
    2663 DEFINE_STUB_FUNCTION(int, op_eq_strings)
    2664 {
    26652664    STUB_INIT_STACK_FRAME(stackFrame);
    26662665
     
    26712670    ASSERT(string2->isString());
    26722671    return string1->value(stackFrame.callFrame) == string2->value(stackFrame.callFrame);
    2673 }
    2674 
     2672#else
     2673    ASSERT_NOT_REACHED();
     2674    return 0;
    26752675#endif
     2676}
    26762677
    26772678DEFINE_STUB_FUNCTION(EncodedJSValue, op_lshift)
  • trunk/JavaScriptCore/jit/JITStubs.h

    r56759 r56842  
    359359    VoidPtrPair JIT_STUB cti_op_call_arityCheck(STUB_ARGS_DECLARATION);
    360360    int JIT_STUB cti_op_eq(STUB_ARGS_DECLARATION);
    361 #if USE(JSVALUE32_64)
    362361    int JIT_STUB cti_op_eq_strings(STUB_ARGS_DECLARATION);
    363 #endif
    364362    int JIT_STUB cti_op_jless(STUB_ARGS_DECLARATION);
    365363    int JIT_STUB cti_op_jlesseq(STUB_ARGS_DECLARATION);
Note: See TracChangeset for help on using the changeset viewer.