blob: 24b181bd73a10dbb9bedf34b0c13cd437eb4a6d2 [file] [log] [blame]
/*
* Copyright (C) 2017 Apple Inc. All rights reserved.
* Copyright (C) 2017 Yusuke Suzuki <utatane.tea@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "StackTrace.h"
#include <wtf/Assertions.h>
#include <wtf/PrintStream.h>
void WTFGetBacktrace(void**, int* size)
{
*size = 0;
}
namespace WTF {
ALWAYS_INLINE size_t StackTrace::instanceSize(int capacity)
{
ASSERT(capacity >= 1);
return sizeof(StackTrace) + (capacity - 1) * sizeof(void*);
}
std::unique_ptr<StackTrace> StackTrace::captureStackTrace(int maxFrames, int framesToSkip)
{
maxFrames = std::max(1, maxFrames);
size_t sizeToAllocate = instanceSize(maxFrames);
std::unique_ptr<StackTrace> trace(new (NotNull, fastMalloc(sizeToAllocate)) StackTrace());
// Skip 2 additional frames i.e. StackTrace::captureStackTrace and WTFGetBacktrace.
framesToSkip += 2;
int numberOfFrames = maxFrames + framesToSkip;
WTFGetBacktrace(&trace->m_skippedFrame0, &numberOfFrames);
if (numberOfFrames) {
RELEASE_ASSERT(numberOfFrames >= framesToSkip);
trace->m_size = numberOfFrames - framesToSkip;
} else
trace->m_size = 0;
trace->m_capacity = maxFrames;
return trace;
}
auto StackTrace::demangle(void*) -> std::optional<DemangleEntry>
{
return std::nullopt;
}
void StackTrace::dump(PrintStream& out, const char* indentString) const
{
const auto* stack = this->stack();
if (!indentString)
indentString = "";
for (int i = 0; i < m_size; ++i) {
const char* mangledName = nullptr;
const char* cxaDemangled = nullptr;
const int frameNumber = i + 1;
if (mangledName || cxaDemangled)
out.printf("%s%-3d %p %s\n", indentString, frameNumber, stack[i], cxaDemangled ? cxaDemangled : mangledName);
else
out.printf("%s%-3d %p\n", indentString, frameNumber, stack[i]);
}
}
} // namespace WTF