- 1ced737 remove unneeded config.h includes by Dylan Noblesmith · 14 years ago
- 32f1acf Revert r132539 for now, "My testing shows that function stat has no problem with trailing separators. (tested on Windows and Darwin)." by NAKAMURA Takumi · 14 years ago
- 44f91da Use StringRef's case transformation methods. by Benjamin Kramer · 14 years ago
- 1735f4e For modules, use a hash of the compiler version, language options, and by Douglas Gregor · 14 years ago
- faeb1d4 When an import statement fails to find a module in the module cache, by Douglas Gregor · 14 years ago
- 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
- dd04c69 My testing shows that function stat has no problem with trailing separators. (tested on Windows and Darwin). by Francois Pichet · 14 years ago
- 5e36840 Add FileManager::getNoncachedStatValue, which will resolve relative paths against the working directory specified in the file system options. by Anders Carlsson · 15 years ago
- d6278e3 Having FileManager::getFile always open the file, brought much consternation and leaking of file descriptors. by Argyrios Kyrtzidis · 15 years ago
- 669b0b1 Stop leaking file descriptors. by Argyrios Kyrtzidis · 15 years ago
- 9ba8fb1 Get rid of the static FileManager::FixupRelativePath. by Anders Carlsson · 15 years ago
- 878b3e2 Check in the implementation as well... by Anders Carlsson · 15 years ago
- b5c356a Convert FileManager::FixupRelativePath over to using PathV2. by Anders Carlsson · 15 years ago
- f3c0ff7 Uses llvm::sys::path instead of hand-rolled algorithm in FileManager. by Zhanyong Wan · 15 years ago
- e1dd3e2 Improves Clang's virtual file handling. by Zhanyong Wan · 15 years ago
- 09b6989 Implement two related optimizations that make de-serialization of by Douglas Gregor · 15 years ago
- c623606 Update for API change. by Rafael Espindola · 15 years ago
- 606c4ac Improve our uniquing of file entries when files are re-saved or are by Douglas Gregor · 15 years ago
- 5b55454 Revert 124754 and 124760 as they made clang unusable in the presence of symbolic by Rafael Espindola · 15 years ago
- 8c0577f Improve the performance of filename canonicalization by avoiding by Douglas Gregor · 15 years ago
- 3c0d263 Canonicalize path names in the file manager before performing a lookup by Douglas Gregor · 15 years ago
- 63fbaed TextDiagnosticPrinter.cpp: Show diagnostics as far as possible even with invalid PresomedLoc, instead of just silencing it. by Axel Naumann · 15 years ago
- 740857f Replace all uses of PathV1::makeAbsolute with PathV2::fs::make_absolute. by Michael J. Spencer · 15 years ago
- f28df4c Replace all uses of PathV1::isAbsolute with PathV2::is_{absolute,relative}. by Michael J. Spencer · 15 years ago
- d9da7a1 MemoryBuffer API update. by Michael J. Spencer · 15 years ago
- f25faaa Use error_code instead of std::string* for MemoryBuffer. by Michael J. Spencer · 15 years ago
- 4fc8fb0 attempt to fix a buildbot failure, apparently apache fails to build. by Chris Lattner · 15 years ago
- 8aaf499 Merge System into Support. by Michael J. Spencer · 15 years ago
- 5ea7d07 The final result of all this refactoring: instead of doing stat immediately by Chris Lattner · 15 years ago
- 278038b hopefully resolve the windows buildbot issue (retch) by Chris Lattner · 15 years ago
- dd27843 change the 'is directory' indicator to be a null-or-not by Chris Lattner · 15 years ago
- 9624b69 pull "is directory" handling into FileManager::getStatValue by Chris Lattner · 15 years ago
- 966b25b tidy up code, add a comment about dir caching. by Chris Lattner · 15 years ago
- 5769c3d factor the "cache miss" handling code out of FM into a static by Chris Lattner · 15 years ago
- b3c8145 r120013 dropped passing in the precomputed file size to by Chris Lattner · 15 years ago
- 226efd3 rework the stat cache, pulling it out of FileManager.h into by Chris Lattner · 15 years ago
- 26b5c19 tidy up. Split FileManager::getBufferForFile into by Chris Lattner · 15 years ago
- 5159f61 now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 15 years ago
- 3f5a9ef give FileManager a 'FileSystemOptions' ivar, which will be used by Chris Lattner · 15 years ago
- 4ac569b Partially revert Doug's PCH validation patch (r98585). by Chris Lattner · 15 years ago
- 6e64099 stringref'ize API by Chris Lattner · 15 years ago
- 5df6f8f avoid creating sys::Path instances when -fworking-directory isn't being used. by Chris Lattner · 15 years ago
- 3cf715d Filename.rfind("/\\") won't give us the position of the last directory seperator. by Benjamin Kramer · 15 years ago
- 0c0e804 change the various getFile routines to use StringRef as their implementation form. by Chris Lattner · 15 years ago
- 71731d6 Implement -working-directory. by Argyrios Kyrtzidis · 15 years ago
- 8460224 fix PR7953 - Windows filename are case insensitive: by Chris Lattner · 15 years ago
- 81c000f When remapping a virtual file, also make an entry for the file with by Douglas Gregor · 15 years ago
- 8d5609b Pass StringRefs by value. by Benjamin Kramer · 15 years ago
- 551446b Removing trailing directory separator, to make stat work by John Thompson · 16 years ago
- 2f1a6c1 FileManager: Do not cache failed stats, it is easy to construct common by Daniel Dunbar · 16 years ago
- 407e212 Extend -remap-file=from;to to permit mapping from a non-existent by Douglas Gregor · 16 years ago
- d2eb58a Add support for a chain of stat caches in the FileManager, rather than by Douglas Gregor · 16 years ago
- 01ce06f don't stick an uninitialized 'stat' buf into the stat cache, fill it by Chris Lattner · 16 years ago
- 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
- 26db648 Replace some instances of std::string with StringRefs. by Benjamin Kramer · 16 years ago
- 3441b4f API changes to match llvm ToT. by Chris Lattner · 16 years ago
- 89b422c Replace cerr with errs(). by Benjamin Kramer · 16 years ago
- 91f5ff6 improve path handling, patch by Baptiste Lepilleur! by Chris Lattner · 16 years ago
- c504683 Implement caching of stat() calls for precompiled headers, which is by Douglas Gregor · 17 years ago
- 48db39d Remove the serialization code that predates precompiled by Douglas Gregor · 17 years ago
- 5d7e2e1 FileManager: by Ted Kremenek · 17 years ago
- 882018b search and replaceo? by Chris Lattner · 17 years ago
- c8b740e Add lightweight shim "clang::StatSysCallCache" that caches 'stat' system calls by Ted Kremenek · 17 years ago
- 1502b7e On Windows use a BumpPtrAllocator for the UniqueFileContainer's StringMap. by Ted Kremenek · 17 years ago
- bb2f25b FileManager: Use a BumpPtrAllocator for the StringMaps DirEntries and FileEntries. by Ted Kremenek · 17 years ago
- 5c04bd8 Add a some comments to designate Windows-specific/Unix-specific code. No functionality change. by Ted Kremenek · 17 years ago
- 7a51313 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 18 years ago[Renamed from clang/Basic/FileManager.cpp]
- d87eef8 In FileManager: use full paths to unique files and directories on Windows, by Ted Kremenek · 18 years ago
- 8d71e25 Fix misspelling of "existent". Do not use std::cerr; use llvm::cerr instead. by Ted Kremenek · 18 years ago
- d7a7abe Fixed 80-col violation. by Ted Kremenek · 18 years ago
- 5b12ab8 Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
- f4c38c9 Refactored inode and device number into FileEntry, and changed the by Ted Kremenek · 18 years ago
- a51c88c Added to FileEntry a pointer to the <dev_t,ino_t> pair for the file, and by Ted Kremenek · 18 years ago
- 6ca076c Removed serialization of FileEntry and DirectoryEntry. This objects will by Ted Kremenek · 18 years ago
- f7260b1 Implemented serialization of FileEntry and DirectoryEntry. by Ted Kremenek · 18 years ago
- ff3fa8b VC++ doesn't define S_ISDIR by Chris Lattner · 18 years ago
- 23b7eb6 Finally bite the bullet and make the major change: split the clang namespace by Chris Lattner · 18 years ago
- 34d1f5a adjust to CStringMap interface change. by Chris Lattner · 19 years ago
- 9c59bda simplify logic, eliminate a copy of string data. by Chris Lattner · 19 years ago
- 2f4a89a Switch the FileManager::FileEntries map over to using a CStringMap. This by Chris Lattner · 19 years ago
- 43fd42e Wean LookupSubframeworkHeader off std::strings, use the new SmallString by Chris Lattner · 19 years ago
- a85cbe2 Avoid storing a directory name in both the DirEntries map keys and in the by Chris Lattner · 19 years ago
- af65375 Switch DirEntries over to using a CStringMap. This speeds it up by Chris Lattner · 19 years ago
- 8b1e848 Avoid some mallocs, and avoid leaking some memory, by making the by Chris Lattner · 19 years ago
- 81500bc cleanups, add some code for instrumenting stat by Chris Lattner · 19 years ago
- 269c232 implement #pragma GCC dependency by Chris Lattner · 19 years ago
- 22eb972 Initial checkin of c-language parser by Chris Lattner · 19 years ago