- May 21, 2009
-
-
Jay Foad authored
llvm-svn: 72210
-
Fariborz Jahanian authored
llvm-svn: 72203
-
- May 20, 2009
-
-
Fariborz Jahanian authored
It currently requires a patches to GNU libobjc (and so is not enabled by default) which are currently being tested and reviewed by GNUstep before being pushed upstream. This patch does not allow support for synthesized ivars, but does provide the infrastructure needed for supporting them. Patch by David Chisnall llvm-svn: 72175
-
Eli Friedman authored
It would be nice if someone could write an ObjC++ testcase for the case of passing a property returning a struct to a function taking a const reference. llvm-svn: 72159
-
Anders Carlsson authored
llvm-svn: 72157
-
Anders Carlsson authored
llvm-svn: 72155
-
Anders Carlsson authored
llvm-svn: 72153
-
Anders Carlsson authored
llvm-svn: 72150
-
Anders Carlsson authored
Add EmitReferenceBindingToExpr. Have EmitCallArg use it for now. Doesn't support anything but at least we don't crash ;) llvm-svn: 72147
-
- May 19, 2009
-
-
Anders Carlsson authored
llvm-svn: 72133
-
Anders Carlsson authored
llvm-svn: 72125
-
Anders Carlsson authored
llvm-svn: 72118
-
Anders Carlsson authored
llvm-svn: 72117
-
Anders Carlsson authored
Have AggExprEmitter::VisitCXXConstructExpr make new variables if necessary. Stub out VisitCXXExprWithTemporaries. llvm-svn: 72103
-
Eli Friedman authored
llvm-svn: 72101
-
Fariborz Jahanian authored
This patch allows clang to generate code for declared properties on the GNU runtime. As with @synchronized, this requires some extra functions that are included with other libraries (not with the GNU runtime itself) and so will cause linker errors when these are not present. Patch by David Chisnall. llvm-svn: 72079
-
- May 18, 2009
-
-
Daniel Dunbar authored
interface types. llvm-svn: 72036
-
Anders Carlsson authored
Since we miscompile many cases when declaring a variable with a reference type, make them unsupported for now. llvm-svn: 72034
-
Anders Carlsson authored
llvm-svn: 72033
-
Anders Carlsson authored
llvm-svn: 72032
-
- May 17, 2009
-
-
Anders Carlsson authored
Add support for converting member pointer types to LLVM types. Also mangle pointer to member functions correctly and add tests. llvm-svn: 71981
-
Fariborz Jahanian authored
This patch fixes two bugs in the GNU Objective-C runtime implementation. One is a case in rethrowing exceptions where the C types don't match correctly (I already sent this patch to Daniel Dunbar, who found the bug, so it may have already been committed). The other fixes the case properties so that the methods generated as property accessors are added to the class structure correctly. Patch by David Chisnall. llvm-svn: 71980
-
- May 16, 2009
-
-
Anders Carlsson authored
llvm-svn: 71957
-
Mike Stump authored
llvm-svn: 71937
-
Daniel Dunbar authored
else the method will not be found by the runtime at class load time). llvm-svn: 71904
-
- May 15, 2009
-
-
Daniel Dunbar authored
- No functionality change. llvm-svn: 71898
-
Anders Carlsson authored
A C++ member function always has either weak linkage (if it's inline or defined inline) or strong linkage (other cases). llvm-svn: 71873
-
Anders Carlsson authored
llvm-svn: 71861
-
Mike Stump authored
variables. For this to work, the backend needs to handle more complex forms for locations. A typical utterance would be: %forwarding = getelementptr %0* %use_by_ref, i32 0, i32 1 ; <i8**> [#uses=1] %0 = load i8** %forwarding ; <i8*> [#uses=1] %1 = bitcast i8* %0 to %0* ; <%0*> [#uses=1] %x = getelementptr %0* %1, i32 0, i32 4 ; <i32*> [#uses=1] %2 = bitcast i32* %x to { }* ; <{ }*> [#uses=1] call void @llvm.dbg.declare({ }* %2, { }* bitcast (%llvm.dbg.variable.type* @llvm.dbg.variable to { }*)) Presently when selection finds something it doesn't understand, it just avoids generating any information, which is safe, just incomplete. Radar 6867696 llvm-svn: 71824
-
- May 14, 2009
-
-
Daniel Dunbar authored
- Otherwise we emit internal names with embedded '\01' characters, which confuses some tools. - Ideally all the code which wants to get a "display name" for the given function should follow one code path, but this should be a monotonic improvement for now. llvm-svn: 71774
-
Mike Stump authored
llvm-svn: 71763
-
Daniel Dunbar authored
emit the correct "display name". I suspect we need more work here, see FIXME for example. llvm-svn: 71761
-
Daniel Dunbar authored
debug info. llvm-svn: 71736
-
- May 13, 2009
-
-
Daniel Dunbar authored
coercion to be specified which truncates padding bits. It would be nice to still have the assert, but we don't have any API call for the unpadding size of a type yet. llvm-svn: 71695
-
Fariborz Jahanian authored
Used simple array for Selector build. llvm-svn: 71674
-
Chris Lattner authored
rdar://6880573 llvm-svn: 71637
-
Chris Lattner authored
rdar://6880573 llvm-svn: 71636
-
rdar://6880259Chris Lattner authored
by using the appropriate CGM interface instead of directly creating a global. llvm-svn: 71617
-
- May 12, 2009
-
-
Chris Lattner authored
llvm-svn: 71595
-
Chris Lattner authored
to allow us to support generation of deferred ctors/dtors. It looks like codegen isn't emitting a call to the dtor in member-functions.cpp:test2, but when it does, its body should get emitted. llvm-svn: 71594
-