Changeset 128071 in webkit


Ignore:
Timestamp:
Sep 10, 2012 9:59:24 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] JIT memory usage is not retrieved
https://bugs.webkit.org/show_bug.cgi?id=96095

Patch by Hojong Han <hojong.han@samsung.com> on 2012-09-10
Reviewed by Geoffrey Garen.

Fill JITBytes for EFL port.

  • runtime/MemoryStatistics.cpp:

(JSC::globalMemoryStatistics):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r128065 r128071  
     12012-09-10  Hojong Han  <hojong.han@samsung.com>
     2
     3        [EFL] JIT memory usage is not retrieved
     4        https://bugs.webkit.org/show_bug.cgi?id=96095
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        Fill JITBytes for EFL port.
     9
     10        * runtime/MemoryStatistics.cpp:
     11        (JSC::globalMemoryStatistics):
     12
    1132012-09-10  Thiago Marcos P. Santos  <thiago.santos@intel.com>
    214
  • trunk/Source/JavaScriptCore/runtime/MemoryStatistics.cpp

    r121282 r128071  
    3838
    3939    stats.stackBytes = RegisterFile::committedByteCount();
    40 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED) || (PLATFORM(BLACKBERRY) && ENABLE(JIT))
     40#if ENABLE(EXECUTABLE_ALLOCATOR_FIXED) || ((PLATFORM(BLACKBERRY) || PLATFORM(EFL)) && ENABLE(JIT))
    4141    stats.JITBytes = ExecutableAllocator::committedByteCount();
    4242#else
Note: See TracChangeset for help on using the changeset viewer.