-
Notifications
You must be signed in to change notification settings - Fork 121
/
thread_delegate_posix.h
45 lines (33 loc) · 1.33 KB
/
thread_delegate_posix.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_PROFILER_THREAD_DELEGATE_POSIX_H_
#define BASE_PROFILER_THREAD_DELEGATE_POSIX_H_
#include <memory>
#include <vector>
#include "base/base_export.h"
#include "base/profiler/sampling_profiler_thread_token.h"
#include "base/profiler/thread_delegate.h"
#include "base/threading/platform_thread.h"
namespace base {
// Platform- and thread-specific implementation in support of stack sampling on
// POSIX.
class BASE_EXPORT ThreadDelegatePosix : public ThreadDelegate {
public:
static std::unique_ptr<ThreadDelegatePosix> Create(
SamplingProfilerThreadToken thread_token);
~ThreadDelegatePosix() override;
ThreadDelegatePosix(const ThreadDelegatePosix&) = delete;
ThreadDelegatePosix& operator=(const ThreadDelegatePosix&) = delete;
// ThreadDelegate
PlatformThreadId GetThreadId() const override;
uintptr_t GetStackBaseAddress() const override;
std::vector<uintptr_t*> GetRegistersToRewrite(
RegisterContext* thread_context) override;
private:
ThreadDelegatePosix(PlatformThreadId id, uintptr_t base_address);
const PlatformThreadId thread_id_;
const uintptr_t thread_stack_base_address_;
};
} // namespace base
#endif // BASE_PROFILER_THREAD_DELEGATE_POSIX_H_