Changeset 83626 in webkit


Ignore:
Timestamp:
Apr 12, 2011 1:05:45 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-12 Thouraya ANDOLSI <thouraya.andolsi@st.com>

Reviewed by Eric Seidel.

[QT] Enable JIT build for SH4 platforms.
https://bugs.webkit.org/show_bug.cgi?id=58317
add disable_uitools for SH4 platforms.

  • Source/WebKit.pri:

2011-04-12 Thouraya ANDOLSI <thouraya.andolsi@st.com>

Reviewed by Eric Seidel.

[Qt] Enable JIT build for SH4 platforms.
https://bugs.webkit.org/show_bug.cgi?id=58317
enable JIT build for QT backend for SH4 platforms.

2011-04-12 Thouraya ANDOLSI <thouraya.andolsi@st.com>

Reviewed by Eric Seidel.

[Qt] Enable JIT build for SH4 platforms.
https://bugs.webkit.org/show_bug.cgi?id=58317

  • DumpRenderTree/qt/DumpRenderTree.pro:
  • QtTestBrowser/QtTestBrowser.pro:
  • Scripts/webkitdirs.pm:
Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r83527 r83626  
     12011-04-12  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [QT] Enable JIT build for SH4 platforms.
     6        https://bugs.webkit.org/show_bug.cgi?id=58317
     7        add disable_uitools for SH4 platforms.
     8
     9        * Source/WebKit.pri:
     10
    1112011-04-11  Anna Cavender  <annacc@chromium.org>
    212
  • trunk/Source/JavaScriptCore/ChangeLog

    r83557 r83626  
     12011-04-12  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt] Enable JIT build for SH4 platforms.
     6        https://bugs.webkit.org/show_bug.cgi?id=58317
     7        enable JIT build for QT backend  for SH4 platforms.
     8
     9        * JavaScriptCore.pro:
     10        * wtf/Platform.h:
     11
    1122011-04-11  Ben Taylor  <bentaylor.solx86@gmail.com>
    213
  • trunk/Source/JavaScriptCore/JavaScriptCore.pro

    r83506 r83626  
    6363    assembler/ARMv7Assembler.cpp \
    6464    assembler/MacroAssemblerARM.cpp \
     65    assembler/MacroAssemblerSH4.h \
     66    assembler/MacroAssemblerSH4.cpp \
     67    assembler/SH4Assembler.h \
    6568    bytecode/CodeBlock.cpp \
    6669    bytecode/JumpTable.cpp \
     
    198201    yarr/YarrJIT.cpp \
    199202
     203*sh4* {
     204    QMAKE_CXXFLAGS += -mieee -w
     205    QMAKE_CFLAGS   += -mieee -w
     206}
     207
    200208# Generated files, simply list them for JavaScriptCore
    201209
  • trunk/Source/JavaScriptCore/wtf/Platform.h

    r83307 r83626  
    10381038#endif
    10391039
     1040#if CPU(SH4) && PLATFORM(QT)
     1041#define ENABLE_JIT 1
     1042#define ENABLE_YARR 1
     1043#define ENABLE_YARR_JIT 1
     1044#define WTF_USE_JIT_STUB_ARGUMENT_REGISTER 1
     1045#define ENABLE_ASSEMBLER 1
     1046#endif
     1047
    10401048/* Configure the JIT */
    10411049#if ENABLE(JIT)
  • trunk/Source/WebKit.pri

    r83480 r83626  
    135135}
    136136
     137*sh4* {
     138    CONFIG += disable_uitools
     139}
    137140####
    138141
  • trunk/Tools/ChangeLog

    r83621 r83626  
     12011-04-12  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt] Enable JIT build for SH4 platforms.
     6        https://bugs.webkit.org/show_bug.cgi?id=58317
     7
     8
     9        * DumpRenderTree/qt/DumpRenderTree.pro:
     10        * QtTestBrowser/QtTestBrowser.pro:
     11        * Scripts/webkitdirs.pm:
     12
    1132011-04-12  Thouraya ANDOLSI  <thouraya.andolsi@st.com>
    214
  • trunk/Tools/DumpRenderTree/qt/DumpRenderTree.pro

    r83380 r83626  
    11TARGET = DumpRenderTree
    22CONFIG  -= app_bundle
    3 CONFIG += uitools
     3!isEqual(QT_ARCH,sh4): CONFIG += uitools
    44
    55BASEDIR = $$PWD/../
  • trunk/Tools/QtTestBrowser/QtTestBrowser.pro

    r83380 r83626  
    2323    fpstimer.h \
    2424
    25 CONFIG += uitools
     25!isEqual(QT_ARCH,sh4): CONFIG += uitools
    2626
    2727isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../..
Note: See TracChangeset for help on using the changeset viewer.