2008-06-01 18:13:53 +04:00
|
|
|
//===------- CGObjCGNU.cpp - Emit LLVM Code from ASTs for a Module --------===//
|
2008-03-01 11:50:34 +03:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-06-01 18:13:53 +04:00
|
|
|
// This provides Objective-C code generation targetting the GNU runtime. The
|
|
|
|
// class in this file generates structures used by the GNU Objective-C runtime
|
|
|
|
// library. These structures are defined in objc/objc.h and objc/objc-api.h in
|
|
|
|
// the GNU runtime distribution.
|
2008-03-01 11:50:34 +03:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CGObjCRuntime.h"
|
2008-06-26 08:19:03 +04:00
|
|
|
#include "CodeGenModule.h"
|
2008-08-23 07:46:30 +04:00
|
|
|
#include "CodeGenFunction.h"
|
2009-05-08 04:11:50 +04:00
|
|
|
|
2008-06-26 08:19:03 +04:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2008-08-11 08:54:23 +04:00
|
|
|
#include "clang/AST/Decl.h"
|
2008-08-13 04:59:25 +04:00
|
|
|
#include "clang/AST/DeclObjC.h"
|
2009-05-03 14:46:44 +04:00
|
|
|
#include "clang/AST/RecordLayout.h"
|
2009-04-26 05:32:48 +04:00
|
|
|
#include "clang/AST/StmtObjC.h"
|
2009-05-08 04:11:50 +04:00
|
|
|
|
|
|
|
#include "llvm/Intrinsics.h"
|
2008-03-01 11:50:34 +03:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2008-06-01 18:13:53 +04:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2008-08-16 02:20:32 +04:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
#include "llvm/Target/TargetData.h"
|
2009-05-08 04:11:50 +04:00
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
#include <map>
|
2009-01-27 08:06:01 +03:00
|
|
|
|
|
|
|
|
2008-06-26 08:19:03 +04:00
|
|
|
using namespace clang;
|
2008-09-09 05:06:48 +04:00
|
|
|
using namespace CodeGen;
|
2008-06-01 18:13:53 +04:00
|
|
|
using llvm::dyn_cast;
|
|
|
|
|
|
|
|
// The version of the runtime that this class targets. Must match the version
|
|
|
|
// in the runtime.
|
|
|
|
static const int RuntimeVersion = 8;
|
2009-05-20 22:41:51 +04:00
|
|
|
static const int NonFragileRuntimeVersion = 9;
|
2008-06-01 18:13:53 +04:00
|
|
|
static const int ProtocolVersion = 2;
|
2008-03-01 11:50:34 +03:00
|
|
|
|
|
|
|
namespace {
|
2008-06-26 08:19:03 +04:00
|
|
|
class CGObjCGNU : public CodeGen::CGObjCRuntime {
|
2008-03-01 11:50:34 +03:00
|
|
|
private:
|
2008-06-26 08:19:03 +04:00
|
|
|
CodeGen::CodeGenModule &CGM;
|
2008-03-01 11:50:34 +03:00
|
|
|
llvm::Module &TheModule;
|
2009-01-27 08:06:01 +03:00
|
|
|
const llvm::PointerType *SelectorTy;
|
|
|
|
const llvm::PointerType *PtrToInt8Ty;
|
2009-02-04 23:31:19 +03:00
|
|
|
const llvm::FunctionType *IMPTy;
|
2009-01-27 08:06:01 +03:00
|
|
|
const llvm::PointerType *IdTy;
|
|
|
|
const llvm::IntegerType *IntTy;
|
|
|
|
const llvm::PointerType *PtrTy;
|
|
|
|
const llvm::IntegerType *LongTy;
|
|
|
|
const llvm::PointerType *PtrToIntTy;
|
2009-05-04 19:31:17 +04:00
|
|
|
llvm::GlobalAlias *ClassPtrAlias;
|
|
|
|
llvm::GlobalAlias *MetaClassPtrAlias;
|
2008-06-01 18:13:53 +04:00
|
|
|
std::vector<llvm::Constant*> Classes;
|
|
|
|
std::vector<llvm::Constant*> Categories;
|
|
|
|
std::vector<llvm::Constant*> ConstantStrings;
|
|
|
|
llvm::Function *LoadFunction;
|
|
|
|
llvm::StringMap<llvm::Constant*> ExistingProtocols;
|
|
|
|
typedef std::pair<std::string, std::string> TypedSelector;
|
|
|
|
std::map<TypedSelector, llvm::GlobalAlias*> TypedSelectors;
|
|
|
|
llvm::StringMap<llvm::GlobalAlias*> UntypedSelectors;
|
|
|
|
// Some zeros used for GEPs in lots of places.
|
|
|
|
llvm::Constant *Zeros[2];
|
|
|
|
llvm::Constant *NULLPtr;
|
|
|
|
private:
|
|
|
|
llvm::Constant *GenerateIvarList(
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &IvarNames,
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &IvarTypes,
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &IvarOffsets);
|
|
|
|
llvm::Constant *GenerateMethodList(const std::string &ClassName,
|
|
|
|
const std::string &CategoryName,
|
2008-06-26 09:08:00 +04:00
|
|
|
const llvm::SmallVectorImpl<Selector> &MethodSels,
|
2008-06-01 18:13:53 +04:00
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &MethodTypes,
|
|
|
|
bool isClassMethodList);
|
2009-03-31 22:27:22 +04:00
|
|
|
llvm::Constant *GenerateEmptyProtocol(const std::string &ProtocolName);
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *GenerateProtocolList(
|
|
|
|
const llvm::SmallVectorImpl<std::string> &Protocols);
|
|
|
|
llvm::Constant *GenerateClassStructure(
|
|
|
|
llvm::Constant *MetaClass,
|
|
|
|
llvm::Constant *SuperClass,
|
|
|
|
unsigned info,
|
2008-06-26 08:47:04 +04:00
|
|
|
const char *Name,
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *Version,
|
|
|
|
llvm::Constant *InstanceSize,
|
|
|
|
llvm::Constant *IVars,
|
|
|
|
llvm::Constant *Methods,
|
|
|
|
llvm::Constant *Protocols);
|
|
|
|
llvm::Constant *GenerateProtocolMethodList(
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &MethodNames,
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &MethodTypes);
|
|
|
|
llvm::Constant *MakeConstantString(const std::string &Str, const std::string
|
|
|
|
&Name="");
|
|
|
|
llvm::Constant *MakeGlobal(const llvm::StructType *Ty,
|
|
|
|
std::vector<llvm::Constant*> &V, const std::string &Name="");
|
|
|
|
llvm::Constant *MakeGlobal(const llvm::ArrayType *Ty,
|
|
|
|
std::vector<llvm::Constant*> &V, const std::string &Name="");
|
2009-05-20 22:41:51 +04:00
|
|
|
llvm::GlobalVariable *ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID,
|
|
|
|
const ObjCIvarDecl *Ivar);
|
2009-06-15 05:09:11 +04:00
|
|
|
void EmitClassRef(const std::string &className);
|
2008-03-01 11:50:34 +03:00
|
|
|
public:
|
2008-06-26 08:19:03 +04:00
|
|
|
CGObjCGNU(CodeGen::CodeGenModule &cgm);
|
2009-03-31 20:53:37 +04:00
|
|
|
virtual llvm::Constant *GenerateConstantString(const ObjCStringLiteral *);
|
2008-08-23 07:46:30 +04:00
|
|
|
virtual CodeGen::RValue
|
|
|
|
GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
|
2008-08-30 09:35:15 +04:00
|
|
|
QualType ResultType,
|
|
|
|
Selector Sel,
|
2008-08-25 12:19:24 +04:00
|
|
|
llvm::Value *Receiver,
|
2008-08-30 07:02:31 +04:00
|
|
|
bool IsClassMessage,
|
2009-05-06 01:36:57 +04:00
|
|
|
const CallArgList &CallArgs,
|
|
|
|
const ObjCMethodDecl *Method);
|
2008-08-23 07:46:30 +04:00
|
|
|
virtual CodeGen::RValue
|
|
|
|
GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
|
2008-08-30 09:35:15 +04:00
|
|
|
QualType ResultType,
|
|
|
|
Selector Sel,
|
2008-08-25 12:19:24 +04:00
|
|
|
const ObjCInterfaceDecl *Class,
|
2009-02-28 23:07:56 +03:00
|
|
|
bool isCategoryImpl,
|
2008-08-25 12:19:24 +04:00
|
|
|
llvm::Value *Receiver,
|
2008-08-30 07:02:31 +04:00
|
|
|
bool IsClassMessage,
|
|
|
|
const CallArgList &CallArgs);
|
2008-11-01 04:53:16 +03:00
|
|
|
virtual llvm::Value *GetClass(CGBuilderTy &Builder,
|
2008-08-16 04:25:02 +04:00
|
|
|
const ObjCInterfaceDecl *OID);
|
2008-11-01 04:53:16 +03:00
|
|
|
virtual llvm::Value *GetSelector(CGBuilderTy &Builder, Selector Sel);
|
2009-05-06 01:36:57 +04:00
|
|
|
virtual llvm::Value *GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
|
|
|
|
*Method);
|
2008-06-26 08:37:12 +04:00
|
|
|
|
2009-01-11 00:06:09 +03:00
|
|
|
virtual llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD,
|
|
|
|
const ObjCContainerDecl *CD);
|
2008-08-16 02:20:32 +04:00
|
|
|
virtual void GenerateCategory(const ObjCCategoryImplDecl *CMD);
|
|
|
|
virtual void GenerateClass(const ObjCImplementationDecl *ClassDecl);
|
2008-11-01 04:53:16 +03:00
|
|
|
virtual llvm::Value *GenerateProtocolRef(CGBuilderTy &Builder,
|
2008-08-13 04:59:25 +04:00
|
|
|
const ObjCProtocolDecl *PD);
|
|
|
|
virtual void GenerateProtocol(const ObjCProtocolDecl *PD);
|
2008-06-01 18:13:53 +04:00
|
|
|
virtual llvm::Function *ModuleInitFunction();
|
2009-06-24 01:47:46 +04:00
|
|
|
virtual void MergeMetadataGlobals(std::vector<llvm::Constant*> &UsedArray);
|
2008-09-24 07:38:44 +04:00
|
|
|
virtual llvm::Function *GetPropertyGetFunction();
|
|
|
|
virtual llvm::Function *GetPropertySetFunction();
|
2008-08-31 08:05:03 +04:00
|
|
|
virtual llvm::Function *EnumerationMutationFunction();
|
2008-09-09 14:04:29 +04:00
|
|
|
|
2008-11-21 03:49:24 +03:00
|
|
|
virtual void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
|
|
|
|
const Stmt &S);
|
2008-09-09 14:04:29 +04:00
|
|
|
virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
|
|
|
|
const ObjCAtThrowStmt &S);
|
2008-11-19 01:37:34 +03:00
|
|
|
virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
|
2008-11-19 00:45:40 +03:00
|
|
|
llvm::Value *AddrWeakObj);
|
2008-11-19 01:37:34 +03:00
|
|
|
virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dst);
|
2008-11-19 03:59:10 +03:00
|
|
|
virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dest);
|
2008-11-20 22:23:36 +03:00
|
|
|
virtual void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dest);
|
2008-11-19 03:59:10 +03:00
|
|
|
virtual void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dest);
|
2009-02-03 22:03:09 +03:00
|
|
|
virtual LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
|
|
|
|
QualType ObjectTy,
|
|
|
|
llvm::Value *BaseValue,
|
|
|
|
const ObjCIvarDecl *Ivar,
|
|
|
|
unsigned CVRQualifiers);
|
2009-02-10 22:02:04 +03:00
|
|
|
virtual llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
|
2009-04-22 09:08:15 +04:00
|
|
|
const ObjCInterfaceDecl *Interface,
|
2009-02-10 22:02:04 +03:00
|
|
|
const ObjCIvarDecl *Ivar);
|
2008-03-01 11:50:34 +03:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
|
2009-06-15 05:09:11 +04:00
|
|
|
/// Emits a reference to a dummy variable which is emitted with each class.
|
|
|
|
/// This ensures that a linker error will be generated when trying to link
|
|
|
|
/// together modules where a referenced class is not defined.
|
|
|
|
void CGObjCGNU::EmitClassRef(const std::string &className){
|
|
|
|
std::string symbolRef = "__objc_class_ref_" + className;
|
|
|
|
// Don't emit two copies of the same symbol
|
|
|
|
if (TheModule.getGlobalVariable(symbolRef)) return;
|
|
|
|
std::string symbolName = "__objc_class_name_" + className;
|
|
|
|
llvm::GlobalVariable *ClassSymbol = TheModule.getGlobalVariable(symbolName);
|
|
|
|
if (!ClassSymbol) {
|
|
|
|
ClassSymbol = new llvm::GlobalVariable(LongTy, false,
|
|
|
|
llvm::GlobalValue::ExternalLinkage, 0, symbolName, &TheModule);
|
|
|
|
}
|
|
|
|
new llvm::GlobalVariable(ClassSymbol->getType(), true,
|
|
|
|
llvm::GlobalValue::CommonLinkage, ClassSymbol, symbolRef, &TheModule);
|
|
|
|
}
|
2008-06-01 18:13:53 +04:00
|
|
|
|
|
|
|
static std::string SymbolNameForClass(const std::string &ClassName) {
|
2009-06-15 05:09:11 +04:00
|
|
|
return "_OBJC_CLASS_" + ClassName;
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static std::string SymbolNameForMethod(const std::string &ClassName, const
|
|
|
|
std::string &CategoryName, const std::string &MethodName, bool isClassMethod)
|
|
|
|
{
|
2009-06-15 05:09:11 +04:00
|
|
|
return "_OBJC_METHOD_" + ClassName + "("+CategoryName+")"+
|
2008-06-01 18:13:53 +04:00
|
|
|
(isClassMethod ? "+" : "-") + MethodName;
|
|
|
|
}
|
|
|
|
|
2008-06-26 08:19:03 +04:00
|
|
|
CGObjCGNU::CGObjCGNU(CodeGen::CodeGenModule &cgm)
|
2009-05-04 19:31:17 +04:00
|
|
|
: CGM(cgm), TheModule(CGM.getModule()), ClassPtrAlias(0),
|
|
|
|
MetaClassPtrAlias(0) {
|
2009-01-27 08:06:01 +03:00
|
|
|
IntTy = cast<llvm::IntegerType>(
|
|
|
|
CGM.getTypes().ConvertType(CGM.getContext().IntTy));
|
|
|
|
LongTy = cast<llvm::IntegerType>(
|
|
|
|
CGM.getTypes().ConvertType(CGM.getContext().LongTy));
|
2008-06-26 08:19:03 +04:00
|
|
|
|
2008-12-04 03:10:55 +03:00
|
|
|
Zeros[0] = llvm::ConstantInt::get(LongTy, 0);
|
2008-06-01 18:13:53 +04:00
|
|
|
Zeros[1] = Zeros[0];
|
|
|
|
NULLPtr = llvm::ConstantPointerNull::get(
|
|
|
|
llvm::PointerType::getUnqual(llvm::Type::Int8Ty));
|
2008-03-31 03:03:07 +04:00
|
|
|
// C string type. Used in lots of places.
|
|
|
|
PtrToInt8Ty =
|
|
|
|
llvm::PointerType::getUnqual(llvm::Type::Int8Ty);
|
|
|
|
// Get the selector Type.
|
2009-01-27 08:06:01 +03:00
|
|
|
SelectorTy = cast<llvm::PointerType>(
|
|
|
|
CGM.getTypes().ConvertType(CGM.getContext().getObjCSelType()));
|
|
|
|
|
2008-03-31 03:03:07 +04:00
|
|
|
PtrToIntTy = llvm::PointerType::getUnqual(IntTy);
|
|
|
|
PtrTy = PtrToInt8Ty;
|
|
|
|
|
|
|
|
// Object type
|
2009-02-04 23:31:19 +03:00
|
|
|
IdTy = cast<llvm::PointerType>(
|
|
|
|
CGM.getTypes().ConvertType(CGM.getContext().getObjCIdType()));
|
2008-03-31 03:03:07 +04:00
|
|
|
|
|
|
|
// IMP type
|
|
|
|
std::vector<const llvm::Type*> IMPArgs;
|
|
|
|
IMPArgs.push_back(IdTy);
|
|
|
|
IMPArgs.push_back(SelectorTy);
|
|
|
|
IMPTy = llvm::FunctionType::get(IdTy, IMPArgs, true);
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
// This has to perform the lookup every time, since posing and related
|
|
|
|
// techniques can modify the name -> class mapping.
|
2008-11-01 04:53:16 +03:00
|
|
|
llvm::Value *CGObjCGNU::GetClass(CGBuilderTy &Builder,
|
2008-08-16 04:25:02 +04:00
|
|
|
const ObjCInterfaceDecl *OID) {
|
2008-11-24 08:29:24 +03:00
|
|
|
llvm::Value *ClassName = CGM.GetAddrOfConstantCString(OID->getNameAsString());
|
2009-06-15 05:09:11 +04:00
|
|
|
EmitClassRef(OID->getNameAsString());
|
2008-08-16 04:25:02 +04:00
|
|
|
ClassName = Builder.CreateStructGEP(ClassName, 0);
|
|
|
|
|
2009-03-30 22:02:14 +04:00
|
|
|
std::vector<const llvm::Type*> Params(1, PtrToInt8Ty);
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *ClassLookupFn =
|
2009-03-30 22:02:14 +04:00
|
|
|
CGM.CreateRuntimeFunction(llvm::FunctionType::get(IdTy,
|
|
|
|
Params,
|
|
|
|
true),
|
|
|
|
"objc_lookup_class");
|
2008-06-01 18:13:53 +04:00
|
|
|
return Builder.CreateCall(ClassLookupFn, ClassName);
|
2008-03-31 03:03:07 +04:00
|
|
|
}
|
|
|
|
|
2008-11-01 04:53:16 +03:00
|
|
|
llvm::Value *CGObjCGNU::GetSelector(CGBuilderTy &Builder, Selector Sel) {
|
2008-11-24 06:33:13 +03:00
|
|
|
llvm::GlobalAlias *&US = UntypedSelectors[Sel.getAsString()];
|
2008-06-26 08:37:12 +04:00
|
|
|
if (US == 0)
|
|
|
|
US = new llvm::GlobalAlias(llvm::PointerType::getUnqual(SelectorTy),
|
|
|
|
llvm::GlobalValue::InternalLinkage,
|
|
|
|
".objc_untyped_selector_alias",
|
|
|
|
NULL, &TheModule);
|
|
|
|
|
|
|
|
return Builder.CreateLoad(US);
|
2009-05-06 01:36:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Value *CGObjCGNU::GetSelector(CGBuilderTy &Builder, const ObjCMethodDecl
|
|
|
|
*Method) {
|
|
|
|
|
|
|
|
std::string SelName = Method->getSelector().getAsString();
|
|
|
|
std::string SelTypes;
|
|
|
|
CGM.getContext().getObjCEncodingForMethodDecl(Method, SelTypes);
|
|
|
|
// Typed selectors
|
|
|
|
TypedSelector Selector = TypedSelector(SelName,
|
|
|
|
SelTypes);
|
|
|
|
|
|
|
|
// If it's already cached, return it.
|
|
|
|
if (TypedSelectors[Selector])
|
|
|
|
{
|
|
|
|
return Builder.CreateLoad(TypedSelectors[Selector]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it isn't, cache it.
|
|
|
|
llvm::GlobalAlias *Sel = new llvm::GlobalAlias(
|
|
|
|
llvm::PointerType::getUnqual(SelectorTy),
|
|
|
|
llvm::GlobalValue::InternalLinkage, SelName,
|
|
|
|
NULL, &TheModule);
|
|
|
|
TypedSelectors[Selector] = Sel;
|
|
|
|
|
|
|
|
return Builder.CreateLoad(Sel);
|
2008-06-26 08:37:12 +04:00
|
|
|
}
|
|
|
|
|
2008-06-26 08:44:19 +04:00
|
|
|
llvm::Constant *CGObjCGNU::MakeConstantString(const std::string &Str,
|
|
|
|
const std::string &Name) {
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant * ConstStr = llvm::ConstantArray::get(Str);
|
|
|
|
ConstStr = new llvm::GlobalVariable(ConstStr->getType(), true,
|
|
|
|
llvm::GlobalValue::InternalLinkage,
|
|
|
|
ConstStr, Name, &TheModule);
|
|
|
|
return llvm::ConstantExpr::getGetElementPtr(ConstStr, Zeros, 2);
|
|
|
|
}
|
|
|
|
llvm::Constant *CGObjCGNU::MakeGlobal(const llvm::StructType *Ty,
|
|
|
|
std::vector<llvm::Constant*> &V, const std::string &Name) {
|
|
|
|
llvm::Constant *C = llvm::ConstantStruct::get(Ty, V);
|
|
|
|
return new llvm::GlobalVariable(Ty, false,
|
|
|
|
llvm::GlobalValue::InternalLinkage, C, Name, &TheModule);
|
|
|
|
}
|
|
|
|
llvm::Constant *CGObjCGNU::MakeGlobal(const llvm::ArrayType *Ty,
|
|
|
|
std::vector<llvm::Constant*> &V, const std::string &Name) {
|
|
|
|
llvm::Constant *C = llvm::ConstantArray::get(Ty, V);
|
|
|
|
return new llvm::GlobalVariable(Ty, false,
|
|
|
|
llvm::GlobalValue::InternalLinkage, C, Name, &TheModule);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generate an NSConstantString object.
|
|
|
|
//TODO: In case there are any crazy people still using the GNU runtime without
|
|
|
|
//an OpenStep implementation, this should let them select their own class for
|
|
|
|
//constant strings.
|
2009-03-31 20:53:37 +04:00
|
|
|
llvm::Constant *CGObjCGNU::GenerateConstantString(const ObjCStringLiteral *SL) {
|
|
|
|
std::string Str(SL->getString()->getStrData(),
|
|
|
|
SL->getString()->getByteLength());
|
2008-06-01 18:13:53 +04:00
|
|
|
std::vector<llvm::Constant*> Ivars;
|
|
|
|
Ivars.push_back(NULLPtr);
|
2008-06-22 01:44:18 +04:00
|
|
|
Ivars.push_back(MakeConstantString(Str));
|
2008-08-12 04:12:39 +04:00
|
|
|
Ivars.push_back(llvm::ConstantInt::get(IntTy, Str.size()));
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *ObjCStr = MakeGlobal(
|
|
|
|
llvm::StructType::get(PtrToInt8Ty, PtrToInt8Ty, IntTy, NULL),
|
|
|
|
Ivars, ".objc_str");
|
|
|
|
ConstantStrings.push_back(
|
|
|
|
llvm::ConstantExpr::getBitCast(ObjCStr, PtrToInt8Ty));
|
|
|
|
return ObjCStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
///Generates a message send where the super is the receiver. This is a message
|
|
|
|
///send to self with special delivery semantics indicating which class's method
|
|
|
|
///should be called.
|
2008-08-23 07:46:30 +04:00
|
|
|
CodeGen::RValue
|
|
|
|
CGObjCGNU::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF,
|
2008-08-30 09:35:15 +04:00
|
|
|
QualType ResultType,
|
|
|
|
Selector Sel,
|
2008-08-25 12:19:24 +04:00
|
|
|
const ObjCInterfaceDecl *Class,
|
2009-02-28 23:07:56 +03:00
|
|
|
bool isCategoryImpl,
|
2008-08-25 12:19:24 +04:00
|
|
|
llvm::Value *Receiver,
|
2008-08-30 07:02:31 +04:00
|
|
|
bool IsClassMessage,
|
|
|
|
const CallArgList &CallArgs) {
|
2009-02-04 23:31:19 +03:00
|
|
|
llvm::Value *cmd = GetSelector(CGF.Builder, Sel);
|
|
|
|
|
|
|
|
CallArgList ActualArgs;
|
|
|
|
|
|
|
|
ActualArgs.push_back(
|
|
|
|
std::make_pair(RValue::get(CGF.Builder.CreateBitCast(Receiver, IdTy)),
|
|
|
|
CGF.getContext().getObjCIdType()));
|
|
|
|
ActualArgs.push_back(std::make_pair(RValue::get(cmd),
|
|
|
|
CGF.getContext().getObjCSelType()));
|
|
|
|
ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
|
|
|
|
|
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs);
|
|
|
|
const llvm::FunctionType *impType = Types.GetFunctionType(FnInfo, false);
|
|
|
|
|
2009-05-04 19:31:17 +04:00
|
|
|
llvm::Value *ReceiverClass = 0;
|
2009-05-08 19:39:58 +04:00
|
|
|
if (isCategoryImpl) {
|
|
|
|
llvm::Constant *classLookupFunction = 0;
|
|
|
|
std::vector<const llvm::Type*> Params;
|
|
|
|
Params.push_back(PtrTy);
|
|
|
|
if (IsClassMessage) {
|
|
|
|
classLookupFunction = CGM.CreateRuntimeFunction(llvm::FunctionType::get(
|
|
|
|
IdTy, Params, true), "objc_get_meta_class");
|
|
|
|
} else {
|
|
|
|
classLookupFunction = CGM.CreateRuntimeFunction(llvm::FunctionType::get(
|
|
|
|
IdTy, Params, true), "objc_get_class");
|
2009-05-04 19:31:17 +04:00
|
|
|
}
|
2009-05-08 19:39:58 +04:00
|
|
|
ReceiverClass = CGF.Builder.CreateCall(classLookupFunction,
|
|
|
|
MakeConstantString(Class->getNameAsString()));
|
2009-05-04 19:31:17 +04:00
|
|
|
} else {
|
2009-05-08 19:39:58 +04:00
|
|
|
// Set up global aliases for the metaclass or class pointer if they do not
|
|
|
|
// already exist. These will are forward-references which will be set to
|
|
|
|
// pointers to the class and metaclass structure created for the runtime load
|
|
|
|
// function. To send a message to super, we look up the value of the
|
|
|
|
// super_class pointer from either the class or metaclass structure.
|
|
|
|
if (IsClassMessage) {
|
|
|
|
if (!MetaClassPtrAlias) {
|
|
|
|
MetaClassPtrAlias = new llvm::GlobalAlias(IdTy,
|
|
|
|
llvm::GlobalValue::InternalLinkage, ".objc_metaclass_ref" +
|
|
|
|
Class->getNameAsString(), NULL, &TheModule);
|
|
|
|
}
|
|
|
|
ReceiverClass = MetaClassPtrAlias;
|
|
|
|
} else {
|
|
|
|
if (!ClassPtrAlias) {
|
|
|
|
ClassPtrAlias = new llvm::GlobalAlias(IdTy,
|
|
|
|
llvm::GlobalValue::InternalLinkage, ".objc_class_ref" +
|
|
|
|
Class->getNameAsString(), NULL, &TheModule);
|
|
|
|
}
|
|
|
|
ReceiverClass = ClassPtrAlias;
|
2009-05-04 19:31:17 +04:00
|
|
|
}
|
2009-04-26 03:19:45 +04:00
|
|
|
}
|
2009-05-04 19:31:17 +04:00
|
|
|
// Cast the pointer to a simplified version of the class structure
|
|
|
|
ReceiverClass = CGF.Builder.CreateBitCast(ReceiverClass,
|
|
|
|
llvm::PointerType::getUnqual(llvm::StructType::get(IdTy, IdTy, NULL)));
|
|
|
|
// Get the superclass pointer
|
|
|
|
ReceiverClass = CGF.Builder.CreateStructGEP(ReceiverClass, 1);
|
|
|
|
// Load the superclass pointer
|
|
|
|
ReceiverClass = CGF.Builder.CreateLoad(ReceiverClass);
|
2008-06-01 18:13:53 +04:00
|
|
|
// Construct the structure used to look up the IMP
|
|
|
|
llvm::StructType *ObjCSuperTy = llvm::StructType::get(Receiver->getType(),
|
|
|
|
IdTy, NULL);
|
2008-08-23 07:46:30 +04:00
|
|
|
llvm::Value *ObjCSuper = CGF.Builder.CreateAlloca(ObjCSuperTy);
|
2009-02-04 23:31:19 +03:00
|
|
|
|
2008-08-23 07:46:30 +04:00
|
|
|
CGF.Builder.CreateStore(Receiver, CGF.Builder.CreateStructGEP(ObjCSuper, 0));
|
2009-05-04 19:31:17 +04:00
|
|
|
CGF.Builder.CreateStore(ReceiverClass,
|
|
|
|
CGF.Builder.CreateStructGEP(ObjCSuper, 1));
|
2008-06-01 18:13:53 +04:00
|
|
|
|
|
|
|
// Get the IMP
|
2009-03-30 22:02:14 +04:00
|
|
|
std::vector<const llvm::Type*> Params;
|
|
|
|
Params.push_back(llvm::PointerType::getUnqual(ObjCSuperTy));
|
|
|
|
Params.push_back(SelectorTy);
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *lookupFunction =
|
2009-03-30 22:02:14 +04:00
|
|
|
CGM.CreateRuntimeFunction(llvm::FunctionType::get(
|
|
|
|
llvm::PointerType::getUnqual(impType), Params, true),
|
|
|
|
"objc_msg_lookup_super");
|
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Value *lookupArgs[] = {ObjCSuper, cmd};
|
2008-08-23 07:46:30 +04:00
|
|
|
llvm::Value *imp = CGF.Builder.CreateCall(lookupFunction, lookupArgs,
|
2008-06-01 18:13:53 +04:00
|
|
|
lookupArgs+2);
|
|
|
|
|
2009-02-04 23:31:19 +03:00
|
|
|
return CGF.EmitCall(FnInfo, imp, ActualArgs);
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Generate code for a message send expression.
|
2008-08-23 07:46:30 +04:00
|
|
|
CodeGen::RValue
|
|
|
|
CGObjCGNU::GenerateMessageSend(CodeGen::CodeGenFunction &CGF,
|
2008-08-30 09:35:15 +04:00
|
|
|
QualType ResultType,
|
|
|
|
Selector Sel,
|
2008-08-25 12:19:24 +04:00
|
|
|
llvm::Value *Receiver,
|
2008-08-30 07:02:31 +04:00
|
|
|
bool IsClassMessage,
|
2009-05-06 01:36:57 +04:00
|
|
|
const CallArgList &CallArgs,
|
|
|
|
const ObjCMethodDecl *Method) {
|
|
|
|
llvm::Value *cmd;
|
|
|
|
if (Method)
|
|
|
|
cmd = GetSelector(CGF.Builder, Method);
|
|
|
|
else
|
|
|
|
cmd = GetSelector(CGF.Builder, Sel);
|
2009-02-04 23:31:19 +03:00
|
|
|
CallArgList ActualArgs;
|
|
|
|
|
|
|
|
ActualArgs.push_back(
|
2009-05-23 00:17:16 +04:00
|
|
|
std::make_pair(RValue::get(CGF.Builder.CreateBitCast(Receiver, IdTy)),
|
|
|
|
CGF.getContext().getObjCIdType()));
|
2009-02-04 23:31:19 +03:00
|
|
|
ActualArgs.push_back(std::make_pair(RValue::get(cmd),
|
|
|
|
CGF.getContext().getObjCSelType()));
|
|
|
|
ActualArgs.insert(ActualArgs.end(), CallArgs.begin(), CallArgs.end());
|
|
|
|
|
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
|
|
|
const CGFunctionInfo &FnInfo = Types.getFunctionInfo(ResultType, ActualArgs);
|
|
|
|
const llvm::FunctionType *impType = Types.GetFunctionType(FnInfo, false);
|
2008-03-01 11:50:34 +03:00
|
|
|
|
2009-05-23 00:17:16 +04:00
|
|
|
llvm::Value *imp;
|
2009-03-30 22:02:14 +04:00
|
|
|
std::vector<const llvm::Type*> Params;
|
|
|
|
Params.push_back(Receiver->getType());
|
|
|
|
Params.push_back(SelectorTy);
|
2009-05-23 00:17:16 +04:00
|
|
|
// For sender-aware dispatch, we pass the sender as the third argument to a
|
|
|
|
// lookup function. When sending messages from C code, the sender is nil.
|
|
|
|
// objc_msg_lookup_sender(id receiver, SEL selector, id sender);
|
|
|
|
if (CGM.getContext().getLangOptions().ObjCSenderDispatch) {
|
|
|
|
llvm::Value *self;
|
|
|
|
|
|
|
|
if (isa<ObjCMethodDecl>(CGF.CurFuncDecl)) {
|
|
|
|
self = CGF.LoadObjCSelf();
|
|
|
|
} else {
|
|
|
|
self = llvm::ConstantPointerNull::get(IdTy);
|
|
|
|
}
|
|
|
|
Params.push_back(self->getType());
|
|
|
|
llvm::Constant *lookupFunction =
|
|
|
|
CGM.CreateRuntimeFunction(llvm::FunctionType::get(
|
2009-03-30 22:02:14 +04:00
|
|
|
llvm::PointerType::getUnqual(impType), Params, true),
|
2009-05-23 00:17:16 +04:00
|
|
|
"objc_msg_lookup_sender");
|
2009-03-30 22:02:14 +04:00
|
|
|
|
2009-05-23 00:17:16 +04:00
|
|
|
imp = CGF.Builder.CreateCall3(lookupFunction, Receiver, cmd, self);
|
|
|
|
} else {
|
|
|
|
llvm::Constant *lookupFunction =
|
|
|
|
CGM.CreateRuntimeFunction(llvm::FunctionType::get(
|
|
|
|
llvm::PointerType::getUnqual(impType), Params, true),
|
|
|
|
"objc_msg_lookup");
|
|
|
|
|
|
|
|
imp = CGF.Builder.CreateCall2(lookupFunction, Receiver, cmd);
|
|
|
|
}
|
2008-05-06 04:56:42 +04:00
|
|
|
|
2009-02-04 23:31:19 +03:00
|
|
|
return CGF.EmitCall(FnInfo, imp, ActualArgs);
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Generates a MethodList. Used in construction of a objc_class and
|
|
|
|
/// objc_category structures.
|
|
|
|
llvm::Constant *CGObjCGNU::GenerateMethodList(const std::string &ClassName,
|
2008-06-26 09:08:00 +04:00
|
|
|
const std::string &CategoryName,
|
|
|
|
const llvm::SmallVectorImpl<Selector> &MethodSels,
|
2008-06-01 18:13:53 +04:00
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &MethodTypes,
|
|
|
|
bool isClassMethodList) {
|
|
|
|
// Get the method structure type.
|
|
|
|
llvm::StructType *ObjCMethodTy = llvm::StructType::get(
|
|
|
|
PtrToInt8Ty, // Really a selector, but the runtime creates it us.
|
|
|
|
PtrToInt8Ty, // Method types
|
|
|
|
llvm::PointerType::getUnqual(IMPTy), //Method pointer
|
|
|
|
NULL);
|
|
|
|
std::vector<llvm::Constant*> Methods;
|
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
for (unsigned int i = 0, e = MethodTypes.size(); i < e; ++i) {
|
|
|
|
Elements.clear();
|
2009-05-17 20:49:27 +04:00
|
|
|
if (llvm::Constant *Method =
|
2008-06-01 18:13:53 +04:00
|
|
|
TheModule.getFunction(SymbolNameForMethod(ClassName, CategoryName,
|
2008-11-24 06:33:13 +03:00
|
|
|
MethodSels[i].getAsString(),
|
2009-05-17 20:49:27 +04:00
|
|
|
isClassMethodList))) {
|
|
|
|
llvm::Constant *C =
|
|
|
|
CGM.GetAddrOfConstantCString(MethodSels[i].getAsString());
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getGetElementPtr(C, Zeros, 2));
|
|
|
|
Elements.push_back(
|
|
|
|
llvm::ConstantExpr::getGetElementPtr(MethodTypes[i], Zeros, 2));
|
|
|
|
Method = llvm::ConstantExpr::getBitCast(Method,
|
|
|
|
llvm::PointerType::getUnqual(IMPTy));
|
|
|
|
Elements.push_back(Method);
|
|
|
|
Methods.push_back(llvm::ConstantStruct::get(ObjCMethodTy, Elements));
|
|
|
|
}
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Array of method structures
|
|
|
|
llvm::ArrayType *ObjCMethodArrayTy = llvm::ArrayType::get(ObjCMethodTy,
|
2009-05-17 20:49:27 +04:00
|
|
|
Methods.size());
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *MethodArray = llvm::ConstantArray::get(ObjCMethodArrayTy,
|
2008-06-26 08:52:29 +04:00
|
|
|
Methods);
|
2008-06-01 18:13:53 +04:00
|
|
|
|
|
|
|
// Structure containing list pointer, array and array count
|
|
|
|
llvm::SmallVector<const llvm::Type*, 16> ObjCMethodListFields;
|
|
|
|
llvm::PATypeHolder OpaqueNextTy = llvm::OpaqueType::get();
|
|
|
|
llvm::Type *NextPtrTy = llvm::PointerType::getUnqual(OpaqueNextTy);
|
|
|
|
llvm::StructType *ObjCMethodListTy = llvm::StructType::get(NextPtrTy,
|
|
|
|
IntTy,
|
|
|
|
ObjCMethodArrayTy,
|
|
|
|
NULL);
|
|
|
|
// Refine next pointer type to concrete type
|
|
|
|
llvm::cast<llvm::OpaqueType>(
|
|
|
|
OpaqueNextTy.get())->refineAbstractTypeTo(ObjCMethodListTy);
|
|
|
|
ObjCMethodListTy = llvm::cast<llvm::StructType>(OpaqueNextTy.get());
|
|
|
|
|
|
|
|
Methods.clear();
|
|
|
|
Methods.push_back(llvm::ConstantPointerNull::get(
|
|
|
|
llvm::PointerType::getUnqual(ObjCMethodListTy)));
|
|
|
|
Methods.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty,
|
|
|
|
MethodTypes.size()));
|
|
|
|
Methods.push_back(MethodArray);
|
|
|
|
|
|
|
|
// Create an instance of the structure
|
|
|
|
return MakeGlobal(ObjCMethodListTy, Methods, ".objc_method_list");
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generates an IvarList. Used in construction of a objc_class.
|
|
|
|
llvm::Constant *CGObjCGNU::GenerateIvarList(
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &IvarNames,
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &IvarTypes,
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &IvarOffsets) {
|
|
|
|
// Get the method structure type.
|
|
|
|
llvm::StructType *ObjCIvarTy = llvm::StructType::get(
|
|
|
|
PtrToInt8Ty,
|
|
|
|
PtrToInt8Ty,
|
|
|
|
IntTy,
|
|
|
|
NULL);
|
|
|
|
std::vector<llvm::Constant*> Ivars;
|
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
for (unsigned int i = 0, e = IvarNames.size() ; i < e ; i++) {
|
|
|
|
Elements.clear();
|
|
|
|
Elements.push_back( llvm::ConstantExpr::getGetElementPtr(IvarNames[i],
|
|
|
|
Zeros, 2));
|
|
|
|
Elements.push_back( llvm::ConstantExpr::getGetElementPtr(IvarTypes[i],
|
|
|
|
Zeros, 2));
|
|
|
|
Elements.push_back(IvarOffsets[i]);
|
|
|
|
Ivars.push_back(llvm::ConstantStruct::get(ObjCIvarTy, Elements));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Array of method structures
|
|
|
|
llvm::ArrayType *ObjCIvarArrayTy = llvm::ArrayType::get(ObjCIvarTy,
|
|
|
|
IvarNames.size());
|
|
|
|
|
|
|
|
|
|
|
|
Elements.clear();
|
2009-01-27 08:06:01 +03:00
|
|
|
Elements.push_back(llvm::ConstantInt::get(IntTy, (int)IvarNames.size()));
|
2008-06-01 18:13:53 +04:00
|
|
|
Elements.push_back(llvm::ConstantArray::get(ObjCIvarArrayTy, Ivars));
|
|
|
|
// Structure containing array and array count
|
|
|
|
llvm::StructType *ObjCIvarListTy = llvm::StructType::get(IntTy,
|
|
|
|
ObjCIvarArrayTy,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
// Create an instance of the structure
|
|
|
|
return MakeGlobal(ObjCIvarListTy, Elements, ".objc_ivar_list");
|
2008-03-01 11:50:34 +03:00
|
|
|
}
|
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
/// Generate a class structure
|
|
|
|
llvm::Constant *CGObjCGNU::GenerateClassStructure(
|
|
|
|
llvm::Constant *MetaClass,
|
|
|
|
llvm::Constant *SuperClass,
|
|
|
|
unsigned info,
|
2008-06-26 08:47:04 +04:00
|
|
|
const char *Name,
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *Version,
|
|
|
|
llvm::Constant *InstanceSize,
|
|
|
|
llvm::Constant *IVars,
|
|
|
|
llvm::Constant *Methods,
|
|
|
|
llvm::Constant *Protocols) {
|
|
|
|
// Set up the class structure
|
|
|
|
// Note: Several of these are char*s when they should be ids. This is
|
|
|
|
// because the runtime performs this translation on load.
|
|
|
|
llvm::StructType *ClassTy = llvm::StructType::get(
|
|
|
|
PtrToInt8Ty, // class_pointer
|
|
|
|
PtrToInt8Ty, // super_class
|
|
|
|
PtrToInt8Ty, // name
|
|
|
|
LongTy, // version
|
|
|
|
LongTy, // info
|
|
|
|
LongTy, // instance_size
|
|
|
|
IVars->getType(), // ivars
|
|
|
|
Methods->getType(), // methods
|
|
|
|
// These are all filled in by the runtime, so we pretend
|
|
|
|
PtrTy, // dtable
|
|
|
|
PtrTy, // subclass_list
|
|
|
|
PtrTy, // sibling_class
|
|
|
|
PtrTy, // protocols
|
|
|
|
PtrTy, // gc_object_type
|
|
|
|
NULL);
|
|
|
|
llvm::Constant *Zero = llvm::ConstantInt::get(LongTy, 0);
|
|
|
|
llvm::Constant *NullP =
|
2009-01-27 08:06:01 +03:00
|
|
|
llvm::ConstantPointerNull::get(PtrTy);
|
2008-06-01 18:13:53 +04:00
|
|
|
// Fill in the structure
|
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getBitCast(MetaClass, PtrToInt8Ty));
|
|
|
|
Elements.push_back(SuperClass);
|
2008-06-26 08:47:04 +04:00
|
|
|
Elements.push_back(MakeConstantString(Name, ".class_name"));
|
2008-06-01 18:13:53 +04:00
|
|
|
Elements.push_back(Zero);
|
|
|
|
Elements.push_back(llvm::ConstantInt::get(LongTy, info));
|
|
|
|
Elements.push_back(InstanceSize);
|
|
|
|
Elements.push_back(IVars);
|
|
|
|
Elements.push_back(Methods);
|
|
|
|
Elements.push_back(NullP);
|
|
|
|
Elements.push_back(NullP);
|
|
|
|
Elements.push_back(NullP);
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getBitCast(Protocols, PtrTy));
|
|
|
|
Elements.push_back(NullP);
|
|
|
|
// Create an instance of the structure
|
2008-07-21 10:31:05 +04:00
|
|
|
return MakeGlobal(ClassTy, Elements, SymbolNameForClass(Name));
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Constant *CGObjCGNU::GenerateProtocolMethodList(
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &MethodNames,
|
|
|
|
const llvm::SmallVectorImpl<llvm::Constant *> &MethodTypes) {
|
|
|
|
// Get the method structure type.
|
|
|
|
llvm::StructType *ObjCMethodDescTy = llvm::StructType::get(
|
|
|
|
PtrToInt8Ty, // Really a selector, but the runtime does the casting for us.
|
|
|
|
PtrToInt8Ty,
|
|
|
|
NULL);
|
|
|
|
std::vector<llvm::Constant*> Methods;
|
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
for (unsigned int i = 0, e = MethodTypes.size() ; i < e ; i++) {
|
|
|
|
Elements.clear();
|
|
|
|
Elements.push_back( llvm::ConstantExpr::getGetElementPtr(MethodNames[i],
|
|
|
|
Zeros, 2));
|
|
|
|
Elements.push_back(
|
|
|
|
llvm::ConstantExpr::getGetElementPtr(MethodTypes[i], Zeros, 2));
|
|
|
|
Methods.push_back(llvm::ConstantStruct::get(ObjCMethodDescTy, Elements));
|
|
|
|
}
|
|
|
|
llvm::ArrayType *ObjCMethodArrayTy = llvm::ArrayType::get(ObjCMethodDescTy,
|
|
|
|
MethodNames.size());
|
|
|
|
llvm::Constant *Array = llvm::ConstantArray::get(ObjCMethodArrayTy, Methods);
|
|
|
|
llvm::StructType *ObjCMethodDescListTy = llvm::StructType::get(
|
|
|
|
IntTy, ObjCMethodArrayTy, NULL);
|
|
|
|
Methods.clear();
|
|
|
|
Methods.push_back(llvm::ConstantInt::get(IntTy, MethodNames.size()));
|
|
|
|
Methods.push_back(Array);
|
|
|
|
return MakeGlobal(ObjCMethodDescListTy, Methods, ".objc_method_list");
|
|
|
|
}
|
|
|
|
// Create the protocol list structure used in classes, categories and so on
|
|
|
|
llvm::Constant *CGObjCGNU::GenerateProtocolList(
|
|
|
|
const llvm::SmallVectorImpl<std::string> &Protocols) {
|
|
|
|
llvm::ArrayType *ProtocolArrayTy = llvm::ArrayType::get(PtrToInt8Ty,
|
|
|
|
Protocols.size());
|
|
|
|
llvm::StructType *ProtocolListTy = llvm::StructType::get(
|
|
|
|
PtrTy, //Should be a recurisve pointer, but it's always NULL here.
|
|
|
|
LongTy,//FIXME: Should be size_t
|
|
|
|
ProtocolArrayTy,
|
|
|
|
NULL);
|
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
for (const std::string *iter = Protocols.begin(), *endIter = Protocols.end();
|
|
|
|
iter != endIter ; iter++) {
|
2009-03-31 22:27:22 +04:00
|
|
|
llvm::Constant *protocol = ExistingProtocols[*iter];
|
|
|
|
if (!protocol)
|
|
|
|
protocol = GenerateEmptyProtocol(*iter);
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *Ptr =
|
2009-03-31 22:27:22 +04:00
|
|
|
llvm::ConstantExpr::getBitCast(protocol, PtrToInt8Ty);
|
2008-06-01 18:13:53 +04:00
|
|
|
Elements.push_back(Ptr);
|
|
|
|
}
|
|
|
|
llvm::Constant * ProtocolArray = llvm::ConstantArray::get(ProtocolArrayTy,
|
|
|
|
Elements);
|
|
|
|
Elements.clear();
|
|
|
|
Elements.push_back(NULLPtr);
|
2009-01-27 08:06:01 +03:00
|
|
|
Elements.push_back(llvm::ConstantInt::get(LongTy, Protocols.size()));
|
2008-06-01 18:13:53 +04:00
|
|
|
Elements.push_back(ProtocolArray);
|
|
|
|
return MakeGlobal(ProtocolListTy, Elements, ".objc_protocol_list");
|
|
|
|
}
|
|
|
|
|
2008-11-01 04:53:16 +03:00
|
|
|
llvm::Value *CGObjCGNU::GenerateProtocolRef(CGBuilderTy &Builder,
|
2008-08-13 04:59:25 +04:00
|
|
|
const ObjCProtocolDecl *PD) {
|
2009-03-31 22:27:22 +04:00
|
|
|
llvm::Value *protocol = ExistingProtocols[PD->getNameAsString()];
|
|
|
|
const llvm::Type *T =
|
|
|
|
CGM.getTypes().ConvertType(CGM.getContext().getObjCProtoType());
|
|
|
|
return Builder.CreateBitCast(protocol, llvm::PointerType::getUnqual(T));
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Constant *CGObjCGNU::GenerateEmptyProtocol(
|
|
|
|
const std::string &ProtocolName) {
|
|
|
|
llvm::SmallVector<std::string, 0> EmptyStringVector;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 0> EmptyConstantVector;
|
|
|
|
|
|
|
|
llvm::Constant *ProtocolList = GenerateProtocolList(EmptyStringVector);
|
|
|
|
llvm::Constant *InstanceMethodList =
|
|
|
|
GenerateProtocolMethodList(EmptyConstantVector, EmptyConstantVector);
|
|
|
|
llvm::Constant *ClassMethodList =
|
|
|
|
GenerateProtocolMethodList(EmptyConstantVector, EmptyConstantVector);
|
|
|
|
// Protocols are objects containing lists of the methods implemented and
|
|
|
|
// protocols adopted.
|
|
|
|
llvm::StructType *ProtocolTy = llvm::StructType::get(IdTy,
|
|
|
|
PtrToInt8Ty,
|
|
|
|
ProtocolList->getType(),
|
|
|
|
InstanceMethodList->getType(),
|
|
|
|
ClassMethodList->getType(),
|
|
|
|
NULL);
|
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
// The isa pointer must be set to a magic number so the runtime knows it's
|
|
|
|
// the correct layout.
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getIntToPtr(
|
|
|
|
llvm::ConstantInt::get(llvm::Type::Int32Ty, ProtocolVersion), IdTy));
|
|
|
|
Elements.push_back(MakeConstantString(ProtocolName, ".objc_protocol_name"));
|
|
|
|
Elements.push_back(ProtocolList);
|
|
|
|
Elements.push_back(InstanceMethodList);
|
|
|
|
Elements.push_back(ClassMethodList);
|
|
|
|
return MakeGlobal(ProtocolTy, Elements, ".objc_protocol");
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
|
2008-08-13 04:59:25 +04:00
|
|
|
void CGObjCGNU::GenerateProtocol(const ObjCProtocolDecl *PD) {
|
|
|
|
ASTContext &Context = CGM.getContext();
|
2008-11-24 06:54:41 +03:00
|
|
|
std::string ProtocolName = PD->getNameAsString();
|
2008-08-13 04:59:25 +04:00
|
|
|
llvm::SmallVector<std::string, 16> Protocols;
|
|
|
|
for (ObjCProtocolDecl::protocol_iterator PI = PD->protocol_begin(),
|
|
|
|
E = PD->protocol_end(); PI != E; ++PI)
|
2008-11-24 08:29:24 +03:00
|
|
|
Protocols.push_back((*PI)->getNameAsString());
|
2008-08-13 04:59:25 +04:00
|
|
|
llvm::SmallVector<llvm::Constant*, 16> InstanceMethodNames;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
|
2009-06-30 06:36:12 +04:00
|
|
|
for (ObjCProtocolDecl::instmeth_iterator iter = PD->instmeth_begin(),
|
|
|
|
E = PD->instmeth_end(); iter != E; iter++) {
|
2008-08-13 04:59:25 +04:00
|
|
|
std::string TypeStr;
|
|
|
|
Context.getObjCEncodingForMethodDecl(*iter, TypeStr);
|
|
|
|
InstanceMethodNames.push_back(
|
2008-11-24 06:33:13 +03:00
|
|
|
CGM.GetAddrOfConstantCString((*iter)->getSelector().getAsString()));
|
2008-08-14 03:20:05 +04:00
|
|
|
InstanceMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
2008-08-13 04:59:25 +04:00
|
|
|
}
|
|
|
|
// Collect information about class methods:
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> ClassMethodNames;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> ClassMethodTypes;
|
2009-04-10 01:40:53 +04:00
|
|
|
for (ObjCProtocolDecl::classmeth_iterator
|
2009-06-30 06:36:12 +04:00
|
|
|
iter = PD->classmeth_begin(), endIter = PD->classmeth_end();
|
|
|
|
iter != endIter ; iter++) {
|
2008-08-13 04:59:25 +04:00
|
|
|
std::string TypeStr;
|
|
|
|
Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
|
|
|
|
ClassMethodNames.push_back(
|
2008-11-24 06:33:13 +03:00
|
|
|
CGM.GetAddrOfConstantCString((*iter)->getSelector().getAsString()));
|
2008-08-14 03:20:05 +04:00
|
|
|
ClassMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
2008-08-13 04:59:25 +04:00
|
|
|
}
|
2008-06-01 18:13:53 +04:00
|
|
|
|
|
|
|
llvm::Constant *ProtocolList = GenerateProtocolList(Protocols);
|
|
|
|
llvm::Constant *InstanceMethodList =
|
|
|
|
GenerateProtocolMethodList(InstanceMethodNames, InstanceMethodTypes);
|
|
|
|
llvm::Constant *ClassMethodList =
|
|
|
|
GenerateProtocolMethodList(ClassMethodNames, ClassMethodTypes);
|
|
|
|
// Protocols are objects containing lists of the methods implemented and
|
|
|
|
// protocols adopted.
|
|
|
|
llvm::StructType *ProtocolTy = llvm::StructType::get(IdTy,
|
|
|
|
PtrToInt8Ty,
|
|
|
|
ProtocolList->getType(),
|
|
|
|
InstanceMethodList->getType(),
|
|
|
|
ClassMethodList->getType(),
|
|
|
|
NULL);
|
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
// The isa pointer must be set to a magic number so the runtime knows it's
|
|
|
|
// the correct layout.
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getIntToPtr(
|
|
|
|
llvm::ConstantInt::get(llvm::Type::Int32Ty, ProtocolVersion), IdTy));
|
|
|
|
Elements.push_back(MakeConstantString(ProtocolName, ".objc_protocol_name"));
|
|
|
|
Elements.push_back(ProtocolList);
|
|
|
|
Elements.push_back(InstanceMethodList);
|
|
|
|
Elements.push_back(ClassMethodList);
|
|
|
|
ExistingProtocols[ProtocolName] =
|
|
|
|
llvm::ConstantExpr::getBitCast(MakeGlobal(ProtocolTy, Elements,
|
|
|
|
".objc_protocol"), IdTy);
|
|
|
|
}
|
|
|
|
|
2008-08-16 02:20:32 +04:00
|
|
|
void CGObjCGNU::GenerateCategory(const ObjCCategoryImplDecl *OCD) {
|
2008-11-24 06:54:41 +03:00
|
|
|
std::string ClassName = OCD->getClassInterface()->getNameAsString();
|
|
|
|
std::string CategoryName = OCD->getNameAsString();
|
2008-08-16 02:20:32 +04:00
|
|
|
// Collect information about instance methods
|
|
|
|
llvm::SmallVector<Selector, 16> InstanceMethodSels;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
|
2009-04-23 05:02:12 +04:00
|
|
|
for (ObjCCategoryImplDecl::instmeth_iterator
|
2009-06-30 06:36:12 +04:00
|
|
|
iter = OCD->instmeth_begin(), endIter = OCD->instmeth_end();
|
2009-04-23 05:02:12 +04:00
|
|
|
iter != endIter ; iter++) {
|
2008-08-16 02:20:32 +04:00
|
|
|
InstanceMethodSels.push_back((*iter)->getSelector());
|
|
|
|
std::string TypeStr;
|
|
|
|
CGM.getContext().getObjCEncodingForMethodDecl(*iter,TypeStr);
|
|
|
|
InstanceMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect information about class methods
|
|
|
|
llvm::SmallVector<Selector, 16> ClassMethodSels;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> ClassMethodTypes;
|
2009-04-23 05:02:12 +04:00
|
|
|
for (ObjCCategoryImplDecl::classmeth_iterator
|
2009-06-30 06:36:12 +04:00
|
|
|
iter = OCD->classmeth_begin(), endIter = OCD->classmeth_end();
|
2009-04-23 05:02:12 +04:00
|
|
|
iter != endIter ; iter++) {
|
2008-08-16 02:20:32 +04:00
|
|
|
ClassMethodSels.push_back((*iter)->getSelector());
|
|
|
|
std::string TypeStr;
|
|
|
|
CGM.getContext().getObjCEncodingForMethodDecl(*iter,TypeStr);
|
|
|
|
ClassMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect the names of referenced protocols
|
|
|
|
llvm::SmallVector<std::string, 16> Protocols;
|
|
|
|
const ObjCInterfaceDecl *ClassDecl = OCD->getClassInterface();
|
|
|
|
const ObjCList<ObjCProtocolDecl> &Protos =ClassDecl->getReferencedProtocols();
|
|
|
|
for (ObjCList<ObjCProtocolDecl>::iterator I = Protos.begin(),
|
|
|
|
E = Protos.end(); I != E; ++I)
|
2008-11-24 08:29:24 +03:00
|
|
|
Protocols.push_back((*I)->getNameAsString());
|
2008-08-16 02:20:32 +04:00
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
std::vector<llvm::Constant*> Elements;
|
|
|
|
Elements.push_back(MakeConstantString(CategoryName));
|
|
|
|
Elements.push_back(MakeConstantString(ClassName));
|
|
|
|
// Instance method list
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getBitCast(GenerateMethodList(
|
2008-06-26 09:08:00 +04:00
|
|
|
ClassName, CategoryName, InstanceMethodSels, InstanceMethodTypes,
|
2008-06-01 18:13:53 +04:00
|
|
|
false), PtrTy));
|
|
|
|
// Class method list
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getBitCast(GenerateMethodList(
|
2008-06-26 09:08:00 +04:00
|
|
|
ClassName, CategoryName, ClassMethodSels, ClassMethodTypes, true),
|
2008-06-01 18:13:53 +04:00
|
|
|
PtrTy));
|
|
|
|
// Protocol list
|
|
|
|
Elements.push_back(llvm::ConstantExpr::getBitCast(
|
|
|
|
GenerateProtocolList(Protocols), PtrTy));
|
|
|
|
Categories.push_back(llvm::ConstantExpr::getBitCast(
|
|
|
|
MakeGlobal(llvm::StructType::get(PtrToInt8Ty, PtrToInt8Ty, PtrTy,
|
|
|
|
PtrTy, PtrTy, NULL), Elements), PtrTy));
|
|
|
|
}
|
2008-08-16 02:20:32 +04:00
|
|
|
|
|
|
|
void CGObjCGNU::GenerateClass(const ObjCImplementationDecl *OID) {
|
|
|
|
ASTContext &Context = CGM.getContext();
|
|
|
|
|
|
|
|
// Get the superclass name.
|
|
|
|
const ObjCInterfaceDecl * SuperClassDecl =
|
|
|
|
OID->getClassInterface()->getSuperClass();
|
2008-11-24 06:54:41 +03:00
|
|
|
std::string SuperClassName;
|
2009-06-15 05:09:11 +04:00
|
|
|
if (SuperClassDecl) {
|
2008-11-24 06:54:41 +03:00
|
|
|
SuperClassName = SuperClassDecl->getNameAsString();
|
2009-06-15 05:09:11 +04:00
|
|
|
EmitClassRef(SuperClassName);
|
|
|
|
}
|
2008-08-16 02:20:32 +04:00
|
|
|
|
|
|
|
// Get the class name
|
2009-04-01 06:00:48 +04:00
|
|
|
ObjCInterfaceDecl *ClassDecl =
|
|
|
|
const_cast<ObjCInterfaceDecl *>(OID->getClassInterface());
|
2008-11-24 06:54:41 +03:00
|
|
|
std::string ClassName = ClassDecl->getNameAsString();
|
2009-06-15 05:09:11 +04:00
|
|
|
// Emit the symbol that is used to generate linker errors if this class is
|
|
|
|
// referenced in other modules but not declared.
|
|
|
|
new llvm::GlobalVariable(LongTy, false, llvm::GlobalValue::ExternalLinkage,
|
|
|
|
llvm::ConstantInt::get(LongTy, 0), "__objc_class_name_" + ClassName,
|
|
|
|
&TheModule);
|
|
|
|
|
2009-05-03 14:46:44 +04:00
|
|
|
// Get the size of instances.
|
|
|
|
int instanceSize = Context.getASTObjCImplementationLayout(OID).getSize() / 8;
|
2008-08-16 02:20:32 +04:00
|
|
|
|
|
|
|
// Collect information about instance variables.
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> IvarNames;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> IvarTypes;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> IvarOffsets;
|
2009-05-20 22:41:51 +04:00
|
|
|
|
|
|
|
int superInstanceSize = !SuperClassDecl ? 0 :
|
|
|
|
Context.getASTObjCInterfaceLayout(SuperClassDecl).getSize() / 8;
|
|
|
|
// For non-fragile ivars, set the instance size to 0 - {the size of just this
|
|
|
|
// class}. The runtime will then set this to the correct value on load.
|
|
|
|
if (CGM.getContext().getLangOptions().ObjCNonFragileABI) {
|
|
|
|
instanceSize = 0 - (instanceSize - superInstanceSize);
|
|
|
|
}
|
2008-08-16 02:20:32 +04:00
|
|
|
for (ObjCInterfaceDecl::ivar_iterator iter = ClassDecl->ivar_begin(),
|
|
|
|
endIter = ClassDecl->ivar_end() ; iter != endIter ; iter++) {
|
|
|
|
// Store the name
|
2008-11-24 08:29:24 +03:00
|
|
|
IvarNames.push_back(CGM.GetAddrOfConstantCString((*iter)
|
|
|
|
->getNameAsString()));
|
2008-08-16 02:20:32 +04:00
|
|
|
// Get the type encoding for this ivar
|
|
|
|
std::string TypeStr;
|
2008-10-18 00:21:44 +04:00
|
|
|
Context.getObjCEncodingForType((*iter)->getType(), TypeStr);
|
2008-08-16 02:20:32 +04:00
|
|
|
IvarTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
|
|
|
// Get the offset
|
2009-05-20 22:41:51 +04:00
|
|
|
uint64_t Offset;
|
|
|
|
if (CGM.getContext().getLangOptions().ObjCNonFragileABI) {
|
|
|
|
Offset = ComputeIvarBaseOffset(CGM, ClassDecl, *iter) -
|
|
|
|
superInstanceSize;
|
|
|
|
ObjCIvarOffsetVariable(ClassDecl, *iter);
|
|
|
|
} else {
|
|
|
|
Offset = ComputeIvarBaseOffset(CGM, ClassDecl, *iter);
|
|
|
|
}
|
2008-08-16 02:20:32 +04:00
|
|
|
IvarOffsets.push_back(
|
2009-04-22 12:20:31 +04:00
|
|
|
llvm::ConstantInt::get(llvm::Type::Int32Ty, Offset));
|
2008-08-16 02:20:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Collect information about instance methods
|
|
|
|
llvm::SmallVector<Selector, 16> InstanceMethodSels;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> InstanceMethodTypes;
|
2009-04-23 05:02:12 +04:00
|
|
|
for (ObjCImplementationDecl::instmeth_iterator
|
2009-06-30 06:36:12 +04:00
|
|
|
iter = OID->instmeth_begin(), endIter = OID->instmeth_end();
|
2009-04-23 05:02:12 +04:00
|
|
|
iter != endIter ; iter++) {
|
2008-08-16 02:20:32 +04:00
|
|
|
InstanceMethodSels.push_back((*iter)->getSelector());
|
|
|
|
std::string TypeStr;
|
|
|
|
Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
|
|
|
|
InstanceMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
|
|
|
}
|
2009-05-17 20:49:27 +04:00
|
|
|
for (ObjCImplDecl::propimpl_iterator
|
2009-06-30 06:36:12 +04:00
|
|
|
iter = OID->propimpl_begin(), endIter = OID->propimpl_end();
|
2009-05-17 20:49:27 +04:00
|
|
|
iter != endIter ; iter++) {
|
|
|
|
ObjCPropertyDecl *property = (*iter)->getPropertyDecl();
|
|
|
|
if (ObjCMethodDecl *getter = property->getGetterMethodDecl()) {
|
|
|
|
InstanceMethodSels.push_back(getter->getSelector());
|
|
|
|
std::string TypeStr;
|
|
|
|
Context.getObjCEncodingForMethodDecl(getter,TypeStr);
|
|
|
|
InstanceMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
|
|
|
}
|
|
|
|
if (ObjCMethodDecl *setter = property->getSetterMethodDecl()) {
|
|
|
|
InstanceMethodSels.push_back(setter->getSelector());
|
|
|
|
std::string TypeStr;
|
|
|
|
Context.getObjCEncodingForMethodDecl(setter,TypeStr);
|
|
|
|
InstanceMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
|
|
|
}
|
|
|
|
}
|
2008-08-16 02:20:32 +04:00
|
|
|
|
|
|
|
// Collect information about class methods
|
|
|
|
llvm::SmallVector<Selector, 16> ClassMethodSels;
|
|
|
|
llvm::SmallVector<llvm::Constant*, 16> ClassMethodTypes;
|
2009-04-23 05:02:12 +04:00
|
|
|
for (ObjCImplementationDecl::classmeth_iterator
|
2009-06-30 06:36:12 +04:00
|
|
|
iter = OID->classmeth_begin(), endIter = OID->classmeth_end();
|
2009-04-23 05:02:12 +04:00
|
|
|
iter != endIter ; iter++) {
|
2008-08-16 02:20:32 +04:00
|
|
|
ClassMethodSels.push_back((*iter)->getSelector());
|
|
|
|
std::string TypeStr;
|
|
|
|
Context.getObjCEncodingForMethodDecl((*iter),TypeStr);
|
|
|
|
ClassMethodTypes.push_back(CGM.GetAddrOfConstantCString(TypeStr));
|
|
|
|
}
|
|
|
|
// Collect the names of referenced protocols
|
|
|
|
llvm::SmallVector<std::string, 16> Protocols;
|
|
|
|
const ObjCList<ObjCProtocolDecl> &Protos =ClassDecl->getReferencedProtocols();
|
|
|
|
for (ObjCList<ObjCProtocolDecl>::iterator I = Protos.begin(),
|
|
|
|
E = Protos.end(); I != E; ++I)
|
2008-11-24 08:29:24 +03:00
|
|
|
Protocols.push_back((*I)->getNameAsString());
|
2008-08-16 02:20:32 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
// Get the superclass pointer.
|
|
|
|
llvm::Constant *SuperClass;
|
2008-11-24 06:54:41 +03:00
|
|
|
if (!SuperClassName.empty()) {
|
2008-06-01 18:13:53 +04:00
|
|
|
SuperClass = MakeConstantString(SuperClassName, ".super_class_name");
|
|
|
|
} else {
|
2009-01-27 08:06:01 +03:00
|
|
|
SuperClass = llvm::ConstantPointerNull::get(PtrToInt8Ty);
|
2008-06-01 18:13:53 +04:00
|
|
|
}
|
|
|
|
// Empty vector used to construct empty method lists
|
|
|
|
llvm::SmallVector<llvm::Constant*, 1> empty;
|
|
|
|
// Generate the method and instance variable lists
|
|
|
|
llvm::Constant *MethodList = GenerateMethodList(ClassName, "",
|
2008-06-26 09:08:00 +04:00
|
|
|
InstanceMethodSels, InstanceMethodTypes, false);
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *ClassMethodList = GenerateMethodList(ClassName, "",
|
2008-06-26 09:08:00 +04:00
|
|
|
ClassMethodSels, ClassMethodTypes, true);
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Constant *IvarList = GenerateIvarList(IvarNames, IvarTypes,
|
|
|
|
IvarOffsets);
|
|
|
|
//Generate metaclass for class methods
|
|
|
|
llvm::Constant *MetaClassStruct = GenerateClassStructure(NULLPtr,
|
2008-07-21 10:31:05 +04:00
|
|
|
NULLPtr, 0x2L, /*name*/"", 0, Zeros[0], GenerateIvarList(
|
2008-06-01 18:13:53 +04:00
|
|
|
empty, empty, empty), ClassMethodList, NULLPtr);
|
2009-05-04 19:31:17 +04:00
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
// Generate the class structure
|
2008-11-24 06:54:41 +03:00
|
|
|
llvm::Constant *ClassStruct =
|
|
|
|
GenerateClassStructure(MetaClassStruct, SuperClass, 0x1L,
|
|
|
|
ClassName.c_str(), 0,
|
2008-12-04 03:10:55 +03:00
|
|
|
llvm::ConstantInt::get(LongTy, instanceSize), IvarList,
|
2008-06-01 18:13:53 +04:00
|
|
|
MethodList, GenerateProtocolList(Protocols));
|
2009-05-04 19:31:17 +04:00
|
|
|
|
|
|
|
// Resolve the class aliases, if they exist.
|
|
|
|
if (ClassPtrAlias) {
|
|
|
|
ClassPtrAlias->setAliasee(
|
|
|
|
llvm::ConstantExpr::getBitCast(ClassStruct, IdTy));
|
|
|
|
ClassPtrAlias = 0;
|
|
|
|
}
|
|
|
|
if (MetaClassPtrAlias) {
|
|
|
|
MetaClassPtrAlias->setAliasee(
|
|
|
|
llvm::ConstantExpr::getBitCast(MetaClassStruct, IdTy));
|
|
|
|
MetaClassPtrAlias = 0;
|
|
|
|
}
|
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
// Add class structure to list to be added to the symtab later
|
|
|
|
ClassStruct = llvm::ConstantExpr::getBitCast(ClassStruct, PtrToInt8Ty);
|
|
|
|
Classes.push_back(ClassStruct);
|
|
|
|
}
|
|
|
|
|
2009-06-24 01:47:46 +04:00
|
|
|
void CGObjCGNU::MergeMetadataGlobals(
|
|
|
|
std::vector<llvm::Constant*> &UsedArray) {
|
|
|
|
}
|
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::Function *CGObjCGNU::ModuleInitFunction() {
|
|
|
|
// Only emit an ObjC load function if no Objective-C stuff has been called
|
|
|
|
if (Classes.empty() && Categories.empty() && ConstantStrings.empty() &&
|
|
|
|
ExistingProtocols.empty() && TypedSelectors.empty() &&
|
2008-06-01 19:14:46 +04:00
|
|
|
UntypedSelectors.empty())
|
2008-06-01 18:13:53 +04:00
|
|
|
return NULL;
|
2008-06-01 20:00:02 +04:00
|
|
|
|
2009-01-27 08:06:01 +03:00
|
|
|
const llvm::StructType *SelStructTy = dyn_cast<llvm::StructType>(
|
|
|
|
SelectorTy->getElementType());
|
|
|
|
const llvm::Type *SelStructPtrTy = SelectorTy;
|
|
|
|
bool isSelOpaque = false;
|
|
|
|
if (SelStructTy == 0) {
|
|
|
|
SelStructTy = llvm::StructType::get(PtrToInt8Ty, PtrToInt8Ty, NULL);
|
|
|
|
SelStructPtrTy = llvm::PointerType::getUnqual(SelStructTy);
|
|
|
|
isSelOpaque = true;
|
|
|
|
}
|
|
|
|
|
2008-06-01 20:00:02 +04:00
|
|
|
// Name the ObjC types to make the IR a bit easier to read
|
2009-01-27 08:06:01 +03:00
|
|
|
TheModule.addTypeName(".objc_selector", SelStructPtrTy);
|
2008-06-01 20:00:02 +04:00
|
|
|
TheModule.addTypeName(".objc_id", IdTy);
|
|
|
|
TheModule.addTypeName(".objc_imp", IMPTy);
|
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
std::vector<llvm::Constant*> Elements;
|
2009-04-26 03:19:45 +04:00
|
|
|
llvm::Constant *Statics = NULLPtr;
|
2008-06-01 18:13:53 +04:00
|
|
|
// Generate statics list:
|
2009-04-26 03:19:45 +04:00
|
|
|
if (ConstantStrings.size()) {
|
|
|
|
llvm::ArrayType *StaticsArrayTy = llvm::ArrayType::get(PtrToInt8Ty,
|
|
|
|
ConstantStrings.size() + 1);
|
|
|
|
ConstantStrings.push_back(NULLPtr);
|
|
|
|
Elements.push_back(MakeConstantString("NSConstantString",
|
|
|
|
".objc_static_class_name"));
|
|
|
|
Elements.push_back(llvm::ConstantArray::get(StaticsArrayTy,
|
|
|
|
ConstantStrings));
|
|
|
|
llvm::StructType *StaticsListTy =
|
|
|
|
llvm::StructType::get(PtrToInt8Ty, StaticsArrayTy, NULL);
|
|
|
|
llvm::Type *StaticsListPtrTy = llvm::PointerType::getUnqual(StaticsListTy);
|
|
|
|
Statics = MakeGlobal(StaticsListTy, Elements, ".objc_statics");
|
|
|
|
llvm::ArrayType *StaticsListArrayTy =
|
|
|
|
llvm::ArrayType::get(StaticsListPtrTy, 2);
|
|
|
|
Elements.clear();
|
|
|
|
Elements.push_back(Statics);
|
|
|
|
Elements.push_back(llvm::Constant::getNullValue(StaticsListPtrTy));
|
|
|
|
Statics = MakeGlobal(StaticsListArrayTy, Elements, ".objc_statics_ptr");
|
|
|
|
Statics = llvm::ConstantExpr::getBitCast(Statics, PtrTy);
|
|
|
|
}
|
2008-06-01 18:13:53 +04:00
|
|
|
// Array of classes, categories, and constant objects
|
|
|
|
llvm::ArrayType *ClassListTy = llvm::ArrayType::get(PtrToInt8Ty,
|
|
|
|
Classes.size() + Categories.size() + 2);
|
2009-01-27 08:06:01 +03:00
|
|
|
llvm::StructType *SymTabTy = llvm::StructType::get(LongTy, SelStructPtrTy,
|
2008-06-26 08:10:42 +04:00
|
|
|
llvm::Type::Int16Ty,
|
|
|
|
llvm::Type::Int16Ty,
|
|
|
|
ClassListTy, NULL);
|
2008-06-01 18:13:53 +04:00
|
|
|
|
|
|
|
Elements.clear();
|
|
|
|
// Pointer to an array of selectors used in this module.
|
|
|
|
std::vector<llvm::Constant*> Selectors;
|
|
|
|
for (std::map<TypedSelector, llvm::GlobalAlias*>::iterator
|
|
|
|
iter = TypedSelectors.begin(), iterEnd = TypedSelectors.end();
|
|
|
|
iter != iterEnd ; ++iter) {
|
2008-06-26 08:10:42 +04:00
|
|
|
Elements.push_back(MakeConstantString(iter->first.first, ".objc_sel_name"));
|
|
|
|
Elements.push_back(MakeConstantString(iter->first.second,
|
|
|
|
".objc_sel_types"));
|
2008-06-01 18:13:53 +04:00
|
|
|
Selectors.push_back(llvm::ConstantStruct::get(SelStructTy, Elements));
|
|
|
|
Elements.clear();
|
|
|
|
}
|
|
|
|
for (llvm::StringMap<llvm::GlobalAlias*>::iterator
|
|
|
|
iter = UntypedSelectors.begin(), iterEnd = UntypedSelectors.end();
|
2008-06-26 08:10:42 +04:00
|
|
|
iter != iterEnd; ++iter) {
|
2008-06-01 18:13:53 +04:00
|
|
|
Elements.push_back(
|
2008-06-26 08:10:42 +04:00
|
|
|
MakeConstantString(iter->getKeyData(), ".objc_sel_name"));
|
2008-06-01 18:13:53 +04:00
|
|
|
Elements.push_back(NULLPtr);
|
|
|
|
Selectors.push_back(llvm::ConstantStruct::get(SelStructTy, Elements));
|
|
|
|
Elements.clear();
|
|
|
|
}
|
|
|
|
Elements.push_back(NULLPtr);
|
|
|
|
Elements.push_back(NULLPtr);
|
|
|
|
Selectors.push_back(llvm::ConstantStruct::get(SelStructTy, Elements));
|
|
|
|
Elements.clear();
|
|
|
|
// Number of static selectors
|
|
|
|
Elements.push_back(llvm::ConstantInt::get(LongTy, Selectors.size() ));
|
|
|
|
llvm::Constant *SelectorList = MakeGlobal(
|
|
|
|
llvm::ArrayType::get(SelStructTy, Selectors.size()), Selectors,
|
|
|
|
".objc_selector_list");
|
2009-01-27 08:06:01 +03:00
|
|
|
Elements.push_back(llvm::ConstantExpr::getBitCast(SelectorList,
|
|
|
|
SelStructPtrTy));
|
2008-06-01 18:13:53 +04:00
|
|
|
|
|
|
|
// Now that all of the static selectors exist, create pointers to them.
|
|
|
|
int index = 0;
|
|
|
|
for (std::map<TypedSelector, llvm::GlobalAlias*>::iterator
|
|
|
|
iter=TypedSelectors.begin(), iterEnd =TypedSelectors.end();
|
|
|
|
iter != iterEnd; ++iter) {
|
|
|
|
llvm::Constant *Idxs[] = {Zeros[0],
|
|
|
|
llvm::ConstantInt::get(llvm::Type::Int32Ty, index++), Zeros[0]};
|
2009-01-27 08:06:01 +03:00
|
|
|
llvm::Constant *SelPtr = new llvm::GlobalVariable(SelStructPtrTy,
|
|
|
|
true, llvm::GlobalValue::InternalLinkage,
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::ConstantExpr::getGetElementPtr(SelectorList, Idxs, 2),
|
|
|
|
".objc_sel_ptr", &TheModule);
|
2009-01-27 08:06:01 +03:00
|
|
|
// If selectors are defined as an opaque type, cast the pointer to this
|
|
|
|
// type.
|
|
|
|
if (isSelOpaque) {
|
|
|
|
SelPtr = llvm::ConstantExpr::getBitCast(SelPtr,
|
|
|
|
llvm::PointerType::getUnqual(SelectorTy));
|
|
|
|
}
|
2008-06-01 18:13:53 +04:00
|
|
|
(*iter).second->setAliasee(SelPtr);
|
|
|
|
}
|
|
|
|
for (llvm::StringMap<llvm::GlobalAlias*>::iterator
|
|
|
|
iter=UntypedSelectors.begin(), iterEnd = UntypedSelectors.end();
|
|
|
|
iter != iterEnd; iter++) {
|
|
|
|
llvm::Constant *Idxs[] = {Zeros[0],
|
|
|
|
llvm::ConstantInt::get(llvm::Type::Int32Ty, index++), Zeros[0]};
|
2009-01-27 08:06:01 +03:00
|
|
|
llvm::Constant *SelPtr = new llvm::GlobalVariable(SelStructPtrTy, true,
|
2008-06-01 18:13:53 +04:00
|
|
|
llvm::GlobalValue::InternalLinkage,
|
|
|
|
llvm::ConstantExpr::getGetElementPtr(SelectorList, Idxs, 2),
|
|
|
|
".objc_sel_ptr", &TheModule);
|
2009-01-27 08:06:01 +03:00
|
|
|
// If selectors are defined as an opaque type, cast the pointer to this
|
|
|
|
// type.
|
|
|
|
if (isSelOpaque) {
|
|
|
|
SelPtr = llvm::ConstantExpr::getBitCast(SelPtr,
|
|
|
|
llvm::PointerType::getUnqual(SelectorTy));
|
|
|
|
}
|
2008-06-01 18:13:53 +04:00
|
|
|
(*iter).second->setAliasee(SelPtr);
|
|
|
|
}
|
|
|
|
// Number of classes defined.
|
|
|
|
Elements.push_back(llvm::ConstantInt::get(llvm::Type::Int16Ty,
|
|
|
|
Classes.size()));
|
|
|
|
// Number of categories defined
|
|
|
|
Elements.push_back(llvm::ConstantInt::get(llvm::Type::Int16Ty,
|
|
|
|
Categories.size()));
|
|
|
|
// Create an array of classes, then categories, then static object instances
|
|
|
|
Classes.insert(Classes.end(), Categories.begin(), Categories.end());
|
|
|
|
// NULL-terminated list of static object instances (mainly constant strings)
|
|
|
|
Classes.push_back(Statics);
|
|
|
|
Classes.push_back(NULLPtr);
|
|
|
|
llvm::Constant *ClassList = llvm::ConstantArray::get(ClassListTy, Classes);
|
|
|
|
Elements.push_back(ClassList);
|
|
|
|
// Construct the symbol table
|
|
|
|
llvm::Constant *SymTab= MakeGlobal(SymTabTy, Elements);
|
|
|
|
|
|
|
|
// The symbol table is contained in a module which has some version-checking
|
|
|
|
// constants
|
|
|
|
llvm::StructType * ModuleTy = llvm::StructType::get(LongTy, LongTy,
|
|
|
|
PtrToInt8Ty, llvm::PointerType::getUnqual(SymTabTy), NULL);
|
|
|
|
Elements.clear();
|
|
|
|
// Runtime version used for compatibility checking.
|
2009-05-20 22:41:51 +04:00
|
|
|
if (CGM.getContext().getLangOptions().ObjCNonFragileABI) {
|
|
|
|
Elements.push_back(llvm::ConstantInt::get(LongTy,
|
|
|
|
NonFragileRuntimeVersion));
|
|
|
|
} else {
|
|
|
|
Elements.push_back(llvm::ConstantInt::get(LongTy, RuntimeVersion));
|
|
|
|
}
|
2009-04-01 23:49:42 +04:00
|
|
|
// sizeof(ModuleTy)
|
|
|
|
llvm::TargetData td = llvm::TargetData::TargetData(&TheModule);
|
|
|
|
Elements.push_back(llvm::ConstantInt::get(LongTy, td.getTypeSizeInBits(ModuleTy)/8));
|
2008-06-01 18:13:53 +04:00
|
|
|
//FIXME: Should be the path to the file where this module was declared
|
|
|
|
Elements.push_back(NULLPtr);
|
|
|
|
Elements.push_back(SymTab);
|
|
|
|
llvm::Value *Module = MakeGlobal(ModuleTy, Elements);
|
|
|
|
|
|
|
|
// Create the load function calling the runtime entry point with the module
|
|
|
|
// structure
|
|
|
|
std::vector<const llvm::Type*> VoidArgs;
|
|
|
|
llvm::Function * LoadFunction = llvm::Function::Create(
|
|
|
|
llvm::FunctionType::get(llvm::Type::VoidTy, VoidArgs, false),
|
|
|
|
llvm::GlobalValue::InternalLinkage, ".objc_load_function",
|
|
|
|
&TheModule);
|
|
|
|
llvm::BasicBlock *EntryBB = llvm::BasicBlock::Create("entry", LoadFunction);
|
2008-11-01 04:53:16 +03:00
|
|
|
CGBuilderTy Builder;
|
2008-06-01 18:13:53 +04:00
|
|
|
Builder.SetInsertPoint(EntryBB);
|
2009-03-30 22:02:14 +04:00
|
|
|
|
|
|
|
std::vector<const llvm::Type*> Params(1,
|
|
|
|
llvm::PointerType::getUnqual(ModuleTy));
|
|
|
|
llvm::Value *Register = CGM.CreateRuntimeFunction(llvm::FunctionType::get(
|
|
|
|
llvm::Type::VoidTy, Params, true), "__objc_exec_class");
|
2008-06-01 18:13:53 +04:00
|
|
|
Builder.CreateCall(Register, Module);
|
|
|
|
Builder.CreateRetVoid();
|
2009-05-20 22:41:51 +04:00
|
|
|
|
2008-06-01 18:13:53 +04:00
|
|
|
return LoadFunction;
|
|
|
|
}
|
2008-08-16 02:20:32 +04:00
|
|
|
|
2009-01-11 00:06:09 +03:00
|
|
|
llvm::Function *CGObjCGNU::GenerateMethod(const ObjCMethodDecl *OMD,
|
|
|
|
const ObjCContainerDecl *CD) {
|
2008-08-16 02:20:32 +04:00
|
|
|
const ObjCCategoryImplDecl *OCD =
|
2009-01-08 22:41:02 +03:00
|
|
|
dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext());
|
2008-11-24 06:33:13 +03:00
|
|
|
std::string CategoryName = OCD ? OCD->getNameAsString() : "";
|
|
|
|
std::string ClassName = OMD->getClassInterface()->getNameAsString();
|
|
|
|
std::string MethodName = OMD->getSelector().getAsString();
|
2009-01-09 20:18:27 +03:00
|
|
|
bool isClassMethod = !OMD->isInstanceMethod();
|
2008-03-31 03:03:07 +04:00
|
|
|
|
2009-02-03 02:23:47 +03:00
|
|
|
CodeGenTypes &Types = CGM.getTypes();
|
2008-09-10 08:01:49 +04:00
|
|
|
const llvm::FunctionType *MethodTy =
|
2009-02-03 02:23:47 +03:00
|
|
|
Types.GetFunctionType(Types.getFunctionInfo(OMD), OMD->isVariadic());
|
2008-06-01 18:13:53 +04:00
|
|
|
std::string FunctionName = SymbolNameForMethod(ClassName, CategoryName,
|
|
|
|
MethodName, isClassMethod);
|
|
|
|
|
2008-04-07 00:42:52 +04:00
|
|
|
llvm::Function *Method = llvm::Function::Create(MethodTy,
|
2008-03-31 03:03:07 +04:00
|
|
|
llvm::GlobalValue::InternalLinkage,
|
2008-06-01 18:13:53 +04:00
|
|
|
FunctionName,
|
2008-03-31 03:03:07 +04:00
|
|
|
&TheModule);
|
|
|
|
return Method;
|
|
|
|
}
|
|
|
|
|
2008-09-24 07:38:44 +04:00
|
|
|
llvm::Function *CGObjCGNU::GetPropertyGetFunction() {
|
2009-05-19 04:28:43 +04:00
|
|
|
std::vector<const llvm::Type*> Params;
|
|
|
|
const llvm::Type *BoolTy =
|
|
|
|
CGM.getTypes().ConvertType(CGM.getContext().BoolTy);
|
|
|
|
Params.push_back(IdTy);
|
|
|
|
Params.push_back(SelectorTy);
|
|
|
|
// FIXME: Using LongTy for ptrdiff_t is probably broken on Win64
|
|
|
|
Params.push_back(LongTy);
|
|
|
|
Params.push_back(BoolTy);
|
|
|
|
// void objc_getProperty (id, SEL, ptrdiff_t, bool)
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(IdTy, Params, false);
|
|
|
|
return cast<llvm::Function>(CGM.CreateRuntimeFunction(FTy,
|
|
|
|
"objc_getProperty"));
|
2008-09-24 07:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Function *CGObjCGNU::GetPropertySetFunction() {
|
2009-05-19 04:28:43 +04:00
|
|
|
std::vector<const llvm::Type*> Params;
|
|
|
|
const llvm::Type *BoolTy =
|
|
|
|
CGM.getTypes().ConvertType(CGM.getContext().BoolTy);
|
|
|
|
Params.push_back(IdTy);
|
|
|
|
Params.push_back(SelectorTy);
|
|
|
|
// FIXME: Using LongTy for ptrdiff_t is probably broken on Win64
|
|
|
|
Params.push_back(LongTy);
|
|
|
|
Params.push_back(IdTy);
|
|
|
|
Params.push_back(BoolTy);
|
|
|
|
Params.push_back(BoolTy);
|
|
|
|
// void objc_setProperty (id, SEL, ptrdiff_t, id, bool, bool)
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::VoidTy, Params, false);
|
|
|
|
return cast<llvm::Function>(CGM.CreateRuntimeFunction(FTy,
|
|
|
|
"objc_setProperty"));
|
2008-09-24 07:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
llvm::Function *CGObjCGNU::EnumerationMutationFunction() {
|
2009-03-30 22:02:14 +04:00
|
|
|
std::vector<const llvm::Type*> Params(1, IdTy);
|
|
|
|
return cast<llvm::Function>(CGM.CreateRuntimeFunction(
|
|
|
|
llvm::FunctionType::get(llvm::Type::VoidTy, Params, true),
|
|
|
|
"objc_enumerationMutation"));
|
2008-08-31 08:05:03 +04:00
|
|
|
}
|
|
|
|
|
2008-11-21 03:49:24 +03:00
|
|
|
void CGObjCGNU::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF,
|
|
|
|
const Stmt &S) {
|
2009-05-08 04:11:50 +04:00
|
|
|
// Pointer to the personality function
|
|
|
|
llvm::Constant *Personality =
|
|
|
|
CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::Int32Ty,
|
|
|
|
std::vector<const llvm::Type*>(), true),
|
|
|
|
"__gnu_objc_personality_v0");
|
|
|
|
Personality = llvm::ConstantExpr::getBitCast(Personality, PtrTy);
|
|
|
|
std::vector<const llvm::Type*> Params;
|
|
|
|
Params.push_back(PtrTy);
|
|
|
|
llvm::Value *RethrowFn =
|
|
|
|
CGM.CreateRuntimeFunction(llvm::FunctionType::get(llvm::Type::VoidTy,
|
|
|
|
Params, false), "_Unwind_Resume_or_Rethrow");
|
|
|
|
|
|
|
|
bool isTry = isa<ObjCAtTryStmt>(S);
|
|
|
|
llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try");
|
|
|
|
llvm::BasicBlock *PrevLandingPad = CGF.getInvokeDest();
|
|
|
|
llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler");
|
2009-05-11 22:16:28 +04:00
|
|
|
llvm::BasicBlock *CatchInCatch = CGF.createBasicBlock("catch.rethrow");
|
2009-05-08 04:11:50 +04:00
|
|
|
llvm::BasicBlock *FinallyBlock = CGF.createBasicBlock("finally");
|
|
|
|
llvm::BasicBlock *FinallyRethrow = CGF.createBasicBlock("finally.throw");
|
|
|
|
llvm::BasicBlock *FinallyEnd = CGF.createBasicBlock("finally.end");
|
|
|
|
|
|
|
|
// GNU runtime does not currently support @synchronized()
|
|
|
|
if (!isTry) {
|
2009-05-11 22:16:28 +04:00
|
|
|
std::vector<const llvm::Type*> Args(1, IdTy);
|
|
|
|
llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::VoidTy, Args, false);
|
|
|
|
llvm::Value *SyncEnter = CGM.CreateRuntimeFunction(FTy, "objc_sync_enter");
|
|
|
|
llvm::Value *SyncArg =
|
|
|
|
CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
|
|
|
|
SyncArg = CGF.Builder.CreateBitCast(SyncArg, IdTy);
|
|
|
|
CGF.Builder.CreateCall(SyncEnter, SyncArg);
|
2009-05-08 04:11:50 +04:00
|
|
|
}
|
|
|
|
|
2009-05-11 22:16:28 +04:00
|
|
|
|
2009-05-08 04:11:50 +04:00
|
|
|
// Push an EH context entry, used for handling rethrows and jumps
|
|
|
|
// through finally.
|
|
|
|
CGF.PushCleanupBlock(FinallyBlock);
|
|
|
|
|
|
|
|
// Emit the statements in the @try {} block
|
|
|
|
CGF.setInvokeDest(TryHandler);
|
|
|
|
|
|
|
|
CGF.EmitBlock(TryBlock);
|
|
|
|
CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody()
|
|
|
|
: cast<ObjCAtSynchronizedStmt>(S).getSynchBody());
|
|
|
|
|
|
|
|
// Jump to @finally if there is no exception
|
|
|
|
CGF.EmitBranchThroughCleanup(FinallyEnd);
|
|
|
|
|
|
|
|
// Emit the handlers
|
|
|
|
CGF.EmitBlock(TryHandler);
|
|
|
|
|
2009-05-08 21:36:08 +04:00
|
|
|
// Get the correct versions of the exception handling intrinsics
|
|
|
|
llvm::TargetData td = llvm::TargetData::TargetData(&TheModule);
|
|
|
|
int PointerWidth = td.getTypeSizeInBits(PtrTy);
|
|
|
|
assert((PointerWidth == 32 || PointerWidth == 64) &&
|
|
|
|
"Can't yet handle exceptions if pointers are not 32 or 64 bits");
|
2009-05-08 04:11:50 +04:00
|
|
|
llvm::Value *llvm_eh_exception =
|
|
|
|
CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_exception);
|
2009-05-08 21:36:08 +04:00
|
|
|
llvm::Value *llvm_eh_selector = PointerWidth == 32 ?
|
|
|
|
CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_selector_i32) :
|
|
|
|
CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_selector_i64);
|
|
|
|
llvm::Value *llvm_eh_typeid_for = PointerWidth == 32 ?
|
|
|
|
CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for_i32) :
|
|
|
|
CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for_i64);
|
2009-05-08 04:11:50 +04:00
|
|
|
|
|
|
|
// Exception object
|
|
|
|
llvm::Value *Exc = CGF.Builder.CreateCall(llvm_eh_exception, "exc");
|
|
|
|
llvm::Value *RethrowPtr = CGF.CreateTempAlloca(Exc->getType(), "_rethrow");
|
|
|
|
|
|
|
|
llvm::SmallVector<llvm::Value*, 8> ESelArgs;
|
|
|
|
llvm::SmallVector<std::pair<const ParmVarDecl*, const Stmt*>, 8> Handlers;
|
|
|
|
|
|
|
|
ESelArgs.push_back(Exc);
|
|
|
|
ESelArgs.push_back(Personality);
|
|
|
|
|
|
|
|
bool HasCatchAll = false;
|
|
|
|
// Only @try blocks are allowed @catch blocks, but both can have @finally
|
|
|
|
if (isTry) {
|
|
|
|
if (const ObjCAtCatchStmt* CatchStmt =
|
|
|
|
cast<ObjCAtTryStmt>(S).getCatchStmts()) {
|
2009-05-11 22:16:28 +04:00
|
|
|
CGF.setInvokeDest(CatchInCatch);
|
2009-05-08 04:11:50 +04:00
|
|
|
|
|
|
|
for (; CatchStmt; CatchStmt = CatchStmt->getNextCatchStmt()) {
|
|
|
|
const ParmVarDecl *CatchDecl = CatchStmt->getCatchParamDecl();
|
|
|
|
Handlers.push_back(std::make_pair(CatchDecl, CatchStmt->getCatchBody()));
|
|
|
|
|
|
|
|
// @catch() and @catch(id) both catch any ObjC exception
|
|
|
|
if (!CatchDecl || CGF.getContext().isObjCIdType(CatchDecl->getType())
|
|
|
|
|| CatchDecl->getType()->isObjCQualifiedIdType()) {
|
|
|
|
// Use i8* null here to signal this is a catch all, not a cleanup.
|
|
|
|
ESelArgs.push_back(NULLPtr);
|
|
|
|
HasCatchAll = true;
|
|
|
|
// No further catches after this one will ever by reached
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// All other types should be Objective-C interface pointer types.
|
|
|
|
const PointerType *PT = CatchDecl->getType()->getAsPointerType();
|
|
|
|
assert(PT && "Invalid @catch type.");
|
|
|
|
const ObjCInterfaceType *IT =
|
|
|
|
PT->getPointeeType()->getAsObjCInterfaceType();
|
|
|
|
assert(IT && "Invalid @catch type.");
|
2009-05-08 21:36:08 +04:00
|
|
|
llvm::Value *EHType =
|
|
|
|
MakeConstantString(IT->getDecl()->getNameAsString());
|
2009-05-08 04:11:50 +04:00
|
|
|
ESelArgs.push_back(EHType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We use a cleanup unless there was already a catch all.
|
|
|
|
if (!HasCatchAll) {
|
|
|
|
ESelArgs.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
|
|
|
|
Handlers.push_back(std::make_pair((const ParmVarDecl*) 0, (const Stmt*) 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find which handler was matched.
|
2009-05-08 21:36:08 +04:00
|
|
|
llvm::Value *ESelector = CGF.Builder.CreateCall(llvm_eh_selector,
|
2009-05-08 04:11:50 +04:00
|
|
|
ESelArgs.begin(), ESelArgs.end(), "selector");
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = Handlers.size(); i != e; ++i) {
|
|
|
|
const ParmVarDecl *CatchParam = Handlers[i].first;
|
|
|
|
const Stmt *CatchBody = Handlers[i].second;
|
|
|
|
|
|
|
|
llvm::BasicBlock *Next = 0;
|
|
|
|
|
|
|
|
// The last handler always matches.
|
|
|
|
if (i + 1 != e) {
|
|
|
|
assert(CatchParam && "Only last handler can be a catch all.");
|
|
|
|
|
|
|
|
// Test whether this block matches the type for the selector and branch
|
|
|
|
// to Match if it does, or to the next BB if it doesn't.
|
|
|
|
llvm::BasicBlock *Match = CGF.createBasicBlock("match");
|
|
|
|
Next = CGF.createBasicBlock("catch.next");
|
2009-05-08 21:36:08 +04:00
|
|
|
llvm::Value *Id = CGF.Builder.CreateCall(llvm_eh_typeid_for,
|
2009-05-08 04:11:50 +04:00
|
|
|
CGF.Builder.CreateBitCast(ESelArgs[i+2], PtrTy));
|
|
|
|
CGF.Builder.CreateCondBr(CGF.Builder.CreateICmpEQ(ESelector, Id), Match,
|
|
|
|
Next);
|
|
|
|
|
|
|
|
CGF.EmitBlock(Match);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CatchBody) {
|
|
|
|
llvm::Value *ExcObject = CGF.Builder.CreateBitCast(Exc,
|
|
|
|
CGF.ConvertType(CatchParam->getType()));
|
|
|
|
|
|
|
|
// Bind the catch parameter if it exists.
|
|
|
|
if (CatchParam) {
|
|
|
|
// CatchParam is a ParmVarDecl because of the grammar
|
|
|
|
// construction used to handle this, but for codegen purposes
|
|
|
|
// we treat this as a local decl.
|
|
|
|
CGF.EmitLocalBlockVarDecl(*CatchParam);
|
|
|
|
CGF.Builder.CreateStore(ExcObject, CGF.GetAddrOfLocalVar(CatchParam));
|
|
|
|
}
|
|
|
|
|
|
|
|
CGF.ObjCEHValueStack.push_back(ExcObject);
|
|
|
|
CGF.EmitStmt(CatchBody);
|
|
|
|
CGF.ObjCEHValueStack.pop_back();
|
|
|
|
|
|
|
|
CGF.EmitBranchThroughCleanup(FinallyEnd);
|
|
|
|
|
|
|
|
if (Next)
|
|
|
|
CGF.EmitBlock(Next);
|
|
|
|
} else {
|
|
|
|
assert(!Next && "catchup should be last handler.");
|
|
|
|
|
|
|
|
CGF.Builder.CreateStore(Exc, RethrowPtr);
|
|
|
|
CGF.EmitBranchThroughCleanup(FinallyRethrow);
|
|
|
|
}
|
|
|
|
}
|
2009-05-11 22:16:28 +04:00
|
|
|
// The @finally block is a secondary landing pad for any exceptions thrown in
|
|
|
|
// @catch() blocks
|
|
|
|
CGF.EmitBlock(CatchInCatch);
|
|
|
|
Exc = CGF.Builder.CreateCall(llvm_eh_exception, "exc");
|
|
|
|
ESelArgs.clear();
|
|
|
|
ESelArgs.push_back(Exc);
|
|
|
|
ESelArgs.push_back(Personality);
|
|
|
|
ESelArgs.push_back(llvm::ConstantInt::get(llvm::Type::Int32Ty, 0));
|
|
|
|
CGF.Builder.CreateCall(llvm_eh_selector, ESelArgs.begin(), ESelArgs.end(),
|
|
|
|
"selector");
|
|
|
|
CGF.Builder.CreateCall(llvm_eh_typeid_for,
|
|
|
|
CGF.Builder.CreateIntToPtr(ESelArgs[2], PtrTy));
|
|
|
|
CGF.Builder.CreateStore(Exc, RethrowPtr);
|
|
|
|
CGF.EmitBranchThroughCleanup(FinallyRethrow);
|
|
|
|
|
2009-05-08 04:11:50 +04:00
|
|
|
CodeGenFunction::CleanupBlockInfo Info = CGF.PopCleanupBlock();
|
|
|
|
|
|
|
|
CGF.setInvokeDest(PrevLandingPad);
|
|
|
|
|
|
|
|
CGF.EmitBlock(FinallyBlock);
|
|
|
|
|
2009-05-11 22:16:28 +04:00
|
|
|
|
2009-05-08 04:11:50 +04:00
|
|
|
if (isTry) {
|
|
|
|
if (const ObjCAtFinallyStmt* FinallyStmt =
|
|
|
|
cast<ObjCAtTryStmt>(S).getFinallyStmt())
|
|
|
|
CGF.EmitStmt(FinallyStmt->getFinallyBody());
|
|
|
|
} else {
|
2009-05-11 22:16:28 +04:00
|
|
|
// Emit 'objc_sync_exit(expr)' as finally's sole statement for
|
2009-05-08 04:11:50 +04:00
|
|
|
// @synchronized.
|
2009-05-11 22:16:28 +04:00
|
|
|
std::vector<const llvm::Type*> Args(1, IdTy);
|
|
|
|
llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::VoidTy, Args, false);
|
|
|
|
llvm::Value *SyncExit = CGM.CreateRuntimeFunction(FTy, "objc_sync_exit");
|
|
|
|
llvm::Value *SyncArg =
|
|
|
|
CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr());
|
|
|
|
SyncArg = CGF.Builder.CreateBitCast(SyncArg, IdTy);
|
|
|
|
CGF.Builder.CreateCall(SyncExit, SyncArg);
|
2009-05-08 04:11:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Info.SwitchBlock)
|
|
|
|
CGF.EmitBlock(Info.SwitchBlock);
|
|
|
|
if (Info.EndBlock)
|
|
|
|
CGF.EmitBlock(Info.EndBlock);
|
|
|
|
|
|
|
|
// Branch around the rethrow code.
|
|
|
|
CGF.EmitBranch(FinallyEnd);
|
|
|
|
|
|
|
|
CGF.EmitBlock(FinallyRethrow);
|
|
|
|
CGF.Builder.CreateCall(RethrowFn, CGF.Builder.CreateLoad(RethrowPtr));
|
|
|
|
CGF.Builder.CreateUnreachable();
|
|
|
|
|
|
|
|
CGF.EmitBlock(FinallyEnd);
|
|
|
|
|
2008-09-09 14:04:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CGObjCGNU::EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
|
2008-09-24 07:38:44 +04:00
|
|
|
const ObjCAtThrowStmt &S) {
|
2009-05-08 04:11:50 +04:00
|
|
|
llvm::Value *ExceptionAsObject;
|
|
|
|
|
|
|
|
std::vector<const llvm::Type*> Args(1, IdTy);
|
|
|
|
llvm::FunctionType *FTy =
|
|
|
|
llvm::FunctionType::get(llvm::Type::VoidTy, Args, false);
|
|
|
|
llvm::Value *ThrowFn =
|
|
|
|
CGM.CreateRuntimeFunction(FTy, "objc_exception_throw");
|
|
|
|
|
|
|
|
if (const Expr *ThrowExpr = S.getThrowExpr()) {
|
|
|
|
llvm::Value *Exception = CGF.EmitScalarExpr(ThrowExpr);
|
2009-05-17 20:49:27 +04:00
|
|
|
ExceptionAsObject = Exception;
|
2009-05-08 04:11:50 +04:00
|
|
|
} else {
|
|
|
|
assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) &&
|
|
|
|
"Unexpected rethrow outside @catch block.");
|
|
|
|
ExceptionAsObject = CGF.ObjCEHValueStack.back();
|
|
|
|
}
|
2009-05-17 20:49:27 +04:00
|
|
|
ExceptionAsObject =
|
|
|
|
CGF.Builder.CreateBitCast(ExceptionAsObject, IdTy, "tmp");
|
2009-05-08 04:11:50 +04:00
|
|
|
|
|
|
|
// Note: This may have to be an invoke, if we want to support constructs like:
|
|
|
|
// @try {
|
|
|
|
// @throw(obj);
|
|
|
|
// }
|
|
|
|
// @catch(id) ...
|
|
|
|
//
|
|
|
|
// This is effectively turning @throw into an incredibly-expensive goto, but
|
|
|
|
// it may happen as a result of inlining followed by missed optimizations, or
|
|
|
|
// as a result of stupidity.
|
|
|
|
llvm::BasicBlock *UnwindBB = CGF.getInvokeDest();
|
|
|
|
if (!UnwindBB) {
|
|
|
|
CGF.Builder.CreateCall(ThrowFn, ExceptionAsObject);
|
|
|
|
CGF.Builder.CreateUnreachable();
|
|
|
|
} else {
|
|
|
|
CGF.Builder.CreateInvoke(ThrowFn, UnwindBB, UnwindBB, &ExceptionAsObject,
|
|
|
|
&ExceptionAsObject+1);
|
|
|
|
}
|
|
|
|
// Clear the insertion point to indicate we are in unreachable code.
|
|
|
|
CGF.Builder.ClearInsertionPoint();
|
2008-09-09 14:04:29 +04:00
|
|
|
}
|
|
|
|
|
2008-11-19 01:37:34 +03:00
|
|
|
llvm::Value * CGObjCGNU::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
|
2008-11-19 00:45:40 +03:00
|
|
|
llvm::Value *AddrWeakObj)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-19 01:37:34 +03:00
|
|
|
void CGObjCGNU::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dst)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-11-19 03:59:10 +03:00
|
|
|
void CGObjCGNU::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dst)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-11-20 22:23:36 +03:00
|
|
|
void CGObjCGNU::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dst)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-11-19 03:59:10 +03:00
|
|
|
void CGObjCGNU::EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF,
|
|
|
|
llvm::Value *src, llvm::Value *dst)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-20 22:41:51 +04:00
|
|
|
llvm::GlobalVariable *CGObjCGNU::ObjCIvarOffsetVariable(
|
|
|
|
const ObjCInterfaceDecl *ID,
|
|
|
|
const ObjCIvarDecl *Ivar) {
|
|
|
|
const std::string Name = "__objc_ivar_offset_" + ID->getNameAsString()
|
|
|
|
+ '.' + Ivar->getNameAsString();
|
|
|
|
// Emit the variable and initialize it with what we think the correct value
|
|
|
|
// is. This allows code compiled with non-fragile ivars to work correctly
|
|
|
|
// when linked against code which isn't (most of the time).
|
|
|
|
llvm::GlobalVariable *IvarOffsetGV = CGM.getModule().getGlobalVariable(Name);
|
|
|
|
if (!IvarOffsetGV) {
|
|
|
|
uint64_t Offset = ComputeIvarBaseOffset(CGM, ID, Ivar);
|
|
|
|
llvm::ConstantInt *OffsetGuess =
|
|
|
|
llvm::ConstantInt::get(LongTy, Offset, "ivar");
|
|
|
|
IvarOffsetGV = new llvm::GlobalVariable(LongTy, false,
|
|
|
|
llvm::GlobalValue::CommonLinkage, OffsetGuess, Name, &TheModule);
|
|
|
|
}
|
|
|
|
return IvarOffsetGV;
|
|
|
|
}
|
|
|
|
|
2009-02-03 22:03:09 +03:00
|
|
|
LValue CGObjCGNU::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF,
|
|
|
|
QualType ObjectTy,
|
|
|
|
llvm::Value *BaseValue,
|
|
|
|
const ObjCIvarDecl *Ivar,
|
|
|
|
unsigned CVRQualifiers) {
|
2009-04-21 05:19:28 +04:00
|
|
|
const ObjCInterfaceDecl *ID = ObjectTy->getAsObjCInterfaceType()->getDecl();
|
2009-04-22 11:32:20 +04:00
|
|
|
return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers,
|
|
|
|
EmitIvarOffset(CGF, ID, Ivar));
|
2009-02-02 23:02:29 +03:00
|
|
|
}
|
2009-05-20 22:41:51 +04:00
|
|
|
static const ObjCInterfaceDecl *FindIvarInterface(ASTContext &Context,
|
|
|
|
const ObjCInterfaceDecl *OID,
|
|
|
|
const ObjCIvarDecl *OIVD) {
|
|
|
|
llvm::SmallVector<ObjCIvarDecl*, 16> Ivars;
|
2009-06-04 05:19:09 +04:00
|
|
|
Context.ShallowCollectObjCIvars(OID, Ivars);
|
2009-05-20 22:41:51 +04:00
|
|
|
for (unsigned k = 0, e = Ivars.size(); k != e; ++k) {
|
|
|
|
if (OIVD == Ivars[k])
|
|
|
|
return OID;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise check in the super class.
|
|
|
|
if (const ObjCInterfaceDecl *Super = OID->getSuperClass())
|
|
|
|
return FindIvarInterface(Context, Super, OIVD);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2009-02-02 23:02:29 +03:00
|
|
|
|
2009-02-10 22:02:04 +03:00
|
|
|
llvm::Value *CGObjCGNU::EmitIvarOffset(CodeGen::CodeGenFunction &CGF,
|
2009-04-22 09:08:15 +04:00
|
|
|
const ObjCInterfaceDecl *Interface,
|
2009-02-10 22:02:04 +03:00
|
|
|
const ObjCIvarDecl *Ivar) {
|
2009-05-20 22:41:51 +04:00
|
|
|
if (CGF.getContext().getLangOptions().ObjCNonFragileABI)
|
|
|
|
{
|
|
|
|
Interface = FindIvarInterface(CGM.getContext(), Interface, Ivar);
|
|
|
|
return CGF.Builder.CreateLoad(ObjCIvarOffsetVariable(Interface, Ivar),
|
|
|
|
false, "ivar");
|
|
|
|
}
|
2009-04-22 11:32:20 +04:00
|
|
|
uint64_t Offset = ComputeIvarBaseOffset(CGF.CGM, Interface, Ivar);
|
2009-05-20 22:41:51 +04:00
|
|
|
return llvm::ConstantInt::get(LongTy, Offset, "ivar");
|
2009-02-10 22:02:04 +03:00
|
|
|
}
|
|
|
|
|
2008-08-11 06:45:11 +04:00
|
|
|
CodeGen::CGObjCRuntime *CodeGen::CreateGNUObjCRuntime(CodeGen::CodeGenModule &CGM){
|
2008-06-26 08:19:03 +04:00
|
|
|
return new CGObjCGNU(CGM);
|
2008-03-01 11:50:34 +03:00
|
|
|
}
|