mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-06 09:39:28 +00:00
Move two functions to a nicer spot. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@309906 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c563b0447b
commit
d7247b5f8f
@ -531,6 +531,12 @@ public:
|
||||
/// yield a result.
|
||||
CoverageData getCoverageForFile(StringRef Filename) const;
|
||||
|
||||
/// Get the coverage for a particular function.
|
||||
CoverageData getCoverageForFunction(const FunctionRecord &Function) const;
|
||||
|
||||
/// Get the coverage for an expansion within a coverage set.
|
||||
CoverageData getCoverageForExpansion(const ExpansionRecord &Expansion) const;
|
||||
|
||||
/// Gets all of the functions covered by this profile.
|
||||
iterator_range<FunctionRecordIterator> getCoveredFunctions() const {
|
||||
return make_range(FunctionRecordIterator(Functions),
|
||||
@ -550,12 +556,6 @@ public:
|
||||
/// the file in which the definition for the common function begins.
|
||||
std::vector<InstantiationGroup>
|
||||
getInstantiationGroups(StringRef Filename) const;
|
||||
|
||||
/// Get the coverage for a particular function.
|
||||
CoverageData getCoverageForFunction(const FunctionRecord &Function) const;
|
||||
|
||||
/// Get the coverage for an expansion within a coverage set.
|
||||
CoverageData getCoverageForExpansion(const ExpansionRecord &Expansion) const;
|
||||
};
|
||||
|
||||
// Profile coverage map has the following layout:
|
||||
|
Loading…
x
Reference in New Issue
Block a user