1. e6ec11a Remove the AST printer (-ast-print-xml), which is too incomplete and by Douglas Gregor · 14 years ago
  2. 91a230a Eliminate the internal command-line option for viewing inheritance in C++ classes, since it's only really worked for the trivial cases anyway due to lame pseudo-parsing of the class name. The viewInheritance() function is still available for use in the debugger, where this is far more useful by Douglas Gregor · 14 years ago
  3. 8e3df4d Allow resolving headers from a PCH even after headers+PCH were moved to another path. by Argyrios Kyrtzidis · 14 years ago
  4. c7a9cda libclang: Don't allow RemoveFileOnSignal to be called via libclang, badness can by Daniel Dunbar · 14 years ago
  5. 895fcca Driver, Frontend: add CUDA language support by Peter Collingbourne · 14 years ago
  6. f351424 Add -cc1 -ast-dump-xml, an excessively detailed XML dump of the internals by John McCall · 14 years ago
  7. 39b49bc now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 14 years ago
  8. 389db16 Implement -working-directory. by Argyrios Kyrtzidis · 14 years ago
  9. 7faa2ec Rename PCHWriter.h to ASTWriter.h by Sebastian Redl · 14 years ago
  10. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 14 years ago
  11. 4557e47 Revert Sebastian's build-breaking patch. by Douglas Gregor · 14 years ago
  12. 93c9729 Create a new Serialization module that contains all the PCH code, and will contain all the module code in the future. Update the Makefiles, CMake projects and the Xcode project. I hope I did everything right for Xcode. No functionality change. by Sebastian Redl · 14 years ago
  13. 11c3dc4 Fix a typo in a diag name. by Sebastian Redl · 14 years ago
  14. 1d715ac Reshuffle the PCH generator action and consumer, so that we can re-use by Douglas Gregor · 14 years ago
  15. ffaab3e Make macro weirdness in chained PCH work. This required changing the way PCHReader and PCHWriter are initialized to correctly pick up all initializer. On the upside, this means that there is far less repetition in the dependent PCH now. by Sebastian Redl · 14 years ago
  16. f4f6c9d Introduce basic support for loading a precompiled preamble while by Douglas Gregor · 14 years ago
  17. 87c3007 Eliminate the "minimal" and printing parser actions, which only ever by Douglas Gregor · 14 years ago
  18. f033f1d Introduce a new lexer function to compute the "preamble" of a file, by Douglas Gregor · 14 years ago
  19. 30c514c Add a callback interface that allows interested parties to get notified whenever PCHReader deserializes a type or decl (and possibly other things in the future). Have PCHWriter implement these callbacks as noops and register to receive them if we're chaining PCHs. This will allow PCHWriter to track the IDs of these things, which it needs to write the dependent files. WIP by Sebastian Redl · 14 years ago
  20. 9b36c3f Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 14 years ago
  21. 6a695cf Really respect -chained-pch. by Sebastian Redl · 14 years ago
  22. d6ac452 Add a frontend option -chained-pch and don't pass an active PCH reader to the PCH writer if it is not set, preventing creation of chained PCH files. Since the reader is so far unused, effectively no functionality change. by Sebastian Redl · 14 years ago
  23. a93e3b5 Some preparatory work for chained PCH. No functionality change. by Sebastian Redl · 14 years ago
  24. 9b414d3 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 14 years ago
  25. c72cc50 Preprocessor: Ignore unknown pragmas in -E -dM and -Eonly modes. by Daniel Dunbar · 14 years ago
  26. ba5f6ec Teach clang -fixit to modify files in-place, or -fixit=suffix to create new by Nick Lewycky · 15 years ago
  27. e127a0d push some source location information down through the compiler, by Chris Lattner · 15 years ago
  28. d4a97a1 Teach -fixit to modify all of its inputs instead of just the main file, unless by Nick Lewycky · 15 years ago
  29. b69eca5 Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-layouts a bit that Sema honors. by Daniel Dunbar · 15 years ago
  30. 83e7a78 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 15 years ago
  31. 2758595 clang -cc1: Kill off -empty-input only, and replace with -init-only which is an by Daniel Dunbar · 15 years ago
  32. dbf8ee6 Entering the main source file in the preprocessor can fail if the by Douglas Gregor · 15 years ago
  33. 4ee3461 Frontend: Pull CodeGenAction out more, and eliminate CreateBackendConsumer. by Daniel Dunbar · 15 years ago
  34. da1573f clang -cc1: Wire up -emit-obj, for emitting object files. by Daniel Dunbar · 15 years ago
  35. d57d7c0 Fix <rdar://problem/7490212> clang rewriter: return of the mixed line endings, which is by Steve Naroff · 15 years ago
  36. 49ac8e6 Remove RewriteBlocks. It has been superseded by RewriteObjC by Kovarththanan Rajaratnam · 15 years ago
  37. 3604359 Fix CompilerInstance::createOutputFile to use proper diagnostics, and (try to) update all clients to be able to handle failure. by Daniel Dunbar · 15 years ago
  38. b33fbaa Eliminate CodeGenOptions::TimePasses. by Daniel Dunbar · 15 years ago
  39. 6e29014 Fix PR5633 by making the preprocessor handle the case where we can by Chris Lattner · 15 years ago
  40. 1a9724b Don't call exit(). llvm::llvm_report_error() will do just that by Kovarththanan Rajaratnam · 15 years ago
  41. 56e4713 typo by Gabor Greif · 15 years ago
  42. a4e476d issue a friendlier error if someone tries to send precompiled header to '-' (stdout) by Gabor Greif · 15 years ago
  43. 33f57f8 Fix some uses of fprintf/stderr without a prototype. by Daniel Dunbar · 15 years ago
  44. d58c03f Add TargetOptions and use it when constructing targets. by Daniel Dunbar · 15 years ago
  45. 5f3b997 Add FrontendActions for all preprocessor based clang-cc actions. by Daniel Dunbar · 15 years ago
  46. 8305d01 Add FrontendActions, which provides a FrontendAction interface to all the existing AST consumer based clang-cc actions. by Daniel Dunbar · 15 years ago