- cc2b653 Remove DiagnosticConsumer::clone(), a bad idea that is now unused. by Douglas Gregor · 12 years ago
- a4a90ca When building a module, forward diagnostics to the outer diagnostic consumer. by Douglas Gregor · 12 years ago
- ea65cb1 Remove the unused MemoryBuffers, no functionality change. by Argyrios Kyrtzidis · 12 years ago
- bd25ff8 [preprocessor] Allow comparing two macro definitions syntactically instead of only lexically. by Argyrios Kyrtzidis · 12 years ago
- 670b2e6 Use getPredefinesFileID() appropriately. by Douglas Gregor · 12 years ago
- 93ce7d5 Remove sign-compare warning on systems that still use 32 bit time_ts. by Benjamin Kramer · 12 years ago
- d560ce3 [Preprocessor] Remove PPMutationListener. by Argyrios Kyrtzidis · 12 years ago
- c56fff7 [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 12 years ago
- 87ab066 Use <time.h> rather than <sys/time.h> by Douglas Gregor · 12 years ago
- d44d287 <rdar://problem/13434605> Periodically prune the module cache so that it does not grow forever. by Douglas Gregor · 12 years ago
- ed2fc2a <rdar://problem/13479539> Only rebuild the global module cache when we're allowed to. by Douglas Gregor · 12 years ago
- 906d66a <rdar://problem/12368093> Extend module maps with a 'conflict' declaration, and warn when a newly-imported module conflicts with an already-imported module. by Douglas Gregor · 12 years ago
- 63a7268 <rdar://problem/10796651> Introduce configuration macros into module maps. by Douglas Gregor · 12 years ago
- 677e15f <rdar://problem/13363214> Eliminate race condition between module rebuild and the global module index. by Douglas Gregor · 12 years ago
- ea14a87 Never cache the result of a module file lookup. by Douglas Gregor · 13 years ago
- 005d51b Be a little more permissive with -fmodules-ignore-macro= by removing everything after the second '=' if it is there. by Douglas Gregor · 13 years ago
- 2a06085 Introduce -fmodules-ignore-macro=NNN to ignore a macro when building/loading modules. by Douglas Gregor · 13 years ago
- 8bf778e Detect when we end up trying to load conflicting module files. by Douglas Gregor · 13 years ago
- 5ebcb20 For ModuleLoader::makeModuleVisible() also pass the source location where the by Argyrios Kyrtzidis · 13 years ago
- 74c2498 Don't warn about Unicode characters in -E mode. by Jordan Rose · 13 years ago
- 1a49d97 Implement the reader of the global module index and wire it into the AST reader. by Douglas Gregor · 13 years ago
- f575d6e Rename the -cc1 option "-generate-module-index" to by Douglas Gregor · 13 years ago
- a6b00fc Implement the writer side of the global module index. by Douglas Gregor · 13 years ago
- d47afb9 Nuke SetUpBuildDumpLog. by Sean Silva · 13 years ago
- d2ff76b Fix what appears to be a copy-paste error. by Sean Silva · 13 years ago
- cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
- ca2ab45 Provide Decl::getOwningModule(), which determines the (sub)module in by Douglas Gregor · 13 years ago
- b8a8be1 Be more careful about updating the failed-modules set by Douglas Gregor · 13 years ago
- 86ebd03 Remove -Wmodule-build; it was a dumb idea anyway. <rdar://problem/12957525> by Douglas Gregor · 13 years ago
- 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
- 37ed127 Refactor recording the preprocessor conditional directive regions out of by Argyrios Kyrtzidis · 13 years ago
- 4565e48 Rename ModuleBuildPath -> ModuleBuildStack. Thanks, Dmitri! by Douglas Gregor · 13 years ago
- 830ea5b When an error occurs while building a module on demand, provide "While by Douglas Gregor · 13 years ago
- 463d909 Keep track of modules that have failed to build. If we encounter an by Douglas Gregor · 13 years ago
- acf3612 Frontend: Create a virtual file for named pipe inputs. by Daniel Dunbar · 13 years ago
- 49a8754 Since CreateTargetInfo is taking ownership of the target options, pass by Douglas Gregor · 13 years ago
- 958bcaf [modules] Setup the import location of a module file and use it by Argyrios Kyrtzidis · 13 years ago
- ecd27bf Add a FileCharacteristic parameter to SourceManager::createFileIDForMemBuffer by Argyrios Kyrtzidis · 13 years ago
- 8616f9a Turn FrontendInputFile into an immutable class and have it also accept by Argyrios Kyrtzidis · 13 years ago
- 8e1fbbc Make CompilerInstance::InitializeSourceManager accept a FrontendInputFile, by Argyrios Kyrtzidis · 13 years ago
- 7cdd281 When loading a module fails because it is out of date, rebuild that by Douglas Gregor · 13 years ago
- ce36ecd Frontend: Add support for reading named pipes as the main file. by Daniel Dunbar · 13 years ago
- 4182ed6 [PCH] Remove the stat cache from the PCH file. by Argyrios Kyrtzidis · 13 years ago
- 25893e0 Decouple code-completion for the SkipFunctionBodies frontend option and by Argyrios Kyrtzidis · 13 years ago
- 36a1649 Teach the preprocessor to hold onto the preprocessor options. by Douglas Gregor · 13 years ago
- c042edd Move HeaderSearchOptions into the Lex library, make it intrusively by Douglas Gregor · 13 years ago
- 02c23eb Make DiagnosticOptions intrusively reference-counted, and make sure by Douglas Gregor · 13 years ago
- 38295be Allow clients of the AST reader to specify what kinds of AST load by Douglas Gregor · 13 years ago
- 4825fd7 Distinguish the various kinds of AST file loading failures: by Douglas Gregor · 13 years ago
- a2e9489 Make sure temporary files are deleted when recovering from a crash when compiling modules. by Benjamin Kramer · 13 years ago
- ac447fc Delete temporary output files when an error occurs during PCH reading. by Benjamin Kramer · 13 years ago
- a8235d6 Rework the (de-)serialization of macros, as stored in by Douglas Gregor · 13 years ago
- d3d9816 Introduce ASTConsumer::HandleImplicitImportDecl() callback that is invoked by Argyrios Kyrtzidis · 13 years ago
- e2ac16b In the Module class, add a reference to the corresponding AST file. by Argyrios Kyrtzidis · 13 years ago
- d99ef53 Add a new libclang completion API to get brief documentation comment that is by Dmitri Gribenko · 13 years ago
- 832a2aa Pulls diagnostics for temp file handling into the common diagnostic kinds. by Manuel Klimek · 13 years ago
- 7d9ae25 For final output files create them with mode 0664 to match other by Eric Christopher · 13 years ago
- f720a2b Remove variables made dead by r155923 by David Blaikie · 13 years ago
- 1b9a688 Remove dead code found by static analyzer. by Ted Kremenek · 13 years ago
- 93a4994 objective-c modern translator: buildit objc bool by Fariborz Jahanian · 13 years ago
- 9bc0c29 Changed all direct calls to CompletionConsumer.reset(..) to go call by Erik Verbruggen · 13 years ago
- 6a91d38 Added a flag to the parser to skip method bodies. by Erik Verbruggen · 13 years ago
- bef35c9 [PCH] Mark a PCH file with a flag to indicate if the serialized AST had by Argyrios Kyrtzidis · 13 years ago
- c6c5452 [preprocessor] Enhance PreprocessingRecord to keep track of locations of conditional directives. by Argyrios Kyrtzidis · 13 years ago
- e21dd28 Frontend: Default to creating output files using temporary files + rename. by Daniel Dunbar · 14 years ago
- 12f28ab Frontend: Don't automatically create missing directories when using temporary files with createOutputFile() by Daniel Dunbar · 14 years ago
- e1d4330 Don't record nested macro expansions in the preprocessing record, by Argyrios Kyrtzidis · 14 years ago
- c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 14 years ago
- f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 14 years ago
- 6f42b62 Basic: import OwningPtr<> into clang namespace by Dylan Noblesmith · 14 years ago
- 773303a Rename -dependency-graphviz to -dependencncy-dot by Douglas Gregor · 14 years ago
- c69a181 Introduce a -cc1 option "-dependency-graphviz" that determines header by Douglas Gregor · 14 years ago
- dc58aa7 Thread a TargetInfo through to the module map; we'll need it for by Douglas Gregor · 14 years ago
- 52f1272 Switch over to LLVM's file-level locking facility by Douglas Gregor · 14 years ago
- 85ae12d Ensure that we clean up after a failed module build and cope with the by Douglas Gregor · 14 years ago
- c5b2e58 Implement code completion support for module import declarations, e.g., by Douglas Gregor · 14 years ago
- e434ec7 Rework HeaderSearch's interface for getting a module from a name and by Douglas Gregor · 14 years ago
- a1f1fad Introduce module attributes into the module map grammar, along with a by Douglas Gregor · 14 years ago
- 1f6b2b5 Extract the (InputKind, std::string) pair used to describe inputs to by Douglas Gregor · 14 years ago
- b7a7819 Store the submodules of a module in source order, as they are stored by Douglas Gregor · 14 years ago
- 51f564f Implement support for module requirements, which indicate the language by Douglas Gregor · 14 years ago
- 305dc3e Detect when mapping a #include/#import over to a submodule ends up by Douglas Gregor · 14 years ago
- 2a76410 Refactor SerializeDiagnosticsPrinter to using DiagnosticRenderer. This gives us comparative diagnostics by Ted Kremenek · 14 years ago
- 53ba956 Revert r146646 that was a mistake, and make the intended change in the right file. by Argyrios Kyrtzidis · 14 years ago
- f5a684d [libclang] Try to unbreak mingw build. by Argyrios Kyrtzidis · 14 years ago
- 5e3f922 Keep track of import dependencies between submodules within the module by Douglas Gregor · 14 years ago
- 29f2787 Make changes to SDiagsWriter to make it work in combination with the ARC migrator: by Argyrios Kyrtzidis · 14 years ago
- f64114b If we can't write the temporary module map file when compiling a by Douglas Gregor · 14 years ago
- e912029 Add a FIXME to provide a sensible error message here by Douglas Gregor · 14 years ago
- 1e821e9 Use absolute paths for temporary module map files by Douglas Gregor · 14 years ago
- 93ebfa6 When we treat an #include or #import as a module import, create an by Douglas Gregor · 14 years ago
- 5e35693 Introduce the notion of name visibility into modules. For a given by Douglas Gregor · 14 years ago
- 1a4761e Promote ModuleMap::Module to a namespace-scope class in the Basic by Douglas Gregor · 14 years ago
- e25633f Don't collide loop variable names (to appease GCC) by Matt Beaumont-Gay · 14 years ago
- 392ed2b Implement (de-)serialization of the description of a module and its by Douglas Gregor · 14 years ago
- b514c79 Teach the preprocessor how to handle module import declarations that by Douglas Gregor · 14 years ago
- 49009ec When loading a module that involves submodules (e.g., std.vector), by Douglas Gregor · 14 years ago
- 3d3589d Switch the module-loading interfaces and parser from a simple by Douglas Gregor · 14 years ago
- 18ee547 Switch on-demand module building over to use module maps, always. When by Douglas Gregor · 14 years ago
- f9e357d Teach the module import mechanism how to rebuild modules expressed via by Douglas Gregor · 14 years ago