Changeset 252177 in webkit
- Timestamp:
- Nov 6, 2019, 11:27:52 PM (5 years ago)
- Location:
- trunk/Source
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r252162 r252177 1 2019-11-06 Mark Lam <mark.lam@apple.com> 2 3 Remove remnants of support code for an upwards growing stack. 4 https://bugs.webkit.org/show_bug.cgi?id=203942 5 6 Reviewed by Yusuke Suzuki. 7 8 * runtime/VM.cpp: 9 (JSC::VM::updateStackLimits): 10 (JSC::VM::committedStackByteCount): 11 * runtime/VM.h: 12 (JSC::VM::isSafeToRecurse const): 13 * runtime/VMEntryScope.cpp: 14 (JSC::VMEntryScope::VMEntryScope): 15 * runtime/VMInlines.h: 16 (JSC::VM::ensureStackCapacityFor): 17 * yarr/YarrPattern.cpp: 18 (JSC::Yarr::YarrPatternConstructor::isSafeToRecurse const): 19 1 20 2019-11-06 Tadeu Zagallo <tzagallo@apple.com> 2 21 -
trunk/Source/JavaScriptCore/runtime/VM.cpp
r251691 r252177 897 897 898 898 if (m_stackPointerAtVMEntry) { 899 ASSERT(stack.isGrowingDownward());900 899 char* startOfStack = reinterpret_cast<char*>(m_stackPointerAtVMEntry); 901 900 m_softStackLimit = stack.recursionLimit(startOfStack, Options::maxPerThreadStackUsage(), m_currentSoftReservedZoneSize); … … 1171 1170 // When using the C stack, we don't know how many stack pages are actually 1172 1171 // committed. So, we use the current stack usage as an estimate. 1173 ASSERT(Thread::current().stack().isGrowingDownward());1174 1172 uint8_t* current = bitwise_cast<uint8_t*>(currentStackPointer()); 1175 1173 uint8_t* high = bitwise_cast<uint8_t*>(Thread::current().stack().origin()); -
trunk/Source/JavaScriptCore/runtime/VM.h
r251691 r252177 974 974 bool isSafeToRecurse(void* stackLimit) const 975 975 { 976 ASSERT(Thread::current().stack().isGrowingDownward());977 976 void* curr = currentStackPointer(); 978 977 return curr >= stackLimit; -
trunk/Source/JavaScriptCore/runtime/VMEntryScope.cpp
r234082 r252177 43 43 { 44 44 ASSERT(!DisallowVMReentry::isInEffectOnCurrentThread()); 45 ASSERT(Thread::current().stack().isGrowingDownward());46 45 if (!vm.entryScope) { 47 46 vm.entryScope = this; -
trunk/Source/JavaScriptCore/runtime/VMInlines.h
r251584 r252177 36 36 { 37 37 #if !ENABLE(C_LOOP) 38 ASSERT(Thread::current().stack().isGrowingDownward());39 38 return newTopOfStack >= m_softStackLimit; 40 39 #else -
trunk/Source/JavaScriptCore/yarr/YarrPattern.cpp
r249777 r252177 1123 1123 if (!m_stackLimit) 1124 1124 return true; 1125 ASSERT(Thread::current().stack().isGrowingDownward());1126 1125 int8_t* curr = reinterpret_cast<int8_t*>(currentStackPointer()); 1127 1126 int8_t* limit = reinterpret_cast<int8_t*>(m_stackLimit); -
trunk/Source/WTF/ChangeLog
r252124 r252177 1 2019-11-06 Mark Lam <mark.lam@apple.com> 2 3 Remove remnants of support code for an upwards growing stack. 4 https://bugs.webkit.org/show_bug.cgi?id=203942 5 6 Reviewed by Yusuke Suzuki. 7 8 We haven't supported an upwards growing stack in years, and a lot of code has 9 since been written specifically with only a downwards growing stack in mind (e.g. 10 the LLInt, the JITs). Also, all our currently supported platforms use a downward 11 growing stack. 12 13 We should remove the remnants of support code for an upwards growing stack. The 14 presence of that code is deceptive in that it conveys support for an upwards 15 growing stack where this hasn't been the case in years. 16 17 * wtf/StackBounds.cpp: 18 (WTF::StackBounds::newThreadStackBounds): 19 (WTF::StackBounds::currentThreadStackBoundsInternal): 20 (WTF::StackBounds::stackDirection): Deleted. 21 (WTF::testStackDirection2): Deleted. 22 (WTF::testStackDirection): Deleted. 23 * wtf/StackBounds.h: 24 (WTF::StackBounds::size const): 25 (WTF::StackBounds::contains const): 26 (WTF::StackBounds::recursionLimit const): 27 (WTF::StackBounds::StackBounds): 28 (WTF::StackBounds::isGrowingDownwards const): 29 (WTF::StackBounds::checkConsistency const): 30 (WTF::StackBounds::isGrowingDownward const): Deleted. 31 * wtf/StackStats.cpp: 32 (WTF::StackStats::CheckPoint::CheckPoint): 33 (WTF::StackStats::CheckPoint::~CheckPoint): 34 (WTF::StackStats::probe): 35 (WTF::StackStats::LayoutCheckPoint::LayoutCheckPoint): 36 1 37 2019-11-05 Mark Lam <mark.lam@apple.com> 2 38 -
trunk/Source/WTF/wtf/StackBounds.cpp
r245876 r252177 1 1 /* 2 * Copyright (C) 2003 , 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.2 * Copyright (C) 2003-2019 Apple Inc. All rights reserved. 3 3 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 4 * … … 46 46 namespace WTF { 47 47 48 #if CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(MIPS)49 ALWAYS_INLINE StackBounds::StackDirection StackBounds::stackDirection()50 {51 return StackDirection::Downward;52 }53 #else54 static NEVER_INLINE NOT_TAIL_CALLED StackBounds::StackDirection testStackDirection2(volatile const uint8_t* pointer)55 {56 volatile uint8_t* stackValue = bitwise_cast<uint8_t*>(currentStackPointer());57 return (pointer < stackValue) ? StackBounds::StackDirection::Upward : StackBounds::StackDirection::Downward;58 }59 60 static NEVER_INLINE NOT_TAIL_CALLED StackBounds::StackDirection testStackDirection()61 {62 NO_TAIL_CALLS();63 volatile uint8_t* stackValue = bitwise_cast<uint8_t*>(currentStackPointer());64 return testStackDirection2(stackValue);65 }66 67 NEVER_INLINE StackBounds::StackDirection StackBounds::stackDirection()68 {69 static StackBounds::StackDirection result = StackBounds::StackDirection::Downward;70 static std::once_flag onceKey;71 std::call_once(onceKey, [] {72 NO_TAIL_CALLS();73 result = testStackDirection();74 });75 return result;76 }77 #endif78 79 48 #if OS(DARWIN) 80 49 81 50 StackBounds StackBounds::newThreadStackBounds(PlatformThreadHandle thread) 82 51 { 83 ASSERT(stackDirection() == StackDirection::Downward);84 52 void* origin = pthread_get_stackaddr_np(thread); 85 53 rlim_t size = pthread_get_stacksize_np(thread); … … 90 58 StackBounds StackBounds::currentThreadStackBoundsInternal() 91 59 { 92 ASSERT(stackDirection() == StackDirection::Downward);93 60 if (pthread_main_np()) { 94 61 // FIXME: <rdar://problem/13741204> … … 113 80 pthread_stackseg_np(thread, &stack); 114 81 void* origin = stack.ss_sp; 115 void* bound = nullptr; 116 if (stackDirection() == StackDirection::Upward) 117 bound = static_cast<char*>(origin) + stack.ss_size; 118 else 119 bound = static_cast<char*>(origin) - stack.ss_size; 82 void* bound = static_cast<char*>(origin) - stack.ss_size; 120 83 return StackBounds { origin, bound }; 121 84 } … … 143 106 void* origin = static_cast<char*>(bound) + stackSize; 144 107 // pthread_attr_getstack's bound is the lowest accessible pointer of the stack. 145 // If stack grows up, origin and bound in this code should be swapped.146 if (stackDirection() == StackDirection::Upward)147 std::swap(origin, bound);148 149 108 return StackBounds { origin, bound }; 150 109 } … … 161 120 StackBounds StackBounds::currentThreadStackBoundsInternal() 162 121 { 163 ASSERT(stackDirection() == StackDirection::Downward);164 122 MEMORY_BASIC_INFORMATION stackOrigin { }; 165 123 VirtualQuery(&stackOrigin, &stackOrigin, sizeof(stackOrigin)); -
trunk/Source/WTF/wtf/StackBounds.h
r251263 r252177 1 1 /* 2 * Copyright (C) 2010-201 7Apple Inc. All Rights Reserved.2 * Copyright (C) 2010-2019 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 44 44 45 45 public: 46 enum class StackDirection { Upward, Downward };47 48 46 static constexpr StackBounds emptyBounds() { return StackBounds(); } 49 47 … … 73 71 size_t size() const 74 72 { 75 if (isGrowingDownward()) 76 return static_cast<char*>(m_origin) - static_cast<char*>(m_bound); 77 return static_cast<char*>(m_bound) - static_cast<char*>(m_origin); 73 return static_cast<char*>(m_origin) - static_cast<char*>(m_bound); 78 74 } 79 75 … … 84 80 if (isEmpty()) 85 81 return false; 86 if (isGrowingDownward()) 87 return (m_origin >= p) && (p > m_bound); 88 return (m_bound > p) && (p >= m_origin); 82 return (m_origin >= p) && (p > m_bound); 89 83 } 90 84 … … 92 86 { 93 87 checkConsistency(); 94 if (isGrowingDownward()) 95 return static_cast<char*>(m_bound) + minAvailableDelta; 96 return static_cast<char*>(m_bound) - minAvailableDelta; 88 return static_cast<char*>(m_bound) + minAvailableDelta; 97 89 } 98 90 … … 104 96 size_t maxUserStackWithReservedZone = maxUserStack - reservedZoneSize; 105 97 106 if (isGrowingDownward()) { 107 char* endOfStackWithReservedZone = reinterpret_cast<char*>(m_bound) + reservedZoneSize; 108 if (startOfUserStack < endOfStackWithReservedZone) 109 return endOfStackWithReservedZone; 110 size_t availableUserStack = startOfUserStack - endOfStackWithReservedZone; 111 if (maxUserStackWithReservedZone > availableUserStack) 112 maxUserStackWithReservedZone = availableUserStack; 113 return startOfUserStack - maxUserStackWithReservedZone; 114 } 115 116 char* endOfStackWithReservedZone = reinterpret_cast<char*>(m_bound) - reservedZoneSize; 117 if (startOfUserStack > endOfStackWithReservedZone) 98 char* endOfStackWithReservedZone = reinterpret_cast<char*>(m_bound) + reservedZoneSize; 99 if (startOfUserStack < endOfStackWithReservedZone) 118 100 return endOfStackWithReservedZone; 119 size_t availableUserStack = endOfStackWithReservedZone - startOfUserStack;101 size_t availableUserStack = startOfUserStack - endOfStackWithReservedZone; 120 102 if (maxUserStackWithReservedZone > availableUserStack) 121 103 maxUserStackWithReservedZone = availableUserStack; 122 return startOfUserStack + maxUserStackWithReservedZone; 123 } 124 125 bool isGrowingDownward() const 126 { 127 ASSERT(m_origin && m_bound); 128 return m_bound <= m_origin; 104 return startOfUserStack - maxUserStackWithReservedZone; 129 105 } 130 106 … … 134 110 , m_bound(end) 135 111 { 112 ASSERT(isGrowingDownwards()); 136 113 } 137 114 … … 142 119 } 143 120 144 static StackDirection stackDirection(); 121 inline bool isGrowingDownwards() const 122 { 123 ASSERT(m_origin && m_bound); 124 return m_bound <= m_origin; 125 } 145 126 146 127 WTF_EXPORT_PRIVATE static StackBounds currentThreadStackBoundsInternal(); … … 151 132 void* currentPosition = currentStackPointer(); 152 133 ASSERT(m_origin != m_bound); 153 ASSERT(isGrowingDownward() 154 ? (currentPosition < m_origin && currentPosition > m_bound) 155 : (currentPosition > m_origin && currentPosition < m_bound)); 134 ASSERT(currentPosition < m_origin && currentPosition > m_bound); 156 135 #endif 157 136 } -
trunk/Source/WTF/wtf/StackStats.cpp
r237099 r252177 1 1 /* 2 * Copyright (C) 2012 Apple Inc. All rights reserved.2 * Copyright (C) 2012-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 74 74 const StackBounds& stack = thread.stack(); 75 75 76 bool isGrowingDownward = stack.isGrowingDownward();77 76 bool needToLog = false; 78 77 char* current = reinterpret_cast<char*>(this); … … 92 91 // Update the stack height stats: 93 92 int height = t.m_stackStart - current; 94 if (!isGrowingDownward)95 height = -height;96 93 if (height > StackStats::s_maxStackHeight) { 97 94 StackStats::s_maxStackHeight = height; … … 101 98 // Update the checkpoint diff stats: 102 99 int diff = last - current; 103 if (!isGrowingDownward)104 diff = -diff;105 100 if (diff > StackStats::s_maxCheckPointDiff) { 106 101 StackStats::s_maxCheckPointDiff = diff; … … 139 134 if (!m_prev) { 140 135 const StackBounds& stack = thread.stack(); 141 bool isGrowingDownward = stack.isGrowingDownward();142 136 143 137 char* current = reinterpret_cast<char*>(this); 144 138 int height = t.m_stackStart - current; 145 146 if (!isGrowingDownward)147 height = -height;148 139 149 140 dataLogF(" POP to %p diff max %.1fk | reentry %d/%d max | height %.1fk/max %.1fk | stack %p size %.1fk)\n", … … 163 154 const StackBounds& stack = thread.stack(); 164 155 165 bool isGrowingDownward = stack.isGrowingDownward();166 167 156 bool needToLog = false; 168 157 … … 180 169 // Update the stack height stats: 181 170 int height = t.m_stackStart - current; 182 if (!isGrowingDownward)183 height = -height;184 171 if (height > StackStats::s_maxStackHeight) { 185 172 StackStats::s_maxStackHeight = height; … … 189 176 // Update the checkpoint diff stats: 190 177 int diff = last - current; 191 if (!isGrowingDownward)192 diff = -diff;193 178 if (diff > StackStats::s_maxCheckPointDiff) { 194 179 StackStats::s_maxCheckPointDiff = diff; … … 224 209 const StackBounds& stack = thread.stack(); 225 210 226 bool isGrowingDownward = stack.isGrowingDownward();227 228 211 // Push this checkpoint: 229 212 m_prev = StackStats::s_topLayoutCheckPoint; … … 251 234 // Update the stack height stats: 252 235 int height = t.m_stackStart - current; 253 if (!isGrowingDownward)254 height = -height;255 236 if (height > StackStats::s_maxStackHeight) { 256 237 StackStats::s_maxStackHeight = height; … … 259 240 260 241 // Update the layout checkpoint diff stats: 261 if (!isGrowingDownward)262 diff = -diff;263 242 if (diff > StackStats::s_maxLayoutCheckPointDiff) { 264 243 StackStats::s_maxLayoutCheckPointDiff = diff; … … 267 246 268 247 // Update the total layout checkpoint diff stats: 269 if (!isGrowingDownward)270 totalDiff = -totalDiff;271 248 if (totalDiff > StackStats::s_maxTotalLayoutCheckPointDiff) { 272 249 StackStats::s_maxTotalLayoutCheckPointDiff = totalDiff;
Note:
See TracChangeset
for help on using the changeset viewer.