aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/FileManager.h
AgeCommit message (Expand)Author
2011-10-20Fix all 80 col violations in include/clang/Basic, plus any trailing whitespac...David Blaikie
2011-09-13For modules, use a hash of the compiler version, language options, andDouglas Gregor
2011-09-12When an import statement fails to find a module in the module cache,Douglas Gregor
2011-07-28Switch the ModuleManager over to using a FileManager and FileEntry* as part o...Jonathan D. Turner
2011-07-20now that we have a centralized place to do so, add some using declarations forChris Lattner
2011-06-23avoid using config.h in public headersDylan Noblesmith
2011-03-21Improve crash recovery cleanup to recovery CompilerInstances during crash rec...Ted Kremenek
2011-03-18Add FileManager::getNoncachedStatValue, which will resolve relative paths aga...Anders Carlsson
2011-03-16Having FileManager::getFile always open the file, brought much consternation ...Argyrios Kyrtzidis
2011-03-14Get rid of the static FileManager::FixupRelativePath.Anders Carlsson
2011-03-07Add a non-static FixupRelativePath to FileManager.Anders Carlsson
2011-03-06Convert FileManager::FixupRelativePath over to using PathV2.Anders Carlsson
2011-02-11Improves Clang's virtual file handling.Zhanyong Wan
2011-02-10Implement two related optimizations that make de-serialization ofDouglas Gregor
2010-11-28tighten up operator= to ensure we don't get multiple owners with the same FD.Chris Lattner
2010-11-24Fix 2 problems with Chris Lattner's FileManager redesign on Windows.Francois Pichet
2010-11-23The final result of all this refactoring: instead of doing stat immediatelyChris Lattner
2010-11-23change the 'is directory' indicator to be a null-or-notChris Lattner
2010-11-23pull "is directory" handling into FileManager::getStatValueChris Lattner
2010-11-23rework the stat cache, pulling it out of FileManager.h intoChris Lattner
2010-11-23tidy up. Split FileManager::getBufferForFile intoChris Lattner
2010-11-23now the FileManager has a FileSystemOpts ivar, stop threadingChris Lattner
2010-11-23give FileManager a 'FileSystemOptions' ivar, which will be usedChris Lattner
2010-11-23Partially revert Doug's PCH validation patch (r98585).Chris Lattner
2010-11-23stringref'ize APIChris Lattner
2010-11-21remove old compatibility APIs, use StringRef versions instead.Chris Lattner
2010-11-21change the various getFile routines to use StringRef as their implementation ...Chris Lattner
2010-11-03Implement -working-directory.Argyrios Kyrtzidis
2010-07-14Pass StringRefs by value.Benjamin Kramer
2009-12-02Extend -remap-file=from;to to permit mapping from a non-existentDouglas Gregor
2009-10-16Add support for a chain of stat caches in the FileManager, rather thanDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-05Replace some instances of std::string with StringRefs.Benjamin Kramer
2009-04-27Implement caching of stat() calls for precompiled headers, which isDouglas Gregor
2009-04-22Remove the serialization code that predates precompiledDouglas Gregor
2009-03-28move StatListener out to top level.Chris Lattner
2009-02-14Fix the build on win32.Cedric Venet
2009-02-12FileManager:Ted Kremenek
2009-02-12Add lightweight shim "clang::StatSysCallCache" that caches 'stat' system callsTed Kremenek
2009-01-28FileManager: Use a BumpPtrAllocator for the StringMaps DirEntries and FileEnt...Ted Kremenek
2008-02-24In FileManager: use full paths to unique files and directories on Windows,Ted Kremenek
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-20Renamed "FileEntry::getDev()" to "FileEntry::getDevice()"Ted Kremenek
2007-12-18Refactored inode and device number into FileEntry, and changed theTed Kremenek
2007-12-18Added to FileEntry a pointer to the <dev_t,ino_t> pair for the file, andTed Kremenek
2007-12-04Removed serialization of FileEntry and DirectoryEntry. This objects willTed Kremenek
2007-12-04Implemented serialization of FileEntry and DirectoryEntry.Ted Kremenek
2007-10-30update some comments.Chris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer