OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "config.h" | |
6 #include "platform/heap/StackFrameDepth.h" | |
7 | |
8 namespace blink { | |
9 | |
10 static const char* s_avoidOptimization = nullptr; | |
11 NEVER_INLINE static uintptr_t estimateStackFrameBaseOnCallee(const char* dummy) | |
haraken
2015/01/08 04:09:23
estimateStackFrameBaseOnCallee => currentStackFram
| |
12 { | |
13 s_avoidOptimization = dummy; | |
14 return StackFrameDepth::currentStackFrame(); | |
15 } | |
16 | |
17 void StackFrameDepth::configureLimit() | |
18 { | |
19 // Allocate a large object in stack and query stack frame pointer after it. | |
20 char dummy[kSafeStackFrameSize]; | |
21 m_stackFrameLimit = estimateStackFrameBaseOnCallee(dummy); | |
22 | |
23 // Assert that the stack frame can be used. | |
24 dummy[sizeof(dummy) - 1] = 0; | |
25 } | |
26 | |
27 } // namespace blink | |
OLD | NEW |