LLVM  8.0.1
Public Member Functions | Public Attributes | List of all members
llvm::coverage::FunctionRecord Struct Reference

Code coverage information for a single function. More...

#include "llvm/ProfileData/Coverage/CoverageMapping.h"

Collaboration diagram for llvm::coverage::FunctionRecord:
Collaboration graph
[legend]

Public Member Functions

 FunctionRecord (StringRef Name, ArrayRef< StringRef > Filenames)
 
 FunctionRecord (FunctionRecord &&FR)=default
 
FunctionRecordoperator= (FunctionRecord &&)=default
 
void pushRegion (CounterMappingRegion Region, uint64_t Count)
 

Public Attributes

std::string Name
 Raw function name. More...
 
std::vector< std::string > Filenames
 Associated files. More...
 
std::vector< CountedRegionCountedRegions
 Regions in the function along with their counts. More...
 
uint64_t ExecutionCount
 The number of times this function was executed. More...
 

Detailed Description

Code coverage information for a single function.

Definition at line 302 of file CoverageMapping.h.

Constructor & Destructor Documentation

◆ FunctionRecord() [1/2]

llvm::coverage::FunctionRecord::FunctionRecord ( StringRef  Name,
ArrayRef< StringRef Filenames 
)
inline

Definition at line 312 of file CoverageMapping.h.

◆ FunctionRecord() [2/2]

llvm::coverage::FunctionRecord::FunctionRecord ( FunctionRecord &&  FR)
default

Member Function Documentation

◆ operator=()

FunctionRecord& llvm::coverage::FunctionRecord::operator= ( FunctionRecord &&  )
default

◆ pushRegion()

void llvm::coverage::FunctionRecord::pushRegion ( CounterMappingRegion  Region,
uint64_t  Count 
)
inline

Definition at line 318 of file CoverageMapping.h.

Referenced by llvm::coverage::CounterMappingContext::evaluate().

Member Data Documentation

◆ CountedRegions

std::vector<CountedRegion> llvm::coverage::FunctionRecord::CountedRegions

◆ ExecutionCount

uint64_t llvm::coverage::FunctionRecord::ExecutionCount

The number of times this function was executed.

Definition at line 310 of file CoverageMapping.h.

◆ Filenames

std::vector<std::string> llvm::coverage::FunctionRecord::Filenames

◆ Name

std::string llvm::coverage::FunctionRecord::Name

Raw function name.

Definition at line 304 of file CoverageMapping.h.

Referenced by llvm::coverage::CoverageMapping::getCoverageForFunction().


The documentation for this struct was generated from the following file: