Changeset 128071 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Sep 10, 2012, 9:59:24 AM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r128065 r128071 1 2012-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 1 13 2012-09-10 Thiago Marcos P. Santos <[email protected]> 2 14 -
trunk/Source/JavaScriptCore/runtime/MemoryStatistics.cpp
r121282 r128071 38 38 39 39 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)) 41 41 stats.JITBytes = ExecutableAllocator::committedByteCount(); 42 42 #else
Note:
See TracChangeset
for help on using the changeset viewer.