forked from google/autofdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.h
90 lines (74 loc) · 2.85 KB
/
profile.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
// 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.
// Class to extract function level profile from binary level samples.
#ifndef AUTOFDO_PROFILE_H_
#define AUTOFDO_PROFILE_H_
#include <map>
#include <set>
#include <string>
#include "gflags/gflags.h"
#include "base/common.h"
#include "sample_reader.h"
namespace autofdo {
class Addr2line;
class SymbolMap;
// Class to convert instruction level profile to source level profile.
class Profile {
public:
// Arguments:
// sample_reader: the sample reader provides the instruction level profile,
// i.e. map from instruction/callstack to profile counts.
// binary_name: the binary file name.
// addr2line: an Addr2line.
// symbol_map: the symbol map is written by this class to store all symbol
// information.
Profile(const SampleReader *sample_reader,
const string &binary_name,
Addr2line *addr2line,
SymbolMap *symbol_map)
: sample_reader_(sample_reader), binary_name_(binary_name),
addr2line_(addr2line), symbol_map_(symbol_map) {}
~Profile();
// Builds the source level profile.
void ComputeProfile();
private:
// Internal data structure that aggregates profile for each symbol.
struct ProfileMaps {
ProfileMaps(uint64 start, uint64 end) : start_addr(start), end_addr(end) {}
uint64 GetAggregatedCount() const;
uint64 start_addr;
uint64 end_addr;
AddressCountMap address_count_map;
RangeCountMap range_count_map;
BranchCountMap branch_count_map;
};
typedef map<string, ProfileMaps*> SymbolProfileMaps;
// Returns the profile maps for a give function.
ProfileMaps *GetProfileMaps(uint64 addr);
// Aggregates raw profile for each symbol.
void AggregatePerFunctionProfile();
// Builds function level profile for specified function:
// 1. Traverses all instructions to build instruction map.
// 2. Unwinds the inline stack to add symbol count to each inlined symbol.
void ProcessPerFunctionProfile(string func_name, const ProfileMaps &map);
const SampleReader *sample_reader_;
const string binary_name_;
Addr2line *addr2line_;
SymbolMap *symbol_map_;
AddressCountMap global_addr_count_map_;
SymbolProfileMaps symbol_profile_maps_;
DISALLOW_COPY_AND_ASSIGN(Profile);
};
} // namespace autofdo
#endif // AUTOFDO_PROFILE_H_