12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #ifndef BASE_PROFILER_NATIVE_UNWINDER_ANDROID_H_
- #define BASE_PROFILER_NATIVE_UNWINDER_ANDROID_H_
- #include "base/profiler/unwinder.h"
- #include "third_party/libunwindstack/src/libunwindstack/include/unwindstack/Maps.h"
- #include "third_party/libunwindstack/src/libunwindstack/include/unwindstack/Memory.h"
- namespace base {
- class UnwindStackMemoryAndroid : public unwindstack::Memory {
- public:
- UnwindStackMemoryAndroid(uintptr_t stack_ptr, uintptr_t stack_top);
- ~UnwindStackMemoryAndroid() override;
- size_t Read(uint64_t addr, void* dst, size_t size) override;
- private:
- const uintptr_t stack_ptr_;
- const uintptr_t stack_top_;
- };
- class NativeUnwinderAndroid : public Unwinder {
- public:
-
-
-
- static std::unique_ptr<unwindstack::Maps> CreateMaps();
- static std::unique_ptr<unwindstack::Memory> CreateProcessMemory();
-
-
-
-
- NativeUnwinderAndroid(unwindstack::Maps* memory_regions_map,
- unwindstack::Memory* process_memory,
- uintptr_t exclude_module_with_base_address);
- ~NativeUnwinderAndroid() override;
- NativeUnwinderAndroid(const NativeUnwinderAndroid&) = delete;
- NativeUnwinderAndroid& operator=(const NativeUnwinderAndroid&) = delete;
-
- void AddInitialModules(ModuleCache* module_cache) override;
- bool CanUnwindFrom(const Frame& current_frame) const override;
- UnwindResult TryUnwind(RegisterContext* thread_context,
- uintptr_t stack_top,
- ModuleCache* module_cache,
- std::vector<Frame>* stack) const override;
-
-
- static void AddInitialModulesFromMaps(
- const unwindstack::Maps& memory_regions_map,
- ModuleCache* module_cache);
- private:
- void EmitDexFrame(uintptr_t dex_pc,
- ModuleCache* module_cache,
- std::vector<Frame>* stack) const;
- unwindstack::Maps* const memory_regions_map_;
- unwindstack::Memory* const process_memory_;
- const uintptr_t exclude_module_with_base_address_;
- };
- }
- #endif
|