Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp233 llvm::IntrusiveRefCntPtr<llvm::vfs::OverlayFileSystem> OverlayFileSystem( in runToolOnCodeWithArgs() local
234 new llvm::vfs::OverlayFileSystem(llvm::vfs::getRealFileSystem())); in runToolOnCodeWithArgs()
237 OverlayFileSystem->pushOverlay(InMemoryFileSystem); in runToolOnCodeWithArgs()
250 return runToolOnCodeWithArgs(std::move(ToolAction), Code, OverlayFileSystem, in runToolOnCodeWithArgs()
478 OverlayFileSystem(new llvm::vfs::OverlayFileSystem(std::move(BaseFS))), in ClangTool()
481 : new FileManager(FileSystemOptions(), OverlayFileSystem)) { in ClangTool()
482 OverlayFileSystem->pushOverlay(InMemoryFileSystem); in ClangTool()
487 Files->setVirtualFileSystem(OverlayFileSystem); in ClangTool()
538 auto AbsPath = getAbsolutePath(*OverlayFileSystem, SourcePath); in run()
550 if (auto CWD = OverlayFileSystem->getCurrentWorkingDirectory()) { in run()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp430 OverlayFileSystem::OverlayFileSystem(IntrusiveRefCntPtr<FileSystem> BaseFS) { in OverlayFileSystem() function in OverlayFileSystem
434 void OverlayFileSystem::pushOverlay(IntrusiveRefCntPtr<FileSystem> FS) { in pushOverlay()
441 ErrorOr<Status> OverlayFileSystem::status(const Twine &Path) { in status()
451 bool OverlayFileSystem::exists(const Twine &Path) { in exists()
461 OverlayFileSystem::openFileForRead(const llvm::Twine &Path) { in openFileForRead()
472 OverlayFileSystem::getCurrentWorkingDirectory() const { in getCurrentWorkingDirectory()
478 OverlayFileSystem::setCurrentWorkingDirectory(const Twine &Path) { in setCurrentWorkingDirectory()
485 std::error_code OverlayFileSystem::isLocal(const Twine &Path, bool &Result) { in isLocal()
492 std::error_code OverlayFileSystem::getRealPath(const Twine &Path, in getRealPath()
500 void OverlayFileSystem::visitChildFileSystems(VisitCallbackTy Callback) { in visitChildFileSystems()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h378 class OverlayFileSystem : public RTTIExtends<OverlayFileSystem, FileSystem> {
387 OverlayFileSystem(IntrusiveRefCntPtr<FileSystem> Base);
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp63 IntrusiveRefCntPtr<llvm::vfs::OverlayFileSystem> Overlay( in createVFSOverlayForPreamblePCH()
64 new llvm::vfs::OverlayFileSystem(VFS)); in createVFSOverlayForPreamblePCH()
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp332 llvm::IntrusiveRefCntPtr<llvm::vfs::OverlayFileSystem> OverlayVFS = in createWithCUDA()
333 std::make_unique<llvm::vfs::OverlayFileSystem>( in createWithCUDA()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp605 llvm::makeIntrusiveRefCnt<llvm::vfs::OverlayFileSystem>(BaseFS); in computeDependencies()