- Nov 07, 2009
-
-
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
-
- Nov 05, 2009
-
-
John Thompson authored
llvm-svn: 86183
-
John Thompson authored
llvm-svn: 86167
-
Daniel Dunbar authored
invariants (diagnostics with source informations must occur between {Begin,End}SourceFile). llvm-svn: 86113
-
Daniel Dunbar authored
llvm-svn: 86112
-
Daniel Dunbar authored
of coverage of this from the analyzer. If this bothers you, I can add it back in a mode where non-source diagnostics go to stderr and only source diagnostics use -html-diags, but I don't think anyone uses this. llvm-svn: 86109
-
Daniel Dunbar authored
llvm-svn: 86104
-
Daniel Dunbar authored
llvm-svn: 86103
-
Daniel Dunbar authored
llvm-svn: 86076
-
Daniel Dunbar authored
llvm-svn: 86071
-
- Nov 04, 2009
-
-
Daniel Dunbar authored
llvm-svn: 86048
-
Daniel Dunbar authored
llvm-svn: 86047
-
Daniel Dunbar authored
llvm-svn: 86014
-
Daniel Dunbar authored
llvm-svn: 86013
-
Daniel Dunbar authored
llvm-svn: 86010
-
Tanya Lattner authored
Merge constant array and structures. This will create a global variables for arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. llvm-svn: 85991
-
- Nov 03, 2009
-
-
Chris Lattner authored
Roman Divacky! PR5363 llvm-svn: 85932
-
- Nov 02, 2009
-
-
Daniel Dunbar authored
llvm-svn: 85832
-
- Oct 30, 2009
-
-
Daniel Dunbar authored
-miphoneos-version-min. llvm-svn: 85601
-
- Oct 29, 2009
-
-
Steve Naroff authored
- change ObjCCategoryImplDecl::getCategoryClass() to getCategoryDecl(). No functionality change. llvm-svn: 85528
-
Daniel Dunbar authored
llvm-svn: 85527
-
Steve Naroff authored
clang_getDeclSpelling(): For category implementations, make sure we hand back the category name (not the class name). This fixes <rdar://problem/7297518>. llvm-svn: 85521
-
Daniel Dunbar authored
llvm-svn: 85469
-
Daniel Dunbar authored
llvm-svn: 85468
-
- Oct 28, 2009
-
-
Steve Naroff authored
Remove _clang_initCXLookupHint() and _clang_getCursorWithHint(). Related to <rdar://problem/7310688>. Localize the optimization to ResolveLocationInAST(). The last valid AST location is now stored with ASTUnit. There still isn't optimal, however it's an improvement (with a much cleaner API). Having the client manage an "hint" is error prone and complex. I wanted to land the major changes before finishing up the optimizations. llvm-svn: 85425
-
Zhongxing Xu authored
Patch by Simone Pellegrini. llvm-svn: 85386
-
- Oct 27, 2009
-
-
rdar://problem/7303360Steve Naroff authored
- 4 new functions (clang_getCursorSourceFile, clang_getDeclSourceFile, clang_getFileName, clang_getFileTime). - Should remove clang_getDeclSource() and clang_getCursorSource(). For now, just put 'deprecate' comment in header. - Also changed CXX style comment to C style (to eliminate warning). llvm-svn: 85238
-
John Thompson authored
llvm-svn: 85234
-
- Oct 26, 2009
-
-
Ted Kremenek authored
llvm-svn: 85163
-
Ted Kremenek authored
llvm-svn: 85162
-
Daniel Dunbar authored
llvm-svn: 85132
-
Rafael Espindola authored
llvm-svn: 85116
-
- Oct 23, 2009
-
-
Fariborz Jahanian authored
llvm-svn: 84909
-
Ted Kremenek authored
Always emit error diagnostics when an error occurs within clang_createTranslationUnit() and clang_createTranslationUnitFromSource(). These kind of errors are ones that shouldn't be missed. llvm-svn: 84904
-
- Oct 22, 2009
-
-
Ted Kremenek authored
llvm-svn: 84873
-
Ted Kremenek authored
llvm-svn: 84825
-
Ted Kremenek authored
(1) Allow the source file to be specified in the actual command line arguments by allowing the caller to set 'source_filename' to NULL. (2) Automatically strip off the arguments '-emit-ast', '-fsyntax-only', and '-c'. llvm-svn: 84802
-
- Oct 21, 2009
-
-
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
-
- Oct 20, 2009
-
-
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
-
Ted Kremenek authored
llvm-svn: 84555
-