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

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: move preGC 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
12 // NEVER_INLINE ensures that |dummy| array on configureLimit() is not optimized away,
13 // and the stack frame base register is adjusted |kSafeStackFrameSize|.
14 NEVER_INLINE static uintptr_t currentStackFrameBaseOnCallee(const char* dummy)
15 {
16 s_avoidOptimization = dummy;
17 return StackFrameDepth::currentStackFrame();
18 }
19
20 void StackFrameDepth::configureLimit()
21 {
22 // Allocate a large object in stack and query stack frame pointer after it.
23 char dummy[kSafeStackFrameSize];
24 m_stackFrameLimit = currentStackFrameBaseOnCallee(dummy);
25
26 // Assert that the stack frame can be used.
27 dummy[sizeof(dummy) - 1] = 0;
28 }
29
30 } // 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