Changeset 121282 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jun 26, 2012, 12:55:32 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r121280 r121282 1 2012-06-26 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 Fix non-JIT build on BlackBerry broken by r121196. 9 10 * runtime/MemoryStatistics.cpp: 11 (JSC::globalMemoryStatistics): 12 1 13 2012-06-25 Filip Pizlo <[email protected]> 2 14 -
trunk/Source/JavaScriptCore/runtime/MemoryStatistics.cpp
r121196 r121282 38 38 39 39 stats.stackBytes = RegisterFile::committedByteCount(); 40 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED) || PLATFORM(BLACKBERRY)40 #if ENABLE(EXECUTABLE_ALLOCATOR_FIXED) || (PLATFORM(BLACKBERRY) && ENABLE(JIT)) 41 41 stats.JITBytes = ExecutableAllocator::committedByteCount(); 42 42 #else
Note:
See TracChangeset
for help on using the changeset viewer.