2007-08-21 17:43:55 +00:00
|
|
|
//===---- CGBuiltin.cpp - Emit LLVM Code for builtins ---------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:25 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-08-21 17:43:55 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This contains code to emit Objective-C code as LLVM code.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-04-09 15:51:31 +00:00
|
|
|
#include "CGObjCRuntime.h"
|
2007-08-21 17:43:55 +00:00
|
|
|
#include "CodeGenFunction.h"
|
|
|
|
#include "CodeGenModule.h"
|
2008-08-29 08:11:39 +00:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2008-08-11 05:35:13 +00:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2009-04-26 01:32:48 +00:00
|
|
|
#include "clang/AST/StmtObjC.h"
|
2008-09-03 00:27:26 +00:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2008-08-30 19:51:14 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2008-09-24 04:04:31 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2007-08-21 17:43:55 +00:00
|
|
|
using namespace clang;
|
|
|
|
using namespace CodeGen;
|
|
|
|
|
2008-06-24 17:04:18 +00:00
|
|
|
/// Emits an instance of NSConstantString representing the object.
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *CodeGenFunction::EmitObjCStringLiteral(const ObjCStringLiteral *E)
|
2008-11-25 21:53:21 +00:00
|
|
|
{
|
2010-01-23 02:40:42 +00:00
|
|
|
llvm::Constant *C =
|
|
|
|
CGM.getObjCRuntime().GenerateConstantString(E->getString());
|
2008-08-20 00:28:19 +00:00
|
|
|
// FIXME: This bitcast should just be made an invariant on the Runtime.
|
2009-07-29 18:54:39 +00:00
|
|
|
return llvm::ConstantExpr::getBitCast(C, ConvertType(E->getType()));
|
2008-06-24 17:04:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Emit a selector.
|
|
|
|
llvm::Value *CodeGenFunction::EmitObjCSelectorExpr(const ObjCSelectorExpr *E) {
|
|
|
|
// Untyped selector.
|
|
|
|
// Note that this implementation allows for non-constant strings to be passed
|
|
|
|
// as arguments to @selector(). Currently, the only thing preventing this
|
|
|
|
// behaviour is the type checking in the front end.
|
2010-02-03 20:11:42 +00:00
|
|
|
return CGM.getObjCRuntime().GetSelector(Builder, E->getSelector());
|
2008-06-24 17:04:18 +00:00
|
|
|
}
|
|
|
|
|
2008-08-20 00:28:19 +00:00
|
|
|
llvm::Value *CodeGenFunction::EmitObjCProtocolExpr(const ObjCProtocolExpr *E) {
|
|
|
|
// FIXME: This should pass the Decl not the name.
|
|
|
|
return CGM.getObjCRuntime().GenerateProtocolRef(Builder, E->getProtocol());
|
|
|
|
}
|
2008-06-24 17:04:18 +00:00
|
|
|
|
|
|
|
|
2010-05-22 01:48:05 +00:00
|
|
|
RValue CodeGenFunction::EmitObjCMessageExpr(const ObjCMessageExpr *E,
|
|
|
|
ReturnValueSlot Return) {
|
2008-06-24 17:04:18 +00:00
|
|
|
// Only the lookup mechanism and first two arguments of the method
|
|
|
|
// implementation vary between runtimes. We can get the receiver and
|
|
|
|
// arguments in generic code.
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-11 18:12:00 +00:00
|
|
|
CGObjCRuntime &Runtime = CGM.getObjCRuntime();
|
2008-06-24 17:04:18 +00:00
|
|
|
bool isSuperMessage = false;
|
2008-08-25 08:19:24 +00:00
|
|
|
bool isClassMessage = false;
|
2010-04-28 19:33:36 +00:00
|
|
|
ObjCInterfaceDecl *OID = 0;
|
2008-06-24 17:04:18 +00:00
|
|
|
// Find the receiver
|
2010-04-22 03:17:06 +00:00
|
|
|
llvm::Value *Receiver = 0;
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
llvm-svn: 101972
2010-04-21 00:45:42 +00:00
|
|
|
switch (E->getReceiverKind()) {
|
|
|
|
case ObjCMessageExpr::Instance:
|
|
|
|
Receiver = EmitScalarExpr(E->getInstanceReceiver());
|
|
|
|
break;
|
2009-09-09 15:08:12 +00:00
|
|
|
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
llvm-svn: 101972
2010-04-21 00:45:42 +00:00
|
|
|
case ObjCMessageExpr::Class: {
|
2010-05-17 20:12:43 +00:00
|
|
|
const ObjCObjectType *ObjTy
|
|
|
|
= E->getClassReceiver()->getAs<ObjCObjectType>();
|
|
|
|
assert(ObjTy && "Invalid Objective-C class message send");
|
|
|
|
OID = ObjTy->getInterface();
|
|
|
|
assert(OID && "Invalid Objective-C class message send");
|
2010-04-28 19:33:36 +00:00
|
|
|
Receiver = Runtime.GetClass(Builder, OID);
|
2008-08-25 08:19:24 +00:00
|
|
|
isClassMessage = true;
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
llvm-svn: 101972
2010-04-21 00:45:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case ObjCMessageExpr::SuperInstance:
|
|
|
|
Receiver = LoadObjCSelf();
|
2008-06-24 17:04:18 +00:00
|
|
|
isSuperMessage = true;
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
llvm-svn: 101972
2010-04-21 00:45:42 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ObjCMessageExpr::SuperClass:
|
2008-06-24 17:04:18 +00:00
|
|
|
Receiver = LoadObjCSelf();
|
Overhaul the AST representation of Objective-C message send
expressions, to improve source-location information, clarify the
actual receiver of the message, and pave the way for proper C++
support. The ObjCMessageExpr node represents four different kinds of
message sends in a single AST node:
1) Send to a object instance described by an expression (e.g., [x method:5])
2) Send to a class described by the class name (e.g., [NSString method:5])
3) Send to a superclass class (e.g, [super method:5] in class method)
4) Send to a superclass instance (e.g., [super method:5] in instance method)
Previously these four cases where tangled together. Now, they have
more distinct representations. Specific changes:
1) Unchanged; the object instance is represented by an Expr*.
2) Previously stored the ObjCInterfaceDecl* referring to the class
receiving the message. Now stores a TypeSourceInfo* so that we know
how the class was spelled. This both maintains typedef information
and opens the door for more complicated C++ types (e.g., dependent
types). There was an alternative, unused representation of these
sends by naming the class via an IdentifierInfo *. In practice, we
either had an ObjCInterfaceDecl *, from which we would get the
IdentifierInfo *, or we fell into the case below...
3) Previously represented by a class message whose IdentifierInfo *
referred to "super". Sema and CodeGen would use isStr("super") to
determine if they had a send to super. Now represented as a
"class super" send, where we have both the location of the "super"
keyword and the ObjCInterfaceDecl* of the superclass we're
targetting (statically).
4) Previously represented by an instance message whose receiver is a
an ObjCSuperExpr, which Sema and CodeGen would check for via
isa<ObjCSuperExpr>(). Now represented as an "instance super" send,
where we have both the location of the "super" keyword and the
ObjCInterfaceDecl* of the superclass we're targetting
(statically). Note that ObjCSuperExpr only has one remaining use in
the AST, which is for "super.prop" references.
The new representation of ObjCMessageExpr is 2 pointers smaller than
the old one, since it combines more storage. It also eliminates a leak
when we loaded message-send expressions from a precompiled header. The
representation also feels much cleaner to me; comments welcome!
This patch attempts to maintain the same semantics we previously had
with Objective-C message sends. In several places, there are massive
changes that boil down to simply replacing a nested-if structure such
as:
if (message has a receiver expression) {
// instance message
if (isa<ObjCSuperExpr>(...)) {
// send to super
} else {
// send to an object
}
} else {
// class message
if (name->isStr("super")) {
// class send to super
} else {
// send to class
}
}
with a switch
switch (E->getReceiverKind()) {
case ObjCMessageExpr::SuperInstance: ...
case ObjCMessageExpr::Instance: ...
case ObjCMessageExpr::SuperClass: ...
case ObjCMessageExpr::Class:...
}
There are quite a few places (particularly in the checkers) where
send-to-super is effectively ignored. I've placed FIXMEs in most of
them, and attempted to address send-to-super in a reasonable way. This
could use some review.
llvm-svn: 101972
2010-04-21 00:45:42 +00:00
|
|
|
isSuperMessage = true;
|
|
|
|
isClassMessage = true;
|
|
|
|
break;
|
2008-06-24 17:04:18 +00:00
|
|
|
}
|
|
|
|
|
2008-08-30 03:02:31 +00:00
|
|
|
CallArgList Args;
|
2009-04-18 20:29:27 +00:00
|
|
|
EmitCallArgs(Args, E->getMethodDecl(), E->arg_begin(), E->arg_end());
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-06-24 17:04:18 +00:00
|
|
|
if (isSuperMessage) {
|
2008-06-26 04:42:20 +00:00
|
|
|
// super is only valid in an Objective-C method
|
|
|
|
const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
|
2009-02-28 20:07:56 +00:00
|
|
|
bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
|
2010-05-22 01:48:05 +00:00
|
|
|
return Runtime.GenerateMessageSendSuper(*this, Return, E->getType(),
|
2008-08-30 05:35:15 +00:00
|
|
|
E->getSelector(),
|
2008-08-25 08:19:24 +00:00
|
|
|
OMD->getClassInterface(),
|
2009-02-28 20:07:56 +00:00
|
|
|
isCategoryImpl,
|
2008-08-25 08:19:24 +00:00
|
|
|
Receiver,
|
2008-08-30 03:02:31 +00:00
|
|
|
isClassMessage,
|
2009-09-17 04:01:22 +00:00
|
|
|
Args,
|
|
|
|
E->getMethodDecl());
|
2008-06-24 17:04:18 +00:00
|
|
|
}
|
2009-09-17 04:01:22 +00:00
|
|
|
|
2010-05-22 01:48:05 +00:00
|
|
|
return Runtime.GenerateMessageSend(*this, Return, E->getType(),
|
|
|
|
E->getSelector(),
|
2010-04-28 19:33:36 +00:00
|
|
|
Receiver, Args, OID,
|
2009-05-05 21:36:57 +00:00
|
|
|
E->getMethodDecl());
|
2007-08-21 17:43:55 +00:00
|
|
|
}
|
|
|
|
|
2008-08-26 08:29:31 +00:00
|
|
|
/// StartObjCMethod - Begin emission of an ObjCMethod. This generates
|
|
|
|
/// the LLVM function and sets the other context used by
|
|
|
|
/// CodeGenFunction.
|
2009-01-10 21:06:09 +00:00
|
|
|
void CodeGenFunction::StartObjCMethod(const ObjCMethodDecl *OMD,
|
|
|
|
const ObjCContainerDecl *CD) {
|
2008-09-09 23:14:03 +00:00
|
|
|
FunctionArgList Args;
|
2010-04-05 21:09:15 +00:00
|
|
|
// Check if we should generate debug info for this method.
|
|
|
|
if (CGM.getDebugInfo() && !OMD->hasAttr<NoDebugAttr>())
|
|
|
|
DebugInfo = CGM.getDebugInfo();
|
|
|
|
|
2009-01-10 21:06:09 +00:00
|
|
|
llvm::Function *Fn = CGM.getObjCRuntime().GenerateMethod(OMD, CD);
|
2008-09-04 23:41:35 +00:00
|
|
|
|
2009-04-17 00:48:04 +00:00
|
|
|
const CGFunctionInfo &FI = CGM.getTypes().getFunctionInfo(OMD);
|
|
|
|
CGM.SetInternalFunctionAttributes(OMD, Fn, FI);
|
2008-06-17 18:05:57 +00:00
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
Args.push_back(std::make_pair(OMD->getSelfDecl(),
|
2008-09-09 23:14:03 +00:00
|
|
|
OMD->getSelfDecl()->getType()));
|
|
|
|
Args.push_back(std::make_pair(OMD->getCmdDecl(),
|
|
|
|
OMD->getCmdDecl()->getType()));
|
2008-06-17 18:05:57 +00:00
|
|
|
|
2009-02-20 18:43:26 +00:00
|
|
|
for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(),
|
|
|
|
E = OMD->param_end(); PI != E; ++PI)
|
|
|
|
Args.push_back(std::make_pair(*PI, (*PI)->getType()));
|
2008-08-16 03:19:19 +00:00
|
|
|
|
2010-02-15 18:08:38 +00:00
|
|
|
StartFunction(OMD, OMD->getResultType(), Fn, Args, OMD->getLocStart());
|
2008-08-26 08:29:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Generate an Objective-C method. An Objective-C method is a C function with
|
2009-09-09 15:08:12 +00:00
|
|
|
/// its pointer, name, and types registered in the class struture.
|
2008-08-26 08:29:31 +00:00
|
|
|
void CodeGenFunction::GenerateObjCMethod(const ObjCMethodDecl *OMD) {
|
2009-01-10 21:06:09 +00:00
|
|
|
StartObjCMethod(OMD, OMD->getClassInterface());
|
2009-06-30 02:35:26 +00:00
|
|
|
EmitStmt(OMD->getBody());
|
|
|
|
FinishFunction(OMD->getBodyRBrace());
|
2008-08-26 08:29:31 +00:00
|
|
|
}
|
|
|
|
|
2009-05-16 07:57:57 +00:00
|
|
|
// FIXME: I wasn't sure about the synthesis approach. If we end up generating an
|
|
|
|
// AST for the whole body we can just fall back to having a GenerateFunction
|
|
|
|
// which takes the body Stmt.
|
2008-08-26 08:29:31 +00:00
|
|
|
|
|
|
|
/// GenerateObjCGetter - Generate an Objective-C property getter
|
2009-01-10 22:55:25 +00:00
|
|
|
/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
|
|
|
|
/// is illegal within a category.
|
2008-12-09 20:23:04 +00:00
|
|
|
void CodeGenFunction::GenerateObjCGetter(ObjCImplementationDecl *IMP,
|
|
|
|
const ObjCPropertyImplDecl *PID) {
|
2008-09-24 04:04:31 +00:00
|
|
|
ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
|
2008-08-26 08:29:31 +00:00
|
|
|
const ObjCPropertyDecl *PD = PID->getPropertyDecl();
|
2010-04-13 18:32:24 +00:00
|
|
|
bool IsAtomic =
|
|
|
|
!(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic);
|
2008-08-26 08:29:31 +00:00
|
|
|
ObjCMethodDecl *OMD = PD->getGetterMethodDecl();
|
|
|
|
assert(OMD && "Invalid call to generate getter (empty method)");
|
2009-01-10 21:06:09 +00:00
|
|
|
StartObjCMethod(OMD, IMP->getClassInterface());
|
2010-04-13 18:32:24 +00:00
|
|
|
|
2008-09-24 04:04:31 +00:00
|
|
|
// Determine if we should use an objc_getProperty call for
|
2008-12-08 23:56:17 +00:00
|
|
|
// this. Non-atomic properties are directly evaluated.
|
|
|
|
// atomic 'copy' and 'retain' properties are also directly
|
|
|
|
// evaluated in gc-only mode.
|
2008-09-24 04:04:31 +00:00
|
|
|
if (CGM.getLangOptions().getGCMode() != LangOptions::GCOnly &&
|
2010-04-13 18:32:24 +00:00
|
|
|
IsAtomic &&
|
2008-12-08 23:56:17 +00:00
|
|
|
(PD->getSetterKind() == ObjCPropertyDecl::Copy ||
|
|
|
|
PD->getSetterKind() == ObjCPropertyDecl::Retain)) {
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *GetPropertyFn =
|
2008-09-24 04:04:31 +00:00
|
|
|
CGM.getObjCRuntime().GetPropertyGetFunction();
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-09-24 04:04:31 +00:00
|
|
|
if (!GetPropertyFn) {
|
|
|
|
CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy");
|
|
|
|
FinishFunction();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return (ivar-type) objc_getProperty((id) self, _cmd, offset, true).
|
|
|
|
// FIXME: Can't this be simpler? This might even be worse than the
|
|
|
|
// corresponding gcc code.
|
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
ValueDecl *Cmd = OMD->getCmdDecl();
|
|
|
|
llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd");
|
|
|
|
QualType IdTy = getContext().getObjCIdType();
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *SelfAsId =
|
2008-09-24 04:04:31 +00:00
|
|
|
Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
|
2008-12-09 20:23:04 +00:00
|
|
|
llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
|
2008-09-24 04:04:31 +00:00
|
|
|
llvm::Value *True =
|
2009-07-24 23:12:58 +00:00
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
|
2008-09-24 04:04:31 +00:00
|
|
|
CallArgList Args;
|
|
|
|
Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy));
|
|
|
|
Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType()));
|
|
|
|
Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy));
|
|
|
|
Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy));
|
2009-02-03 23:43:59 +00:00
|
|
|
// FIXME: We shouldn't need to get the function info here, the
|
|
|
|
// runtime already should have computed it to build the function.
|
2010-02-05 21:31:56 +00:00
|
|
|
RValue RV = EmitCall(Types.getFunctionInfo(PD->getType(), Args,
|
2010-03-30 20:24:48 +00:00
|
|
|
FunctionType::ExtInfo()),
|
2009-12-24 19:25:24 +00:00
|
|
|
GetPropertyFn, ReturnValueSlot(), Args);
|
2008-09-24 04:04:31 +00:00
|
|
|
// We need to fix the type here. Ivars with copy & retain are
|
|
|
|
// always objects so we don't need to worry about complex or
|
|
|
|
// aggregates.
|
2009-09-09 15:08:12 +00:00
|
|
|
RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
|
2008-09-24 04:04:31 +00:00
|
|
|
Types.ConvertType(PD->getType())));
|
|
|
|
EmitReturnOfRValue(RV, PD->getType());
|
|
|
|
} else {
|
2010-03-25 21:56:43 +00:00
|
|
|
if (Ivar->getType()->isAnyComplexType()) {
|
2010-05-06 15:45:36 +00:00
|
|
|
LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
|
|
|
|
Ivar, 0);
|
2010-03-25 21:56:43 +00:00
|
|
|
ComplexPairTy Pair = LoadComplexFromAddr(LV.getAddress(),
|
|
|
|
LV.isVolatileQualified());
|
|
|
|
StoreComplexToAddr(Pair, ReturnValue, LV.isVolatileQualified());
|
|
|
|
}
|
|
|
|
else if (hasAggregateLLVMType(Ivar->getType())) {
|
2010-04-13 18:32:24 +00:00
|
|
|
bool IsStrong = false;
|
|
|
|
if ((IsAtomic || (IsStrong = IvarTypeWithAggrGCObjects(Ivar->getType())))
|
2010-04-13 00:38:05 +00:00
|
|
|
&& CurFnInfo->getReturnInfo().getKind() == ABIArgInfo::Indirect
|
|
|
|
&& CGM.getObjCRuntime().GetCopyStructFunction()) {
|
2010-05-06 15:45:36 +00:00
|
|
|
LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
|
|
|
|
Ivar, 0);
|
2010-04-13 00:38:05 +00:00
|
|
|
llvm::Value *GetCopyStructFn =
|
|
|
|
CGM.getObjCRuntime().GetCopyStructFunction();
|
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
// objc_copyStruct (ReturnValue, &structIvar,
|
|
|
|
// sizeof (Type of Ivar), isAtomic, false);
|
|
|
|
CallArgList Args;
|
|
|
|
RValue RV = RValue::get(Builder.CreateBitCast(ReturnValue,
|
|
|
|
Types.ConvertType(getContext().VoidPtrTy)));
|
|
|
|
Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
|
|
|
|
RV = RValue::get(Builder.CreateBitCast(LV.getAddress(),
|
|
|
|
Types.ConvertType(getContext().VoidPtrTy)));
|
|
|
|
Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
|
|
|
|
// sizeof (Type of Ivar)
|
|
|
|
uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8;
|
|
|
|
llvm::Value *SizeVal =
|
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size);
|
|
|
|
Args.push_back(std::make_pair(RValue::get(SizeVal),
|
|
|
|
getContext().LongTy));
|
|
|
|
llvm::Value *isAtomic =
|
2010-04-13 18:43:37 +00:00
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy),
|
|
|
|
IsAtomic ? 1 : 0);
|
2010-04-13 00:38:05 +00:00
|
|
|
Args.push_back(std::make_pair(RValue::get(isAtomic),
|
|
|
|
getContext().BoolTy));
|
2010-04-13 18:32:24 +00:00
|
|
|
llvm::Value *hasStrong =
|
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy),
|
|
|
|
IsStrong ? 1 : 0);
|
|
|
|
Args.push_back(std::make_pair(RValue::get(hasStrong),
|
|
|
|
getContext().BoolTy));
|
2010-04-13 00:38:05 +00:00
|
|
|
EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
|
|
|
|
FunctionType::ExtInfo()),
|
|
|
|
GetCopyStructFn, ReturnValueSlot(), Args);
|
|
|
|
}
|
2010-05-06 15:45:36 +00:00
|
|
|
else {
|
|
|
|
if (PID->getGetterCXXConstructor()) {
|
|
|
|
ReturnStmt *Stmt =
|
|
|
|
new (getContext()) ReturnStmt(SourceLocation(),
|
2010-05-15 06:01:05 +00:00
|
|
|
PID->getGetterCXXConstructor(),
|
|
|
|
0);
|
2010-05-06 15:45:36 +00:00
|
|
|
EmitReturnStmt(*Stmt);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
|
|
|
|
Ivar, 0);
|
|
|
|
EmitAggregateCopy(ReturnValue, LV.getAddress(), Ivar->getType());
|
|
|
|
}
|
|
|
|
}
|
2009-07-30 22:28:39 +00:00
|
|
|
} else {
|
2010-05-06 15:45:36 +00:00
|
|
|
LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(),
|
|
|
|
Ivar, 0);
|
2009-03-03 18:49:40 +00:00
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
RValue RV = EmitLoadOfLValue(LV, Ivar->getType());
|
|
|
|
RV = RValue::get(Builder.CreateBitCast(RV.getScalarVal(),
|
2009-09-09 15:08:12 +00:00
|
|
|
Types.ConvertType(PD->getType())));
|
2009-03-03 18:49:40 +00:00
|
|
|
EmitReturnOfRValue(RV, PD->getType());
|
|
|
|
}
|
2008-09-24 04:04:31 +00:00
|
|
|
}
|
2008-08-26 08:29:31 +00:00
|
|
|
|
|
|
|
FinishFunction();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// GenerateObjCSetter - Generate an Objective-C property setter
|
2009-01-10 22:55:25 +00:00
|
|
|
/// function. The given Decl must be an ObjCImplementationDecl. @synthesize
|
|
|
|
/// is illegal within a category.
|
2008-12-09 20:23:04 +00:00
|
|
|
void CodeGenFunction::GenerateObjCSetter(ObjCImplementationDecl *IMP,
|
|
|
|
const ObjCPropertyImplDecl *PID) {
|
2008-09-24 06:32:09 +00:00
|
|
|
ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
|
2008-08-26 08:29:31 +00:00
|
|
|
const ObjCPropertyDecl *PD = PID->getPropertyDecl();
|
|
|
|
ObjCMethodDecl *OMD = PD->getSetterMethodDecl();
|
|
|
|
assert(OMD && "Invalid call to generate setter (empty method)");
|
2009-01-10 21:06:09 +00:00
|
|
|
StartObjCMethod(OMD, IMP->getClassInterface());
|
2008-08-16 03:19:19 +00:00
|
|
|
|
2008-09-24 06:32:09 +00:00
|
|
|
bool IsCopy = PD->getSetterKind() == ObjCPropertyDecl::Copy;
|
2009-09-09 15:08:12 +00:00
|
|
|
bool IsAtomic =
|
2008-09-24 06:32:09 +00:00
|
|
|
!(PD->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_nonatomic);
|
|
|
|
|
|
|
|
// Determine if we should use an objc_setProperty call for
|
|
|
|
// this. Properties with 'copy' semantics always use it, as do
|
|
|
|
// non-atomic properties with 'release' semantics as long as we are
|
|
|
|
// not in gc-only mode.
|
|
|
|
if (IsCopy ||
|
|
|
|
(CGM.getLangOptions().getGCMode() != LangOptions::GCOnly &&
|
|
|
|
PD->getSetterKind() == ObjCPropertyDecl::Retain)) {
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *SetPropertyFn =
|
2008-09-24 06:32:09 +00:00
|
|
|
CGM.getObjCRuntime().GetPropertySetFunction();
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-09-24 06:32:09 +00:00
|
|
|
if (!SetPropertyFn) {
|
|
|
|
CGM.ErrorUnsupported(PID, "Obj-C getter requiring atomic copy");
|
|
|
|
FinishFunction();
|
|
|
|
return;
|
|
|
|
}
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
// Emit objc_setProperty((id) self, _cmd, offset, arg,
|
2008-09-24 06:32:09 +00:00
|
|
|
// <is-atomic>, <is-copy>).
|
|
|
|
// FIXME: Can't this be simpler? This might even be worse than the
|
|
|
|
// corresponding gcc code.
|
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
ValueDecl *Cmd = OMD->getCmdDecl();
|
|
|
|
llvm::Value *CmdVal = Builder.CreateLoad(LocalDeclMap[Cmd], "cmd");
|
|
|
|
QualType IdTy = getContext().getObjCIdType();
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *SelfAsId =
|
2008-09-24 06:32:09 +00:00
|
|
|
Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
|
2008-12-09 20:23:04 +00:00
|
|
|
llvm::Value *Offset = EmitIvarOffset(IMP->getClassInterface(), Ivar);
|
2009-02-20 18:43:26 +00:00
|
|
|
llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()];
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *ArgAsId =
|
2008-09-24 06:32:09 +00:00
|
|
|
Builder.CreateBitCast(Builder.CreateLoad(Arg, "arg"),
|
|
|
|
Types.ConvertType(IdTy));
|
|
|
|
llvm::Value *True =
|
2009-07-24 23:12:58 +00:00
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
|
2008-09-24 06:32:09 +00:00
|
|
|
llvm::Value *False =
|
2009-07-24 23:12:58 +00:00
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
|
2008-09-24 06:32:09 +00:00
|
|
|
CallArgList Args;
|
|
|
|
Args.push_back(std::make_pair(RValue::get(SelfAsId), IdTy));
|
|
|
|
Args.push_back(std::make_pair(RValue::get(CmdVal), Cmd->getType()));
|
|
|
|
Args.push_back(std::make_pair(RValue::get(Offset), getContext().LongTy));
|
|
|
|
Args.push_back(std::make_pair(RValue::get(ArgAsId), IdTy));
|
2009-09-09 15:08:12 +00:00
|
|
|
Args.push_back(std::make_pair(RValue::get(IsAtomic ? True : False),
|
2008-09-24 06:32:09 +00:00
|
|
|
getContext().BoolTy));
|
2009-09-09 15:08:12 +00:00
|
|
|
Args.push_back(std::make_pair(RValue::get(IsCopy ? True : False),
|
2008-09-24 06:32:09 +00:00
|
|
|
getContext().BoolTy));
|
2009-05-16 07:57:57 +00:00
|
|
|
// FIXME: We shouldn't need to get the function info here, the runtime
|
|
|
|
// already should have computed it to build the function.
|
2010-02-05 21:31:56 +00:00
|
|
|
EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
|
2010-03-30 20:24:48 +00:00
|
|
|
FunctionType::ExtInfo()),
|
|
|
|
SetPropertyFn,
|
2009-12-24 19:25:24 +00:00
|
|
|
ReturnValueSlot(), Args);
|
2010-04-13 00:38:05 +00:00
|
|
|
} else if (IsAtomic && hasAggregateLLVMType(Ivar->getType()) &&
|
|
|
|
!Ivar->getType()->isAnyComplexType() &&
|
|
|
|
IndirectObjCSetterArg(*CurFnInfo)
|
|
|
|
&& CGM.getObjCRuntime().GetCopyStructFunction()) {
|
|
|
|
// objc_copyStruct (&structIvar, &Arg,
|
|
|
|
// sizeof (struct something), true, false);
|
|
|
|
llvm::Value *GetCopyStructFn =
|
|
|
|
CGM.getObjCRuntime().GetCopyStructFunction();
|
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
CallArgList Args;
|
|
|
|
LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), Ivar, 0);
|
|
|
|
RValue RV = RValue::get(Builder.CreateBitCast(LV.getAddress(),
|
|
|
|
Types.ConvertType(getContext().VoidPtrTy)));
|
|
|
|
Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
|
|
|
|
llvm::Value *Arg = LocalDeclMap[*OMD->param_begin()];
|
|
|
|
llvm::Value *ArgAsPtrTy =
|
|
|
|
Builder.CreateBitCast(Arg,
|
|
|
|
Types.ConvertType(getContext().VoidPtrTy));
|
|
|
|
RV = RValue::get(ArgAsPtrTy);
|
|
|
|
Args.push_back(std::make_pair(RV, getContext().VoidPtrTy));
|
|
|
|
// sizeof (Type of Ivar)
|
|
|
|
uint64_t Size = getContext().getTypeSize(Ivar->getType()) / 8;
|
|
|
|
llvm::Value *SizeVal =
|
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().LongTy), Size);
|
|
|
|
Args.push_back(std::make_pair(RValue::get(SizeVal),
|
|
|
|
getContext().LongTy));
|
|
|
|
llvm::Value *True =
|
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 1);
|
|
|
|
Args.push_back(std::make_pair(RValue::get(True), getContext().BoolTy));
|
|
|
|
llvm::Value *False =
|
|
|
|
llvm::ConstantInt::get(Types.ConvertType(getContext().BoolTy), 0);
|
|
|
|
Args.push_back(std::make_pair(RValue::get(False), getContext().BoolTy));
|
|
|
|
EmitCall(Types.getFunctionInfo(getContext().VoidTy, Args,
|
|
|
|
FunctionType::ExtInfo()),
|
|
|
|
GetCopyStructFn, ReturnValueSlot(), Args);
|
2010-05-06 15:45:36 +00:00
|
|
|
} else if (PID->getSetterCXXAssignment()) {
|
|
|
|
EmitAnyExpr(PID->getSetterCXXAssignment(), (llvm::Value *)0, false, true,
|
|
|
|
false);
|
|
|
|
|
2008-09-24 06:32:09 +00:00
|
|
|
} else {
|
2009-10-27 19:21:30 +00:00
|
|
|
// FIXME: Find a clean way to avoid AST node creation.
|
2008-09-24 06:32:09 +00:00
|
|
|
SourceLocation Loc = PD->getLocation();
|
|
|
|
ValueDecl *Self = OMD->getSelfDecl();
|
|
|
|
ObjCIvarDecl *Ivar = PID->getPropertyIvarDecl();
|
|
|
|
DeclRefExpr Base(Self, Self->getType(), Loc);
|
2009-02-20 18:43:26 +00:00
|
|
|
ParmVarDecl *ArgDecl = *OMD->param_begin();
|
2008-09-24 06:32:09 +00:00
|
|
|
DeclRefExpr Arg(ArgDecl, ArgDecl->getType(), Loc);
|
2009-10-27 19:21:30 +00:00
|
|
|
ObjCIvarRefExpr IvarRef(Ivar, Ivar->getType(), Loc, &Base, true, true);
|
|
|
|
|
|
|
|
// The property type can differ from the ivar type in some situations with
|
|
|
|
// Objective-C pointer types, we can always bit cast the RHS in these cases.
|
|
|
|
if (getContext().getCanonicalType(Ivar->getType()) !=
|
|
|
|
getContext().getCanonicalType(ArgDecl->getType())) {
|
|
|
|
ImplicitCastExpr ArgCasted(Ivar->getType(), CastExpr::CK_BitCast, &Arg,
|
2010-04-24 16:57:13 +00:00
|
|
|
CXXBaseSpecifierArray(), false);
|
2009-10-27 19:21:30 +00:00
|
|
|
BinaryOperator Assign(&IvarRef, &ArgCasted, BinaryOperator::Assign,
|
|
|
|
Ivar->getType(), Loc);
|
|
|
|
EmitStmt(&Assign);
|
|
|
|
} else {
|
|
|
|
BinaryOperator Assign(&IvarRef, &Arg, BinaryOperator::Assign,
|
|
|
|
Ivar->getType(), Loc);
|
|
|
|
EmitStmt(&Assign);
|
|
|
|
}
|
2008-09-24 06:32:09 +00:00
|
|
|
}
|
2008-08-26 08:29:31 +00:00
|
|
|
|
|
|
|
FinishFunction();
|
2008-06-17 18:05:57 +00:00
|
|
|
}
|
|
|
|
|
2010-04-28 21:28:56 +00:00
|
|
|
void CodeGenFunction::GenerateObjCCtorDtorMethod(ObjCImplementationDecl *IMP,
|
|
|
|
ObjCMethodDecl *MD,
|
|
|
|
bool ctor) {
|
|
|
|
llvm::SmallVector<CXXBaseOrMemberInitializer *, 8> IvarInitializers;
|
|
|
|
MD->createImplicitParams(CGM.getContext(), IMP->getClassInterface());
|
|
|
|
StartObjCMethod(MD, IMP->getClassInterface());
|
|
|
|
for (ObjCImplementationDecl::init_const_iterator B = IMP->init_begin(),
|
|
|
|
E = IMP->init_end(); B != E; ++B) {
|
|
|
|
CXXBaseOrMemberInitializer *Member = (*B);
|
|
|
|
IvarInitializers.push_back(Member);
|
|
|
|
}
|
|
|
|
if (ctor) {
|
|
|
|
for (unsigned I = 0, E = IvarInitializers.size(); I != E; ++I) {
|
|
|
|
CXXBaseOrMemberInitializer *IvarInit = IvarInitializers[I];
|
|
|
|
FieldDecl *Field = IvarInit->getMember();
|
|
|
|
QualType FieldType = Field->getType();
|
|
|
|
ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field);
|
2010-04-28 22:30:33 +00:00
|
|
|
LValue LV = EmitLValueForIvar(TypeOfSelfObject(),
|
|
|
|
LoadObjCSelf(), Ivar, 0);
|
2010-04-28 21:28:56 +00:00
|
|
|
EmitAggExpr(IvarInit->getInit(), LV.getAddress(),
|
|
|
|
LV.isVolatileQualified(), false, true);
|
|
|
|
}
|
|
|
|
// constructor returns 'self'.
|
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
QualType IdTy(CGM.getContext().getObjCIdType());
|
|
|
|
llvm::Value *SelfAsId =
|
|
|
|
Builder.CreateBitCast(LoadObjCSelf(), Types.ConvertType(IdTy));
|
|
|
|
EmitReturnOfRValue(RValue::get(SelfAsId), IdTy);
|
2010-05-06 00:20:39 +00:00
|
|
|
} else {
|
2010-04-28 21:28:56 +00:00
|
|
|
// dtor
|
|
|
|
for (size_t i = IvarInitializers.size(); i > 0; --i) {
|
|
|
|
FieldDecl *Field = IvarInitializers[i - 1]->getMember();
|
|
|
|
QualType FieldType = Field->getType();
|
2010-04-28 22:30:33 +00:00
|
|
|
const ConstantArrayType *Array =
|
|
|
|
getContext().getAsConstantArrayType(FieldType);
|
|
|
|
if (Array)
|
|
|
|
FieldType = getContext().getBaseElementType(FieldType);
|
|
|
|
|
2010-04-28 21:28:56 +00:00
|
|
|
ObjCIvarDecl *Ivar = cast<ObjCIvarDecl>(Field);
|
|
|
|
LValue LV = EmitLValueForIvar(TypeOfSelfObject(),
|
|
|
|
LoadObjCSelf(), Ivar, 0);
|
|
|
|
const RecordType *RT = FieldType->getAs<RecordType>();
|
|
|
|
CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
|
2010-05-04 19:29:32 +00:00
|
|
|
CXXDestructorDecl *Dtor = FieldClassDecl->getDestructor(getContext());
|
2010-05-06 00:20:39 +00:00
|
|
|
if (!Dtor->isTrivial()) {
|
2010-05-04 19:29:32 +00:00
|
|
|
if (Array) {
|
|
|
|
const llvm::Type *BasePtr = ConvertType(FieldType);
|
|
|
|
BasePtr = llvm::PointerType::getUnqual(BasePtr);
|
|
|
|
llvm::Value *BaseAddrPtr =
|
|
|
|
Builder.CreateBitCast(LV.getAddress(), BasePtr);
|
|
|
|
EmitCXXAggrDestructorCall(Dtor,
|
|
|
|
Array, BaseAddrPtr);
|
2010-05-06 00:20:39 +00:00
|
|
|
} else {
|
2010-05-04 19:29:32 +00:00
|
|
|
EmitCXXDestructorCall(Dtor,
|
|
|
|
Dtor_Complete, /*ForVirtualBase=*/false,
|
|
|
|
LV.getAddress());
|
2010-05-06 00:20:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-28 21:28:56 +00:00
|
|
|
}
|
|
|
|
FinishFunction();
|
|
|
|
}
|
|
|
|
|
2010-04-13 00:38:05 +00:00
|
|
|
bool CodeGenFunction::IndirectObjCSetterArg(const CGFunctionInfo &FI) {
|
|
|
|
CGFunctionInfo::const_arg_iterator it = FI.arg_begin();
|
|
|
|
it++; it++;
|
|
|
|
const ABIArgInfo &AI = it->info;
|
|
|
|
// FIXME. Is this sufficient check?
|
|
|
|
return (AI.getKind() == ABIArgInfo::Indirect);
|
|
|
|
}
|
|
|
|
|
2010-04-13 18:32:24 +00:00
|
|
|
bool CodeGenFunction::IvarTypeWithAggrGCObjects(QualType Ty) {
|
|
|
|
if (CGM.getLangOptions().getGCMode() == LangOptions::NonGC)
|
|
|
|
return false;
|
|
|
|
if (const RecordType *FDTTy = Ty.getTypePtr()->getAs<RecordType>())
|
|
|
|
return FDTTy->getDecl()->hasObjectMember();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-09-24 04:04:31 +00:00
|
|
|
llvm::Value *CodeGenFunction::LoadObjCSelf() {
|
2008-08-16 03:19:19 +00:00
|
|
|
const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
|
|
|
|
return Builder.CreateLoad(LocalDeclMap[OMD->getSelfDecl()], "self");
|
2008-06-17 18:05:57 +00:00
|
|
|
}
|
|
|
|
|
2009-02-03 00:09:52 +00:00
|
|
|
QualType CodeGenFunction::TypeOfSelfObject() {
|
|
|
|
const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
|
|
|
|
ImplicitParamDecl *selfDecl = OMD->getSelfDecl();
|
2009-07-10 23:34:53 +00:00
|
|
|
const ObjCObjectPointerType *PTy = cast<ObjCObjectPointerType>(
|
|
|
|
getContext().getCanonicalType(selfDecl->getType()));
|
2009-02-03 00:09:52 +00:00
|
|
|
return PTy->getPointeeType();
|
|
|
|
}
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
RValue CodeGenFunction::EmitObjCSuperPropertyGet(const Expr *Exp,
|
2010-05-22 01:48:05 +00:00
|
|
|
const Selector &S,
|
|
|
|
ReturnValueSlot Return) {
|
2009-03-20 19:18:21 +00:00
|
|
|
llvm::Value *Receiver = LoadObjCSelf();
|
|
|
|
const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
|
|
|
|
bool isClassMessage = OMD->isClassMethod();
|
|
|
|
bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
|
2009-09-09 15:08:12 +00:00
|
|
|
return CGM.getObjCRuntime().GenerateMessageSendSuper(*this,
|
2010-05-22 01:48:05 +00:00
|
|
|
Return,
|
2009-03-20 19:18:21 +00:00
|
|
|
Exp->getType(),
|
|
|
|
S,
|
|
|
|
OMD->getClassInterface(),
|
|
|
|
isCategoryImpl,
|
|
|
|
Receiver,
|
|
|
|
isClassMessage,
|
|
|
|
CallArgList());
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2009-03-20 19:18:21 +00:00
|
|
|
}
|
|
|
|
|
2010-05-22 01:48:05 +00:00
|
|
|
RValue CodeGenFunction::EmitObjCPropertyGet(const Expr *Exp,
|
|
|
|
ReturnValueSlot Return) {
|
2009-09-01 17:02:21 +00:00
|
|
|
Exp = Exp->IgnoreParens();
|
2008-11-22 22:30:21 +00:00
|
|
|
// FIXME: Split it into two separate routines.
|
2008-11-22 18:39:36 +00:00
|
|
|
if (const ObjCPropertyRefExpr *E = dyn_cast<ObjCPropertyRefExpr>(Exp)) {
|
|
|
|
Selector S = E->getProperty()->getGetterName();
|
2009-03-20 19:18:21 +00:00
|
|
|
if (isa<ObjCSuperExpr>(E->getBase()))
|
2010-05-22 01:48:05 +00:00
|
|
|
return EmitObjCSuperPropertyGet(E, S, Return);
|
2008-11-22 18:39:36 +00:00
|
|
|
return CGM.getObjCRuntime().
|
2010-05-22 01:48:05 +00:00
|
|
|
GenerateMessageSend(*this, Return, Exp->getType(), S,
|
2009-09-09 15:08:12 +00:00
|
|
|
EmitScalarExpr(E->getBase()),
|
2010-04-28 19:33:36 +00:00
|
|
|
CallArgList());
|
2009-07-30 22:28:39 +00:00
|
|
|
} else {
|
2009-09-09 15:08:12 +00:00
|
|
|
const ObjCImplicitSetterGetterRefExpr *KE =
|
2009-08-20 17:02:02 +00:00
|
|
|
cast<ObjCImplicitSetterGetterRefExpr>(Exp);
|
2009-01-16 01:50:29 +00:00
|
|
|
Selector S = KE->getGetterMethod()->getSelector();
|
2009-03-10 18:03:11 +00:00
|
|
|
llvm::Value *Receiver;
|
2009-08-18 21:37:33 +00:00
|
|
|
if (KE->getInterfaceDecl()) {
|
|
|
|
const ObjCInterfaceDecl *OID = KE->getInterfaceDecl();
|
2009-03-10 18:03:11 +00:00
|
|
|
Receiver = CGM.getObjCRuntime().GetClass(Builder, OID);
|
2009-07-30 22:28:39 +00:00
|
|
|
} else if (isa<ObjCSuperExpr>(KE->getBase()))
|
2010-05-22 01:48:05 +00:00
|
|
|
return EmitObjCSuperPropertyGet(KE, S, Return);
|
2009-09-09 15:08:12 +00:00
|
|
|
else
|
2009-03-10 18:03:11 +00:00
|
|
|
Receiver = EmitScalarExpr(KE->getBase());
|
2008-11-22 22:30:21 +00:00
|
|
|
return CGM.getObjCRuntime().
|
2010-05-22 01:48:05 +00:00
|
|
|
GenerateMessageSend(*this, Return, Exp->getType(), S,
|
2009-09-09 15:08:12 +00:00
|
|
|
Receiver,
|
2010-04-28 19:33:36 +00:00
|
|
|
CallArgList(), KE->getInterfaceDecl());
|
2008-11-22 18:39:36 +00:00
|
|
|
}
|
2008-08-27 06:57:25 +00:00
|
|
|
}
|
|
|
|
|
2009-03-20 19:18:21 +00:00
|
|
|
void CodeGenFunction::EmitObjCSuperPropertySet(const Expr *Exp,
|
|
|
|
const Selector &S,
|
|
|
|
RValue Src) {
|
|
|
|
CallArgList Args;
|
|
|
|
llvm::Value *Receiver = LoadObjCSelf();
|
|
|
|
const ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(CurFuncDecl);
|
|
|
|
bool isClassMessage = OMD->isClassMethod();
|
|
|
|
bool isCategoryImpl = isa<ObjCCategoryImplDecl>(OMD->getDeclContext());
|
|
|
|
Args.push_back(std::make_pair(Src, Exp->getType()));
|
2009-09-09 15:08:12 +00:00
|
|
|
CGM.getObjCRuntime().GenerateMessageSendSuper(*this,
|
2010-05-22 01:48:05 +00:00
|
|
|
ReturnValueSlot(),
|
2009-03-20 19:18:21 +00:00
|
|
|
Exp->getType(),
|
|
|
|
S,
|
|
|
|
OMD->getClassInterface(),
|
|
|
|
isCategoryImpl,
|
|
|
|
Receiver,
|
|
|
|
isClassMessage,
|
|
|
|
Args);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-11-22 22:30:21 +00:00
|
|
|
void CodeGenFunction::EmitObjCPropertySet(const Expr *Exp,
|
2008-08-29 08:11:39 +00:00
|
|
|
RValue Src) {
|
2008-11-22 22:30:21 +00:00
|
|
|
// FIXME: Split it into two separate routines.
|
|
|
|
if (const ObjCPropertyRefExpr *E = dyn_cast<ObjCPropertyRefExpr>(Exp)) {
|
|
|
|
Selector S = E->getProperty()->getSetterName();
|
2009-03-20 19:18:21 +00:00
|
|
|
if (isa<ObjCSuperExpr>(E->getBase())) {
|
|
|
|
EmitObjCSuperPropertySet(E, S, Src);
|
|
|
|
return;
|
2009-09-09 15:08:12 +00:00
|
|
|
}
|
2008-11-22 22:30:21 +00:00
|
|
|
CallArgList Args;
|
|
|
|
Args.push_back(std::make_pair(Src, E->getType()));
|
2010-05-22 01:48:05 +00:00
|
|
|
CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
|
|
|
|
getContext().VoidTy, S,
|
2009-09-09 15:08:12 +00:00
|
|
|
EmitScalarExpr(E->getBase()),
|
2010-04-28 19:33:36 +00:00
|
|
|
Args);
|
2009-09-09 15:08:12 +00:00
|
|
|
} else if (const ObjCImplicitSetterGetterRefExpr *E =
|
2009-08-20 17:02:02 +00:00
|
|
|
dyn_cast<ObjCImplicitSetterGetterRefExpr>(Exp)) {
|
2008-11-22 22:30:21 +00:00
|
|
|
Selector S = E->getSetterMethod()->getSelector();
|
|
|
|
CallArgList Args;
|
2009-03-10 18:03:11 +00:00
|
|
|
llvm::Value *Receiver;
|
2009-08-18 21:37:33 +00:00
|
|
|
if (E->getInterfaceDecl()) {
|
|
|
|
const ObjCInterfaceDecl *OID = E->getInterfaceDecl();
|
2009-03-10 18:03:11 +00:00
|
|
|
Receiver = CGM.getObjCRuntime().GetClass(Builder, OID);
|
2009-07-30 22:28:39 +00:00
|
|
|
} else if (isa<ObjCSuperExpr>(E->getBase())) {
|
2009-03-20 19:18:21 +00:00
|
|
|
EmitObjCSuperPropertySet(E, S, Src);
|
2009-03-20 17:22:23 +00:00
|
|
|
return;
|
2009-07-30 22:28:39 +00:00
|
|
|
} else
|
2009-03-10 18:03:11 +00:00
|
|
|
Receiver = EmitScalarExpr(E->getBase());
|
2008-11-22 22:30:21 +00:00
|
|
|
Args.push_back(std::make_pair(Src, E->getType()));
|
2010-05-22 01:48:05 +00:00
|
|
|
CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
|
|
|
|
getContext().VoidTy, S,
|
2009-09-09 15:08:12 +00:00
|
|
|
Receiver,
|
2010-04-28 19:33:36 +00:00
|
|
|
Args, E->getInterfaceDecl());
|
2009-07-30 22:28:39 +00:00
|
|
|
} else
|
2008-11-22 22:30:21 +00:00
|
|
|
assert (0 && "bad expression node in EmitObjCPropertySet");
|
2008-08-29 08:11:39 +00:00
|
|
|
}
|
|
|
|
|
2009-03-22 21:03:39 +00:00
|
|
|
void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Constant *EnumerationMutationFn =
|
2008-09-24 04:04:31 +00:00
|
|
|
CGM.getObjCRuntime().EnumerationMutationFunction();
|
2008-08-31 02:33:12 +00:00
|
|
|
llvm::Value *DeclAddress;
|
|
|
|
QualType ElementTy;
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-09-24 04:04:31 +00:00
|
|
|
if (!EnumerationMutationFn) {
|
|
|
|
CGM.ErrorUnsupported(&S, "Obj-C fast enumeration for this runtime");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
if (const DeclStmt *SD = dyn_cast<DeclStmt>(S.getElement())) {
|
|
|
|
EmitStmt(SD);
|
2008-11-11 23:11:34 +00:00
|
|
|
assert(HaveInsertPoint() && "DeclStmt destroyed insert point!");
|
2009-03-28 06:33:19 +00:00
|
|
|
const Decl* D = SD->getSingleDecl();
|
2008-10-06 20:59:48 +00:00
|
|
|
ElementTy = cast<ValueDecl>(D)->getType();
|
2009-09-09 15:08:12 +00:00
|
|
|
DeclAddress = LocalDeclMap[D];
|
2008-08-31 02:33:12 +00:00
|
|
|
} else {
|
|
|
|
ElementTy = cast<Expr>(S.getElement())->getType();
|
|
|
|
DeclAddress = 0;
|
|
|
|
}
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// Fast enumeration state.
|
|
|
|
QualType StateTy = getContext().getObjCFastEnumerationStateType();
|
2010-02-09 02:48:28 +00:00
|
|
|
llvm::Value *StatePtr = CreateMemTemp(StateTy, "state.ptr");
|
2010-05-21 22:17:48 +00:00
|
|
|
EmitMemSetToZero(StatePtr, StateTy);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// Number of elements in the items array.
|
2008-08-31 04:05:03 +00:00
|
|
|
static const unsigned NumItems = 16;
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// Get selector
|
2010-03-30 11:36:44 +00:00
|
|
|
IdentifierInfo *II[] = {
|
|
|
|
&CGM.getContext().Idents.get("countByEnumeratingWithState"),
|
|
|
|
&CGM.getContext().Idents.get("objects"),
|
|
|
|
&CGM.getContext().Idents.get("count")
|
|
|
|
};
|
|
|
|
Selector FastEnumSel =
|
|
|
|
CGM.getContext().Selectors.getSelector(llvm::array_lengthof(II), &II[0]);
|
2008-08-31 02:33:12 +00:00
|
|
|
|
|
|
|
QualType ItemsTy =
|
|
|
|
getContext().getConstantArrayType(getContext().getObjCIdType(),
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::APInt(32, NumItems),
|
2008-08-31 02:33:12 +00:00
|
|
|
ArrayType::Normal, 0);
|
2010-02-09 02:48:28 +00:00
|
|
|
llvm::Value *ItemsPtr = CreateMemTemp(ItemsTy, "items.ptr");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
llvm::Value *Collection = EmitScalarExpr(S.getCollection());
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
CallArgList Args;
|
2009-09-09 15:08:12 +00:00
|
|
|
Args.push_back(std::make_pair(RValue::get(StatePtr),
|
2008-08-31 02:33:12 +00:00
|
|
|
getContext().getPointerType(StateTy)));
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
Args.push_back(std::make_pair(RValue::get(ItemsPtr),
|
2008-08-31 02:33:12 +00:00
|
|
|
getContext().getPointerType(ItemsTy)));
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
const llvm::Type *UnsignedLongLTy = ConvertType(getContext().UnsignedLongTy);
|
2009-07-24 23:12:58 +00:00
|
|
|
llvm::Constant *Count = llvm::ConstantInt::get(UnsignedLongLTy, NumItems);
|
2009-09-09 15:08:12 +00:00
|
|
|
Args.push_back(std::make_pair(RValue::get(Count),
|
2008-09-09 01:06:48 +00:00
|
|
|
getContext().UnsignedLongTy));
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
RValue CountRV =
|
2010-05-22 01:48:05 +00:00
|
|
|
CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
|
2008-08-31 02:33:12 +00:00
|
|
|
getContext().UnsignedLongTy,
|
|
|
|
FastEnumSel,
|
2010-04-28 19:33:36 +00:00
|
|
|
Collection, Args);
|
2008-08-31 02:33:12 +00:00
|
|
|
|
2010-02-09 02:48:28 +00:00
|
|
|
llvm::Value *LimitPtr = CreateMemTemp(getContext().UnsignedLongTy,
|
|
|
|
"limit.ptr");
|
2008-08-31 02:33:12 +00:00
|
|
|
Builder.CreateStore(CountRV.getScalarVal(), LimitPtr);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-11-11 02:29:29 +00:00
|
|
|
llvm::BasicBlock *NoElements = createBasicBlock("noelements");
|
|
|
|
llvm::BasicBlock *SetStartMutations = createBasicBlock("setstartmutations");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
llvm::Value *Limit = Builder.CreateLoad(LimitPtr);
|
2009-07-31 20:28:54 +00:00
|
|
|
llvm::Value *Zero = llvm::Constant::getNullValue(UnsignedLongLTy);
|
2008-08-31 02:33:12 +00:00
|
|
|
|
|
|
|
llvm::Value *IsZero = Builder.CreateICmpEQ(Limit, Zero, "iszero");
|
2008-08-31 04:05:03 +00:00
|
|
|
Builder.CreateCondBr(IsZero, NoElements, SetStartMutations);
|
2008-08-31 02:33:12 +00:00
|
|
|
|
2008-08-31 04:05:03 +00:00
|
|
|
EmitBlock(SetStartMutations);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2010-02-09 02:48:28 +00:00
|
|
|
llvm::Value *StartMutationsPtr = CreateMemTemp(getContext().UnsignedLongTy);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
llvm::Value *StateMutationsPtrPtr =
|
2008-08-31 04:05:03 +00:00
|
|
|
Builder.CreateStructGEP(StatePtr, 2, "mutationsptr.ptr");
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr,
|
2008-08-31 04:05:03 +00:00
|
|
|
"mutationsptr");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
llvm::Value *StateMutations = Builder.CreateLoad(StateMutationsPtr,
|
2008-08-31 04:05:03 +00:00
|
|
|
"mutations");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 04:05:03 +00:00
|
|
|
Builder.CreateStore(StateMutations, StartMutationsPtr);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-11-11 02:29:29 +00:00
|
|
|
llvm::BasicBlock *LoopStart = createBasicBlock("loopstart");
|
2008-08-31 02:33:12 +00:00
|
|
|
EmitBlock(LoopStart);
|
|
|
|
|
2010-02-09 02:48:28 +00:00
|
|
|
llvm::Value *CounterPtr = CreateMemTemp(getContext().UnsignedLongTy,
|
|
|
|
"counter.ptr");
|
2008-08-31 02:33:12 +00:00
|
|
|
Builder.CreateStore(Zero, CounterPtr);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
llvm::BasicBlock *LoopBody = createBasicBlock("loopbody");
|
2008-08-31 02:33:12 +00:00
|
|
|
EmitBlock(LoopBody);
|
|
|
|
|
2008-08-31 04:05:03 +00:00
|
|
|
StateMutationsPtr = Builder.CreateLoad(StateMutationsPtrPtr, "mutationsptr");
|
|
|
|
StateMutations = Builder.CreateLoad(StateMutationsPtr, "statemutations");
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *StartMutations = Builder.CreateLoad(StartMutationsPtr,
|
2008-08-31 04:05:03 +00:00
|
|
|
"mutations");
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *MutationsEqual = Builder.CreateICmpEQ(StateMutations,
|
2008-08-31 04:05:03 +00:00
|
|
|
StartMutations,
|
|
|
|
"tobool");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
|
2008-11-11 02:29:29 +00:00
|
|
|
llvm::BasicBlock *WasMutated = createBasicBlock("wasmutated");
|
|
|
|
llvm::BasicBlock *WasNotMutated = createBasicBlock("wasnotmutated");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 04:05:03 +00:00
|
|
|
Builder.CreateCondBr(MutationsEqual, WasNotMutated, WasMutated);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 04:05:03 +00:00
|
|
|
EmitBlock(WasMutated);
|
|
|
|
llvm::Value *V =
|
2009-09-09 15:08:12 +00:00
|
|
|
Builder.CreateBitCast(Collection,
|
2008-08-31 04:05:03 +00:00
|
|
|
ConvertType(getContext().getObjCIdType()),
|
|
|
|
"tmp");
|
2009-02-03 23:55:40 +00:00
|
|
|
CallArgList Args2;
|
2009-09-09 15:08:12 +00:00
|
|
|
Args2.push_back(std::make_pair(RValue::get(V),
|
2009-02-03 23:55:40 +00:00
|
|
|
getContext().getObjCIdType()));
|
2009-05-16 07:57:57 +00:00
|
|
|
// FIXME: We shouldn't need to get the function info here, the runtime already
|
|
|
|
// should have computed it to build the function.
|
2010-02-05 21:31:56 +00:00
|
|
|
EmitCall(CGM.getTypes().getFunctionInfo(getContext().VoidTy, Args2,
|
2010-03-30 20:24:48 +00:00
|
|
|
FunctionType::ExtInfo()),
|
2009-12-24 19:25:24 +00:00
|
|
|
EnumerationMutationFn, ReturnValueSlot(), Args2);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 04:05:03 +00:00
|
|
|
EmitBlock(WasNotMutated);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
llvm::Value *StateItemsPtr =
|
2008-08-31 02:33:12 +00:00
|
|
|
Builder.CreateStructGEP(StatePtr, 1, "stateitems.ptr");
|
|
|
|
|
|
|
|
llvm::Value *Counter = Builder.CreateLoad(CounterPtr, "counter");
|
|
|
|
|
|
|
|
llvm::Value *EnumStateItems = Builder.CreateLoad(StateItemsPtr,
|
|
|
|
"stateitems");
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
llvm::Value *CurrentItemPtr =
|
2008-08-31 02:33:12 +00:00
|
|
|
Builder.CreateGEP(EnumStateItems, Counter, "currentitem.ptr");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
llvm::Value *CurrentItem = Builder.CreateLoad(CurrentItemPtr, "currentitem");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// Cast the item to the right type.
|
|
|
|
CurrentItem = Builder.CreateBitCast(CurrentItem,
|
|
|
|
ConvertType(ElementTy), "tmp");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
if (!DeclAddress) {
|
|
|
|
LValue LV = EmitLValue(cast<Expr>(S.getElement()));
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// Set the value to null.
|
|
|
|
Builder.CreateStore(CurrentItem, LV.getAddress());
|
|
|
|
} else
|
|
|
|
Builder.CreateStore(CurrentItem, DeclAddress);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// Increment the counter.
|
2009-09-09 15:08:12 +00:00
|
|
|
Counter = Builder.CreateAdd(Counter,
|
2009-07-24 23:12:58 +00:00
|
|
|
llvm::ConstantInt::get(UnsignedLongLTy, 1));
|
2008-08-31 02:33:12 +00:00
|
|
|
Builder.CreateStore(Counter, CounterPtr);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-11-11 02:29:29 +00:00
|
|
|
llvm::BasicBlock *LoopEnd = createBasicBlock("loopend");
|
|
|
|
llvm::BasicBlock *AfterBody = createBasicBlock("afterbody");
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2009-02-10 05:52:02 +00:00
|
|
|
BreakContinueStack.push_back(BreakContinue(LoopEnd, AfterBody));
|
2008-08-31 02:33:12 +00:00
|
|
|
|
|
|
|
EmitStmt(S.getBody());
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
BreakContinueStack.pop_back();
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
EmitBlock(AfterBody);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-11-11 02:29:29 +00:00
|
|
|
llvm::BasicBlock *FetchMore = createBasicBlock("fetchmore");
|
2009-01-06 18:56:31 +00:00
|
|
|
|
|
|
|
Counter = Builder.CreateLoad(CounterPtr);
|
|
|
|
Limit = Builder.CreateLoad(LimitPtr);
|
2008-08-31 02:33:12 +00:00
|
|
|
llvm::Value *IsLess = Builder.CreateICmpULT(Counter, Limit, "isless");
|
2008-09-04 21:54:37 +00:00
|
|
|
Builder.CreateCondBr(IsLess, LoopBody, FetchMore);
|
2008-08-31 02:33:12 +00:00
|
|
|
|
|
|
|
// Fetch more elements.
|
|
|
|
EmitBlock(FetchMore);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
|
|
|
CountRV =
|
2010-05-22 01:48:05 +00:00
|
|
|
CGM.getObjCRuntime().GenerateMessageSend(*this, ReturnValueSlot(),
|
2008-08-31 02:33:12 +00:00
|
|
|
getContext().UnsignedLongTy,
|
2009-09-09 15:08:12 +00:00
|
|
|
FastEnumSel,
|
2010-04-28 19:33:36 +00:00
|
|
|
Collection, Args);
|
2008-08-31 02:33:12 +00:00
|
|
|
Builder.CreateStore(CountRV.getScalarVal(), LimitPtr);
|
|
|
|
Limit = Builder.CreateLoad(LimitPtr);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
IsZero = Builder.CreateICmpEQ(Limit, Zero, "iszero");
|
|
|
|
Builder.CreateCondBr(IsZero, NoElements, LoopStart);
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// No more elements.
|
|
|
|
EmitBlock(NoElements);
|
|
|
|
|
|
|
|
if (!DeclAddress) {
|
|
|
|
// If the element was not a declaration, set it to be null.
|
|
|
|
|
|
|
|
LValue LV = EmitLValue(cast<Expr>(S.getElement()));
|
2009-09-09 15:08:12 +00:00
|
|
|
|
2008-08-31 02:33:12 +00:00
|
|
|
// Set the value to null.
|
2009-07-31 20:28:54 +00:00
|
|
|
Builder.CreateStore(llvm::Constant::getNullValue(ConvertType(ElementTy)),
|
2008-08-31 02:33:12 +00:00
|
|
|
LV.getAddress());
|
|
|
|
}
|
|
|
|
|
|
|
|
EmitBlock(LoopEnd);
|
2008-08-30 19:51:14 +00:00
|
|
|
}
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
void CodeGenFunction::EmitObjCAtTryStmt(const ObjCAtTryStmt &S) {
|
2008-11-21 00:49:24 +00:00
|
|
|
CGM.getObjCRuntime().EmitTryOrSynchronizedStmt(*this, S);
|
2008-09-09 10:04:29 +00:00
|
|
|
}
|
|
|
|
|
2009-09-09 15:08:12 +00:00
|
|
|
void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) {
|
2008-09-09 10:04:29 +00:00
|
|
|
CGM.getObjCRuntime().EmitThrowStmt(*this, S);
|
|
|
|
}
|
|
|
|
|
2008-11-15 21:26:17 +00:00
|
|
|
void CodeGenFunction::EmitObjCAtSynchronizedStmt(
|
2009-09-09 15:08:12 +00:00
|
|
|
const ObjCAtSynchronizedStmt &S) {
|
2008-11-21 00:49:24 +00:00
|
|
|
CGM.getObjCRuntime().EmitTryOrSynchronizedStmt(*this, S);
|
2008-11-15 21:26:17 +00:00
|
|
|
}
|
|
|
|
|
2008-04-09 15:51:31 +00:00
|
|
|
CGObjCRuntime::~CGObjCRuntime() {}
|