2 * Copyright 2017 Facebook, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
23 namespace folly { namespace exception_tracer {
25 constexpr size_t kMaxFrames = 500;
28 StackTrace() : frameCount(0) { }
31 uintptr_t addresses[kMaxFrames];
34 // note: no constructor so this can be __thread.
35 // A StackTraceStack MUST be placed in zero-initialized memory.
36 class StackTraceStack {
40 * Push the current stack trace onto the stack.
41 * Returns false on failure (not enough memory, getting stack trace failed),
47 * Pop the top stack trace from the stack.
48 * Returns true on success, false on failure (stack was empty).
53 * Move the top stack trace from other onto this.
54 * Returns true on success, false on failure (other was empty).
56 bool moveTopFrom(StackTraceStack& other);
67 bool empty() const { return !top_; }
70 * Return the top stack trace, or nullptr if the stack is empty.
75 * Return the stack trace following p, or nullptr if p is the bottom of
78 StackTrace* next(StackTrace* p);
81 // In debug mode, we assert that we're in zero-initialized memory by
82 // checking that the two guards around top_ are zero.
83 void checkGuard() const {
85 assert(guard1_ == 0 && guard2_ == 0);