blob: 7abfdfc3806797d1e3b51980e5f51ee298932168 [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"
27
28struct MapEntry {
29 uint64_t start_addr;
30 uint64_t len;
31 uint64_t pgoff;
32 uint64_t time; // Map creation time.
Yabin Cuic8485602015-08-20 15:04:39 -070033 Dso* dso;
Yabin Cui60a0ea92015-07-22 20:30:43 -070034};
35
36struct MapComparator {
37 bool operator()(const MapEntry* map1, const MapEntry* map2) const;
38};
39
40struct ThreadEntry {
41 int pid;
42 int tid;
43 const char* comm; // It always refers to the latest comm.
44 std::set<MapEntry*, MapComparator> maps;
45};
46
47class ThreadTree {
48 public:
Yabin Cuic8485602015-08-20 15:04:39 -070049 ThreadTree() : unknown_symbol_("unknown", 0, std::numeric_limits<unsigned long long>::max()) {
50 unknown_dso_ = Dso::CreateDso(DSO_ELF_FILE, "unknown");
Yabin Cui60a0ea92015-07-22 20:30:43 -070051 unknown_map_ = MapEntry{
Yabin Cuic8485602015-08-20 15:04:39 -070052 0, // start_addr
53 std::numeric_limits<unsigned long long>::max(), // len
54 0, // pgoff
55 0, // time
56 unknown_dso_.get(), // dso
Yabin Cui60a0ea92015-07-22 20:30:43 -070057 };
Yabin Cui60a0ea92015-07-22 20:30:43 -070058 }
59
60 void AddThread(int pid, int tid, const std::string& comm);
61 void ForkThread(int pid, int tid, int ppid, int ptid);
62 ThreadEntry* FindThreadOrNew(int pid, int tid);
63 void AddKernelMap(uint64_t start_addr, uint64_t len, uint64_t pgoff, uint64_t time,
64 const std::string& filename);
65 void AddThreadMap(int pid, int tid, uint64_t start_addr, uint64_t len, uint64_t pgoff,
66 uint64_t time, const std::string& filename);
67 const MapEntry* FindMap(const ThreadEntry* thread, uint64_t ip, bool in_kernel);
Yabin Cuic8485602015-08-20 15:04:39 -070068 const Symbol* FindSymbol(const MapEntry* map, uint64_t ip);
Yabin Cui60a0ea92015-07-22 20:30:43 -070069 const MapEntry* UnknownMap() const {
70 return &unknown_map_;
71 }
72
73 private:
Yabin Cuic8485602015-08-20 15:04:39 -070074 Dso* FindKernelDsoOrNew(const std::string& filename);
75 Dso* FindUserDsoOrNew(const std::string& filename);
Yabin Cui60a0ea92015-07-22 20:30:43 -070076
77 std::unordered_map<int, std::unique_ptr<ThreadEntry>> thread_tree_;
78 std::vector<std::unique_ptr<std::string>> thread_comm_storage_;
79
80 std::set<MapEntry*, MapComparator> kernel_map_tree_;
81 std::vector<std::unique_ptr<MapEntry>> map_storage_;
82 MapEntry unknown_map_;
83
Yabin Cuic8485602015-08-20 15:04:39 -070084 std::unique_ptr<Dso> kernel_dso_;
85 std::unordered_map<std::string, std::unique_ptr<Dso>> module_dso_tree_;
86 std::unordered_map<std::string, std::unique_ptr<Dso>> user_dso_tree_;
87 std::unique_ptr<Dso> unknown_dso_;
88 Symbol unknown_symbol_;
Yabin Cui60a0ea92015-07-22 20:30:43 -070089};
90
Yabin Cui73d80782015-07-23 21:39:57 -070091struct Record;
92
Yabin Cuif8258892015-08-03 11:01:22 -070093void BuildThreadTree(const Record& record, ThreadTree* thread_tree);
Yabin Cui73d80782015-07-23 21:39:57 -070094
Yabin Cui60a0ea92015-07-22 20:30:43 -070095#endif // SIMPLE_PERF_THREAD_TREE_H_