aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/FileManager.h
AgeCommit message (Expand)Author
2013-01-26Since we're stuck with realpath for the header <-> module mapping,Douglas Gregor
2012-12-11Extend stat query APIs to explicitly specify if the query is forArgyrios Kyrtzidis
2012-12-04Sort #include lines for all files under include/...Chandler Carruth
2012-11-05Frontend: Add support for reading named pipes as the main file.Daniel Dunbar
2012-07-31Fixes a segfault in Tooling when using pch's:Manuel Klimek
2012-07-11Introduce a flag in SourceManager to treat non-system source filesArgyrios Kyrtzidis
2012-07-10Improve r159256 following Chandler's comments:Axel Naumann
2012-07-02Documentation cleanup:James Dennett
2012-07-02Documentation cleanup: reformatting/fixing up file comments so that they haveJames Dennett
2012-06-27From Vassil Vassilev:Axel Naumann
2012-06-15Documentation cleanup: fixed/created some /brief function summaries.James Dennett
2012-05-03[PCH] When validating that the files coming from PCH did not change, alsoArgyrios Kyrtzidis
2012-02-20Basic: import IntrusiveRefCntPtr<> into clang namespaceDylan Noblesmith
2012-02-05Basic: import OwningPtr<> into clang namespaceDylan Noblesmith
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