blob: e6536bb271fd683fd717f774eba7c1a408518e3d [file] [log] [blame]
Yabin Cui60a0ea92015-07-22 20:30:43 -07001/*
2 * Copyright (C) 2015 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 SIMPLE_PERF_THREAD_TREE_H_
18#define SIMPLE_PERF_THREAD_TREE_H_
19
Yabin Cui60a0ea92015-07-22 20:30:43 -070020#include <stdint.h>
Yabin Cuic8485602015-08-20 15:04:39 -070021
22#include <limits>
23#include <memory>
Yabin Cui60a0ea92015-07-22 20:30:43 -070024#include <set>
Yabin Cuic8485602015-08-20 15:04:39 -070025
Yabin Cui60a0ea92015-07-22 20:30:43 -070026#include "dso.h"
Yabin Cui767dd172016-06-02 21:02:43 -070027
28struct Record;
Yabin Cui60a0ea92015-07-22 20:30:43 -070029
Yabin Cui003b2452016-09-29 15:32:45 -070030constexpr char DEFAULT_KERNEL_MMAP_NAME[] = "[kernel.kallsyms]";
Daniel Friederichb2465ad2016-10-17 12:28:03 -050031// Seen in perf.data file generated by perf.
32constexpr char DEFAULT_KERNEL_MMAP_NAME_PERF[] = "[kernel.kallsyms]_text";
Yabin Cui003b2452016-09-29 15:32:45 -070033constexpr char DEFAULT_EXECNAME_FOR_THREAD_MMAP[] = "//anon";
34
Yabin Cui040f7b42016-04-13 21:28:54 -070035namespace simpleperf {
36
Yabin Cui60a0ea92015-07-22 20:30:43 -070037struct MapEntry {
38 uint64_t start_addr;
39 uint64_t len;
40 uint64_t pgoff;
41 uint64_t time; // Map creation time.
Yabin Cuic8485602015-08-20 15:04:39 -070042 Dso* dso;
Yabin Cuib4212972016-05-25 14:08:05 -070043 bool in_kernel;
Yabin Cui547c60e2015-10-12 16:56:05 -070044
Yabin Cui9970a232016-06-29 12:18:11 -070045 MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time,
46 Dso* dso, bool in_kernel)
47 : start_addr(start_addr),
48 len(len),
49 pgoff(pgoff),
50 time(time),
51 dso(dso),
52 in_kernel(in_kernel) {}
53 MapEntry() {}
Yabin Cui547c60e2015-10-12 16:56:05 -070054
Yabin Cui9970a232016-06-29 12:18:11 -070055 uint64_t get_end_addr() const { return start_addr + len; }
Yabin Cui60a0ea92015-07-22 20:30:43 -070056};
57
58struct MapComparator {
59 bool operator()(const MapEntry* map1, const MapEntry* map2) const;
60};
61
Yabin Cuiaa0dd192016-12-15 11:24:03 -080062using MapSet = std::set<MapEntry*, MapComparator>;
63
Yabin Cui60a0ea92015-07-22 20:30:43 -070064struct ThreadEntry {
65 int pid;
66 int tid;
67 const char* comm; // It always refers to the latest comm.
Yabin Cuiaa0dd192016-12-15 11:24:03 -080068 MapSet* maps;
Yabin Cui60a0ea92015-07-22 20:30:43 -070069};
70
Yabin Cui767dd172016-06-02 21:02:43 -070071// ThreadTree contains thread information (in ThreadEntry) and mmap information
72// (in MapEntry) of the monitored threads. It also has interface to access
73// symbols in executable binaries mapped in the monitored threads.
Yabin Cui60a0ea92015-07-22 20:30:43 -070074class ThreadTree {
75 public:
Yabin Cui9970a232016-06-29 12:18:11 -070076 ThreadTree()
Yabin Cui15475e62016-07-14 13:26:19 -070077 : show_ip_for_unknown_symbol_(false),
Yabin Cui71b533b2016-07-21 12:29:47 -070078 show_mark_for_unknown_symbol_(false),
Yabin Cui15475e62016-07-14 13:26:19 -070079 unknown_symbol_("unknown", 0,
Yabin Cui9970a232016-06-29 12:18:11 -070080 std::numeric_limits<unsigned long long>::max()) {
Yabin Cuic8485602015-08-20 15:04:39 -070081 unknown_dso_ = Dso::CreateDso(DSO_ELF_FILE, "unknown");
Yabin Cui9970a232016-06-29 12:18:11 -070082 unknown_map_ = MapEntry(0, std::numeric_limits<unsigned long long>::max(),
83 0, 0, unknown_dso_.get(), false);
Yabin Cui767dd172016-06-02 21:02:43 -070084 kernel_dso_ = Dso::CreateDso(DSO_KERNEL, DEFAULT_KERNEL_MMAP_NAME);
Yabin Cuia447c0d2016-08-26 11:35:28 -070085 // We can't dump comm for pid 0 from /proc, so add it's name here.
Yabin Cuiaa0dd192016-12-15 11:24:03 -080086 SetThreadName(0, 0, "swapper");
Yabin Cui60a0ea92015-07-22 20:30:43 -070087 }
88
Yabin Cuiaa0dd192016-12-15 11:24:03 -080089 void SetThreadName(int pid, int tid, const std::string& comm);
Yabin Cui60a0ea92015-07-22 20:30:43 -070090 void ForkThread(int pid, int tid, int ppid, int ptid);
91 ThreadEntry* FindThreadOrNew(int pid, int tid);
Yabin Cui9970a232016-06-29 12:18:11 -070092 void AddKernelMap(uint64_t start_addr, uint64_t len, uint64_t pgoff,
Yabin Cui60a0ea92015-07-22 20:30:43 -070093 uint64_t time, const std::string& filename);
Yabin Cui9970a232016-06-29 12:18:11 -070094 void AddThreadMap(int pid, int tid, uint64_t start_addr, uint64_t len,
95 uint64_t pgoff, uint64_t time, const std::string& filename);
96 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip,
97 bool in_kernel);
Yabin Cuib64a8632016-05-24 18:23:33 -070098 // Find map for an ip address when we don't know whether it is in kernel.
99 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip);
Yabin Cui9970a232016-06-29 12:18:11 -0700100 const Symbol* FindSymbol(const MapEntry* map, uint64_t ip,
Yabin Cui16501ff2016-10-19 15:06:29 -0700101 uint64_t* pvaddr_in_file, Dso** pdso = nullptr);
Yabin Cui6965d422016-06-15 11:41:42 -0700102 const Symbol* FindKernelSymbol(uint64_t ip);
Yabin Cuidd9c9482016-07-11 16:27:52 -0700103 const Symbol* UnknownSymbol() const { return &unknown_symbol_; }
Yabin Cui60a0ea92015-07-22 20:30:43 -0700104
Yabin Cui15475e62016-07-14 13:26:19 -0700105 void ShowIpForUnknownSymbol() { show_ip_for_unknown_symbol_ = true; }
Yabin Cui71b533b2016-07-21 12:29:47 -0700106 void ShowMarkForUnknownSymbol() {
107 show_mark_for_unknown_symbol_ = true;
108 unknown_symbol_ = Symbol("*unknown", 0, ULLONG_MAX);
109 }
Yabin Cui767dd172016-06-02 21:02:43 -0700110 // Clear thread and map information, but keep loaded dso information. It saves
111 // the time to reload dso information.
112 void ClearThreadAndMap();
113
Yabin Cuic5b4a312016-10-24 13:38:38 -0700114 void AddDsoInfo(const std::string& file_path, uint32_t file_type,
115 uint64_t min_vaddr, std::vector<Symbol>* symbols);
116
Yabin Cui767dd172016-06-02 21:02:43 -0700117 // Update thread tree with information provided by record.
118 void Update(const Record& record);
Yabin Cuib7f481f2015-10-23 19:48:42 -0700119
Yabin Cui78fddd12016-10-24 14:09:26 -0700120 std::vector<Dso*> GetAllDsos() const;
121
Yabin Cui60a0ea92015-07-22 20:30:43 -0700122 private:
Yabin Cuiaa0dd192016-12-15 11:24:03 -0800123 ThreadEntry* CreateThread(int pid, int tid);
Yabin Cuic8485602015-08-20 15:04:39 -0700124 Dso* FindKernelDsoOrNew(const std::string& filename);
125 Dso* FindUserDsoOrNew(const std::string& filename);
Yabin Cui547c60e2015-10-12 16:56:05 -0700126 MapEntry* AllocateMap(const MapEntry& value);
Yabin Cuiaa0dd192016-12-15 11:24:03 -0800127 void FixOverlappedMap(MapSet* maps, const MapEntry* map);
Yabin Cui60a0ea92015-07-22 20:30:43 -0700128
129 std::unordered_map<int, std::unique_ptr<ThreadEntry>> thread_tree_;
130 std::vector<std::unique_ptr<std::string>> thread_comm_storage_;
131
Yabin Cuiaa0dd192016-12-15 11:24:03 -0800132 std::vector<std::unique_ptr<MapSet>> map_set_storage_;
133 MapSet kernel_maps_;
Yabin Cui60a0ea92015-07-22 20:30:43 -0700134 std::vector<std::unique_ptr<MapEntry>> map_storage_;
135 MapEntry unknown_map_;
136
Yabin Cuic8485602015-08-20 15:04:39 -0700137 std::unique_ptr<Dso> kernel_dso_;
138 std::unordered_map<std::string, std::unique_ptr<Dso>> module_dso_tree_;
139 std::unordered_map<std::string, std::unique_ptr<Dso>> user_dso_tree_;
140 std::unique_ptr<Dso> unknown_dso_;
Yabin Cui15475e62016-07-14 13:26:19 -0700141 bool show_ip_for_unknown_symbol_;
Yabin Cui71b533b2016-07-21 12:29:47 -0700142 bool show_mark_for_unknown_symbol_;
Yabin Cuic8485602015-08-20 15:04:39 -0700143 Symbol unknown_symbol_;
Yabin Cui60a0ea92015-07-22 20:30:43 -0700144};
145
Yabin Cui040f7b42016-04-13 21:28:54 -0700146} // namespace simpleperf
147
148using MapEntry = simpleperf::MapEntry;
149using ThreadEntry = simpleperf::ThreadEntry;
150using ThreadTree = simpleperf::ThreadTree;
151
Yabin Cui60a0ea92015-07-22 20:30:43 -0700152#endif // SIMPLE_PERF_THREAD_TREE_H_