aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/PTHLexer.cpp
AgeCommit message (Expand)Author
2010-12-16MemoryBuffer API update.Michael J. Spencer
2010-12-09Use error_code instead of std::string* for MemoryBuffer.Michael J. Spencer
2010-11-23change the 'is directory' indicator to be a null-or-notChris Lattner
2010-11-23simplify the cache miss handling code, eliminating CacheMissing.Chris Lattner
2010-11-23rework the stat cache, pulling it out of FileManager.h intoChris Lattner
2010-11-23don't allow remapping PTH file paths with -fworking-directory, theChris Lattner
2010-11-23now the FileManager has a FileSystemOpts ivar, stop threadingChris Lattner
2010-11-23tidy upChris Lattner
2010-11-03Implement -working-directory.Argyrios Kyrtzidis
2010-08-12Don't emit end-of-file diagnostics like "unterminated conditional" orDouglas Gregor
2010-07-27Add PTHLexer::LexEndOfFile() to emit diagnostics at end-of-file similar to th...Ted Kremenek
2010-03-12Switch over IdentifierInfoLookup to StringRefKovarththanan Rajaratnam
2009-11-28Remove remaining VISIBILITY_HIDDEN from anonymous namespaces.Benjamin Kramer
2009-11-28Cleanup llvm/Support/Compiler.h include in header filesKovarththanan Rajaratnam
2009-11-12Switch PTHManager to using diagnostics for most errors.Daniel Dunbar
2009-11-10Add Diagnostic::Report method for reporting diagnostics without a location.Daniel Dunbar
2009-10-18Move clients to use IdentifierInfo::getNameStart() instead of getName()Daniel Dunbar
2009-10-17Switch to llvm::HashString.Daniel Dunbar
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-08-23Replace cerr with errs().Benjamin Kramer
2009-04-20Move the on-disk hash table code into its own header. No functionality change.Douglas Gregor
2009-03-22PTHManager::Create():Ted Kremenek
2009-03-21Add back warning about a PTH file not containing any identifiers, but don't makeTed Kremenek
2009-03-21Allow PTH files with no identifiers.Ted Kremenek
2009-03-20PTHManager::Create() now creates a PTHManager even if the PTH file contains noTed Kremenek
2009-03-19Add PTHManager::getOriginalSourceFile(), a method that returns the name of theTed Kremenek
2009-02-23Move PTHStatCache within the anonymous namespace.Ted Kremenek
2009-02-19Fix another PTH warning that should not be a note.Ted Kremenek
2009-02-19Make PTH warnings actual warnings instead of 'notes'.Ted Kremenek
2009-02-13PTH: Cache directory and negative 'stat' calls. This gives us a 1% performan...Ted Kremenek
2009-02-13Add some boilerplate to the PTH file to prepare for the caching of stats for ...Ted Kremenek
2009-02-13Fix gcc warning: gcc correctly notes that const-qualifying the return Eli Friedman
2009-02-12Fix assertion when input is an empty string.Daniel Dunbar
2009-02-12Re-enable PTH stat caching. All tests pass now.Ted Kremenek
2009-02-12Fix bad reading of bytes in ReadUnalignedLE64() (copy-paste error).Ted Kremenek
2009-02-12Temporarily disable PTH stat caching as it appears to be failing on some mach...Ted Kremenek
2009-02-12PTH: Cache stat information for files in the PTH file. Hook up FileManagerTed Kremenek
2009-02-11PTH: Have meta data be at the beginning of the PTH file, not the end.Ted Kremenek
2009-02-11PTH: Replace string identifier to persistent ID lookup with a hashtable. This isTed Kremenek
2009-02-11PTH: Don't emit the PTH offset of the IdentifierInfo string data as that data isTed Kremenek
2009-02-10PTH: Replace ad hoc 'file name' -> 'PTH data' lookup table in the PTH file wi...Ted Kremenek
2009-01-28Add more PTH diagnostics for invalid PTH files, etc.Ted Kremenek
2009-01-28Enhance PTHManager::Create() to take an optional Diagnostic* argument that ca...Ted Kremenek
2009-01-27PTH: Use Token::setLiteralData() to directly store a pointer to cached spelli...Ted Kremenek
2009-01-26Silence warning.Ted Kremenek
2009-01-26Add version number checking to PTH files.Ted Kremenek
2009-01-26Embed the offset of the PTH table inside the prologue of the PTH file. This ...Ted Kremenek
2009-01-26Check in the long promised SourceLocation rewrite. This lays theChris Lattner
2009-01-23This is a follow-up to r62675:Chris Lattner