OSDN Git Service

Merge "Simpleperf: support build for windows."
[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 len;
33   bool is_func;
34   bool is_label;
35   bool is_in_text_section;
36   std::string name;
37
38   ElfFileSymbol() : vaddr(0), len(0), is_func(false), is_label(false), is_in_text_section(false) {
39   }
40 };
41
42 bool ParseSymbolsFromElfFile(const std::string& filename, const BuildId& expected_build_id,
43                              std::function<void(const ElfFileSymbol&)> callback);
44
45 bool ReadMinExecutableVirtualAddressFromElfFile(const std::string& filename,
46                                                 const BuildId& expected_build_id,
47                                                 uint64_t* min_addr);
48
49 // Expose the following functions for unit tests.
50 bool IsArmMappingSymbol(const char* name);
51 bool IsValidElfPath(const std::string& filename);
52
53 #endif  // SIMPLE_PERF_READ_ELF_H_