1. d54eb44 Parse default arguments within member functions in source order, from by Douglas Gregor · 14 years ago
  2. 4cd912a When we load an ASTUnit from command-line arguments, hold on to the by Douglas Gregor · 14 years ago
  3. 32be4a5 Switch c-index-test from clang_codeComplete() over to by Douglas Gregor · 14 years ago
  4. aa3e6ba Fix three related, wily issues with the recompilation of precompiled preambles: by Douglas Gregor · 14 years ago
  5. 3552f66 Don't force spell checking when code-completing. Let the client decide by Douglas Gregor · 14 years ago
  6. 37cf663 Fix a double-free error that can occur in rare cases where loading by Douglas Gregor · 14 years ago
  7. 1d9f1fe Give every file that ASTReader loads a type: module, PCH, precompiled preamble or main file. Base Decls' PCHLevel on this to make it more sane. by Sebastian Redl · 14 years ago
  8. 85e5191 Enable chained precompiled headers for use with precompiled preambles by Douglas Gregor · 14 years ago
  9. 06e5044 Remove libclang logging code by Douglas Gregor · 14 years ago
  10. 76dc889 When setting the globally-visible declarations for a particular by Douglas Gregor · 14 years ago
  11. 8c8d541 Teach libclang to enable multithreading in LLVM, since libclang clients are likely to be multithreaded. Also move the printing of timers to somewhere better for multithreaded libclang clients by Douglas Gregor · 14 years ago
  12. 52779fb Synchronize globally-cached code completion results with the results by Douglas Gregor · 14 years ago
  13. b05496d Tweak priorities for some types and macros: by Douglas Gregor · 14 years ago
  14. 0268810 Introduce a new code-completion context for a parenthesized by Douglas Gregor · 14 years ago
  15. 424668c The two libclang crash-recovery tests that involve precompiled by Douglas Gregor · 14 years ago
  16. 2cd4fd4 If we fail to create a temporary file for the precompiled preamble, by Douglas Gregor · 14 years ago
  17. c6cb2b0 Tweak GetPreamblePCHPath() to more closely match the behavior of the by Douglas Gregor · 14 years ago
  18. 1a480c4 Suggest "const" and "volatile" code completions after a function by Douglas Gregor · 14 years ago
  19. 458433d Implement code completion for @selector expressions by Douglas Gregor · 14 years ago
  20. 1e5e668 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  21. 1cb237f Revert r112149, "Move the sorting of code-completion results out of the main by Daniel Dunbar · 14 years ago
  22. be13afe Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  23. 9214819 Revert "Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  24. c7ed372 Move the sorting of code-completion results out of the main path and by Douglas Gregor · 14 years ago
  25. 721f359 When combining the code-completion results from Sema long with the by Douglas Gregor · 14 years ago
  26. 59a6694 Add a missing case by Douglas Gregor · 14 years ago
  27. c9c29a8 Fix an off-by-one error when computing the precompiled preamble for by Douglas Gregor · 14 years ago
  28. 4125c37 Make the cursor kind of macro-name-only completions produced by by Douglas Gregor · 14 years ago
  29. 0a2c5e2 Teach Sema to live without CodeCompleteConsumer.h. by John McCall · 14 years ago
  30. f29c523 Implement code completion for preprocessor expressions and in macro arguments. by Douglas Gregor · 14 years ago
  31. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
  32. 58ddb60 Introduce new libclang API functions that determine the availability by Douglas Gregor · 14 years ago
  33. 6d72cbe Don't include macro results when we're completing a declarator. by Douglas Gregor · 14 years ago
  34. 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago
  35. 875ab10 Abstract out member-pointer creation. I'm really unhappy about the current by John McCall · 14 years ago
  36. 2283d79 When performing code-completion in the presence of a preamble, make by Douglas Gregor · 14 years ago
  37. f128fed When we decide not to reuse a precompiled preamble, clear out the by Douglas Gregor · 14 years ago
  38. c1cf158 Fix a loop overrun in ComputePreamble when the last remapped file was erased, by Daniel Dunbar · 14 years ago
  39. 671947b Plug a leak when precompiling the preamble in ASTUnit. by Douglas Gregor · 14 years ago
  40. 8b1540c Make sure to initialize ASTUnit::UnsafeToFree by Douglas Gregor · 14 years ago
  41. 6ab7cd8 Rename the ASTReader header files. by Sebastian Redl · 14 years ago
  42. 3c7f413 More PCH -> AST renaming. by Sebastian Redl · 14 years ago
  43. 571db7f Rename various classes from PCH to AST. by Sebastian Redl · 14 years ago
  44. c43b54c Rename PCHReader to ASTReader. by Sebastian Redl · 14 years ago
  45. 7faa2ec Rename PCHWriter.h to ASTWriter.h by Sebastian Redl · 14 years ago
  46. a4232eb Rename PCHWriter to ASTWriter by Sebastian Redl · 14 years ago
  47. f421089 When creating an ASTUnit by parsing source code, set DisableFree to by Douglas Gregor · 14 years ago
  48. bdbb004 Simplify the ownership model for DiagnosticClients, which was really by Douglas Gregor · 14 years ago
  49. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 14 years ago
  50. 4557e47 Revert Sebastian's build-breaking patch. by Douglas Gregor · 14 years ago
  51. 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
  52. 727d93e When the # of top-level declarations changes after reparsing a by Douglas Gregor · 14 years ago
  53. 349d38c Move include to the proper place. No functionality change by Douglas Gregor · 14 years ago
  54. a5fb7c3 Implement support for cached code completions for by Douglas Gregor · 14 years ago
  55. 5535d57 Formatting fixes. No functionality change by Douglas Gregor · 14 years ago
  56. 5f808c2 Implement name hiding of cached global code-completion results. by Douglas Gregor · 14 years ago
  57. 697ca6d Move some code out-of-line which has long since grown too large to be by Douglas Gregor · 14 years ago
  58. f5586f6 When caching code completions for global declarations, keep track of by Douglas Gregor · 14 years ago
  59. c4421e9 Dereferencing NULL pointers is such poor form. by Douglas Gregor · 14 years ago
  60. 1827e10 When caching global completion results, keep track of the simplified by Douglas Gregor · 14 years ago
  61. 1395c5d Open AST/PCH files in binary mode. by Benjamin Kramer · 14 years ago
  62. 8071e42 Extend the code-completion caching infrastructure to include global by Douglas Gregor · 14 years ago
  63. 87c08a5 Implement caching of code-completion results for macro definitions by Douglas Gregor · 14 years ago
  64. 7ae2faa Implement clang_saveTranslationUnit(), which saves a translation unit by Douglas Gregor · 14 years ago
  65. 914ed9d Teach ASTUnit to hold on to the Sema object and ASTConsumer that are by Douglas Gregor · 14 years ago
  66. 27372b4 Reintroduce the ASTConsumer/ASTUnit fix from r110610, it has nothing to do with the breakage. by Sebastian Redl · 14 years ago
  67. 6bf1830 Fix a thinko in the creation of temporary files for the precompiled preamble by Douglas Gregor · 14 years ago
  68. deacbdc Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, by Douglas Gregor · 14 years ago
  69. 74c730a - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for forward declarations and the definition. by Sebastian Redl · 14 years ago
  70. df95a13 Use precompiled preambles for in-process code completion. by Douglas Gregor · 14 years ago
  71. f65339e Add an environment variable that makes libclang use chaining for PCH. by Sebastian Redl · 14 years ago
  72. cee235c Give clang_codeCompleteAt() an "options" parameter, and add a new by Douglas Gregor · 14 years ago
  73. b75d3df When performing in-process code completion, don't free the remapped by Douglas Gregor · 14 years ago
  74. 1abc6bc Add code-completion support directly to ASTUnit, which performs code by Douglas Gregor · 14 years ago
  75. eababfb When we try (but fail) to build a precompiled preamble, wait for a by Douglas Gregor · 14 years ago
  76. eb8837b When using a precompiled preamble, keep track of the top-level by Douglas Gregor · 14 years ago
  77. 1d715ac Reshuffle the PCH generator action and consumer, so that we can re-use by Douglas Gregor · 14 years ago
  78. c0659ec When using a precompiled preamble, save the diagnostics produced when by Douglas Gregor · 14 years ago
  79. cc5888d Implement dependency analysis for the precompiled preamble. If any of by Douglas Gregor · 14 years ago
  80. 385103b Add some timers to ASTUnit that are only enabled when the LIBCLANG_TIMING environment variable is set. by Douglas Gregor · 14 years ago
  81. fd0b870 Turn off precompiled preamble support for C++ by Douglas Gregor · 14 years ago
  82. 2823342 Fix use-after-free with precompiled preambles by Douglas Gregor · 14 years ago
  83. fae3b2f Implement -fno-validate-pch at the -cc1 level, which suppresses most by Douglas Gregor · 14 years ago
  84. f4f6c9d Introduce basic support for loading a precompiled preamble while by Douglas Gregor · 14 years ago
  85. 63fe86b Make ASTContext always use the BumpPtrAllocator. by Douglas Gregor · 14 years ago
  86. 592508e Put a newline at the end of the padded buffers used for the by Douglas Gregor · 14 years ago
  87. 754f349 Once we've built (or reused) a precompiled preamble, create the by Douglas Gregor · 14 years ago
  88. 175c4a9 Once we've built a precompiled preamble, keep track of the details of by Douglas Gregor · 14 years ago
  89. ad23ebe Fix build on Ubuntu 10.04. by Zhongxing Xu · 14 years ago
  90. 44c181a Basic plumbing for generating a precompiled preamble for an by Douglas Gregor · 14 years ago
  91. abc563f Introduce a new libclang API, clang_reparseTranslationUnit(), which by Douglas Gregor · 14 years ago
  92. 0bbad51 Driver: Change the driver to take the path to the main executable, instead of by Daniel Dunbar · 14 years ago
  93. cb481aa There is another implementation of PCHReaderListener around. Update it to the new interface. by Sebastian Redl · 14 years ago
  94. 98b7c5c Add an option to specify the target C++ ABI to the frontend. Use it to by Charles Davis · 14 years ago
  95. faddc3e Frontend: Add FrontendAction support for handling LLVM IR inputs. by Daniel Dunbar · 14 years ago
  96. 2056048 Frontend: Move some initialization from CompilerInstance to FrontendAction, to parallel what is done for AST inputs. by Daniel Dunbar · 14 years ago
  97. d3598a6 Frontend: Change FrontendAction::BeginSourceFile to take the input kind instead of an IsAST bool. by Daniel Dunbar · 14 years ago
  98. c34ce3f Frontend: Lift InputKind enumeration to top level. by Daniel Dunbar · 14 years ago
  99. da5a428 Workaround: Don't add ObjCMethodDecls to the vector of TopLevelDecls since they don't go in by Ted Kremenek · 14 years ago
  100. cb421fa Fix -Wcast-qual warnings. by Dan Gohman · 14 years ago