- Apr 27, 2009
-
-
Ted Kremenek authored
as 'objc_ownership_cfretain' except that the method acts like a CFRetain instead of a [... retain] (important in GC modes). Checker support is wired up, but currently only for Objective-C message expressions (not function calls). llvm-svn: 70218
-
- Apr 25, 2009
-
-
Chris Lattner authored
support -pg, we never instrument :) llvm-svn: 70061
-
Ted Kremenek authored
users to specify that a method's argument is visibly retained (reference count incremented). llvm-svn: 70008
-
Ted Kremenek authored
to the checker yet, but essentially it allows a user to specify that an Objective-C method or C function increments the reference count of a passed object. llvm-svn: 70005
-
Ted Kremenek authored
up to the checker yet, but essentially it allows a user to specify that an Objective-C method or C function returns an owned an Objective-C object. llvm-svn: 70001
-
- Apr 20, 2009
-
-
Chris Lattner authored
PR4023 llvm-svn: 69618
-
- Apr 14, 2009
-
-
Chris Lattner authored
llvm-svn: 69044
-
- Apr 11, 2009
-
-
Chris Lattner authored
down to the ActionBase class. This eliminates dependencies of (e.g.) DeclSpec.h on Action.h, meaning that action.h can now include these headers and use their types directly in the actions interfaces. This is a refactoring to support a future change, no functionality change. llvm-svn: 68869
-
- Apr 10, 2009
-
-
rdar://problem/6777003Ted Kremenek authored
clients of the analyzer to designate custom assertion routines as "noreturn" functions from the analyzer's perspective but not the compiler's. llvm-svn: 68746
-
- Mar 27, 2009
-
-
Fariborz Jahanian authored
ir gen. No intended change in functionality. llvm-svn: 67857
-
- Mar 06, 2009
-
-
Daniel Dunbar authored
- Also, diagnose weak applied to types. llvm-svn: 66259
-
- Feb 19, 2009
-
-
Chris Lattner authored
zero expression arguments. This eliminates 2579 1-byte mallocs when parsing Cocoa.h. llvm-svn: 65022
-
- Feb 18, 2009
-
-
Chris Lattner authored
llvm-svn: 64849
-
- Feb 14, 2009
-
-
Chris Lattner authored
llvm-svn: 64547
-
Chris Lattner authored
We don't have "zero cost" exceptions for ObjC yet, so there is no codegen support required. llvm-svn: 64546
-
Chris Lattner authored
1) implement parser and sema support for reading and verifying attribute(warnunusedresult). 2) rename hasLocalSideEffect to isUnusedResultAWarning, inverting the sense of its result. 3) extend isUnusedResultAWarning to directly return the loc and range info that should be reported to the user. Make it substantially more precise in some cases than what was previously reported. 4) teach isUnusedResultAWarning about CallExpr to decls that are pure/const/warnunusedresult, fixing a fixme. 5) change warn_attribute_wrong_decl_type to not pass in english strings, instead, pass in integers and use %select. llvm-svn: 64543
-
Anders Carlsson authored
Don't ignore the const attribute - we even have CG support for that. Do ignore the malloc attribute however. llvm-svn: 64538
-
Chris Lattner authored
llvm-svn: 64536
-
- Feb 13, 2009
-
-
Daniel Dunbar authored
llvm-svn: 64478
-
Anders Carlsson authored
llvm-svn: 64446
-
Anders Carlsson authored
llvm-svn: 64441
-
- Feb 12, 2009
-
-
Daniel Dunbar authored
llvm-svn: 64380
-
Douglas Gregor authored
This commit adds a new attribute, "overloadable", that enables C++ function overloading in C. The attribute can only be added to function declarations, e.g., int *f(int) __attribute__((overloadable)); If the "overloadable" attribute exists on a function with a given name, *all* functions with that name (and in that scope) must have the "overloadable" attribute. Sets of overloaded functions with the "overloadable" attribute then follow the normal C++ rules for overloaded functions, e.g., overloads must have different parameter-type-lists from each other. When calling an overloaded function in C, we follow the same overloading rules as C++, with three extensions to the set of standard conversions: - A value of a given struct or union type T can be converted to the type T. This is just the identity conversion. (In C++, this would go through a copy constructor). - A value of pointer type T* can be converted to a value of type U* if T and U are compatible types. This conversion has Conversion rank (it's considered a pointer conversion in C). - A value of type T can be converted to a value of type U if T and U are compatible (and are not both pointer types). This conversion has Conversion rank (it's considered to be a new kind of conversion unique to C, a "compatible" conversion). Known defects (and, therefore, next steps): 1) The standard-conversion handling does not understand conversions involving _Complex or vector extensions, so it is likely to get these wrong. We need to add these conversions. 2) All overloadable functions with the same name will have the same linkage name, which means we'll get a collision in the linker (if not sooner). We'll need to mangle the names of these functions. llvm-svn: 64336
-
- Feb 09, 2009
-
-
Sebastian Redl authored
llvm-svn: 64151
-
- Jan 31, 2009
-
-
Anders Carlsson authored
llvm-svn: 63462
-
- Jan 14, 2009
-
-
Fariborz Jahanian authored
objects as an objective-c object. llvm-svn: 62197
-
- Dec 17, 2008
-
-
Fariborz Jahanian authored
llvm-svn: 61114
-
- Oct 28, 2008
-
-
Daniel Dunbar authored
llvm-svn: 58304
-
- Oct 05, 2008
-
-
Anders Carlsson authored
llvm-svn: 57121
-
- Sep 18, 2008
-
-
Steve Naroff authored
Also added a couple simple tests from the "gcc.apple" test suite. llvm-svn: 56309
-
- Aug 24, 2008
-
-
Anders Carlsson authored
llvm-svn: 55269
-
- Aug 01, 2008
-
-
Daniel Dunbar authored
- Including possible priority argument - In other news, the attribute parsing code really needs a cleanup llvm-svn: 54257
-
- Jul 16, 2008
-
-
Ted Kremenek authored
llvm-svn: 53645
-
Ted Kremenek authored
Added parsing/sema support for __attribute__ ((IBOutlet)), a clang-specific attribute that the static analyzer will use to recognize what ivars are IBOutlets. llvm-svn: 53644
-
- Jun 08, 2008
-
-
Nuno Lopes authored
llvm-svn: 52092
-
- May 27, 2008
-
-
Eli Friedman authored
it fixes PR2204. Not too much to say about the implementation; it works in a similar way to the vector size attribute. At some point, we need to modify the targets to provide information about the appropriate types. llvm-svn: 51577
-
- Apr 25, 2008
-
-
Nuno Lopes authored
comments on the ML will follow llvm-svn: 50262
-
- Apr 19, 2008
-
-
Nate Begeman authored
llvm-svn: 49942
-
- Mar 16, 2008
-
-
Chris Lattner authored
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
-
- Mar 07, 2008
-
-
Nate Begeman authored
Generate CallingConv::Fast when fastcall attribute is present llvm-svn: 48017
-