Improves Clang's virtual file handling.
This patch contains: - making some of the existing comments more accurate in the presence of virtual files/directories. - renaming some private data members of FileManager to match their roles better. - creating 'DirectorEntry's for the parent directories of virtual files, such that we can tell whether two virtual files are from the same directory. This is useful for injecting virtual files whose directories don't exist in the real file system. - minor clean-ups and adding comments for class FileManager::UniqueDirContainer and FileManager::UniqueFileContainer. - adding statistics on virtual files to FileManager::PrintStats(). - adding unit tests to verify the existing and new behavior of FileManager. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125384 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Basic/FileManager.h 37 additions, 23 deletionsinclude/clang/Basic/FileManager.h
- lib/Basic/FileManager.cpp 146 additions, 85 deletionslib/Basic/FileManager.cpp
- unittests/FileManager/FileManagerTest.cpp 222 additions, 0 deletionsunittests/FileManager/FileManagerTest.cpp
- unittests/FileManager/Makefile 15 additions, 0 deletionsunittests/FileManager/Makefile
- unittests/Makefile 1 addition, 1 deletionunittests/Makefile
Loading
Please register or sign in to comment