Searched refs:FunctionRecord (Results 1 – 8 of 8) sorted by relevance
/external/llvm/tools/llvm-cov/ |
D | CoverageFilters.cpp | 20 bool NameCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 26 NameRegexCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 30 bool RegionCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 35 bool LineCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 44 bool CoverageFilters::matches(const coverage::FunctionRecord &Function) { in matches() 53 CoverageFiltersMatchAll::matches(const coverage::FunctionRecord &Function) { in matches()
|
D | CoverageFilters.h | 29 virtual bool matches(const coverage::FunctionRecord &Function) { in matches() 41 bool matches(const coverage::FunctionRecord &Function) override; 51 bool matches(const coverage::FunctionRecord &Function) override; 87 bool matches(const coverage::FunctionRecord &Function) override; 98 bool matches(const coverage::FunctionRecord &Function) override; 114 bool matches(const coverage::FunctionRecord &Function) override; 122 bool matches(const coverage::FunctionRecord &Function) override;
|
D | CoverageSummaryInfo.cpp | 21 FunctionCoverageSummary::get(const coverage::FunctionRecord &Function) { in get()
|
D | CoverageSummaryInfo.h | 135 get(const coverage::FunctionRecord &Function);
|
D | CodeCoverage.cpp | 64 createFunctionView(const FunctionRecord &Function, CoverageMapping &Coverage); 147 CodeCoverageTool::createFunctionView(const FunctionRecord &Function, in createFunctionView()
|
/external/llvm/include/llvm/ProfileData/ |
D | CoverageMapping.h | 253 struct FunctionRecord { struct 263 FunctionRecord(StringRef Name, ArrayRef<StringRef> Filenames) in FunctionRecord() argument 276 std::forward_iterator_tag, FunctionRecord> { argument 277 ArrayRef<FunctionRecord> Records; 278 ArrayRef<FunctionRecord>::iterator Current; 285 FunctionRecordIterator(ArrayRef<FunctionRecord> Records_, 297 const FunctionRecord &operator*() const { return *Current; } 318 const FunctionRecord &Function; 321 const FunctionRecord &Function) in ExpansionRecord() 399 std::vector<FunctionRecord> Functions; [all …]
|
/external/llvm/lib/Analysis/IPA/ |
D | GlobalsModRef.cpp | 49 struct FunctionRecord { struct 71 FunctionRecord() : MayReadAnyGlobal (false), FunctionEffect(0) {} in FunctionRecord() argument 90 std::map<const Function*, FunctionRecord> FunctionInfo; 132 if (FunctionRecord *FR = getFunctionInfo(F)) { in getModRefBehavior() 149 if (FunctionRecord *FR = getFunctionInfo(F)) { in getModRefBehavior() 176 FunctionRecord *getFunctionInfo(const Function *F) { in getFunctionInfo() 177 std::map<const Function*, FunctionRecord>::iterator I = in getFunctionInfo() 374 FunctionRecord &FR = FunctionInfo[SCC[0]->getFunction()]; in AnalyzeCallGraph() 410 if (FunctionRecord *CalleeFR = getFunctionInfo(Callee)) { in AnalyzeCallGraph() 550 if (const FunctionRecord *FR = getFunctionInfo(F)) in getModRefInfo()
|
/external/llvm/lib/ProfileData/ |
D | CoverageMapping.cpp | 202 FunctionRecord Function(Record.FunctionName, Record.Filenames); in load() 245 std::vector<const FunctionRecord *>> MapT; 249 void insert(const FunctionRecord &Function, unsigned FileID) { in insert() 350 const FunctionRecord &Function) { in gatherFileIDs() 359 const FunctionRecord &Function) { in findMainViewFileID() 373 static Optional<unsigned> findMainViewFileID(const FunctionRecord &Function) { in findMainViewFileID() 423 std::vector<const FunctionRecord *> 433 std::vector<const FunctionRecord *> Result; in getInstantiations() 444 CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) { in getCoverageForFunction()
|