Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/
H A DLinkerScript.cpp418 if (!matchesFileCache || matchesFileCache->first != &file) { in matchesFile()
420 matchesFileCache.emplace(&file, filePat.match(file.archiveName)); in matchesFile()
423 matchesFileCache.emplace(&file, false); in matchesFile()
425 matchesFileCache.emplace(&file, filePat.match(file.getNameForScript())); in matchesFile()
429 return matchesFileCache->second; in matchesFile()
H A DLinkerScript.h201 mutable std::optional<std::pair<const InputFile *, bool>> matchesFileCache; variable