OSDN Git Service

am bcf36578: am 98f391f3: Merge "Simpleperf: support --vmlinux option in report command."
[android-x86/system-extras.git] / simpleperf / read_elf.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_READ_ELF_H_
18 #define SIMPLE_PERF_READ_ELF_H_
19
20 #include <functional>
21 #include <string>
22 #include "build_id.h"
23
24 bool GetBuildIdFromNoteFile(const std::string& filename, BuildId* build_id);
25 bool GetBuildIdFromElfFile(const std::string& filename, BuildId* build_id);
26
27 // The symbol prefix used to indicate that the symbol belongs to android linker.
28 static const std::string linker_prefix = "__dl_";
29
30 struct ElfFileSymbol {
31   uint64_t vaddr;
32   uint64_t start_in_file;
33   uint64_t len;
34   bool is_func;
35   bool is_label;
36   bool is_in_text_section;
37   std::string name;
38 };
39
40 bool ParseSymbolsFromElfFile(const std::string& filename, const BuildId& expected_build_id,
41                              std::function<void(const ElfFileSymbol&)> callback);
42
43 // Expose the following functions for unit tests.
44 bool IsArmMappingSymbol(const char* name);
45
46 #endif  // SIMPLE_PERF_READ_ELF_H_