Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp162 std::vector<Regex> ExcludeRe; member in __anon6df48cbf0211::GCOVProfiler
473 if (FilterRe.empty() && ExcludeRe.empty()) { in isFunctionInstrumented()
497 ShouldInstrument = !doesFilenameMatchARegex(RealFilename, ExcludeRe); in isFunctionInstrumented()
498 } else if (ExcludeRe.empty()) { in isFunctionInstrumented()
502 !doesFilenameMatchARegex(RealFilename, ExcludeRe); in isFunctionInstrumented()
567 ExcludeRe = createRegexesFromString(Options.Exclude); in runOnModule()