forked from google/autofdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module_grouper.h
201 lines (174 loc) · 6.42 KB
/
module_grouper.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
// Copyright 2014 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// These classes defined here are used to group modules. For each primary
// module, we will find its frequent callees, and group the callee module
// to the primary module.
#ifndef AUTOFDO_MODULE_GROUPER_H_
#define AUTOFDO_MODULE_GROUPER_H_
#include <string>
#include <map>
#include <memory>
#include <set>
#include <vector>
#include "base/common.h"
namespace autofdo {
// This enum stores different types of module option information originally
// designed in LIPO.
enum OptionType {
QUOTE_PATHS = 0,
BRACKET_PATHS = 1,
CPP_DEFINES = 2,
CPP_INCLUDES = 3,
CL_ARGS = 4,
LIPO_INFO = 5,
SYSTEM_PATHS = 6
};
class Function;
class SymbolMap;
class Symbol;
typedef std::pair<OptionType, string> Option;
typedef std::map<Function *, int64> EdgeCount;
// The structure to store the auxilary information for each module.
class Module {
public:
explicit Module() :
num_quote_paths(0), num_bracket_paths(0), num_system_paths(0),
num_cpp_defines(0), num_cpp_includes(0), num_cl_args(0), id(0),
is_exported(false), is_fake(false),
is_valid(true), lang(0), ggc_memory_in_kb(0) {}
explicit Module(bool is_fake) :
num_quote_paths(0), num_bracket_paths(0), num_system_paths(0),
num_cpp_defines(0), num_cpp_includes(0), num_cl_args(0), id(0),
is_exported(false), is_fake(is_fake),
is_valid(true), lang(0), ggc_memory_in_kb(0) {}
int num_quote_paths;
int num_bracket_paths;
int num_system_paths;
int num_cpp_defines;
int num_cpp_includes;
int num_cl_args;
int id;
// If the module is the auxilary module of other modules.
bool is_exported;
// If the module is a fake module.
// Fake module is for representing header files.
bool is_fake;
// If the module has inconsistent compilation info.
bool is_valid;
// The lower 16 bits represent the programming language.
// The higher 16 bits represent whether there is assembly in the module.
// This is combined into a uint32 to conform with GCC representation.
uint32 lang;
// Total GC memory consumed by compiler in KiB.
uint32 ggc_memory_in_kb;
// The module option information originally designed in LIPO.
std::vector<Option> options;
// Paths of the auxilary modules.
std::set<string> aux_modules;
// Paths of modules that this module has been included as auxilary module.
std::set<string> parent_modules;
// Map from compiler commandline flag to value;
map<string, bool> flag_values;
};
class Function {
public:
explicit Function(const string &name, const string &module) :
name(name), module(module), total_in_count(0), total_out_count(0) {}
void AddInEdgeCount(int64 count, Function *in_func);
void AddOutEdgeCount(int64 count, Function *out_func);
// Function name
string name;
// Module name
string module;
// Sum of count of all incoming edges.
int64 total_in_count;
// Sum of count of all outgoing edges.
int64 total_out_count;
// Map from all incoming edges to counts.
EdgeCount in_edge_count;
// Map from all outgoing edges to counts.
EdgeCount out_edge_count;
};
class CallEdge {
public:
explicit CallEdge(Function *from, Function *to) : from(from), to(to) {}
explicit CallEdge() : from(NULL), to(NULL) {}
bool operator==(const CallEdge &edge) const {
return from == edge.from && to == edge.to;
}
bool operator<(const CallEdge &edge) const {
return from->name < edge.from->name ||
(from->name == edge.from->name && to->name < edge.to->name);
}
Function *from;
Function *to;
};
// Map from module name to Module
typedef map<string, Module> ModuleMap;
class ModuleGrouper {
friend class ModuleGrouperTest;
public:
static std::unique_ptr<ModuleGrouper> GroupModule(
const string &binary,
const string §ion_prefix,
const SymbolMap *symbol_map);
~ModuleGrouper() { }
const ModuleMap &module_map() {
return module_map_;
}
private:
explicit ModuleGrouper(const SymbolMap *symbol_map);
// Adds auxilary modules for each primary module.
void Group();
// Reads from binary file to get the command line options.
void ReadModuleOptions(const string &binary,
const string §ion_prefix);
// Reads from binary file to get the command line options
// for a specific option type.
void ReadOptionsByType(const string &binary,
const string §ion_prefix,
OptionType type);
// DFS the symbol tree to traverse all call edges in symbol.
void RecursiveBuildGraph(const string &caller_name, const Symbol *symbol);
// Builds the module map and computes the initial edge weights.
void BuildGraph();
// Adds count for a give edge.
void AddEdgeCount(const CallEdge &edge, int64 count);
// Integrates the edge as the auxilary module.
void IntegrateEdge(const CallEdge &edge);
// Returns the total memory used in the module and its aux modules.
uint32 GetTotalMemory(const set<string> &modules);
// Returns true if TO_MODULE should be integrated as aux module of
// FROM_MODULE. Note: ShouldIntegrate(a, b) != ShouldIntegrate(b, a)
bool ShouldIntegrate(const string &from_module, const string &to_module);
// Finds the edge with the largest count. Returns the count.
int64 GetMaxEdge(CallEdge *edge);
// Returns the .cc file name of a given header file name.
string ReplaceHeaderToCC(string header_name) const;
// Returns the module name for a give file name, and updates the module_map.
string UpdateModuleMap(string name);
// Map from function name to Function
typedef map<string, Function> FunctionMap;
// Map from edge to count
typedef map<CallEdge, int64> EdgeMap;
int64 total_count_;
ModuleMap module_map_;
FunctionMap function_map_;
EdgeMap edge_map_;
const SymbolMap *symbol_map_;
set<string> skipped_modules_;
DISALLOW_COPY_AND_ASSIGN(ModuleGrouper);
};
} // namespace autofdo
#endif // AUTOFDO_MODULE_GROUPER_H_