Changeset 69060 in webkit


Ignore:
Timestamp:
Oct 4, 2010 8:37:39 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Use fast malloc for WebKit EFL
https://bugs.webkit.org/show_bug.cgi?id=46691

Use fast malloc for WebKit EFL because the fast malloc is to allocate
memory quickly.

  • wtf/CMakeListsEfl.txt:

2010-10-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Use fast malloc for WebKit EFL
https://bugs.webkit.org/show_bug.cgi?id=46691

Use fast malloc for WebKit EFL because the fast malloc is to allocate
memory quickly.

  • cmake/OptionsEfl.cmake:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r68987 r69060  
     12010-10-04  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Use fast malloc for WebKit EFL
     6        https://bugs.webkit.org/show_bug.cgi?id=46691
     7
     8        Use fast malloc for WebKit EFL because the fast malloc is to allocate
     9        memory quickly.
     10
     11        * cmake/OptionsEfl.cmake:
     12
    1132010-10-03  Dimitri Glazkov  <dglazkov@chromium.org>
    214
  • trunk/JavaScriptCore/ChangeLog

    r69045 r69060  
     12010-10-04  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Use fast malloc for WebKit EFL
     6        https://bugs.webkit.org/show_bug.cgi?id=46691
     7
     8        Use fast malloc for WebKit EFL because the fast malloc is to allocate
     9        memory quickly.
     10
     11        * wtf/CMakeListsEfl.txt:
     12
    1132010-10-04  Oliver Hunt  <oliver@apple.com>
    214
  • trunk/JavaScriptCore/wtf/CMakeListsEfl.txt

    r66738 r69060  
    1 ADD_DEFINITIONS(-DUSE_SYSTEM_MALLOC=1)
     1IF (ENABLE_FAST_MALLOC)
     2  LIST(APPEND WTF_SOURCES
     3    TCSystemAlloc.cpp
     4  )
     5ELSE ()
     6  ADD_DEFINITIONS(-DUSE_SYSTEM_MALLOC=1)
     7ENDIF()
    28
    39LIST(APPEND WTF_SOURCES
  • trunk/cmake/OptionsEfl.cmake

    r66980 r69060  
    5555WEBKIT_FEATURE(ENABLE_DOM_STORAGE "Enable DOM storage" DEFAULT ON)
    5656WEBKIT_FEATURE(ENABLE_EVENTSOURCE "Enable event source" DEFAULT ON)
     57WEBKIT_FEATURE(ENABLE_FAST_MALLOC "Enable TCmalloc instead of system's allocator" DEFAULT ON)
    5758WEBKIT_FEATURE(ENABLE_FAST_MOBILE_SCROLLING "Enable fast mobile scrolling" DEFAULT ON)
    5859WEBKIT_FEATURE(ENABLE_FILTERS "Enable SVG filters" DEFAULT ON SVG)
Note: See TracChangeset for help on using the changeset viewer.