- Oct 21, 2009
-
-
Mike Stump authored
llvm-svn: 84769
-
Mike Stump authored
llvm-svn: 84768
-
Anders Carlsson authored
Change FixOverloadedFunctionReference to return a (possibly new) expression. Substitute TemplateIdRefExprs with DeclRefExprs. Doug, plz review :) llvm-svn: 84763
-
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
-
Edward O'Callaghan authored
llvm-svn: 84758
-
Zhongxing Xu authored
llvm-svn: 84757
-
Chris Lattner authored
patch by Ken Dyck! llvm-svn: 84746
-
Douglas Gregor authored
an overloaded function call operator. llvm-svn: 84745
-
Chris Lattner authored
llvm-svn: 84740
-
Mike Stump authored
generate the debug information for the first parameter to the block invoke functions. WIP. llvm-svn: 84737
-
John McCall authored
llvm-svn: 84736
-
John McCall authored
Apparently I'm grinding my commit count. llvm-svn: 84735
-
John McCall authored
llvm-svn: 84734
-
John McCall authored
llvm-svn: 84733
-
John McCall authored
llvm-svn: 84724
-
John McCall authored
not the default one (which is always empty). llvm-svn: 84721
-
Mike Stump authored
llvm-svn: 84719
-
John McCall authored
QualTypes. Don't actually exploit this yet. llvm-svn: 84716
-
John McCall authored
the API for creating DeclaratorInfos to allow callers to provide an exact size. llvm-svn: 84715
-
Ted Kremenek authored
llvm-svn: 84697
-
Ted Kremenek authored
llvm-svn: 84696
-
Ted Kremenek authored
llvm-svn: 84695
-
Fariborz Jahanian authored
as argument to a function call. Removes a FIXME. llvm-svn: 84694
-
Anders Carlsson authored
Change ResolveAddressOfOverloadedFunction to support TemplateIdRefExpr. No testcase yet because FixOverloadedFunctionReference needs to be updated too. Doug, plz review. llvm-svn: 84693
-
Anders Carlsson authored
llvm-svn: 84686
-
- Oct 20, 2009
-
-
Ted Kremenek authored
AnalysisManager periodically cleanup its AnalysisContextManager and LocationContextManager objects, as they don't need to forever retain all the CFGs ever created when analyzing a file. llvm-svn: 84684
-
Mike Stump authored
it was. Fixes codegen bug introduced yesterday. llvm-svn: 84668
-
Fariborz Jahanian authored
llvm-svn: 84662
-
Fariborz Jahanian authored
llvm-svn: 84660
-
Devang Patel authored
Do not eagerly cache DITypes because it allows real struct type to be shadowed by forward declared struct type. llvm-svn: 84659
-
Daniel Dunbar authored
llvm-svn: 84656
-
Devang Patel authored
llvm-svn: 84653
-
Daniel Dunbar authored
llvm-svn: 84650
-
Edward O'Callaghan authored
llvm-svn: 84646
-
Fariborz Jahanian authored
Fixes <rdar://problem/7308503> clang should disallow the trailing semicolon in method definitions llvm-svn: 84645
-
Eli Friedman authored
to all callers. Switch a few other users of CK_Unknown to proper cast kinds. Note that there are still some situations where we end up with CK_Unknown; they're pretty easy to find with grep. There are still a few missing conversion kinds, specifically pointer/int/float->bool and the various combinations of real/complex float/int->real/complex float/int. llvm-svn: 84623
-
Ted Kremenek authored
counts of the bufffers referened by the RopePieces in RopePieceBTreeLeaf. This (I believe) corrently fixes the leak I meant to fix in r84601 (which ended up causing an overrelease). llvm-svn: 84615
-
Douglas Gregor authored
qualified member access expression (e.g., t->U::member) when that first qualifier refers to a template parameters. llvm-svn: 84612
-
Ted Kremenek authored
llvm-svn: 84610
-
Chris Lattner authored
implements a framework that allows us to use information about previously substituted values to simplify subsequent ones. Maybe this would be useful for C++'y stuff, who knows. We now get: t.c:4:21: error: invalid operands to binary expression ('size_t' (aka 'unsigned long *') and 'size_t') return (size_t) 0 + (size_t) 0; ~~~~~~~~~~ ^ ~~~~~~~~~~ on the testcase. Note that size_t is only aka'd once. llvm-svn: 84604
-