1. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 13 years ago
  2. 681d83d Simplify the last character check. by David Blaikie · 13 years ago
  3. a64ccef Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset. by Argyrios Kyrtzidis · 13 years ago
  4. 7d10087 Support code-completion for C++ inline methods and ObjC buffering methods. by Argyrios Kyrtzidis · 13 years ago
  5. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  6. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  7. 8402155 Rename tok::eom to tok::eod. by Peter Collingbourne · 14 years ago
  8. 4eeebc4 MemoryBuffer API update. by Michael J. Spencer · 14 years ago
  9. 3a321e2 Use error_code instead of std::string* for MemoryBuffer. by Michael J. Spencer · 14 years ago
  10. 898a061 change the 'is directory' indicator to be a null-or-not by Chris Lattner · 14 years ago
  11. d6f6111 simplify the cache miss handling code, eliminating CacheMissing. by Chris Lattner · 14 years ago
  12. 10e286a rework the stat cache, pulling it out of FileManager.h into by Chris Lattner · 14 years ago
  13. 681c74a don't allow remapping PTH file paths with -fworking-directory, the by Chris Lattner · 14 years ago
  14. 39b49bc now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 14 years ago
  15. 7ad629e tidy up by Chris Lattner · 14 years ago
  16. 389db16 Implement -working-directory. by Argyrios Kyrtzidis · 14 years ago
  17. 2d474ba Don't emit end-of-file diagnostics like "unterminated conditional" or by Douglas Gregor · 14 years ago
  18. 94e3d1f Add PTHLexer::LexEndOfFile() to emit diagnostics at end-of-file similar to those by Lexer::LexEndOfFile(). by Ted Kremenek · 14 years ago
  19. 700030e Switch over IdentifierInfoLookup to StringRef by Kovarththanan Rajaratnam · 15 years ago
  20. 85b4521 Remove remaining VISIBILITY_HIDDEN from anonymous namespaces. by Benjamin Kramer · 15 years ago
  21. 1495944 Cleanup llvm/Support/Compiler.h include in header files by Kovarththanan Rajaratnam · 15 years ago
  22. 3574f46 Switch PTHManager to using diagnostics for most errors. by Daniel Dunbar · 15 years ago
  23. 0f9fed7 Add Diagnostic::Report method for reporting diagnostics without a location. by Daniel Dunbar · 15 years ago
  24. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  25. 2596e42 Switch to llvm::HashString. by Daniel Dunbar · 15 years ago
  26. 52e7108 Add support for a chain of stat caches in the FileManager, rather than by Douglas Gregor · 15 years ago
  27. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  28. 6cb7c1a Replace cerr with errs(). by Benjamin Kramer · 15 years ago
  29. 9378ba4 Move the on-disk hash table code into its own header. No functionality change. by Douglas Gregor · 15 years ago
  30. 22f0d09 PTHManager::Create(): by Ted Kremenek · 16 years ago
  31. 783bb74 Add back warning about a PTH file not containing any identifiers, but don't make by Ted Kremenek · 16 years ago
  32. 8fbc44d Allow PTH files with no identifiers. by Ted Kremenek · 16 years ago
  33. 1d20197 PTHManager::Create() now creates a PTHManager even if the PTH file contains no by Ted Kremenek · 16 years ago
  34. 6822863 Add PTHManager::getOriginalSourceFile(), a method that returns the name of the by Ted Kremenek · 16 years ago
  35. d578569 Move PTHStatCache within the anonymous namespace. by Ted Kremenek · 16 years ago
  36. 640f552 Fix another PTH warning that should not be a note. by Ted Kremenek · 16 years ago
  37. 395c59c Make PTH warnings actual warnings instead of 'notes'. by Ted Kremenek · 16 years ago
  38. ad6ce5c PTH: Cache directory and negative 'stat' calls. This gives us a 1% performance improvement on Cocoa.h (fsyntax-only+PTH). by Ted Kremenek · 16 years ago
  39. a4b44dd Add some boilerplate to the PTH file to prepare for the caching of stats for directories (and negative stats too). by Ted Kremenek · 16 years ago
  40. 03a2807 Fix gcc warning: gcc correctly notes that const-qualifying the return by Eli Friedman · 16 years ago
  41. 82320e9 Fix assertion when input is an empty string. by Daniel Dunbar · 16 years ago
  42. 5f747d1 Re-enable PTH stat caching. All tests pass now. by Ted Kremenek · 16 years ago
  43. d69ab87 Fix bad reading of bytes in ReadUnalignedLE64() (copy-paste error). by Ted Kremenek · 16 years ago
  44. c8b44f5 Temporarily disable PTH stat caching as it appears to be failing on some machines. by Ted Kremenek · 16 years ago
  45. 337edcd PTH: Cache stat information for files in the PTH file. Hook up FileManager by Ted Kremenek · 16 years ago
  46. a4bd8eb PTH: Have meta data be at the beginning of the PTH file, not the end. by Ted Kremenek · 16 years ago
  47. 7e3a004 PTH: Replace string identifier to persistent ID lookup with a hashtable. This is by Ted Kremenek · 16 years ago
  48. f1de464 PTH: Don't emit the PTH offset of the IdentifierInfo string data as that data is by Ted Kremenek · 16 years ago
  49. d8c0292 PTH: Replace ad hoc 'file name' -> 'PTH data' lookup table in the PTH file with an on-disk chained hash table. This data structure is implemented using templates, and will be used to replace similar data structures. This change leads to no visibile performance impact on Cocoa.h, but now we only pay a price for the table on order with the number of files accessed and not the number in the PTH file. by Ted Kremenek · 16 years ago
  50. 26555b1 Add more PTH diagnostics for invalid PTH files, etc. by Ted Kremenek · 16 years ago
  51. 8a6aec6 Enhance PTHManager::Create() to take an optional Diagnostic* argument that can be used to report issues such as a missing PTH file. by Ted Kremenek · 16 years ago
  52. 277faca PTH: Use Token::setLiteralData() to directly store a pointer to cached spelling data in the PTH file. This removes a ton of code for looking up spellings using sourcelocations in the PTH file. This simplifies both PTH-generation and reading. by Ted Kremenek · 16 years ago
  53. 4adc71a Silence warning. by Ted Kremenek · 16 years ago
  54. 67d1505 Add version number checking to PTH files. by Ted Kremenek · 16 years ago
  55. e1b6498 Embed the offset of the PTH table inside the prologue of the PTH file. This will help improve gradual versioning of PTH files instead of relying that the PTH table is at a fixed offset. by Ted Kremenek · 16 years ago
  56. de7aeef Check in the long promised SourceLocation rewrite. This lays the by Chris Lattner · 16 years ago
  57. 863c486 This is a follow-up to r62675: by Chris Lattner · 16 years ago
  58. fbc3338 Update comment. by Chris Lattner · 16 years ago
  59. 6f78c3b remove my gross #ifdef's, using portable abstractions now that the 32-bit by Chris Lattner · 16 years ago
  60. 5ff4317 remove Read8/Read24, which are dead. Rename Read16/Read32 to be more by Chris Lattner · 16 years ago
  61. b248d53 Fix <rdar://problem/6512717> by correctly reading the right offset in the token data in PTHLexer::getSourceLocation(). by Ted Kremenek · 16 years ago
  62. d0a6969 merge two checks for identifiers in the pth loop into one. by Chris Lattner · 16 years ago
  63. 6a170eb Add a bit to IdentifierInfo that acts as a simple predicate which by Chris Lattner · 16 years ago
  64. cdd8f21 Don't crash on empty PTH files. This fixes <rdar://problem/6512714>. by Ted Kremenek · 16 years ago
  65. 6353beb really we only need on Read24! by Chris Lattner · 16 years ago
  66. aff6ef8 revert my previous patch, it assumed endianness. by Chris Lattner · 16 years ago
  67. 2f6572b minor cleanups: now that tokens are 4-byte aligned in a PTH by Chris Lattner · 16 years ago
  68. ea9c26b Fix: <rdar://problem/6510344> [pth] PTH slows down regular lexer considerably (when it has substantial work) by Ted Kremenek · 16 years ago
  69. 7b78b7c PTH: Emitted tokens now consist of 12 bytes that are loaded used 3 32-bit loads. This reduces user time but increases system time because of the slightly larger PTH file. Although there is no performance win on Cocoa.h and -Eonly, overall this seems like a good step. by Ted Kremenek · 16 years ago
  70. 77ecb3a rearrange GetIdentifierInfo so that the fast path can be partially inlined into PTHLexer::Lex. This speeds up the user time of PTH -Eonly by another 2ms (4.4%) by Chris Lattner · 16 years ago
  71. 898a0bb rename some variables, only set a tokens identifierinfo if non-null. by Chris Lattner · 16 years ago
  72. f15674c On i386 and x86-64, just do unaligned loads by Chris Lattner · 16 years ago
  73. 1b5285e switch PTHLexer to use Read32 and friends instead of lots of inlined by Chris Lattner · 16 years ago
  74. da9d61c switch PTH lexer from using "const char*"s to "const unsigned char*"s by Chris Lattner · 16 years ago
  75. f056d92 simplify PTHManager::CreateLexer by Chris Lattner · 16 years ago
  76. 6b7b840 suck the call to "getSpellingLoc" that all clients do into by Chris Lattner · 16 years ago
  77. 2b2453a this massive patch introduces a simple new abstraction: it makes by Chris Lattner · 16 years ago
  78. df7c17a Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 16 years ago
  79. e1deaac PTH: Fix termination condition in binary search. by Ted Kremenek · 16 years ago
  80. 72b1b15 IdentifierInfo: by Ted Kremenek · 16 years ago
  81. 293b4af PTH: Embed a persistentID side-table in the PTH file that is sorted in the by Ted Kremenek · 16 years ago
  82. 2839660 PTH: by Ted Kremenek · 16 years ago
  83. 7bd88aa Fix corner cases in PTH getSpelling() binary search. by Ted Kremenek · 16 years ago
  84. f02f6f0 PTH: Fix remaining cases where the spelling cache in the PTH file was being missed when it shouldn't. This shaves another 7% off PTH time for -Eonly on Cocoa.h by Ted Kremenek · 16 years ago
  85. 5f07426 Enhance PTH 'getSpelling' caching: by Ted Kremenek · 16 years ago
  86. defb709 Invert assertion condition. by Ted Kremenek · 16 years ago
  87. 32a8ad5 PTH: Hook up getSpelling() caching in PTHLexer. This results in a nice by Ted Kremenek · 16 years ago
  88. b70e3da PTH: by Ted Kremenek · 16 years ago
  89. 59d08cb PTH: Remove some methods and simplify some conditions in PTHLexer::Lex(). No big functionality change. by Ted Kremenek · 16 years ago
  90. 18d9afb PTH: Use 3 bytes instead of 4 bytes to encode the persistent ID for a token. by Ted Kremenek · 16 years ago
  91. 6b1c970 Cosmetics: rename a variable and tighten spacing. No functionality change. by Ted Kremenek · 16 years ago
  92. 8f174e1 PTH: by Ted Kremenek · 16 years ago
  93. 866bdf7 PTH: by Ted Kremenek · 16 years ago
  94. e5680f3 PTH: by Ted Kremenek · 16 years ago
  95. 80d2f30 Use '&' to test StartOfLine flag. by Ted Kremenek · 16 years ago
  96. 74c3e6e Rewrite PTHLexer::DiscardToEndOfLine() to not use GetToken and instead only read the bytes needed to determine if a token is not at the start of the line. by Ted Kremenek · 16 years ago
  97. 30a12ec Change PTHLexer::getSourceLocation() to not call GetToken() and instead just read the file offset in the token data buffer directly. by Ted Kremenek · 16 years ago
  98. b60d799 add a dropped word back by Chris Lattner · 16 years ago
  99. 1c13c4f Shadow CurPtr with a local variable in ReadToken. by Ted Kremenek · 16 years ago
  100. 41a2660 PTH: Added minor 'sibling jumping' optimization for iterating over the side table used for fast preprocessor block skipping. This has a minor performance improvement when preprocessing Cocoa.h, but can have some wins in pathologic cases. by Ted Kremenek · 16 years ago