/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/src/base/debug/stack_trace.cc
40 строк
904 B
Michaël Zasso
deps: update V8 to 7.1.302.28
06 дек 2018, 17:23
Не верифицирован
06 дек 2018, 17:23
9b4bf7d
Код
Авторство
О чём код?
// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/base/debug/stack_trace.h" #include <string.h> #include <algorithm> #include <sstream> #include "src/base/macros.h" namespace v8 { namespace base { namespace debug { StackTrace::StackTrace(const void* const* trace, size_t count) { count = std::min(count, arraysize(trace_)); if (count) memcpy(trace_, trace, count * sizeof(trace_[0])); count_ = count; } StackTrace::~StackTrace() = default; const void* const* StackTrace::Addresses(size_t* count) const { *count = count_; if (count_) return trace_; return nullptr; } std::string StackTrace::ToString() const { std::stringstream stream; OutputToStream(&stream); return stream.str(); } } // namespace debug } // namespace base } // namespace v8