1. fc06221 The constructor for ASTUnit now takes a DiagnosticClient*, allowing uses of ASTUnit to specify by Ted Kremenek · 15 years ago
  2. 49358d8 Re-order includes so that the logic involving '#ifdef LLVM_ON_WIN32' appears after the main #includes. The ultimate solution is to just use LLVM-portable methods in llvm/System. by Ted Kremenek · 15 years ago
  3. 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
  4. bade7de Change indenting for case/compound statements to conform to the rest of clang. by Steve Naroff · 15 years ago
  5. c5a9e95 CIndex: make variable non-static to avoid potential race conditions, per by Benjamin Kramer · 15 years ago
  6. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  7. 63444b3 Try to unbreak MSVC build. by Benjamin Kramer · 15 years ago
  8. b14346b CIndex: fix typo. by Benjamin Kramer · 15 years ago
  9. edcd828 Missed a paren. by Benjamin Kramer · 15 years ago
  10. 20d7581 CIndex: add a (untested) WIN32 codepath to get ClangPath. by Benjamin Kramer · 15 years ago
  11. 5e4bc59 CIndex: compute ClangPath lazily. by Benjamin Kramer · 15 years ago
  12. 0829a83 CIndex: replace fork/exec with our portable ExecuteAndWait wrapper. by Benjamin Kramer · 15 years ago
  13. 9670762 CIndex: avoid a dangling pointer issue. by Benjamin Kramer · 15 years ago
  14. a47dd19 Attempt to unbreak the MSVC build. by Daniel Dunbar · 15 years ago
  15. 8b88ca6 Simplify (move guard to caller instead of callee). by Daniel Dunbar · 15 years ago
  16. 85f5468 Fix compiler warning: "ISO C90 forbids mixed declarations and code" by Ted Kremenek · 15 years ago
  17. 8ce88a4 Fix warning: 'warning: C++ style comments are not allowed in ISO C90' by Ted Kremenek · 15 years ago
  18. dff7689 Resolve FIXME: delete the 'Program' object in the destructor of CIndexer. by Ted Kremenek · 15 years ago
  19. 5cf4876 Add 'UseBumpPtrAllocator' flag to ASTUnit::LoadFromPCHFile() to cause the created ASTContext to use by Ted Kremenek · 15 years ago
  20. 0246575 Make CIndex and c-index-test a little bit more robust. The only by Douglas Gregor · 15 years ago
  21. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  22. 74cd069 Use an std::vector<> instead of an array of ARG_MAX size, as ARG_MAX may not be defined everywhere. by Ted Kremenek · 15 years ago
  23. e19944c Make sure temporary files get unlinked. by Steve Naroff · 15 years ago
  24. 8c4195e Add missing #include for wait(). by Ted Kremenek · 15 years ago
  25. 37b5ac2 Minor improvement to format...no functionality change. by Steve Naroff · 15 years ago
  26. 5b7d8e2 Implement <rdar://problem/7303432> [Clang/Index] In-memory-style AST generation API (initial API implementation). by Steve Naroff · 15 years ago
  27. 43d8176 Set up include paths for VC++ and Cygwin headers, along with the by Mike Stump · 15 years ago
  28. 9a3dcf2 Make sure that c-index-test links as a C++ executable by Douglas Gregor · 15 years ago
  29. 2588830 Make sure that libCIndex links as a C++ library by Douglas Gregor · 15 years ago
  30. f393c3b Fix C90 compile warning about mixed declarations and code. by Eric Christopher · 15 years ago
  31. f9adf8f - Fix assert in clang_getCursorDecl (having to do with recently added ObjC_ProtocolRef). by Steve Naroff · 15 years ago
  32. 1bb15a9 Add a -nostdclanginc flag to clang-cc that prevents it from searching by Rafael Espindola · 15 years ago
  33. 85e2db7 Add support for class and protocol references. by Steve Naroff · 15 years ago
  34. 05a7651 When pointing at a type decl reference, ASTLocation is a NamedDeclRef. by Argyrios Kyrtzidis · 15 years ago
  35. f4526e3 Modify ASTLocation and apart from being a Decl or Stmt, allow it to also be: by Argyrios Kyrtzidis · 15 years ago
  36. 214904e Set GNUMode only for the "gnu" language standard options, from Ken Dyck! by Douglas Gregor · 15 years ago
  37. 1cf13cd Disable c-index-test on MSVC until someone figures out the real problem. by Daniel Dunbar · 15 years ago
  38. 7416524 Fix cut/paste error resulting in bad column info. by Steve Naroff · 15 years ago
  39. ee9405e Add clang_getDeclSource(). by Steve Naroff · 15 years ago
  40. 699a07d Add clang_getDeclLine and clang_getDeclColumn by Steve Naroff · 15 years ago
  41. ac47bc7 CMake build support for libCIndex and c-index-test. The indexing tests by Douglas Gregor · 15 years ago
  42. 9773f60 Hide clang-wpa executable behind a CMake variable so it won't be built by default by Douglas Gregor · 15 years ago
  43. ff9e18c Add test for C-based indexing API, using FileCheck utility. by Steve Naroff · 15 years ago
  44. e7a5fd4 wpa is an experiment, don't build it by default, it adds to build times due to everything it links in. by Chris Lattner · 15 years ago
  45. 78762eb Add a -dump-record-layouts argument to clang-cc. by Anders Carlsson · 15 years ago
  46. f7469a3 Some minor cleanups... by Steve Naroff · 15 years ago
  47. 4ade6d6 More work to enable more exhaustive testing of the indexing API. by Steve Naroff · 15 years ago
  48. f44c585 Push "clang-is-production" logic up to tools/driver, and make it hittable by by Daniel Dunbar · 15 years ago
  49. b657f11 Replace the -code-completion-dump option with by Douglas Gregor · 15 years ago
  50. fb57042 - Implement support for various types of "refs" (initially to help test clang_getCursor()). by Steve Naroff · 15 years ago
  51. d172bf3 This FIXME is done. by Daniel Dunbar · 15 years ago
  52. b924259 Removed -fobjc-newgc-api option. clang now conforms to by Fariborz Jahanian · 15 years ago
  53. a674bf4 Switch ProcessASTInputFile to still use ParseAST. by Daniel Dunbar · 15 years ago
  54. 31b87d8 Change ASTUnit to take the Diagnostic as an argument, the client should have control of this. by Daniel Dunbar · 15 years ago
  55. a390759 Add Diagnostic to Indexer, and have it keep its own FileManager instead of taking an external reference (which was leaked in the case of the CIndex library). by Daniel Dunbar · 15 years ago
  56. 59b2172 switch command line 'parse' methods to use StringRef for efficiency, which by Chris Lattner · 15 years ago
  57. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago
  58. 2bd6b9f Add clang_disposeTranslationUnit() and clang_disposeIndex(). by Steve Naroff · 15 years ago
  59. aca2ebd Initial support for code generation from .ast files. by Daniel Dunbar · 15 years ago
  60. 0794d8d clang-cc: Factor out code for creating one of the standard AST consumer actions. by Daniel Dunbar · 15 years ago
  61. 13fdf28 Simplify. by Daniel Dunbar · 15 years ago
  62. 9f43534 clang-cc: Remove -ObjC -ObjC++ handling from clang-cc. by Daniel Dunbar · 15 years ago
  63. b123ea3 Starting patch to generate more specific API for objc's by Fariborz Jahanian · 15 years ago
  64. 3cbf5a0 Be sure to use the correct version instead of the wrong one. by Mike Stump · 15 years ago
  65. 77128dd - clang_getCursor(): Replace asserts with error codes (CXCursor_InvalidFile, CXCursor_NoDeclFound). by Steve Naroff · 15 years ago
  66. 73b7959 Add -target-abi clang-cc option, currently unused. by Daniel Dunbar · 15 years ago
  67. 2f60af7 rewrite the parsing code for -miphoneos-version-min and by Chris Lattner · 15 years ago
  68. 8b26cbd Make sure ObjCInterfaceDecl's that are forward declared always contain a valid location. by Steve Naroff · 15 years ago
  69. d9a1db3 Non fragile ABI for GNU runtime. Patch bu David Chisnall. by Fariborz Jahanian · 15 years ago
  70. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  71. 2e30e59 Use llvm::sys::getHostTriple, not LLVM_HOSTTRIPLE. by Daniel Dunbar · 15 years ago
  72. 9efa767 Implement accessors clang_getCursorKind(), clang_getCursorDecl(). by Steve Naroff · 15 years ago
  73. 77accc1 Add ASTUnit::getOriginalSourceFileName() and use in clang_getTranslationUnitSpelling(). by Steve Naroff · 15 years ago
  74. af08ddc by Steve Naroff · 15 years ago
  75. bce6f62 Revert "Visit function/method bodies and issue callback for parameters and local by Daniel Dunbar · 15 years ago
  76. 5345c39 Add basic support for -pthread. by Daniel Dunbar · 15 years ago
  77. 4d86151 Tweak comment. by Daniel Dunbar · 15 years ago
  78. 23d8bea Visit function/method bodies and issue callback for parameters and local variables. by Steve Naroff · 15 years ago
  79. d697081 Initialize targets before parsing command line options, so --version shows registered targets. by Daniel Dunbar · 15 years ago
  80. 10c2d31 Fix warnings. by Eli Friedman · 15 years ago
  81. 1164d85 Fix some newly added bugs uncovered by the RELEASE build. by Steve Naroff · 15 years ago
  82. f334b4e Start issuing callback for references (add some predicates, refactor some code). by Steve Naroff · 15 years ago
  83. c857ea4 Flesh out CXCursorKind... by Steve Naroff · 15 years ago
  84. 2b8ee6c Add explicit "blind" client data to callback function (since we aren't using blocks). by Steve Naroff · 15 years ago
  85. 8a5a9aa Updated GNU runtime non-fragile ABI. by David Chisnall · 15 years ago
  86. 2d4d629 Implement source/line/column hooks. by Steve Naroff · 15 years ago
  87. 89922f8 More fleshing out the C-based indexing API (under construction). by Steve Naroff · 15 years ago
  88. d01a0bc gcc 4.4 needs cstdio for printf. Reorder includes while at it. by Benjamin Kramer · 15 years ago
  89. 80088a9 Add CIndex dependencies: libLLVMC and libclangSema (for IdentifierResolver). by Ted Kremenek · 15 years ago
  90. 2349672 Tweak CIndex file to resolve to linking issues with the clang libraries. In by Ted Kremenek · 15 years ago
  91. 1eb79b5 Hide IdxVisitor and remove unimplemented method (causing link errors on x86_64 by Daniel Dunbar · 15 years ago
  92. 5039819 Lot's of little changes to get the C-based indexing API going... by Steve Naroff · 15 years ago
  93. 7e8f818 Add CX prefix to Cursor and move a comment. by Steve Naroff · 15 years ago
  94. f710789 Update exports list. by Ted Kremenek · 15 years ago
  95. 600866c Fill in Index.h header file and add stubs to implementation file. by Steve Naroff · 15 years ago
  96. d2fa566 Add initial boilerplate for CIndex, a shared library that will vend high-level by Ted Kremenek · 15 years ago
  97. ab24c8d Since the HexFloats option only controls a warning, it shouldn't depend by Eli Friedman · 15 years ago
  98. b044c47 Update clang for raw_fd_ostream no longer requiring F_Force. by Dan Gohman · 15 years ago
  99. 0fa0daa prune #includes. by Chris Lattner · 15 years ago
  100. d57a7ef API changes to match llvm ToT. by Chris Lattner · 15 years ago