Changes imported from Abseil "staging" branch:
- f0a03a750a36dfbd7ab06d2913430ed5f988fd68 Add absl::RegisterSymbolizer() to mutex_nonprod.cc for AP... by Derek Mauro <dmauro@google.com> - f34a2ee35b4f6b321c570c51b0c381647176df63 Add the async signal-safe Symbolizer to Abseil. by Derek Mauro <dmauro@google.com> - 6a29ec2d6dc080691f6d32e1982201d1d173bdb3 Document preferred placement of ABSL_CONST_INIT attribute... by Abseil Team <absl-team@google.com> - 6f04ed6aa9c19bd717f0e8f422a97f3e3368cf30 Internal change. by Abseil Team <absl-team@google.com> - 0af9a330aff8fc0b41dcb3fe519930c36b01a9ef Declare absl::raw_logging_internal::SafeWriteToStderr in ... by Abseil Team <absl-team@google.com> - 223ff26745d31dfb4b59c36f3dee5441506af3c2 Fix ABSL_ARRAYSIZE() to handle rvalues. by Xiaoyi Zhang <zhangxy@google.com> GitOrigin-RevId: f0a03a750a36dfbd7ab06d2913430ed5f988fd68 Change-Id: I491f9cc81ca3ee078fb737cbf8fa9bf6a730eee1
This commit is contained in:
parent
0d40cb771e
commit
7fda099641
13 changed files with 2221 additions and 17 deletions
|
@ -543,11 +543,18 @@
|
||||||
// not compile (on supported platforms) unless the variable has a constant
|
// not compile (on supported platforms) unless the variable has a constant
|
||||||
// initializer. This is useful for variables with static and thread storage
|
// initializer. This is useful for variables with static and thread storage
|
||||||
// duration, because it guarantees that they will not suffer from the so-called
|
// duration, because it guarantees that they will not suffer from the so-called
|
||||||
// "static init order fiasco".
|
// "static init order fiasco". Prefer to put this attribute on the most visible
|
||||||
|
// declaration of the variable, if there's more than one, because code that
|
||||||
|
// accesses the variable can then use the attribute for optimization.
|
||||||
//
|
//
|
||||||
// Example:
|
// Example:
|
||||||
//
|
//
|
||||||
// ABSL_CONST_INIT static MyType my_var = MakeMyType(...);
|
// class MyClass {
|
||||||
|
// public:
|
||||||
|
// ABSL_CONST_INIT static MyType my_var;
|
||||||
|
// };
|
||||||
|
//
|
||||||
|
// MyType MyClass::my_var = MakeMyType(...);
|
||||||
//
|
//
|
||||||
// Note that this attribute is redundant if the variable is declared constexpr.
|
// Note that this attribute is redundant if the variable is declared constexpr.
|
||||||
#if ABSL_HAVE_CPP_ATTRIBUTE(clang::require_constant_initialization)
|
#if ABSL_HAVE_CPP_ATTRIBUTE(clang::require_constant_initialization)
|
||||||
|
|
|
@ -104,12 +104,6 @@ inline static bool VADoRawLog(char** buf, int* size,
|
||||||
|
|
||||||
static constexpr int kLogBufSize = 3000;
|
static constexpr int kLogBufSize = 3000;
|
||||||
|
|
||||||
namespace absl {
|
|
||||||
namespace raw_logging_internal {
|
|
||||||
void SafeWriteToStderr(const char *s, size_t len);
|
|
||||||
} // namespace raw_logging_internal
|
|
||||||
} // namespace absl
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
// CAVEAT: vsnprintf called from *DoRawLog below has some (exotic) code paths
|
// CAVEAT: vsnprintf called from *DoRawLog below has some (exotic) code paths
|
||||||
|
@ -188,12 +182,6 @@ void RawLogVA(absl::LogSeverity severity, const char* file, int line,
|
||||||
|
|
||||||
namespace absl {
|
namespace absl {
|
||||||
namespace raw_logging_internal {
|
namespace raw_logging_internal {
|
||||||
|
|
||||||
// Writes the provided buffer directly to stderr, in a safe, low-level manner.
|
|
||||||
//
|
|
||||||
// In POSIX this means calling write(), which is async-signal safe and does
|
|
||||||
// not malloc. If the platform supports the SYS_write syscall, we invoke that
|
|
||||||
// directly to side-step any libc interception.
|
|
||||||
void SafeWriteToStderr(const char *s, size_t len) {
|
void SafeWriteToStderr(const char *s, size_t len) {
|
||||||
#if defined(ABSL_HAVE_SYSCALL_WRITE)
|
#if defined(ABSL_HAVE_SYSCALL_WRITE)
|
||||||
syscall(SYS_write, STDERR_FILENO, s, len);
|
syscall(SYS_write, STDERR_FILENO, s, len);
|
||||||
|
|
|
@ -74,6 +74,13 @@ namespace raw_logging_internal {
|
||||||
void RawLog(absl::LogSeverity severity, const char* file, int line,
|
void RawLog(absl::LogSeverity severity, const char* file, int line,
|
||||||
const char* format, ...) ABSL_PRINTF_ATTRIBUTE(4, 5);
|
const char* format, ...) ABSL_PRINTF_ATTRIBUTE(4, 5);
|
||||||
|
|
||||||
|
// Writes the provided buffer directly to stderr, in a safe, low-level manner.
|
||||||
|
//
|
||||||
|
// In POSIX this means calling write(), which is async-signal safe and does
|
||||||
|
// not malloc. If the platform supports the SYS_write syscall, we invoke that
|
||||||
|
// directly to side-step any libc interception.
|
||||||
|
void SafeWriteToStderr(const char *s, size_t len);
|
||||||
|
|
||||||
// compile-time function to get the "base" filename, that is, the part of
|
// compile-time function to get the "base" filename, that is, the part of
|
||||||
// a filename after the last "/" or "\" path separator. The search starts at
|
// a filename after the last "/" or "\" path separator. The search starts at
|
||||||
// the end of the std::string; the second parameter is the length of the std::string.
|
// the end of the std::string; the second parameter is the length of the std::string.
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
namespace absl {
|
namespace absl {
|
||||||
namespace macros_internal {
|
namespace macros_internal {
|
||||||
template <typename T, size_t N>
|
template <typename T, size_t N>
|
||||||
char (&ArraySizeHelper(T (&array)[N]))[N];
|
auto ArraySizeHelper(const T (&array)[N]) -> char (&)[N];
|
||||||
} // namespace macros_internal
|
} // namespace macros_internal
|
||||||
} // namespace absl
|
} // namespace absl
|
||||||
#define ABSL_ARRAYSIZE(array) \
|
#define ABSL_ARRAYSIZE(array) \
|
||||||
|
|
|
@ -40,6 +40,42 @@ cc_library(
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
cc_library(
|
||||||
|
name = "symbolize",
|
||||||
|
srcs = [
|
||||||
|
"symbolize.cc",
|
||||||
|
"symbolize_elf.inc",
|
||||||
|
"symbolize_unimplemented.inc",
|
||||||
|
],
|
||||||
|
hdrs = [
|
||||||
|
"internal/symbolize.h",
|
||||||
|
"symbolize.h",
|
||||||
|
],
|
||||||
|
copts = ABSL_DEFAULT_COPTS,
|
||||||
|
deps = [
|
||||||
|
":debugging_internal",
|
||||||
|
":demangle_internal",
|
||||||
|
"//absl/base",
|
||||||
|
"//absl/base:core_headers",
|
||||||
|
"//absl/base:malloc_internal",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
cc_test(
|
||||||
|
name = "symbolize_test",
|
||||||
|
srcs = ["symbolize_test.cc"],
|
||||||
|
copts = ABSL_TEST_COPTS,
|
||||||
|
deps = [
|
||||||
|
":stack_consumption",
|
||||||
|
":symbolize",
|
||||||
|
"//absl/base",
|
||||||
|
"//absl/base:core_headers",
|
||||||
|
"//absl/base:malloc_extension",
|
||||||
|
"//absl/memory",
|
||||||
|
"@com_google_googletest//:gtest",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
cc_library(
|
cc_library(
|
||||||
name = "debugging_internal",
|
name = "debugging_internal",
|
||||||
srcs = [
|
srcs = [
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
list(APPEND DEBUGGING_PUBLIC_HEADERS
|
list(APPEND DEBUGGING_PUBLIC_HEADERS
|
||||||
"leak_check.h"
|
"leak_check.h"
|
||||||
"stacktrace.h"
|
"stacktrace.h"
|
||||||
|
"symbolize.h"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,6 +26,7 @@ list(APPEND DEBUGGING_INTERNAL_HEADERS
|
||||||
"internal/demangle.h"
|
"internal/demangle.h"
|
||||||
"internal/elf_mem_image.h"
|
"internal/elf_mem_image.h"
|
||||||
"internal/stacktrace_config.h"
|
"internal/stacktrace_config.h"
|
||||||
|
"internal/symbolize.h"
|
||||||
"internal/vdso_support.h"
|
"internal/vdso_support.h"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -32,13 +34,21 @@ list(APPEND DEBUGGING_INTERNAL_HEADERS
|
||||||
list(APPEND STACKTRACE_SRC
|
list(APPEND STACKTRACE_SRC
|
||||||
"stacktrace.cc"
|
"stacktrace.cc"
|
||||||
"internal/address_is_readable.cc"
|
"internal/address_is_readable.cc"
|
||||||
"internal/demangle.cc"
|
|
||||||
"internal/elf_mem_image.cc"
|
"internal/elf_mem_image.cc"
|
||||||
"internal/vdso_support.cc"
|
"internal/vdso_support.cc"
|
||||||
${DEBUGGING_PUBLIC_HEADERS}
|
${DEBUGGING_PUBLIC_HEADERS}
|
||||||
${DEBUGGING_INTERNAL_HEADERS}
|
${DEBUGGING_INTERNAL_HEADERS}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
list(APPEND SYMBOLIZE_SRC
|
||||||
|
"symbolize.cc"
|
||||||
|
"symbolize_elf.inc"
|
||||||
|
"symbolize_unimplemented.inc"
|
||||||
|
"internal/demangle.cc"
|
||||||
|
${DEBUGGING_PUBLIC_HEADERS}
|
||||||
|
${DEBUGGING_INTERNAL_HEADERS}
|
||||||
|
)
|
||||||
|
|
||||||
absl_library(
|
absl_library(
|
||||||
TARGET
|
TARGET
|
||||||
absl_stacktrace
|
absl_stacktrace
|
||||||
|
@ -48,6 +58,14 @@ absl_library(
|
||||||
stacktrace
|
stacktrace
|
||||||
)
|
)
|
||||||
|
|
||||||
|
absl_library(
|
||||||
|
TARGET
|
||||||
|
absl_symbolize
|
||||||
|
SOURCES
|
||||||
|
${SYMBOLIZE_SRC}
|
||||||
|
EXPORT_NAME
|
||||||
|
symbolize
|
||||||
|
)
|
||||||
|
|
||||||
list(APPEND LEAK_CHECK_SRC
|
list(APPEND LEAK_CHECK_SRC
|
||||||
"leak_check.cc"
|
"leak_check.cc"
|
||||||
|
@ -112,9 +130,19 @@ absl_test(
|
||||||
SOURCES
|
SOURCES
|
||||||
${DEMANGLE_TEST_SRC}
|
${DEMANGLE_TEST_SRC}
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
absl_stacktrace absl_stack_consumption
|
absl_symbolize absl_stack_consumption
|
||||||
)
|
)
|
||||||
|
|
||||||
|
list(APPEND SYMBOLIZE_TEST_SRC "symbolize_test.cc")
|
||||||
|
|
||||||
|
absl_test(
|
||||||
|
TARGET
|
||||||
|
symbolize_test
|
||||||
|
SOURCES
|
||||||
|
${SYMBOLIZE_TEST_SRC}
|
||||||
|
PUBLIC_LIBRARIES
|
||||||
|
absl_symbolize absl_stack_consumption
|
||||||
|
)
|
||||||
|
|
||||||
# test leak_check_test
|
# test leak_check_test
|
||||||
list(APPEND LEAK_CHECK_TEST_SRC "leak_check_test.cc")
|
list(APPEND LEAK_CHECK_TEST_SRC "leak_check_test.cc")
|
||||||
|
|
122
absl/debugging/internal/symbolize.h
Normal file
122
absl/debugging/internal/symbolize.h
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
// Copyright 2018 The Abseil Authors.
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
// This file contains internal parts of the Abseil symbolizer.
|
||||||
|
// Do not depend on the anything in this file, it may change at anytime.
|
||||||
|
|
||||||
|
#ifndef ABSL_DEBUGGING_INTERNAL_SYMBOLIZE_H_
|
||||||
|
#define ABSL_DEBUGGING_INTERNAL_SYMBOLIZE_H_
|
||||||
|
|
||||||
|
#include <cstddef>
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
#ifdef ABSL_INTERNAL_HAVE_ELF_SYMBOLIZE
|
||||||
|
#error ABSL_INTERNAL_HAVE_ELF_SYMBOLIZE cannot be directly set
|
||||||
|
#elif defined(__ELF__) && defined(__GLIBC__) && !defined(__native_client__) && \
|
||||||
|
!defined(__asmjs__)
|
||||||
|
#define ABSL_INTERNAL_HAVE_ELF_SYMBOLIZE 1
|
||||||
|
|
||||||
|
#include <elf.h>
|
||||||
|
#include <link.h> // For ElfW() macro.
|
||||||
|
#include <functional>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
namespace absl {
|
||||||
|
namespace debugging_internal {
|
||||||
|
|
||||||
|
// Iterates over all sections, invoking callback on each with the section name
|
||||||
|
// and the section header.
|
||||||
|
//
|
||||||
|
// Returns true on success; otherwise returns false in case of errors.
|
||||||
|
//
|
||||||
|
// This is not async-signal-safe.
|
||||||
|
bool ForEachSection(
|
||||||
|
int fd, const std::function<bool(const std::string& name, const ElfW(Shdr) &)>&
|
||||||
|
callback);
|
||||||
|
|
||||||
|
// Gets the section header for the given name, if it exists. Returns true on
|
||||||
|
// success. Otherwise, returns false.
|
||||||
|
bool GetSectionHeaderByName(int fd, const char *name, size_t name_len,
|
||||||
|
ElfW(Shdr) *out);
|
||||||
|
|
||||||
|
} // namespace debugging_internal
|
||||||
|
} // namespace absl
|
||||||
|
|
||||||
|
#endif // ABSL_INTERNAL_HAVE_ELF_SYMBOLIZE
|
||||||
|
|
||||||
|
namespace absl {
|
||||||
|
namespace debugging_internal {
|
||||||
|
|
||||||
|
struct SymbolDecoratorArgs {
|
||||||
|
// The program counter we are getting symbolic name for.
|
||||||
|
const void *pc;
|
||||||
|
// 0 for main executable, load address for shared libraries.
|
||||||
|
ptrdiff_t relocation;
|
||||||
|
// Read-only file descriptor for ELF image covering "pc",
|
||||||
|
// or -1 if no such ELF image exists in /proc/self/maps.
|
||||||
|
int fd;
|
||||||
|
// Output buffer, size.
|
||||||
|
// Note: the buffer may not be empty -- default symbolizer may have already
|
||||||
|
// produced some output, and earlier decorators may have adorned it in
|
||||||
|
// some way. You are free to replace or augment the contents (within the
|
||||||
|
// symbol_buf_size limit).
|
||||||
|
char *const symbol_buf;
|
||||||
|
size_t symbol_buf_size;
|
||||||
|
// Temporary scratch space, size.
|
||||||
|
// Use that space in preference to allocating your own stack buffer to
|
||||||
|
// conserve stack.
|
||||||
|
char *const tmp_buf;
|
||||||
|
size_t tmp_buf_size;
|
||||||
|
// User-provided argument
|
||||||
|
void* arg;
|
||||||
|
};
|
||||||
|
using SymbolDecorator = void (*)(const SymbolDecoratorArgs *);
|
||||||
|
|
||||||
|
// Installs a function-pointer as a decorator. Returns a value less than zero
|
||||||
|
// if the system cannot install the decorator. Otherwise, returns a unique
|
||||||
|
// identifier corresponding to the decorator. This identifier can be used to
|
||||||
|
// uninstall the decorator - See RemoveSymbolDecorator() below.
|
||||||
|
int InstallSymbolDecorator(SymbolDecorator decorator, void* arg);
|
||||||
|
|
||||||
|
// Removes a previously installed function-pointer decorator. Parameter "ticket"
|
||||||
|
// is the return-value from calling InstallSymbolDecorator().
|
||||||
|
bool RemoveSymbolDecorator(int ticket);
|
||||||
|
|
||||||
|
// Remove all installed decorators. Returns true if successful, false if
|
||||||
|
// symbolization is currently in progress.
|
||||||
|
bool RemoveAllSymbolDecorators(void);
|
||||||
|
|
||||||
|
// Registers an address range to a file mapping.
|
||||||
|
//
|
||||||
|
// Preconditions:
|
||||||
|
// start <= end
|
||||||
|
// filename != nullptr
|
||||||
|
//
|
||||||
|
// Returns true if the file was successfully registered.
|
||||||
|
bool RegisterFileMappingHint(
|
||||||
|
const void* start, const void* end, uint64_t offset, const char* filename);
|
||||||
|
|
||||||
|
// Looks up the file mapping registered by RegisterFileMappingHint for an
|
||||||
|
// address range. If there is one, the file name is stored in *filename and
|
||||||
|
// *start and *end are modified to reflect the registered mapping. Returns
|
||||||
|
// whether any hint was found.
|
||||||
|
bool GetFileMappingHint(const void** start,
|
||||||
|
const void** end,
|
||||||
|
uint64_t * offset,
|
||||||
|
const char** filename);
|
||||||
|
|
||||||
|
} // namespace debugging_internal
|
||||||
|
} // namespace absl
|
||||||
|
|
||||||
|
#endif // ABSL_DEBUGGING_INTERNAL_SYMBOLIZE_H_
|
21
absl/debugging/symbolize.cc
Normal file
21
absl/debugging/symbolize.cc
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
// Copyright 2018 The Abseil Authors.
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
#include "absl/debugging/symbolize.h"
|
||||||
|
|
||||||
|
#ifdef ABSL_INTERNAL_HAVE_ELF_SYMBOLIZE
|
||||||
|
#include "absl/debugging/symbolize_elf.inc"
|
||||||
|
#else
|
||||||
|
#include "absl/debugging/symbolize_unimplemented.inc"
|
||||||
|
#endif
|
35
absl/debugging/symbolize.h
Normal file
35
absl/debugging/symbolize.h
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
// Copyright 2018 The Abseil Authors.
|
||||||
|
//
|
||||||
|
// 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 ABSL_DEBUGGING_SYMBOLIZE_H_
|
||||||
|
#define ABSL_DEBUGGING_SYMBOLIZE_H_
|
||||||
|
|
||||||
|
#include "absl/debugging/internal/symbolize.h"
|
||||||
|
|
||||||
|
namespace absl {
|
||||||
|
|
||||||
|
// Initializes this module. Symbolize() may fail prior calling this function.
|
||||||
|
// `argv0` is the path to this program, which is usually obtained in main()
|
||||||
|
// though argv[0].
|
||||||
|
void InitializeSymbolizer(const char* argv0);
|
||||||
|
|
||||||
|
// Symbolizes a program counter. On success, returns true and write the
|
||||||
|
// symbol name to "out". The symbol name is demangled if possible
|
||||||
|
// (supports symbols generated by GCC 3.x or newer), may be truncated, and
|
||||||
|
// will be '\0' terminated. Otherwise, returns false.
|
||||||
|
bool Symbolize(const void *pc, char *out, int out_size);
|
||||||
|
|
||||||
|
} // namespace absl
|
||||||
|
|
||||||
|
#endif // ABSL_DEBUGGING_SYMBOLIZE_H_
|
1473
absl/debugging/symbolize_elf.inc
Normal file
1473
absl/debugging/symbolize_elf.inc
Normal file
File diff suppressed because it is too large
Load diff
450
absl/debugging/symbolize_test.cc
Normal file
450
absl/debugging/symbolize_test.cc
Normal file
|
@ -0,0 +1,450 @@
|
||||||
|
// Copyright 2018 The Abseil Authors.
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
#include "absl/debugging/symbolize.h"
|
||||||
|
|
||||||
|
#ifndef _WIN32
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
#include <iostream>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
|
#include "gmock/gmock.h"
|
||||||
|
#include "gtest/gtest.h"
|
||||||
|
#include "absl/base/attributes.h"
|
||||||
|
#include "absl/base/casts.h"
|
||||||
|
#include "absl/base/internal/malloc_extension.h"
|
||||||
|
#include "absl/base/internal/per_thread_tls.h"
|
||||||
|
#include "absl/base/internal/raw_logging.h"
|
||||||
|
#include "absl/base/optimization.h"
|
||||||
|
#include "absl/debugging/internal/stack_consumption.h"
|
||||||
|
#include "absl/memory/memory.h"
|
||||||
|
|
||||||
|
using testing::Contains;
|
||||||
|
|
||||||
|
// Functions to symbolize. Use C linkage to avoid mangled names.
|
||||||
|
extern "C" {
|
||||||
|
void nonstatic_func() { ABSL_BLOCK_TAIL_CALL_OPTIMIZATION(); }
|
||||||
|
static void static_func() { ABSL_BLOCK_TAIL_CALL_OPTIMIZATION(); }
|
||||||
|
} // extern "C"
|
||||||
|
|
||||||
|
struct Foo {
|
||||||
|
static void func(int x);
|
||||||
|
};
|
||||||
|
|
||||||
|
// A C++ method that should have a mangled name.
|
||||||
|
void ABSL_ATTRIBUTE_NOINLINE Foo::func(int) {
|
||||||
|
ABSL_BLOCK_TAIL_CALL_OPTIMIZATION();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Thread-local data may confuse the symbolizer, ensure that it does not.
|
||||||
|
// Variable sizes and order are important.
|
||||||
|
#if ABSL_PER_THREAD_TLS
|
||||||
|
static ABSL_PER_THREAD_TLS_KEYWORD char symbolize_test_thread_small[1];
|
||||||
|
static ABSL_PER_THREAD_TLS_KEYWORD char
|
||||||
|
symbolize_test_thread_big[2 * 1024 * 1024];
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Used below to hopefully inhibit some compiler/linker optimizations
|
||||||
|
// that may remove kHpageTextPadding, kPadding0, and kPadding1 from
|
||||||
|
// the binary.
|
||||||
|
static volatile bool volatile_bool = false;
|
||||||
|
|
||||||
|
// Force the binary to be large enough that a THP .text remap will succeed.
|
||||||
|
static constexpr size_t kHpageSize = 1 << 21;
|
||||||
|
const char kHpageTextPadding[kHpageSize * 4] ABSL_ATTRIBUTE_SECTION_VARIABLE(
|
||||||
|
".text") = "";
|
||||||
|
|
||||||
|
#ifdef ABSL_INTERNAL_HAVE_ELF_SYMBOLIZE
|
||||||
|
|
||||||
|
static char try_symbolize_buffer[4096];
|
||||||
|
|
||||||
|
// A wrapper function for absl::Symbolize() to make the unit test simple. The
|
||||||
|
// limit must be < sizeof(try_symbolize_buffer). Returns null if
|
||||||
|
// absl::Symbolize() returns false, otherwise returns try_symbolize_buffer with
|
||||||
|
// the result of absl::Symbolize().
|
||||||
|
static const char *TrySymbolizeWithLimit(void *pc, int limit) {
|
||||||
|
ABSL_RAW_CHECK(limit <= sizeof(try_symbolize_buffer),
|
||||||
|
"try_symbolize_buffer is too small");
|
||||||
|
|
||||||
|
// Use the heap to facilitate heap and buffer sanitizer tools.
|
||||||
|
auto heap_buffer = absl::make_unique<char[]>(sizeof(try_symbolize_buffer));
|
||||||
|
bool found = absl::Symbolize(pc, heap_buffer.get(), limit);
|
||||||
|
if (found) {
|
||||||
|
ABSL_RAW_CHECK(strnlen(heap_buffer.get(), limit) < limit,
|
||||||
|
"absl::Symbolize() did not properly terminate the string");
|
||||||
|
strncpy(try_symbolize_buffer, heap_buffer.get(),
|
||||||
|
sizeof(try_symbolize_buffer));
|
||||||
|
}
|
||||||
|
|
||||||
|
return found ? try_symbolize_buffer : nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
// A wrapper for TrySymbolizeWithLimit(), with a large limit.
|
||||||
|
static const char *TrySymbolize(void *pc) {
|
||||||
|
return TrySymbolizeWithLimit(pc, sizeof(try_symbolize_buffer));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Symbolize, Cached) {
|
||||||
|
// Compilers should give us pointers to them.
|
||||||
|
EXPECT_STREQ("nonstatic_func", TrySymbolize((void *)(&nonstatic_func)));
|
||||||
|
|
||||||
|
// The name of an internal linkage symbol is not specified; allow either a
|
||||||
|
// mangled or an unmangled name here.
|
||||||
|
const char *static_func_symbol = TrySymbolize((void *)(&static_func));
|
||||||
|
EXPECT_TRUE(strcmp("static_func", static_func_symbol) == 0 ||
|
||||||
|
strcmp("static_func()", static_func_symbol) == 0);
|
||||||
|
|
||||||
|
EXPECT_TRUE(nullptr == TrySymbolize(nullptr));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Symbolize, Truncation) {
|
||||||
|
constexpr char kNonStaticFunc[] = "nonstatic_func";
|
||||||
|
EXPECT_STREQ("nonstatic_func",
|
||||||
|
TrySymbolizeWithLimit((void *)(&nonstatic_func),
|
||||||
|
strlen(kNonStaticFunc) + 1));
|
||||||
|
EXPECT_STREQ("nonstatic_...",
|
||||||
|
TrySymbolizeWithLimit((void *)(&nonstatic_func),
|
||||||
|
strlen(kNonStaticFunc) + 0));
|
||||||
|
EXPECT_STREQ("nonstatic...",
|
||||||
|
TrySymbolizeWithLimit((void *)(&nonstatic_func),
|
||||||
|
strlen(kNonStaticFunc) - 1));
|
||||||
|
EXPECT_STREQ("n...", TrySymbolizeWithLimit((void *)(&nonstatic_func), 5));
|
||||||
|
EXPECT_STREQ("...", TrySymbolizeWithLimit((void *)(&nonstatic_func), 4));
|
||||||
|
EXPECT_STREQ("..", TrySymbolizeWithLimit((void *)(&nonstatic_func), 3));
|
||||||
|
EXPECT_STREQ(".", TrySymbolizeWithLimit((void *)(&nonstatic_func), 2));
|
||||||
|
EXPECT_STREQ("", TrySymbolizeWithLimit((void *)(&nonstatic_func), 1));
|
||||||
|
EXPECT_EQ(nullptr, TrySymbolizeWithLimit((void *)(&nonstatic_func), 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Symbolize, SymbolizeWithDemangling) {
|
||||||
|
Foo::func(100);
|
||||||
|
EXPECT_STREQ("Foo::func()", TrySymbolize((void *)(&Foo::func)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tests that verify that Symbolize stack footprint is within some limit.
|
||||||
|
#ifdef ABSL_INTERNAL_HAVE_DEBUGGING_STACK_CONSUMPTION
|
||||||
|
|
||||||
|
static void *g_pc_to_symbolize;
|
||||||
|
static char g_symbolize_buffer[4096];
|
||||||
|
static char *g_symbolize_result;
|
||||||
|
|
||||||
|
static void SymbolizeSignalHandler(int signo) {
|
||||||
|
if (absl::Symbolize(g_pc_to_symbolize, g_symbolize_buffer,
|
||||||
|
sizeof(g_symbolize_buffer))) {
|
||||||
|
g_symbolize_result = g_symbolize_buffer;
|
||||||
|
} else {
|
||||||
|
g_symbolize_result = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Call Symbolize and figure out the stack footprint of this call.
|
||||||
|
static const char *SymbolizeStackConsumption(void *pc, int *stack_consumed) {
|
||||||
|
g_pc_to_symbolize = pc;
|
||||||
|
*stack_consumed = absl::debugging_internal::GetSignalHandlerStackConsumption(
|
||||||
|
SymbolizeSignalHandler);
|
||||||
|
return g_symbolize_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int GetStackConsumptionUpperLimit() {
|
||||||
|
// Symbolize stack consumption should be within 2kB.
|
||||||
|
const int kStackConsumptionUpperLimit = 2048;
|
||||||
|
// Account for ASan/TSan instrumentation requiring additional stack space.
|
||||||
|
size_t multiplier = 0;
|
||||||
|
if (absl::base_internal::MallocExtension::instance()->GetNumericProperty(
|
||||||
|
"dynamic_tool.stack_size_multiplier", &multiplier)) {
|
||||||
|
return kStackConsumptionUpperLimit * multiplier;
|
||||||
|
}
|
||||||
|
return kStackConsumptionUpperLimit;
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Symbolize, SymbolizeStackConsumption) {
|
||||||
|
int stack_consumed = 0;
|
||||||
|
|
||||||
|
const char *symbol =
|
||||||
|
SymbolizeStackConsumption((void *)(&nonstatic_func), &stack_consumed);
|
||||||
|
EXPECT_STREQ("nonstatic_func", symbol);
|
||||||
|
EXPECT_GT(stack_consumed, 0);
|
||||||
|
EXPECT_LT(stack_consumed, GetStackConsumptionUpperLimit());
|
||||||
|
|
||||||
|
// The name of an internal linkage symbol is not specified; allow either a
|
||||||
|
// mangled or an unmangled name here.
|
||||||
|
symbol = SymbolizeStackConsumption((void *)(&static_func), &stack_consumed);
|
||||||
|
EXPECT_TRUE(strcmp("static_func", symbol) == 0 ||
|
||||||
|
strcmp("static_func()", symbol) == 0);
|
||||||
|
EXPECT_GT(stack_consumed, 0);
|
||||||
|
EXPECT_LT(stack_consumed, GetStackConsumptionUpperLimit());
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Symbolize, SymbolizeWithDemanglingStackConsumption) {
|
||||||
|
Foo::func(100);
|
||||||
|
int stack_consumed = 0;
|
||||||
|
|
||||||
|
const char *symbol =
|
||||||
|
SymbolizeStackConsumption((void *)(&Foo::func), &stack_consumed);
|
||||||
|
|
||||||
|
EXPECT_STREQ("Foo::func()", symbol);
|
||||||
|
EXPECT_GT(stack_consumed, 0);
|
||||||
|
EXPECT_LT(stack_consumed, GetStackConsumptionUpperLimit());
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // ABSL_INTERNAL_HAVE_DEBUGGING_STACK_CONSUMPTION
|
||||||
|
|
||||||
|
// Use a 64K page size for PPC.
|
||||||
|
const size_t kPageSize = 64 << 10;
|
||||||
|
// We place a read-only symbols into the .text section and verify that we can
|
||||||
|
// symbolize them and other symbols after remapping them.
|
||||||
|
const char kPadding0[kPageSize * 4] ABSL_ATTRIBUTE_SECTION_VARIABLE(".text") =
|
||||||
|
"";
|
||||||
|
const char kPadding1[kPageSize * 4] ABSL_ATTRIBUTE_SECTION_VARIABLE(".text") =
|
||||||
|
"";
|
||||||
|
|
||||||
|
static int FilterElfHeader(struct dl_phdr_info *info, size_t size, void *data) {
|
||||||
|
for (int i = 0; i < info->dlpi_phnum; i++) {
|
||||||
|
if (info->dlpi_phdr[i].p_type == PT_LOAD &&
|
||||||
|
info->dlpi_phdr[i].p_flags == (PF_R | PF_X)) {
|
||||||
|
const void *const vaddr =
|
||||||
|
absl::bit_cast<void *>(info->dlpi_addr + info->dlpi_phdr[i].p_vaddr);
|
||||||
|
const auto segsize = info->dlpi_phdr[i].p_memsz;
|
||||||
|
|
||||||
|
const char *self_exe;
|
||||||
|
if (info->dlpi_name != nullptr && info->dlpi_name[0] != '\0') {
|
||||||
|
self_exe = info->dlpi_name;
|
||||||
|
} else {
|
||||||
|
self_exe = "/proc/self/exe";
|
||||||
|
}
|
||||||
|
|
||||||
|
absl::debugging_internal::RegisterFileMappingHint(
|
||||||
|
vaddr, reinterpret_cast<const char *>(vaddr) + segsize,
|
||||||
|
info->dlpi_phdr[i].p_offset, self_exe);
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Symbolize, SymbolizeWithMultipleMaps) {
|
||||||
|
// Force kPadding0 and kPadding1 to be linked in.
|
||||||
|
if (volatile_bool) {
|
||||||
|
ABSL_RAW_LOG(INFO, "%s", kPadding0);
|
||||||
|
ABSL_RAW_LOG(INFO, "%s", kPadding1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Verify we can symbolize everything.
|
||||||
|
char buf[512];
|
||||||
|
memset(buf, 0, sizeof(buf));
|
||||||
|
absl::Symbolize(kPadding0, buf, sizeof(buf));
|
||||||
|
EXPECT_STREQ("kPadding0", buf);
|
||||||
|
|
||||||
|
memset(buf, 0, sizeof(buf));
|
||||||
|
absl::Symbolize(kPadding1, buf, sizeof(buf));
|
||||||
|
EXPECT_STREQ("kPadding1", buf);
|
||||||
|
|
||||||
|
// Specify a hint for the executable segment.
|
||||||
|
dl_iterate_phdr(FilterElfHeader, nullptr);
|
||||||
|
|
||||||
|
// Reload at least one page out of kPadding0, kPadding1
|
||||||
|
const char *ptrs[] = {kPadding0, kPadding1};
|
||||||
|
|
||||||
|
for (const char *ptr : ptrs) {
|
||||||
|
const int kMapFlags = MAP_ANONYMOUS | MAP_PRIVATE;
|
||||||
|
void *addr = mmap(nullptr, kPageSize, PROT_READ, kMapFlags, 0, 0);
|
||||||
|
ASSERT_NE(addr, MAP_FAILED);
|
||||||
|
|
||||||
|
// kPadding[0-1] is full of zeroes, so we can remap anywhere within it, but
|
||||||
|
// we ensure there is at least a full page of padding.
|
||||||
|
void *remapped = reinterpret_cast<void *>(
|
||||||
|
reinterpret_cast<uintptr_t>(ptr + kPageSize) & ~(kPageSize - 1ULL));
|
||||||
|
|
||||||
|
const int kMremapFlags = (MREMAP_MAYMOVE | MREMAP_FIXED);
|
||||||
|
void *ret = mremap(addr, kPageSize, kPageSize, kMremapFlags, remapped);
|
||||||
|
ASSERT_NE(ret, MAP_FAILED);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Invalidate the symbolization cache so we are forced to rely on the hint.
|
||||||
|
absl::Symbolize(nullptr, buf, sizeof(buf));
|
||||||
|
|
||||||
|
// Verify we can still symbolize.
|
||||||
|
const char *expected[] = {"kPadding0", "kPadding1"};
|
||||||
|
const size_t offsets[] = {0, kPageSize, 2 * kPageSize, 3 * kPageSize};
|
||||||
|
|
||||||
|
for (int i = 0; i < 2; i++) {
|
||||||
|
for (size_t offset : offsets) {
|
||||||
|
memset(buf, 0, sizeof(buf));
|
||||||
|
absl::Symbolize(ptrs[i] + offset, buf, sizeof(buf));
|
||||||
|
EXPECT_STREQ(expected[i], buf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Appends std::string(*args->arg) to args->symbol_buf.
|
||||||
|
static void DummySymbolDecorator(
|
||||||
|
const absl::debugging_internal::SymbolDecoratorArgs *args) {
|
||||||
|
std::string *message = static_cast<std::string *>(args->arg);
|
||||||
|
strncat(args->symbol_buf, message->c_str(),
|
||||||
|
args->symbol_buf_size - strlen(args->symbol_buf) - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Symbolize, InstallAndRemoveSymbolDecorators) {
|
||||||
|
int ticket_a;
|
||||||
|
std::string a_message("a");
|
||||||
|
EXPECT_GE(ticket_a = absl::debugging_internal::InstallSymbolDecorator(
|
||||||
|
DummySymbolDecorator, &a_message),
|
||||||
|
0);
|
||||||
|
|
||||||
|
int ticket_b;
|
||||||
|
std::string b_message("b");
|
||||||
|
EXPECT_GE(ticket_b = absl::debugging_internal::InstallSymbolDecorator(
|
||||||
|
DummySymbolDecorator, &b_message),
|
||||||
|
0);
|
||||||
|
|
||||||
|
int ticket_c;
|
||||||
|
std::string c_message("c");
|
||||||
|
EXPECT_GE(ticket_c = absl::debugging_internal::InstallSymbolDecorator(
|
||||||
|
DummySymbolDecorator, &c_message),
|
||||||
|
0);
|
||||||
|
|
||||||
|
char *address = reinterpret_cast<char *>(1);
|
||||||
|
EXPECT_STREQ("abc", TrySymbolize(address++));
|
||||||
|
|
||||||
|
EXPECT_TRUE(absl::debugging_internal::RemoveSymbolDecorator(ticket_b));
|
||||||
|
|
||||||
|
EXPECT_STREQ("ac", TrySymbolize(address++));
|
||||||
|
|
||||||
|
// Cleanup: remove all remaining decorators so other stack traces don't
|
||||||
|
// get mystery "ac" decoration.
|
||||||
|
EXPECT_TRUE(absl::debugging_internal::RemoveSymbolDecorator(ticket_a));
|
||||||
|
EXPECT_TRUE(absl::debugging_internal::RemoveSymbolDecorator(ticket_c));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Some versions of Clang with optimizations enabled seem to be able
|
||||||
|
// to optimize away the .data section if no variables live in the
|
||||||
|
// section. This variable should get placed in the .data section, and
|
||||||
|
// the test below checks for the existence of a .data section.
|
||||||
|
static int in_data_section = 1;
|
||||||
|
|
||||||
|
TEST(Symbolize, ForEachSection) {
|
||||||
|
int fd = TEMP_FAILURE_RETRY(open("/proc/self/exe", O_RDONLY));
|
||||||
|
ASSERT_NE(fd, -1);
|
||||||
|
|
||||||
|
std::vector<std::string> sections;
|
||||||
|
ASSERT_TRUE(absl::debugging_internal::ForEachSection(
|
||||||
|
fd, [§ions](const std::string &name, const ElfW(Shdr) &) {
|
||||||
|
sections.push_back(name);
|
||||||
|
return true;
|
||||||
|
}));
|
||||||
|
|
||||||
|
// Check for the presence of common section names.
|
||||||
|
EXPECT_THAT(sections, Contains(".text"));
|
||||||
|
EXPECT_THAT(sections, Contains(".rodata"));
|
||||||
|
EXPECT_THAT(sections, Contains(".bss"));
|
||||||
|
++in_data_section;
|
||||||
|
EXPECT_THAT(sections, Contains(".data"));
|
||||||
|
|
||||||
|
close(fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
// x86 specific tests. Uses some inline assembler.
|
||||||
|
extern "C" {
|
||||||
|
inline void *ABSL_ATTRIBUTE_ALWAYS_INLINE inline_func() {
|
||||||
|
void *pc = nullptr;
|
||||||
|
#if defined(__i386__) || defined(__x86_64__)
|
||||||
|
__asm__ __volatile__("call 1f; 1: pop %0" : "=r"(pc));
|
||||||
|
#endif
|
||||||
|
return pc;
|
||||||
|
}
|
||||||
|
|
||||||
|
void *ABSL_ATTRIBUTE_NOINLINE non_inline_func() {
|
||||||
|
void *pc = nullptr;
|
||||||
|
#if defined(__i386__) || defined(__x86_64__)
|
||||||
|
__asm__ __volatile__("call 1f; 1: pop %0" : "=r"(pc));
|
||||||
|
#endif
|
||||||
|
return pc;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ABSL_ATTRIBUTE_NOINLINE TestWithPCInsideNonInlineFunction() {
|
||||||
|
#if defined(ABSL_HAVE_ATTRIBUTE_NOINLINE) && \
|
||||||
|
(defined(__i386__) || defined(__x86_64__))
|
||||||
|
void *pc = non_inline_func();
|
||||||
|
const char *symbol = TrySymbolize(pc);
|
||||||
|
ABSL_RAW_CHECK(symbol != nullptr, "TestWithPCInsideNonInlineFunction failed");
|
||||||
|
ABSL_RAW_CHECK(strcmp(symbol, "non_inline_func") == 0,
|
||||||
|
"TestWithPCInsideNonInlineFunction failed");
|
||||||
|
std::cout << "TestWithPCInsideNonInlineFunction passed" << std::endl;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void ABSL_ATTRIBUTE_NOINLINE TestWithPCInsideInlineFunction() {
|
||||||
|
#if defined(ABSL_HAVE_ATTRIBUTE_ALWAYS_INLINE) && \
|
||||||
|
(defined(__i386__) || defined(__x86_64__))
|
||||||
|
void *pc = inline_func(); // Must be inlined.
|
||||||
|
const char *symbol = TrySymbolize(pc);
|
||||||
|
ABSL_RAW_CHECK(symbol != nullptr, "TestWithPCInsideInlineFunction failed");
|
||||||
|
ABSL_RAW_CHECK(strcmp(symbol, __FUNCTION__) == 0,
|
||||||
|
"TestWithPCInsideInlineFunction failed");
|
||||||
|
std::cout << "TestWithPCInsideInlineFunction passed" << std::endl;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test with a return address.
|
||||||
|
void ABSL_ATTRIBUTE_NOINLINE TestWithReturnAddress() {
|
||||||
|
#if defined(ABSL_HAVE_ATTRIBUTE_NOINLINE)
|
||||||
|
void *return_address = __builtin_return_address(0);
|
||||||
|
const char *symbol = TrySymbolize(return_address);
|
||||||
|
ABSL_RAW_CHECK(symbol != nullptr, "TestWithReturnAddress failed");
|
||||||
|
ABSL_RAW_CHECK(strcmp(symbol, "main") == 0, "TestWithReturnAddress failed");
|
||||||
|
std::cout << "TestWithReturnAddress passed" << std::endl;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#else // Symbolizer unimplemented
|
||||||
|
|
||||||
|
TEST(Symbolize, Unimplemented) {
|
||||||
|
char buf[64];
|
||||||
|
EXPECT_FALSE(absl::Symbolize((void *)(&nonstatic_func), buf, sizeof(buf)));
|
||||||
|
EXPECT_FALSE(absl::Symbolize((void *)(&static_func), buf, sizeof(buf)));
|
||||||
|
EXPECT_FALSE(absl::Symbolize((void *)(&Foo::func), buf, sizeof(buf)));
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int main(int argc, char **argv) {
|
||||||
|
// Make sure kHpageTextPadding is linked into the binary.
|
||||||
|
if (volatile_bool) {
|
||||||
|
ABSL_RAW_LOG(INFO, "%s", kHpageTextPadding);
|
||||||
|
}
|
||||||
|
|
||||||
|
#if ABSL_PER_THREAD_TLS
|
||||||
|
// Touch the per-thread variables.
|
||||||
|
symbolize_test_thread_small[0] = 0;
|
||||||
|
symbolize_test_thread_big[0] = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
absl::InitializeSymbolizer(argv[0]);
|
||||||
|
testing::InitGoogleTest(&argc, argv);
|
||||||
|
|
||||||
|
#ifdef ABSL_INTERNAL_HAVE_ELF_SYMBOLIZE
|
||||||
|
TestWithPCInsideInlineFunction();
|
||||||
|
TestWithPCInsideNonInlineFunction();
|
||||||
|
TestWithReturnAddress();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return RUN_ALL_TESTS();
|
||||||
|
}
|
35
absl/debugging/symbolize_unimplemented.inc
Normal file
35
absl/debugging/symbolize_unimplemented.inc
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
// Copyright 2018 The Abseil Authors.
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
#include "absl/base/internal/raw_logging.h"
|
||||||
|
|
||||||
|
namespace absl {
|
||||||
|
|
||||||
|
namespace debugging_internal {
|
||||||
|
|
||||||
|
int InstallSymbolDecorator(SymbolDecorator, void*) { return -1; }
|
||||||
|
bool RemoveSymbolDecorator(int) { return false; }
|
||||||
|
bool RemoveAllSymbolDecorators(void) { return false; }
|
||||||
|
bool RegisterFileMappingHint(const void *, const void *, uint64_t, const char *) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace debugging_internal
|
||||||
|
|
||||||
|
void InitializeSymbolizer(const char*) {}
|
||||||
|
bool Symbolize(const void *, char *, int) { return false; }
|
||||||
|
|
||||||
|
} // namespace absl
|
|
@ -313,4 +313,6 @@ bool Condition::Eval() const {
|
||||||
return (this->eval_ == nullptr) || (*this->eval_)(this);
|
return (this->eval_ == nullptr) || (*this->eval_)(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RegisterSymbolizer(bool (*)(const void*, char*, int)) {}
|
||||||
|
|
||||||
} // namespace absl
|
} // namespace absl
|
||||||
|
|
Loading…
Add table
Reference in a new issue