OSDN Git Service

Merge "Simpleperf: Don\'t load whole perf.data into memory."
[android-x86/system-extras.git] / simpleperf / thread_tree.h
1 /*
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
20 #include <stdint.h>
21
22 #include <limits>
23 #include <memory>
24 #include <set>
25
26 #include "dso.h"
27
28 struct MapEntry {
29   uint64_t start_addr;
30   uint64_t len;
31   uint64_t pgoff;
32   uint64_t time;  // Map creation time.
33   Dso* dso;
34
35   MapEntry(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time, Dso* dso)
36       : start_addr(start_addr), len(len), pgoff(pgoff), time(time), dso(dso) {
37   }
38   MapEntry() {
39   }
40
41   uint64_t get_end_addr() const {
42     return start_addr + len;
43   }
44 };
45
46 struct MapComparator {
47   bool operator()(const MapEntry* map1, const MapEntry* map2) const;
48 };
49
50 struct ThreadEntry {
51   int pid;
52   int tid;
53   const char* comm;  // It always refers to the latest comm.
54   std::set<MapEntry*, MapComparator> maps;
55 };
56
57 class ThreadTree {
58  public:
59   ThreadTree() : unknown_symbol_("unknown", 0, std::numeric_limits<unsigned long long>::max()) {
60     unknown_dso_ = Dso::CreateDso(DSO_ELF_FILE, "unknown");
61     unknown_map_ =
62         MapEntry(0, std::numeric_limits<unsigned long long>::max(), 0, 0, unknown_dso_.get());
63   }
64
65   void AddThread(int pid, int tid, const std::string& comm);
66   void ForkThread(int pid, int tid, int ppid, int ptid);
67   ThreadEntry* FindThreadOrNew(int pid, int tid);
68   void AddKernelMap(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time,
69                     const std::string& filename);
70   void AddThreadMap(int pid, int tid, uint64_t start_addr, uint64_t len, uint64_t pgoff,
71                     uint64_t time, const std::string& filename);
72   const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip, bool in_kernel);
73   const Symbol* FindSymbol(const MapEntry* map, uint64_t ip);
74   const MapEntry* UnknownMap() const {
75     return &unknown_map_;
76   }
77
78   void Clear();
79
80  private:
81   Dso* FindKernelDsoOrNew(const std::string& filename);
82   Dso* FindUserDsoOrNew(const std::string& filename);
83   MapEntry* AllocateMap(const MapEntry& value);
84   void FixOverlappedMap(std::set<MapEntry*, MapComparator>* map_set, const MapEntry* map);
85
86   std::unordered_map<int, std::unique_ptr<ThreadEntry>> thread_tree_;
87   std::vector<std::unique_ptr<std::string>> thread_comm_storage_;
88
89   std::set<MapEntry*, MapComparator> kernel_map_tree_;
90   std::vector<std::unique_ptr<MapEntry>> map_storage_;
91   MapEntry unknown_map_;
92
93   std::unique_ptr<Dso> kernel_dso_;
94   std::unordered_map<std::string, std::unique_ptr<Dso>> module_dso_tree_;
95   std::unordered_map<std::string, std::unique_ptr<Dso>> user_dso_tree_;
96   std::unique_ptr<Dso> unknown_dso_;
97   Symbol unknown_symbol_;
98 };
99
100 struct Record;
101
102 void BuildThreadTree(const Record& record, ThreadTree* thread_tree);
103
104 #endif  // SIMPLE_PERF_THREAD_TREE_H_