// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/profiler/stack_sampler.h" #include #include #include "base/memory/ptr_util.h" #include "base/threading/platform_thread.h" #include "build/build_config.h" #if BUILDFLAG(IS_CHROMEOS) && \ (defined(ARCH_CPU_X86_64) || defined(ARCH_CPU_ARM64)) #include "base/check.h" #include "base/functional/bind.h" #include "base/profiler/frame_pointer_unwinder.h" #include "base/profiler/stack_copier_signal.h" #include "base/profiler/thread_delegate_posix.h" #include "base/profiler/unwinder.h" #endif namespace base { namespace { #if BUILDFLAG(IS_CHROMEOS) && \ (defined(ARCH_CPU_X86_64) || defined(ARCH_CPU_ARM64)) std::vector> CreateUnwinders() { std::vector> unwinders; unwinders.push_back(std::make_unique()); return unwinders; } #endif } // namespace std::unique_ptr StackSampler::Create( SamplingProfilerThreadToken thread_token, ModuleCache* module_cache, UnwindersFactory core_unwinders_factory, RepeatingClosure record_sample_callback, StackSamplerTestDelegate* test_delegate) { #if BUILDFLAG(IS_CHROMEOS) && \ (defined(ARCH_CPU_X86_64) || defined(ARCH_CPU_ARM64)) DCHECK(!core_unwinders_factory); return base::WrapUnique( new StackSampler(std::make_unique( ThreadDelegatePosix::Create(thread_token)), BindOnce(&CreateUnwinders), module_cache, std::move(record_sample_callback), test_delegate)); #else return nullptr; #endif } size_t StackSampler::GetStackBufferSize() { size_t stack_size = PlatformThread::GetDefaultThreadStackSize(); pthread_attr_t attr; if (stack_size == 0 && pthread_attr_init(&attr) == 0) { if (pthread_attr_getstacksize(&attr, &stack_size) != 0) stack_size = 0; pthread_attr_destroy(&attr); } // Maximum limits under NPTL implementation. constexpr size_t kDefaultStackLimit = 4 * (1 << 20); return stack_size > 0 ? stack_size : kDefaultStackLimit; } } // namespace base