1. a50dbb2 Fix use-after-free in ModuleManager by Ben Langmuir · 10 years ago
  2. 86cc829 [modules] Remove now-dead code for lazy loading of files specified by -fmodule-file=. by Richard Smith · 10 years ago
  3. ca3156a [modules] Remove unused ModuleManager::visitDepthFirst function. by Richard Smith · 10 years ago
  4. 9a9efba [Modules] Wrap the main ModuleManager visitor in a function_ref. by Benjamin Kramer · 10 years ago
  5. 16fe4d1 Fix dumb use-after-free bug introduced in r242868. by Richard Smith · 10 years ago
  6. 33e0f7e [modules] Stop performing PCM lookups for all identifiers when building with C++ modules. Instead, serialize a list of interesting identifiers and mark those ones out of date on module import. Avoiding the identifier lookups here gives a 20-30% speedup in builds with large numbers of modules. No functionality change intended. by Richard Smith · 10 years ago
  7. a7c535b [modules] Change module manager visitation order to be a bit more stable when by Richard Smith · 10 years ago
  8. fb2398d Make the clang module container format selectable from the command line. by Adrian Prantl · 10 years ago
  9. ab9db51 Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). by Alexander Kornienko · 10 years ago
  10. 3d9d929 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
  11. bb165fb Introduce a PCHContainerOperations interface (NFC). by Adrian Prantl · 10 years ago
  12. 9eff8b1 Allow skipping imports in the module visitor. by Manuel Klimek · 10 years ago
  13. 70a1b81 A couple of readASTFileSignature improvements (NFC) by Ben Langmuir · 11 years ago
  14. 7f330cd Make module files passed to a module build via -fmodule-file= available to by Richard Smith · 11 years ago
  15. cbc368c Revert "Wrap clang module files in a Mach-O, ELF, or COFF container." by Adrian Prantl · 11 years ago
  16. 8bf7af3 Wrap clang module files in a Mach-O, ELF, or COFF container. by Adrian Prantl · 11 years ago
  17. a39924a Revert "Wrap clang module files in a Mach-O, ELF, or COFF container." by Adrian Prantl · 11 years ago
  18. fc360dc Wrap clang module files in a Mach-O, ELF, or COFF container. by Adrian Prantl · 11 years ago
  19. 67fbfa3 Revert "Wrap clang module files in a Mach-O, ELF, or COFF container." by Adrian Prantl · 11 years ago
  20. f2b0cd9 Wrap clang module files in a Mach-O, ELF, or COFF container. by Adrian Prantl · 11 years ago
  21. 690b2f7 Revert "Wrap clang module files in a Mach-O, ELF, or COFF container." by Adrian Prantl · 11 years ago
  22. b59bc1a Wrap clang module files in a Mach-O, ELF, or COFF container. by Adrian Prantl · 11 years ago
  23. a4f522f Revert "Wrap clang module files in a Mach-O, ELF, or COFF container." by Adrian Prantl · 11 years ago
  24. c4091aa Wrap clang module files in a Mach-O, ELF, or COFF container. by Adrian Prantl · 11 years ago
  25. 5b39075 [modules] When explicitly importing a module, it's fine for the imported module by Richard Smith · 11 years ago
  26. ed98258 Check module signature when the module has already been loaded by Ben Langmuir · 11 years ago
  27. a885796 Make VFS and FileManager match the current MemoryBuffer API. by Benjamin Kramer · 11 years ago
  28. 5e3a421 [Modules] Free modules that failed signature verification. by Benjamin Kramer · 11 years ago
  29. 487ea14 Add a "signature" to AST files to verify that they haven't changed by Ben Langmuir · 11 years ago
  30. e842a47 [modules] Initial support for explicitly loading .pcm files. by Richard Smith · 11 years ago
  31. 6406f7b Return a std::unique_ptr from getBufferForFile. NFC. by Rafael Espindola · 11 years ago
  32. 5cd06f2 Store std::unique_ptr in InMemoryBuffers. NFC. by Rafael Espindola · 11 years ago
  33. 4dd9b43 Repace SmallPtrSet with SmallPtrSetImpl in function arguments to avoid needing to mention the size. by Craig Topper · 11 years ago
  34. 2d2b420 Update for llvm api change. by Rafael Espindola · 11 years ago
  35. 9801b25 Avoid invalidating successfully loaded module files by Ben Langmuir · 11 years ago
  36. 8a8e554 Include system_error directly. by Rafael Espindola · 11 years ago
  37. c080917 Replace llvm::error_code with std::error_code. by Rafael Espindola · 11 years ago
  38. 4f05478 Invalidate the file system cache entries for files that may rebuild by Ben Langmuir · 11 years ago
  39. e45b4e3 Revert "Invalidate the file system cache entries for files that may rebuild" by Ben Langmuir · 11 years ago
  40. 04b9c70 Invalidate the file system cache entries for files that may rebuild by Ben Langmuir · 11 years ago
  41. a13603a [C++11] Use 'nullptr'. Serialization edition. by Craig Topper · 11 years ago
  42. 5988590 Speculative fix for Windows buildbot after r209138 by Ben Langmuir · 11 years ago
  43. caea131 Don't refresh stat() info for pcm files by Ben Langmuir · 11 years ago
  44. ca39214 Fix use-after-free and spurious error during module load by Ben Langmuir · 11 years ago
  45. 027731d Fix a use-after-free bug I recently introduced in lookupModuleFile by Ben Langmuir · 11 years ago
  46. 05f82ba Avoid a potential race between stat() and open() of ASTFile by Ben Langmuir · 11 years ago
  47. beee15e Allow multiple modules with the same name to coexist in the module cache by Ben Langmuir · 11 years ago
  48. b55d022 [C++11] Remove a now unnecessary use of std::function for a remove_if by Chandler Carruth · 12 years ago
  49. bbdd764 [C++11] Replace verbose functors with succinct lambdas by Benjamin Kramer · 12 years ago
  50. c8130a7 Recommit virtual file system by Ben Langmuir · 12 years ago
  51. a32575e Reverting the virtual file system implementation, because it triggers an assertion by Juergen Ributzka · 12 years ago
  52. 090610d3 Initial implementation of virtual file system by Ben Langmuir · 12 years ago
  53. f430da4 Add an option to allow Clang verify source files for a module only once during by Dmitri Gribenko · 12 years ago
  54. c27d0d5 Add a bit more info to modules fatal error. by Eli Friedman · 12 years ago
  55. 45025c0 This wasn't headers, just missing namespaces. by Benjamin Kramer · 12 years ago
  56. af04f98 Add missing includes. by Benjamin Kramer · 12 years ago
  57. 25284cc Use pop_back_val() instead of both back() and pop_back(). by Robert Wilhelm · 12 years ago
  58. 552c169 Include Path.h instead of PathV2.h. by Rafael Espindola · 12 years ago
  59. bf7fc9c <rdar://problem/13509689> Introduce -module-file-info option that provides information about a particular module file. by Douglas Gregor · 13 years ago
  60. 603cd86 <rdar://problem/13479539> Simplify ModuleManager/GlobalModuleIndex interaction to eliminate a pile of extraneous stats(). by Douglas Gregor · 13 years ago
  61. 3d0235e Remove unused variable. by Benjamin Kramer · 13 years ago
  62. 7029ce1 <rdar://problem/13363214> Eliminate race condition between module rebuild and the global module index. by Douglas Gregor · 13 years ago
  63. dadd85d Never cache the result of a module file lookup. by Douglas Gregor · 13 years ago
  64. e97cd90 Eliminate memory allocation from most invocations of by Douglas Gregor · 13 years ago
  65. 7211ac1 Improve coordination between the module manager and the global module by Douglas Gregor · 13 years ago
  66. e41d7fe Optimize ModuleManager::visit() by precomputing the visitation order by Douglas Gregor · 13 years ago
  67. e060e57 Implement the reader of the global module index and wire it into the AST reader. by Douglas Gregor · 13 years ago
  68. bdb259d Give ModuleFiles an index, so that we can use indexed vectors rather by Douglas Gregor · 13 years ago
  69. 6fb03ae Actually keep track of the source locations at which particular module by Douglas Gregor · 13 years ago
  70. 188dbef When loading a module fails because it is out of date, rebuild that by Douglas Gregor · 13 years ago
  71. aedf714 Set the file entry for a Module* that was created during deserialization by Argyrios Kyrtzidis · 13 years ago
  72. 4fc9f3e Optimize unqualified/global name lookup in modules by introducing a by Douglas Gregor · 14 years ago
  73. de3ef50 Promote ModuleMap::Module to a namespace-scope class in the Basic by Douglas Gregor · 14 years ago
  74. 9d7c1a2 Add support for viewing the module graph via Graphviz, for debugging purposes. by Douglas Gregor · 14 years ago
  75. d44252e Factor the Module and ModuleManager classes out into separate headers by Douglas Gregor · 14 years ago