Changeset 238564 in webkit
- Timestamp:
- Nov 27, 2018, 11:47:17 AM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r238543 r238564 1 2018-11-27 Mark Lam <mark.lam@apple.com> 2 3 Introducing a ENABLE_SEPARATED_WX_HEAP macro. 4 https://bugs.webkit.org/show_bug.cgi?id=192013 5 <rdar://problem/45494310> 6 7 Reviewed by Keith Miller. 8 9 This makes the code a little more readable. 10 11 I put the definition of ENABLE_SEPARATED_WX_HEAP in JSC's config.h instead of 12 Platform.h because ENABLE_SEPARATED_WX_HEAP is only needed inside JSC. Also, 13 ENABLE_SEPARATED_WX_HEAP depends on ENABLE(FAST_JIT_PERMISSIONS), which is only 14 defined for JSC. 15 16 * config.h: 17 * jit/ExecutableAllocator.cpp: 18 (JSC::FixedVMPoolExecutableAllocator::FixedVMPoolExecutableAllocator): 19 (JSC::FixedVMPoolExecutableAllocator::initializeSeparatedWXHeaps): 20 * jit/ExecutableAllocator.h: 21 (JSC::performJITMemcpy): 22 * runtime/Options.cpp: 23 (JSC::recomputeDependentOptions): 24 1 25 2018-11-26 Caio Lima <ticaiolima@gmail.com> 2 26 -
trunk/Source/JavaScriptCore/config.h
r234227 r238564 1 1 /* 2 * Copyright (C) 2006 , 2007, 2008, 2013Apple Inc. All rights reserved.2 * Copyright (C) 2006-2018 Apple Inc. All rights reserved. 3 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 4 4 * … … 38 38 39 39 #include <wtf/DisallowCType.h> 40 41 #if !defined(ENABLE_SEPARATED_WX_HEAP) 42 #if (!ENABLE(FAST_JIT_PERMISSIONS) || !CPU(ARM64E)) && PLATFORM(IOS_FAMILY) && CPU(ARM64) 43 #define ENABLE_SEPARATED_WX_HEAP 1 44 #else 45 #define ENABLE_SEPARATED_WX_HEAP 0 46 #endif 47 #endif // !defined(ENABLE_SEPARATED_WX_HEAP) -
trunk/Source/JavaScriptCore/jit/ExecutableAllocator.cpp
r238388 r238564 105 105 #endif 106 106 107 #if !ENABLE(FAST_JIT_PERMISSIONS) || !CPU(ARM64E)107 #if ENABLE(SEPARATED_WX_HEAP) 108 108 JS_EXPORT_PRIVATE bool useFastPermisionsJITCopy { false }; 109 109 JS_EXPORT_PRIVATE JITWriteSeparateHeapsFunction jitWriteSeparateHeapsFunction; … … 183 183 void* reservationBase = m_reservation.base(); 184 184 185 #if ENABLE(FAST_JIT_PERMISSIONS) && CPU(ARM64E)185 #if ENABLE(FAST_JIT_PERMISSIONS) && !ENABLE(SEPARATED_WX_HEAP) 186 186 RELEASE_ASSERT(os_thread_self_restrict_rwx_is_supported()); 187 187 os_thread_self_restrict_rwx_to_rx(); 188 188 189 #else // not ENABLE(FAST_JIT_PERMISSIONS) or not CPU(ARM64E)189 #else // not ENABLE(FAST_JIT_PERMISSIONS) or ENABLE(SEPARATED_WX_HEAP) 190 190 #if ENABLE(FAST_JIT_PERMISSIONS) 191 191 if (os_thread_self_restrict_rwx_is_supported()) { … … 201 201 initializeSeparatedWXHeaps(m_reservation.base(), pageSize(), reservationBase, reservationSize); 202 202 } 203 #endif // not ENABLE(FAST_JIT_PERMISSIONS) or not CPU(ARM64E)203 #endif // not ENABLE(FAST_JIT_PERMISSIONS) or ENABLE(SEPARATED_WX_HEAP) 204 204 205 205 addFreshFreeSpace(reservationBase, reservationSize); … … 295 295 memset_s(&writableAddr, sizeof(writableAddr), 0, sizeof(writableAddr)); 296 296 297 #if !ENABLE(FAST_JIT_PERMISSIONS) || !CPU(ARM64E)297 #if ENABLE(SEPARATED_WX_HEAP) 298 298 jitWriteSeparateHeapsFunction = reinterpret_cast<JITWriteSeparateHeapsFunction>(writeThunk.code().executableAddress()); 299 299 #endif -
trunk/Source/JavaScriptCore/jit/ExecutableAllocator.h
r238388 r238564 79 79 JS_EXPORT_PRIVATE bool isJITPC(void* pc); 80 80 81 #if !ENABLE(FAST_JIT_PERMISSIONS) || !CPU(ARM64E)81 #if ENABLE(SEPARATED_WX_HEAP) 82 82 83 83 typedef void (*JITWriteSeparateHeapsFunction)(off_t, const void*, size_t); … … 85 85 extern JS_EXPORT_PRIVATE bool useFastPermisionsJITCopy; 86 86 87 #endif // !ENABLE(FAST_JIT_PERMISSIONS) || !CPU(ARM64E)87 #endif // ENABLE(SEPARATED_WX_HEAP) 88 88 89 89 static inline void* performJITMemcpy(void *dst, const void *src, size_t n) … … 97 97 RELEASE_ASSERT(reinterpret_cast<uint8_t*>(dst) + n <= endOfFixedExecutableMemoryPool()); 98 98 #if ENABLE(FAST_JIT_PERMISSIONS) 99 #if !CPU(ARM64E)99 #if ENABLE(SEPARATED_WX_HEAP) 100 100 if (useFastPermisionsJITCopy) 101 101 #endif … … 108 108 #endif // ENABLE(FAST_JIT_PERMISSIONS) 109 109 110 #if !ENABLE(FAST_JIT_PERMISSIONS) || !CPU(ARM64E)110 #if ENABLE(SEPARATED_WX_HEAP) 111 111 if (jitWriteSeparateHeapsFunction) { 112 112 // Use execute-only write thunk for writes inside the JIT region. This is a variant of -
trunk/Source/JavaScriptCore/runtime/Options.cpp
r237266 r238564 469 469 } 470 470 471 #if PLATFORM(IOS_FAMILY) && CPU(ARM64) && !CPU(ARM64E)471 #if ENABLE(SEPARATED_WX_HEAP) 472 472 // Override globally for now. Longer term we'll just make the default 473 473 // be to have this option enabled, and have platforms that don't support
Note:
See TracChangeset
for help on using the changeset viewer.