Skip to content
  1. Nov 07, 2009
    • Douglas Gregor's avatar
      Various improvements to Clang's code-completion infrastructure: · 9eb7701d
      Douglas Gregor authored
        - Introduce more code-completion string "chunk" kinds that describe
        symbols, the actual text that the user is expected to type, etc.
        - Make the generation of macro results optional, since it can be
        slow
        - Make code-completion accessible through the C API, marshalling the
        code-completion results through a temporary file (ick) to maintain
        process separation.
      
      The last doesn't have tests yet.
      
      llvm-svn: 86306
      9eb7701d
  2. Nov 05, 2009
  3. Nov 04, 2009
  4. Nov 03, 2009
  5. Nov 02, 2009
  6. Oct 30, 2009
  7. Oct 29, 2009
  8. Oct 28, 2009
  9. Oct 27, 2009
  10. Oct 26, 2009
  11. Oct 23, 2009
  12. Oct 22, 2009
  13. Oct 21, 2009
    • Steve Naroff's avatar
      Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up... · 20bad0b7
      Steve Naroff authored
      Extend clang_getCursor() to take a 'relativeDecl' argument (so speed up searching). Without a 'relativeDecl', the algorithm is n-squared. For example, running the following command on 'Large.m' takes hours without a 'relatvieDecl'. 
      
      snaroff% time ../../Debug/bin/c-index-test Large.ast all > Large.out
      snaroff% cat Large.m
      #import <Cocoa/Cocoa.h>
      #import <QuickTime/QuickTime.h>
      #import <OpenGL/OpenGL.h>
      
      With a 'relativeDecl', it takes <30 seconds:-)
      
      llvm-svn: 84760
      20bad0b7
  14. Oct 20, 2009
    • Steve Naroff's avatar
      · 531e2840
      Steve Naroff authored
      - Extend clang_createIndex() to support PCH and diagnostic 'filtering'. This seems cleaner to me without sacrificing much flexibility.
      
      - Remove clang_wantOnlyLocalDeclarations().
      
      - Remove 'displayDiagnostics' arguments to clang_createTranslationUnitFromSourceFile() and clang_createTranslationUnit().
      
      - Have clang_createTranslationUnitFromSourceFile() strip the '-o <outfile>' command line arguments if they exist. Document this semantic in the header. Also verify we have a valid ASTUnit before telling it to 'unlinkTemporaryFile()'.
      
      llvm-svn: 84634
      531e2840
    • Ted Kremenek's avatar
Loading