blob: 9697319bf045078d1f5d81a6d3509098a686d4a7 [file] [log] [blame]
Yabin Cuiec12ed92015-06-08 10:38:10 -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_DSO_H_
18#define SIMPLE_PERF_DSO_H_
19
20#include <memory>
Yabin Cuiec12ed92015-06-08 10:38:10 -070021#include <string>
Yabin Cui638c5582015-07-01 16:16:57 -070022#include <unordered_map>
23#include <vector>
24
25#include "build_id.h"
Yabin Cuiec12ed92015-06-08 10:38:10 -070026
Yabin Cuic8485602015-08-20 15:04:39 -070027struct Symbol {
Yabin Cuiec12ed92015-06-08 10:38:10 -070028 uint64_t addr;
29 uint64_t len;
Yabin Cuib10a8fb2015-08-18 16:32:18 -070030
Yabin Cuicc2e59e2015-08-21 14:23:43 -070031 Symbol(const std::string& name, uint64_t addr, uint64_t len);
32 const char* Name() const {
33 return name_;
Yabin Cuib10a8fb2015-08-18 16:32:18 -070034 }
35
Yabin Cuicc2e59e2015-08-21 14:23:43 -070036 const char* DemangledName() const;
Yabin Cuib10a8fb2015-08-18 16:32:18 -070037
38 private:
Yabin Cuicc2e59e2015-08-21 14:23:43 -070039 const char* name_;
40 mutable const char* demangled_name_;
Yabin Cuiec12ed92015-06-08 10:38:10 -070041};
42
Yabin Cuiba50c4b2015-07-21 11:24:48 -070043enum DsoType {
44 DSO_KERNEL,
45 DSO_KERNEL_MODULE,
46 DSO_ELF_FILE,
47};
48
Yabin Cuic8485602015-08-20 15:04:39 -070049struct KernelSymbol;
50struct ElfFileSymbol;
Yabin Cuiec12ed92015-06-08 10:38:10 -070051
Yabin Cuic8485602015-08-20 15:04:39 -070052struct Dso {
Yabin Cuiec12ed92015-06-08 10:38:10 -070053 public:
Yabin Cuic8485602015-08-20 15:04:39 -070054 static void SetDemangle(bool demangle);
55 static std::string Demangle(const std::string& name);
56 static bool SetSymFsDir(const std::string& symfs_dir);
57 static void SetVmlinux(const std::string& vmlinux);
58 static void SetBuildIds(const std::vector<std::pair<std::string, BuildId>>& build_ids);
Yabin Cuib10a8fb2015-08-18 16:32:18 -070059
Yabin Cuic8485602015-08-20 15:04:39 -070060 static std::unique_ptr<Dso> CreateDso(DsoType dso_type, const std::string& dso_path = "");
Yabin Cuib10a8fb2015-08-18 16:32:18 -070061
Yabin Cuicc2e59e2015-08-21 14:23:43 -070062 ~Dso();
Yabin Cui3c8c2132015-08-13 20:30:20 -070063
64 // Return the path recorded in perf.data.
Yabin Cuic8485602015-08-20 15:04:39 -070065 const std::string& Path() const {
66 return path_;
67 }
68
Yabin Cui3c8c2132015-08-13 20:30:20 -070069 // Return the accessible path. It may be the same as Path(), or
70 // return the path with prefix set by SetSymFsDir().
71 std::string GetAccessiblePath() const;
72
Yabin Cui547c60e2015-10-12 16:56:05 -070073 // Return the minimum virtual address in program header.
74 uint64_t MinVirtualAddress();
75
76 const Symbol* FindSymbol(uint64_t vaddr_in_dso);
Yabin Cuib3783552015-06-11 11:15:42 -070077
78 private:
Yabin Cuic8485602015-08-20 15:04:39 -070079 static BuildId GetExpectedBuildId(const std::string& filename);
80 static bool KernelSymbolCallback(const KernelSymbol& kernel_symbol, Dso* dso);
81 static void VmlinuxSymbolCallback(const ElfFileSymbol& elf_symbol, Dso* dso);
82 static void ElfFileSymbolCallback(const ElfFileSymbol& elf_symbol, Dso* dso,
83 bool (*filter)(const ElfFileSymbol&));
Yabin Cui638c5582015-07-01 16:16:57 -070084
Yabin Cuic8485602015-08-20 15:04:39 -070085 static bool demangle_;
86 static std::string symfs_dir_;
87 static std::string vmlinux_;
88 static std::unordered_map<std::string, BuildId> build_id_map_;
Yabin Cuicc2e59e2015-08-21 14:23:43 -070089 static size_t dso_count_;
Yabin Cuic8485602015-08-20 15:04:39 -070090
91 Dso(DsoType type, const std::string& path);
92 bool Load();
93 bool LoadKernel();
94 bool LoadKernelModule();
95 bool LoadElfFile();
Yabin Cui72885012016-02-14 19:18:02 -080096 bool LoadEmbeddedElfFile();
Yabin Cuic8485602015-08-20 15:04:39 -070097 void InsertSymbol(const Symbol& symbol);
98 void FixupSymbolLength();
99
100 const DsoType type_;
101 const std::string path_;
Yabin Cui547c60e2015-10-12 16:56:05 -0700102 uint64_t min_vaddr_;
Yabin Cuicc2e59e2015-08-21 14:23:43 -0700103 std::vector<Symbol> symbols_;
Yabin Cuic8485602015-08-20 15:04:39 -0700104 bool is_loaded_;
Yabin Cuiec12ed92015-06-08 10:38:10 -0700105};
106
107#endif // SIMPLE_PERF_DSO_H_