2017-07-27 18:29:18 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* 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 _LIBBACKTRACE_UNWINDSTACK_MAP_H
|
|
|
|
#define _LIBBACKTRACE_UNWINDSTACK_MAP_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2017-09-01 20:17:16 +02:00
|
|
|
#include <memory>
|
2018-01-19 19:26:36 +01:00
|
|
|
#include <mutex>
|
|
|
|
#include <unordered_map>
|
2017-09-01 20:17:16 +02:00
|
|
|
|
2017-07-27 18:29:18 +02:00
|
|
|
#include <backtrace/BacktraceMap.h>
|
2017-12-21 03:49:01 +01:00
|
|
|
#include <unwindstack/JitDebug.h>
|
2017-07-27 18:29:18 +02:00
|
|
|
#include <unwindstack/Maps.h>
|
|
|
|
|
2018-01-19 19:26:36 +01:00
|
|
|
// Forward declarations.
|
|
|
|
class UnwindDexFile;
|
|
|
|
|
2017-07-27 18:29:18 +02:00
|
|
|
class UnwindStackMap : public BacktraceMap {
|
|
|
|
public:
|
|
|
|
explicit UnwindStackMap(pid_t pid);
|
2018-01-19 19:26:36 +01:00
|
|
|
~UnwindStackMap();
|
2017-07-27 18:29:18 +02:00
|
|
|
|
|
|
|
bool Build() override;
|
|
|
|
|
2018-01-18 20:15:49 +01:00
|
|
|
void FillIn(uint64_t addr, backtrace_map_t* map) override;
|
2017-07-27 18:29:18 +02:00
|
|
|
|
2018-01-18 20:15:49 +01:00
|
|
|
virtual std::string GetFunctionName(uint64_t pc, uint64_t* offset) override;
|
2017-09-07 00:39:14 +02:00
|
|
|
virtual std::shared_ptr<unwindstack::Memory> GetProcessMemory() override final;
|
2017-09-07 07:16:09 +02:00
|
|
|
|
2017-07-27 18:29:18 +02:00
|
|
|
unwindstack::Maps* stack_maps() { return stack_maps_.get(); }
|
|
|
|
|
2017-09-01 20:17:16 +02:00
|
|
|
const std::shared_ptr<unwindstack::Memory>& process_memory() { return process_memory_; }
|
|
|
|
|
2017-12-21 03:49:01 +01:00
|
|
|
unwindstack::JitDebug* GetJitDebug() { return jit_debug_.get(); }
|
|
|
|
|
2018-01-19 19:26:36 +01:00
|
|
|
UnwindDexFile* GetDexFile(uint64_t dex_file_offset, unwindstack::MapInfo* info);
|
|
|
|
|
2017-07-27 18:29:18 +02:00
|
|
|
protected:
|
2017-12-02 06:37:37 +01:00
|
|
|
uint64_t GetLoadBias(size_t index) override;
|
|
|
|
|
2017-07-27 18:29:18 +02:00
|
|
|
std::unique_ptr<unwindstack::Maps> stack_maps_;
|
2017-09-01 20:17:16 +02:00
|
|
|
std::shared_ptr<unwindstack::Memory> process_memory_;
|
2017-12-21 03:49:01 +01:00
|
|
|
std::unique_ptr<unwindstack::JitDebug> jit_debug_;
|
2018-01-19 19:26:36 +01:00
|
|
|
#ifndef NO_LIBDEXFILE
|
|
|
|
std::mutex dex_lock_;
|
|
|
|
std::unordered_map<uint64_t, UnwindDexFile*> dex_files_;
|
|
|
|
#endif
|
2017-07-27 18:29:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _LIBBACKTRACE_UNWINDSTACK_MAP_H
|