Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Side by Side Diff: Source/platform/heap/StackFrameDepth.cpp

Issue 818253005: Oilpan: Query stack frame register instead of manual bookkeeping (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: haraken review Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/platform/heap/StackFrameDepth.h ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « Source/platform/heap/StackFrameDepth.h ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698