1. 2b20cb8 Add support for building a module from a module map to the -cc1 by Douglas Gregor · 14 years ago
  2. 80b6904 Implement a minor optimization when loading module maps to satisfy a by Douglas Gregor · 14 years ago
  3. af28ec8 When searching for a module, speculatively load module maps to see if by Douglas Gregor · 14 years ago
  4. 88bdfb0 Teach the search for modules to consider modules described by a module by Douglas Gregor · 14 years ago
  5. ab0c8a8 Wire up the mapping from header files mentioned in module maps over to by Douglas Gregor · 14 years ago
  6. 718292f Introduce basic support for parsing module map files. by Douglas Gregor · 14 years ago
  7. 197ac20 I predict that HeaderSearch will need the ability to generate by Douglas Gregor · 14 years ago
  8. 5d1bee2 When we load header file information from the external source (i.e., by Douglas Gregor · 14 years ago
  9. 88b4ddf Tweak the module auto-import heuristics a bit by Douglas Gregor · 14 years ago
  10. 97eec24 Add an experimental flag -fauto-module-import that automatically turns by Douglas Gregor · 14 years ago
  11. 1735f4e For modules, use a hash of the compiler version, language options, and by Douglas Gregor · 14 years ago
  12. faeb1d4 When an import statement fails to find a module in the module cache, by Douglas Gregor · 14 years ago
  13. 1e44e02 Introduce a cc1-level option to provide the path to the module cache, by Douglas Gregor · 14 years ago
  14. d8575e1 Use the "Bar.h" -> <Foo/Bar.h> remapping for index header maps only as by Douglas Gregor · 14 years ago
  15. 9f93e38 Introduce the "-index-header-map" option, to give special semantics by Douglas Gregor · 14 years ago
  16. ae63d10 Change HeaderSearch::getTotalMemory() to use llvm::capacity_in_bytes(). by Ted Kremenek · 14 years ago
  17. fbcce6f clang_getCXTUResourceUsage: report memory used by HeaderSearch. by Ted Kremenek · 14 years ago
  18. 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  19. f7ca26a Fix up dependency file name printing to more closely match that of gcc, including fixing a nasty recent regression that could make us print "/foo.h" with a command-line including "-I ./". by Eli Friedman · 14 years ago
  20. 3b1d121 Make it possible for external tools to distinguish between paths that come from -I and paths that come from -system. Patch from Paul Holden! by Nico Weber · 15 years ago
  21. 37aa493 Introduce a new libclang API, clang_isFileMultipleIncludeGuarded(), by Douglas Gregor · 15 years ago
  22. 68dac46 Use DirectoryLookup::getName() rather than getDir()->getName() in a context where we don't know whether we have a normal directory by Douglas Gregor · 15 years ago
  23. 0c69fd2 To be able to replay compilations we need to accurately remodel how by Manuel Klimek · 15 years ago
  24. d6278e3 Having FileManager::getFile always open the file, brought much consternation and leaking of file descriptors. by Argyrios Kyrtzidis · 15 years ago
  25. 3cc331a Add a 'RawPath' parameter to the PPCallbacks interface. This allows by Chandler Carruth · 15 years ago
  26. 09b6989 Implement two related optimizations that make de-serialization of by Douglas Gregor · 15 years ago
  27. f6efe58 Replace all uses of PathV1::exists with PathV2::fs::exists. by Michael J. Spencer · 15 years ago
  28. f28df4c Replace all uses of PathV1::isAbsolute with PathV2::is_{absolute,relative}. by Michael J. Spencer · 15 years ago
  29. 8aaf499 Merge System into Support. by Michael J. Spencer · 15 years ago
  30. 5159f61 now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 15 years ago
  31. 8afa6de remove old compatibility APIs, use StringRef versions instead. by Chris Lattner · 15 years ago
  32. 71731d6 Implement -working-directory. by Argyrios Kyrtzidis · 15 years ago
  33. 618e64a Revert r110440, the fix for PR4897. Chris claims to have a better way. by Douglas Gregor · 15 years ago
  34. d26129a Fix the #include search path when reading from stdin, from Jon Simons! by Douglas Gregor · 15 years ago
  35. d081f8c stringref'ize a bunch of filename handling logic. Much by Chris Lattner · 16 years ago
  36. 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  37. 6b8f78e use the new Path::isAbsolute function, fixing a fixme. Patch by Gregory Curfman! by Chris Lattner · 16 years ago
  38. 99734e7 Lazily load the controlling macros for all of the headers known in the by Douglas Gregor · 17 years ago
  39. 3fa455a Add PCH support for #import. by Steve Naroff · 17 years ago
  40. c25d8a7 improve compatibility with GCC 4.4, patch by Michel Salim (PR3697) by Chris Lattner · 17 years ago
  41. 7a51313 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 18 years ago[Renamed from clang/Lex/HeaderSearch.cpp]
  42. f5c619f clarify comment, this is undefined behavior in any case, even if it only by Chris Lattner · 18 years ago
  43. 72be068 Two more Windows-related fixes: by Ted Kremenek · 18 years ago
  44. 1226188 Fix PR1969. stdin has no FileEntry. by Chris Lattner · 18 years ago
  45. 5b12ab8 Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
  46. 4ffe46c Start reading the headermap header, drop the 'errorstr' argument to by Chris Lattner · 18 years ago
  47. 8d720d0 Sink getName into DirectoryLookup to simplify the client in clang. by Chris Lattner · 18 years ago
  48. 44bd21b finish stubbing out support for HeaderMap. Now we just need an implementation! by Chris Lattner · 18 years ago
  49. 712e387 refactor an better comment framework lookup code. This moves it from by Chris Lattner · 18 years ago
  50. f62f758 as it turns out, frameworks and headermaps are orthogonal. Make this so in by Chris Lattner · 18 years ago
  51. c4ba38e Step #1 in adding headermap support to clang. by Chris Lattner · 18 years ago
  52. ef6b136 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 18 years ago
  53. d7b971b add a hasMacroDefinition() method to IdentifierInfo, strength reduce a by Chris Lattner · 18 years ago
  54. d427542 Implement a simple cache in headersearch. This speeds up by Chris Lattner · 18 years ago
  55. 23b7eb6 Finally bite the bullet and make the major change: split the clang namespace by Chris Lattner · 18 years ago
  56. 44ebec5 Submitted by: Bill Wendling by Bill Wendling · 19 years ago
  57. 23d8903 Specify an initial size for StringMap. by Chris Lattner · 19 years ago
  58. 34d1f5a adjust to CStringMap interface change. by Chris Lattner · 19 years ago
  59. 7cdbad9 Push strings out of the HeaderSearch interface, it now deals solely with by Chris Lattner · 19 years ago
  60. ee7bf89 Change framework cache map from map to CStringMap. This speeds up PP user by Chris Lattner · 19 years ago
  61. b201d9b Eliminate string use in DoFrameworkLookup. This speeds up pp of Cocoa.h by Chris Lattner · 19 years ago
  62. cf8ddac Use SmallString instead of string in HeaderSearch::LookupFile. This avoids by Chris Lattner · 19 years ago
  63. 43fd42e Wean LookupSubframeworkHeader off std::strings, use the new SmallString by Chris Lattner · 19 years ago
  64. ffda896 Change DirectoryEntry::getName() to return a const char * by Chris Lattner · 19 years ago
  65. 4804348 change FileEntry::getName to return a const char*. by Chris Lattner · 19 years ago
  66. 5ed76da Implement framework filesystem caching. by Chris Lattner · 19 years ago
  67. 641a0be count # framework lookups by Chris Lattner · 19 years ago
  68. 577377e Speed up [sub]framework searching by Chris Lattner · 19 years ago
  69. 63dd32b Implement subframework lookup by Chris Lattner · 19 years ago
  70. 59a9ebd refactor header searching stuff out of the main Preprocessor object into by Chris Lattner · 19 years ago