OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef StackFrameDepth_h | 5 #ifndef StackFrameDepth_h |
6 #define StackFrameDepth_h | 6 #define StackFrameDepth_h |
7 | 7 |
8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.h" |
9 #include "wtf/Allocator.h" | 9 #include "wtf/Allocator.h" |
10 #include "wtf/Assertions.h" | 10 #include "wtf/Assertions.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 { | 44 { |
45 #if defined(ADDRESS_SANITIZER) | 45 #if defined(ADDRESS_SANITIZER) |
46 // ASan adds extra stack usage leading to too noisy asserts. | 46 // ASan adds extra stack usage leading to too noisy asserts. |
47 return true; | 47 return true; |
48 #else | 48 #else |
49 return !isEnabled() || isSafeToRecurse(); | 49 return !isEnabled() || isSafeToRecurse(); |
50 #endif | 50 #endif |
51 } | 51 } |
52 #endif | 52 #endif |
53 | 53 |
| 54 static bool isStackAddress(void* pointer) |
| 55 { |
| 56 uint8_t* address = reinterpret_cast<uint8_t*>(pointer); |
| 57 uint8_t* stackBase = reinterpret_cast<uint8_t*>(getStackStart()); |
| 58 if (address > stackBase) |
| 59 return false; |
| 60 size_t stackSize = getUnderestimatedStackSize(); |
| 61 if (!stackSize) |
| 62 return false; |
| 63 return (address >= stackBase - stackSize); |
| 64 } |
| 65 |
54 static size_t getUnderestimatedStackSize(); | 66 static size_t getUnderestimatedStackSize(); |
55 static void* getStackStart(); | 67 static void* getStackStart(); |
56 | 68 |
57 #if COMPILER(MSVC) | 69 #if COMPILER(MSVC) |
58 // Ignore C4172: returning address of local variable or temporary: dummy. This | 70 // Ignore C4172: returning address of local variable or temporary: dummy. This |
59 // warning suppression has to go outside of the function to take effect. | 71 // warning suppression has to go outside of the function to take effect. |
60 #pragma warning(push) | 72 #pragma warning(push) |
61 #pragma warning(disable: 4172) | 73 #pragma warning(disable: 4172) |
62 #endif | 74 #endif |
63 static uintptr_t currentStackFrame(const char* dummy = nullptr) | 75 static uintptr_t currentStackFrame(const char* dummy = nullptr) |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 | 117 |
106 ~StackFrameDepthScope() | 118 ~StackFrameDepthScope() |
107 { | 119 { |
108 StackFrameDepth::disableStackLimit(); | 120 StackFrameDepth::disableStackLimit(); |
109 } | 121 } |
110 }; | 122 }; |
111 | 123 |
112 } // namespace blink | 124 } // namespace blink |
113 | 125 |
114 #endif // StackFrameDepth_h | 126 #endif // StackFrameDepth_h |
OLD | NEW |