2014-01-23 04:21:07 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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_UNWIND_MAP_H
|
|
|
|
#define _LIBBACKTRACE_UNWIND_MAP_H
|
|
|
|
|
2016-06-16 00:49:50 +02:00
|
|
|
#include <pthread.h>
|
2015-03-27 03:18:36 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2014-01-23 04:21:07 +01:00
|
|
|
#include <backtrace/BacktraceMap.h>
|
|
|
|
|
|
|
|
// The unw_map_cursor_t structure is different depending on whether it is
|
|
|
|
// the local or remote version. In order to get the correct version, include
|
|
|
|
// libunwind.h first then this header.
|
|
|
|
|
|
|
|
class UnwindMap : public BacktraceMap {
|
2017-03-14 23:22:26 +01:00
|
|
|
public:
|
2016-07-12 22:50:44 +02:00
|
|
|
explicit UnwindMap(pid_t pid);
|
2014-01-23 04:21:07 +01:00
|
|
|
|
|
|
|
unw_map_cursor_t* GetMapCursor() { return &map_cursor_; }
|
|
|
|
|
2017-03-14 23:22:26 +01:00
|
|
|
protected:
|
2014-01-23 04:21:07 +01:00
|
|
|
unw_map_cursor_t map_cursor_;
|
|
|
|
};
|
|
|
|
|
2016-02-05 20:07:12 +01:00
|
|
|
class UnwindMapRemote : public UnwindMap {
|
2017-03-14 23:22:26 +01:00
|
|
|
public:
|
2016-07-12 22:50:44 +02:00
|
|
|
explicit UnwindMapRemote(pid_t pid);
|
2016-02-05 20:07:12 +01:00
|
|
|
virtual ~UnwindMapRemote();
|
|
|
|
|
|
|
|
bool Build() override;
|
|
|
|
|
2017-03-14 23:22:26 +01:00
|
|
|
private:
|
2016-02-05 20:07:12 +01:00
|
|
|
bool GenerateMap();
|
|
|
|
};
|
|
|
|
|
2014-03-08 04:42:19 +01:00
|
|
|
class UnwindMapLocal : public UnwindMap {
|
2017-03-14 23:22:26 +01:00
|
|
|
public:
|
2014-03-08 04:42:19 +01:00
|
|
|
UnwindMapLocal();
|
|
|
|
virtual ~UnwindMapLocal();
|
|
|
|
|
2016-02-05 20:07:12 +01:00
|
|
|
bool Build() override;
|
2014-03-08 04:42:19 +01:00
|
|
|
|
2018-01-18 20:15:49 +01:00
|
|
|
void FillIn(uint64_t addr, backtrace_map_t* map) override;
|
2014-03-08 04:42:19 +01:00
|
|
|
|
2016-06-16 00:49:50 +02:00
|
|
|
void LockIterator() override { pthread_rwlock_rdlock(&map_lock_); }
|
|
|
|
void UnlockIterator() override { pthread_rwlock_unlock(&map_lock_); }
|
|
|
|
|
2017-03-14 23:22:26 +01:00
|
|
|
private:
|
2016-02-05 20:07:12 +01:00
|
|
|
bool GenerateMap();
|
2014-03-08 04:42:19 +01:00
|
|
|
|
|
|
|
bool map_created_;
|
2016-06-16 00:49:50 +02:00
|
|
|
|
|
|
|
pthread_rwlock_t map_lock_;
|
2014-03-08 04:42:19 +01:00
|
|
|
};
|
|
|
|
|
2014-01-23 04:21:07 +01:00
|
|
|
#endif // _LIBBACKTRACE_UNWIND_MAP_H
|