#include "base/profiler/stack_sampler.h"
#include "base/memory/ptr_util.h"
#include "base/profiler/profiler_buildflags.h"
#include "build/build_config.h"
#if BUILDFLAG(IOS_STACK_PROFILER_ENABLED)
#include "base/check.h"
#include "base/functional/bind.h"
#include "base/profiler/frame_pointer_unwinder.h"
#include "base/profiler/stack_copier_suspend.h"
#include "base/profiler/suspendable_thread_delegate_mac.h"
#endif
namespace base {
#if BUILDFLAG(IOS_STACK_PROFILER_ENABLED)
namespace {
std::vector<std::unique_ptr<Unwinder>> CreateUnwinders() {
std::vector<std::unique_ptr<Unwinder>> unwinders;
if (__builtin_available(iOS 12.0, *)) {
unwinders.push_back(std::make_unique<FramePointerUnwinder>());
}
return unwinders;
}
}
#endif
std::unique_ptr<StackSampler> StackSampler::Create(
SamplingProfilerThreadToken thread_token,
ModuleCache* module_cache,
UnwindersFactory core_unwinders_factory,
RepeatingClosure record_sample_callback,
StackSamplerTestDelegate* test_delegate) {
DCHECK(!core_unwinders_factory);
#if BUILDFLAG(IOS_STACK_PROFILER_ENABLED)
return base::WrapUnique(new StackSampler(
std::make_unique<StackCopierSuspend>(
std::make_unique<SuspendableThreadDelegateMac>(thread_token)),
BindOnce(&CreateUnwinders), module_cache,
std::move(record_sample_callback), test_delegate));
#else
return nullptr;
#endif
}
size_t StackSampler::GetStackBufferSize() {
#if BUILDFLAG(IOS_STACK_PROFILER_ENABLED)
size_t stack_size = PlatformThread::GetDefaultThreadStackSize();
return stack_size > 0 ? stack_size : 1536 * 1024;
#else
return 0;
#endif
}
}