173 lines
5.7 KiB
C++
173 lines
5.7 KiB
C++
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
#ifndef TENSORFLOW_PYTHON_UTIL_STACK_TRACE_H_
|
|
#define TENSORFLOW_PYTHON_UTIL_STACK_TRACE_H_
|
|
|
|
#include <Python.h>
|
|
#include <frameobject.h>
|
|
|
|
#include <array>
|
|
#include <limits>
|
|
#include <sstream>
|
|
#include <string>
|
|
|
|
#include "absl/base/attributes.h"
|
|
#include "absl/base/optimization.h"
|
|
#include "absl/container/flat_hash_map.h"
|
|
#include "absl/container/flat_hash_set.h"
|
|
#include "absl/container/inlined_vector.h"
|
|
#include "absl/types/optional.h"
|
|
#include "tensorflow/core/util/managed_stack_trace.h"
|
|
|
|
namespace tensorflow {
|
|
|
|
// Assert that Python GIL is held.
|
|
// TODO(cheshire): Fix duplication vs. py_util.h
|
|
inline void DCheckPyGilStateForStackTrace() {
|
|
#if PY_MAJOR_VERSION >= 3 && PY_MINOR_VERSION >= 4
|
|
DCHECK(PyGILState_Check());
|
|
#endif
|
|
}
|
|
|
|
// A class for capturing Python stack trace.
|
|
class StackTrace final {
|
|
public:
|
|
static constexpr int kStackTraceInitialSize = 30;
|
|
|
|
StackTrace() {}
|
|
|
|
// Returns `StackTrace` object that captures the current Python stack trace.
|
|
// `limit` determines how many stack frames at most are returned: set to -1
|
|
// for "no limit".
|
|
// Python GIL must be acquired beforehand.
|
|
ABSL_MUST_USE_RESULT
|
|
ABSL_ATTRIBUTE_HOT
|
|
static StackTrace Capture(int limit) {
|
|
DCheckPyGilStateForStackTrace();
|
|
if (limit == -1) limit = std::numeric_limits<int>::max();
|
|
|
|
StackTrace result;
|
|
const PyFrameObject* frame = PyThreadState_GET()->frame;
|
|
int i = 0;
|
|
for (; i < limit && frame != nullptr; frame = frame->f_back, ++i) {
|
|
PyCodeObject* code_obj = frame->f_code;
|
|
DCHECK(code_obj != nullptr);
|
|
|
|
Py_INCREF(code_obj);
|
|
result.code_objs_.push_back(std::make_pair(code_obj, frame->f_lasti));
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// Python GIL must be acquired beforehand.
|
|
ABSL_ATTRIBUTE_HOT
|
|
~StackTrace() { Clear(); }
|
|
|
|
StackTrace(StackTrace&& other) { std::swap(code_objs_, other.code_objs_); }
|
|
|
|
// Python GIL must be acquired beforehand.
|
|
ABSL_ATTRIBUTE_HOT
|
|
StackTrace& operator=(StackTrace&& other) {
|
|
Clear();
|
|
std::swap(code_objs_, other.code_objs_);
|
|
return *this;
|
|
}
|
|
|
|
// Returns a structured representation of the captured stack trace.
|
|
// `mapper` provides a custom mapping for translating stack frames, `filter`
|
|
// returns `true` for the stack frames which should be omitted.
|
|
//
|
|
// `reverse_traversal` changes the traversal order of the stack trace, and
|
|
// `limit` bounds the number of returned frames (after filtering).
|
|
std::vector<StackFrame> ToStackFrames(const StackTraceMap& mapper = {},
|
|
const StackTraceFilter& filtered = {},
|
|
bool reverse_traversal = false,
|
|
int limit = -1) const;
|
|
|
|
// Python GIL must be acquired beforehand.
|
|
ABSL_ATTRIBUTE_HOT
|
|
void Clear() {
|
|
if (!code_objs_.empty()) DCheckPyGilStateForStackTrace();
|
|
for (const auto& p : code_objs_) Py_DECREF(p.first);
|
|
code_objs_.clear();
|
|
}
|
|
|
|
private:
|
|
absl::InlinedVector<std::pair<PyCodeObject*, int>, kStackTraceInitialSize>
|
|
code_objs_;
|
|
|
|
StackTrace(const StackTrace&) = delete;
|
|
StackTrace& operator=(const StackTrace&) = delete;
|
|
};
|
|
|
|
// A class that manages Python stack traces in a circular buffer. Users can
|
|
// insert stack trace entries and retrive them by ids.
|
|
class StackTraceManager {
|
|
public:
|
|
static constexpr int kStackTraceCircularBufferSize = 1024;
|
|
|
|
// Captures the current Python stack trace and returns an id.
|
|
// Python GIL must be acquired beforehand.
|
|
ABSL_MUST_USE_RESULT
|
|
ABSL_ATTRIBUTE_HOT
|
|
int Capture(int limit) {
|
|
DCheckPyGilStateForStackTrace();
|
|
const int id = next_id_++;
|
|
const int index = id & (kStackTraceCircularBufferSize - 1);
|
|
stack_traces_[index] = StackTrace::Capture(limit);
|
|
return id;
|
|
}
|
|
|
|
// Retrieve captured Python stack trace by id. Returns `nullptr` if the
|
|
// requested stack trace is evicted from the circular buffer.
|
|
// Python GIL must be acquired beforehand.
|
|
ABSL_MUST_USE_RESULT
|
|
StackTrace* Get(int id);
|
|
|
|
private:
|
|
int next_id_ = 0;
|
|
std::array<StackTrace, kStackTraceCircularBufferSize> stack_traces_;
|
|
};
|
|
|
|
// Singleton StackTraceManager.
|
|
extern StackTraceManager* const stack_trace_manager;
|
|
|
|
// Converts the ManagedStackTrace (identified by ID) to a vector of stack
|
|
// frames.
|
|
inline std::vector<StackFrame> ManagedStackTraceToStackFrames(
|
|
int id, const StackTraceMap& mapper, const StackTraceFilter& filtered,
|
|
bool reverse_traversal, int limit) {
|
|
PyGILState_STATE gstate = PyGILState_Ensure();
|
|
std::vector<StackFrame> result = stack_trace_manager->Get(id)->ToStackFrames(
|
|
mapper, filtered, reverse_traversal, limit);
|
|
PyGILState_Release(gstate);
|
|
return result;
|
|
}
|
|
|
|
// Returns Python stack trace object that can be converted to string.
|
|
// Note that the actual stack trace is kept in a circular buffer for string
|
|
// conversion could fail if it's evicted before.
|
|
// Python GIL must be acquired beforehand.
|
|
inline ManagedStackTrace GetStackTrace(int limit) {
|
|
DCheckPyGilStateForStackTrace();
|
|
return ManagedStackTrace(stack_trace_manager->Capture(limit),
|
|
&ManagedStackTraceToStackFrames);
|
|
}
|
|
|
|
} // namespace tensorflow
|
|
|
|
#endif // TENSORFLOW_PYTHON_UTIL_STACK_TRACE_H_
|