blob: 15544e82bfef1330c10ca76d13b0dbc2fc5dbcf0 [file] [log] [blame]
Christopher Ferrisdf290612014-01-22 19:21:07 -08001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _LIBBACKTRACE_UNWIND_MAP_H
18#define _LIBBACKTRACE_UNWIND_MAP_H
19
Christopher Ferris3a140042016-06-15 15:49:50 -070020#include <pthread.h>
Christopher Ferris2c43cff2015-03-26 19:18:36 -070021#include <stdint.h>
22#include <sys/types.h>
23
Christopher Ferrisdf290612014-01-22 19:21:07 -080024#include <backtrace/BacktraceMap.h>
25
26// The unw_map_cursor_t structure is different depending on whether it is
27// the local or remote version. In order to get the correct version, include
28// libunwind.h first then this header.
29
30class UnwindMap : public BacktraceMap {
Christopher Ferris82f3bbd2017-03-14 15:22:26 -070031 public:
Chih-Hung Hsieh034c4752016-07-12 13:50:44 -070032 explicit UnwindMap(pid_t pid);
Christopher Ferrisdf290612014-01-22 19:21:07 -080033
34 unw_map_cursor_t* GetMapCursor() { return &map_cursor_; }
35
Christopher Ferris82f3bbd2017-03-14 15:22:26 -070036 protected:
Christopher Ferrisdf290612014-01-22 19:21:07 -080037 unw_map_cursor_t map_cursor_;
38};
39
Christopher Ferrisd4c88432016-02-05 11:07:12 -080040class UnwindMapRemote : public UnwindMap {
Christopher Ferris82f3bbd2017-03-14 15:22:26 -070041 public:
Chih-Hung Hsieh034c4752016-07-12 13:50:44 -070042 explicit UnwindMapRemote(pid_t pid);
Christopher Ferrisd4c88432016-02-05 11:07:12 -080043 virtual ~UnwindMapRemote();
44
45 bool Build() override;
46
Christopher Ferris82f3bbd2017-03-14 15:22:26 -070047 private:
Christopher Ferrisd4c88432016-02-05 11:07:12 -080048 bool GenerateMap();
49};
50
Christopher Ferrise2960912014-03-07 19:42:19 -080051class UnwindMapLocal : public UnwindMap {
Christopher Ferris82f3bbd2017-03-14 15:22:26 -070052 public:
Christopher Ferrise2960912014-03-07 19:42:19 -080053 UnwindMapLocal();
54 virtual ~UnwindMapLocal();
55
Christopher Ferrisd4c88432016-02-05 11:07:12 -080056 bool Build() override;
Christopher Ferrise2960912014-03-07 19:42:19 -080057
Christopher Ferris7937a362018-01-18 11:15:49 -080058 void FillIn(uint64_t addr, backtrace_map_t* map) override;
Christopher Ferrise2960912014-03-07 19:42:19 -080059
Christopher Ferris3a140042016-06-15 15:49:50 -070060 void LockIterator() override { pthread_rwlock_rdlock(&map_lock_); }
61 void UnlockIterator() override { pthread_rwlock_unlock(&map_lock_); }
62
Christopher Ferris82f3bbd2017-03-14 15:22:26 -070063 private:
Christopher Ferrisd4c88432016-02-05 11:07:12 -080064 bool GenerateMap();
Christopher Ferrise2960912014-03-07 19:42:19 -080065
66 bool map_created_;
Christopher Ferris3a140042016-06-15 15:49:50 -070067
68 pthread_rwlock_t map_lock_;
Christopher Ferrise2960912014-03-07 19:42:19 -080069};
70
Christopher Ferrisdf290612014-01-22 19:21:07 -080071#endif // _LIBBACKTRACE_UNWIND_MAP_H