Changeset 121196 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jun 25, 2012, 5:08:19 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r121098 r121196 1 2012-06-25 Yong Li <[email protected]> 2 3 [BlackBerry] Add JSC statistics into about:memory 4 https://bugs.webkit.org/show_bug.cgi?id=89779 5 6 Reviewed by Rob Buis. 7 8 Add MemoryStatistics.cpp into build, and fill JITBytes for BlackBerry port. 9 10 * PlatformBlackBerry.cmake: 11 * runtime/MemoryStatistics.cpp: 12 (JSC::globalMemoryStatistics): 13 1 14 2012-06-23 Sheriff Bot <[email protected]> 2 15 -
trunk/Source/JavaScriptCore/PlatformBlackBerry.cmake
r120502 r121196 9 9 LIST(APPEND JavaScriptCore_SOURCES 10 10 runtime/GCActivityCallbackBlackBerry.cpp 11 runtime/MemoryStatistics.cpp 11 12 ) 12 13 -
trunk/Source/JavaScriptCore/runtime/MemoryStatistics.cpp
r95901 r121196 38 38 39 39 stats.stackBytes = RegisterFile::committedByteCount(); 40 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED) 40 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED) || PLATFORM(BLACKBERRY) 41 41 stats.JITBytes = ExecutableAllocator::committedByteCount(); 42 42 #else
Note:
See TracChangeset
for help on using the changeset viewer.