Home
last modified time | relevance | path

Searched refs:ExcludeRe (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp161 std::vector<Regex> ExcludeRe; member in __anon434f465a0211::GCOVProfiler
472 if (FilterRe.empty() && ExcludeRe.empty()) { in isFunctionInstrumented()
496 ShouldInstrument = !doesFilenameMatchARegex(RealFilename, ExcludeRe); in isFunctionInstrumented()
497 } else if (ExcludeRe.empty()) { in isFunctionInstrumented()
501 !doesFilenameMatchARegex(RealFilename, ExcludeRe); in isFunctionInstrumented()
566 ExcludeRe = createRegexesFromString(Options.Exclude); in runOnModule()