Changeset 128071 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Sep 10, 2012, 9:59:24 AM (13 years ago)
Author:
[email protected]
Message:

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

Patch by Hojong Han <[email protected]> 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  <[email protected]>
     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  <[email protected]>
    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.