Changeset 48212 in webkit for trunk/JavaScriptCore/jit/ExecutableAllocator.h
- Timestamp:
- Sep 9, 2009, 9:46:28 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/ExecutableAllocator.h
r46247 r48212 39 39 #endif 40 40 41 #if PLATFORM(SYMBIAN) 42 #include <e32std.h> 43 #endif 44 41 45 #define JIT_ALLOCATOR_PAGE_SIZE (ExecutableAllocator::pageSize) 42 46 #define JIT_ALLOCATOR_LARGE_ALLOC_SIZE (ExecutableAllocator::pageSize * 4) … … 182 186 sys_dcache_flush(code, size); 183 187 sys_icache_invalidate(code, size); 188 } 189 #elif PLATFORM(SYMBIAN) 190 static void cacheFlush(void* code, size_t size) 191 { 192 User::IMB_Range(code, reinterpret_cast<char*>(code) + size); 184 193 } 185 194 #elif PLATFORM(ARM)
Note:
See TracChangeset
for help on using the changeset viewer.