blob: 804a891f6b6c45383954a459fb45adb7fcde66e6 [file] [log] [blame]
Steve Naroff44e81222008-04-14 22:03:09 +00001//===--- RewriteObjC.cpp - Playground for the code rewriter ---------------===//
Chris Lattnerb429ae42007-10-11 00:43:27 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner959e5be2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerb429ae42007-10-11 00:43:27 +00007//
8//===----------------------------------------------------------------------===//
9//
10// Hacks and fun related to the code rewriter.
11//
12//===----------------------------------------------------------------------===//
13
14#include "ASTConsumers.h"
Chris Lattner569faa62007-10-11 18:38:32 +000015#include "clang/Rewrite/Rewriter.h"
Chris Lattnerb429ae42007-10-11 00:43:27 +000016#include "clang/AST/AST.h"
17#include "clang/AST/ASTConsumer.h"
Ted Kremenek79b50cb2008-05-31 20:11:04 +000018#include "clang/AST/TranslationUnit.h"
Chris Lattner569faa62007-10-11 18:38:32 +000019#include "clang/Basic/SourceManager.h"
Steve Naroffe9780582007-10-23 23:50:29 +000020#include "clang/Basic/IdentifierTable.h"
Chris Lattner4478db92007-11-30 22:53:43 +000021#include "clang/Basic/Diagnostic.h"
Chris Lattnerae43eb72007-12-02 01:13:47 +000022#include "clang/Lex/Lexer.h"
Chris Lattnerc3aa5c42007-10-25 17:07:24 +000023#include "llvm/ADT/StringExtras.h"
Fariborz Jahanianf185aef2007-10-26 19:46:17 +000024#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenek7b6f67b2008-09-13 05:16:45 +000025#include "llvm/ADT/OwningPtr.h"
Chris Lattnerae43eb72007-12-02 01:13:47 +000026#include "llvm/Support/MemoryBuffer.h"
Steve Naroff1c46cf12008-01-28 21:34:52 +000027#include "llvm/Support/CommandLine.h"
Dan Gohman6da15102008-05-21 20:19:16 +000028#include "llvm/Support/Streams.h"
Ted Kremenek7b6f67b2008-09-13 05:16:45 +000029#include "llvm/Support/raw_ostream.h"
Chris Lattner673f2bd2008-03-22 00:08:40 +000030#include "llvm/System/Path.h"
Chris Lattnerb429ae42007-10-11 00:43:27 +000031using namespace clang;
Chris Lattnerc3aa5c42007-10-25 17:07:24 +000032using llvm::utostr;
Chris Lattnerb429ae42007-10-11 00:43:27 +000033
Steve Naroff1c46cf12008-01-28 21:34:52 +000034static llvm::cl::opt<bool>
35SilenceRewriteMacroWarning("Wno-rewrite-macros", llvm::cl::init(false),
36 llvm::cl::desc("Silence ObjC rewriting warnings"));
37
Chris Lattnerb429ae42007-10-11 00:43:27 +000038namespace {
Steve Naroff44e81222008-04-14 22:03:09 +000039 class RewriteObjC : public ASTConsumer {
Chris Lattner74db1682007-10-16 21:07:07 +000040 Rewriter Rewrite;
Chris Lattner258f26c2007-11-30 22:25:36 +000041 Diagnostic &Diags;
Steve Naroff7fd0aff2008-03-10 20:43:59 +000042 const LangOptions &LangOpts;
Steve Naroff53b6f4c2008-01-30 19:17:43 +000043 unsigned RewriteFailedDiag;
44
Chris Lattnerbf0bfa62007-10-17 22:35:30 +000045 ASTContext *Context;
Chris Lattnerb429ae42007-10-11 00:43:27 +000046 SourceManager *SM;
Argiris Kirtzidisd3586002008-04-17 14:40:12 +000047 TranslationUnitDecl *TUDecl;
Chris Lattner569faa62007-10-11 18:38:32 +000048 unsigned MainFileID;
Chris Lattnerae43eb72007-12-02 01:13:47 +000049 const char *MainFileStart, *MainFileEnd;
Chris Lattner74db1682007-10-16 21:07:07 +000050 SourceLocation LastIncLoc;
Steve Narofffef037c2008-03-27 22:29:16 +000051
Ted Kremenek42730c52008-01-07 19:49:32 +000052 llvm::SmallVector<ObjCImplementationDecl *, 8> ClassImplementation;
53 llvm::SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation;
54 llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCSynthesizedStructs;
Steve Naroff04eaa192008-05-06 18:26:51 +000055 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> ObjCSynthesizedProtocols;
Ted Kremenek42730c52008-01-07 19:49:32 +000056 llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCForwardDecls;
57 llvm::DenseMap<ObjCMethodDecl*, std::string> MethodInternalNames;
Fariborz Jahanian13dad332008-01-15 23:58:23 +000058 llvm::SmallVector<Stmt *, 32> Stmts;
59 llvm::SmallVector<int, 8> ObjCBcLabelNo;
Steve Naroffe9780582007-10-23 23:50:29 +000060
Steve Naroff47e7fa22008-03-15 00:55:56 +000061 unsigned NumObjCStringLiterals;
62
Steve Naroffe9780582007-10-23 23:50:29 +000063 FunctionDecl *MsgSendFunctionDecl;
Steve Naroff764c1ae2007-11-15 10:28:18 +000064 FunctionDecl *MsgSendSuperFunctionDecl;
Fariborz Jahanianc26b2502007-12-03 19:17:29 +000065 FunctionDecl *MsgSendStretFunctionDecl;
66 FunctionDecl *MsgSendSuperStretFunctionDecl;
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +000067 FunctionDecl *MsgSendFpretFunctionDecl;
Steve Naroffe9780582007-10-23 23:50:29 +000068 FunctionDecl *GetClassFunctionDecl;
Steve Naroff3b1caac2007-12-07 03:50:46 +000069 FunctionDecl *GetMetaClassFunctionDecl;
Steve Naroff71226032007-10-24 22:48:43 +000070 FunctionDecl *SelGetUidFunctionDecl;
Steve Naroffabb96362007-11-08 14:30:50 +000071 FunctionDecl *CFStringFunctionDecl;
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +000072 FunctionDecl *GetProtocolFunctionDecl;
Steve Naroffbec4bf52008-03-11 17:37:02 +000073 FunctionDecl *SuperContructorFunctionDecl;
Fariborz Jahanianc26b2502007-12-03 19:17:29 +000074
Steve Naroff0add5d22007-11-03 11:27:19 +000075 // ObjC string constant support.
Steve Naroff72a6ebc2008-04-15 22:42:06 +000076 VarDecl *ConstantStringClassReference;
Steve Naroff0add5d22007-11-03 11:27:19 +000077 RecordDecl *NSStringRecord;
Steve Naroff0744c472007-11-04 22:37:50 +000078
Fariborz Jahanian22277422008-01-16 00:09:11 +000079 // ObjC foreach break/continue generation support.
Fariborz Jahanian13dad332008-01-15 23:58:23 +000080 int BcLabelCount;
81
Steve Naroff764c1ae2007-11-15 10:28:18 +000082 // Needed for super.
Steve Naroff38a9e3f2008-10-27 17:20:55 +000083 ObjCMethodDecl *CurMethodDef;
Steve Naroff764c1ae2007-11-15 10:28:18 +000084 RecordDecl *SuperStructDecl;
Steve Naroff47e7fa22008-03-15 00:55:56 +000085 RecordDecl *ConstantStringDecl;
Steve Naroff764c1ae2007-11-15 10:28:18 +000086
Fariborz Jahanian8d2080c2008-01-18 01:15:54 +000087 // Needed for header files being rewritten
88 bool IsHeader;
89
Steve Naroffcfd9f4c2008-03-28 22:26:09 +000090 std::string InFileName;
91 std::string OutFileName;
92
Steve Narofffef037c2008-03-27 22:29:16 +000093 std::string Preamble;
Steve Naroff38a9e3f2008-10-27 17:20:55 +000094
95 // Block expressions.
96 llvm::SmallVector<BlockExpr *, 32> Blocks;
97 llvm::SmallVector<BlockDeclRefExpr *, 32> BlockDeclRefs;
98 llvm::DenseMap<BlockDeclRefExpr *, CallExpr *> BlockCallExprs;
Steve Narofffef037c2008-03-27 22:29:16 +000099
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000100 // Block related declarations.
101 llvm::SmallPtrSet<ValueDecl *, 8> BlockByCopyDecls;
102 llvm::SmallPtrSet<ValueDecl *, 8> BlockByRefDecls;
103 llvm::SmallPtrSet<ValueDecl *, 8> ImportedBlockDecls;
104
105 llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs;
106
107 FunctionDecl *CurFunctionDef;
Steve Naroff80c54752008-10-29 18:15:37 +0000108 VarDecl *GlobalVarDecl;
109
Fariborz Jahanian640a01f2007-10-18 19:23:00 +0000110 static const int OBJC_ABI_VERSION =7 ;
Chris Lattnerb429ae42007-10-11 00:43:27 +0000111 public:
Ted Kremenek79b50cb2008-05-31 20:11:04 +0000112 virtual void Initialize(ASTContext &context);
113
114 virtual void InitializeTU(TranslationUnit &TU) {
115 TU.SetOwnsDecls(false);
116 Initialize(TU.getContext());
117 }
Chris Lattner12499682008-01-31 19:38:44 +0000118
Chris Lattner569faa62007-10-11 18:38:32 +0000119
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000120 // Top Level Driver code.
121 virtual void HandleTopLevelDecl(Decl *D);
Chris Lattner74db1682007-10-16 21:07:07 +0000122 void HandleDeclInMainFile(Decl *D);
Steve Naroff44e81222008-04-14 22:03:09 +0000123 RewriteObjC(std::string inFile, std::string outFile,
Steve Naroffcfd9f4c2008-03-28 22:26:09 +0000124 Diagnostic &D, const LangOptions &LOpts);
Ted Kremenekcab0b0c2008-08-08 04:15:52 +0000125
126 ~RewriteObjC() {}
127
128 virtual void HandleTranslationUnit(TranslationUnit& TU);
Chris Lattnerb1548372008-01-31 19:37:57 +0000129
130 void ReplaceStmt(Stmt *Old, Stmt *New) {
Chris Lattner6216f292008-01-31 19:42:41 +0000131 // If replacement succeeded or warning disabled return with no warning.
132 if (!Rewrite.ReplaceStmt(Old, New) || SilenceRewriteMacroWarning)
Chris Lattnerb1548372008-01-31 19:37:57 +0000133 return;
134
Chris Lattner6948ae62008-11-18 07:04:44 +0000135 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag)
136 << Old->getSourceRange();
Chris Lattnerb1548372008-01-31 19:37:57 +0000137 }
138
Steve Narofffef037c2008-03-27 22:29:16 +0000139 void InsertText(SourceLocation Loc, const char *StrData, unsigned StrLen,
140 bool InsertAfter = true) {
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000141 // If insertion succeeded or warning disabled return with no warning.
Steve Narofffef037c2008-03-27 22:29:16 +0000142 if (!Rewrite.InsertText(Loc, StrData, StrLen, InsertAfter) ||
Chris Lattner6216f292008-01-31 19:42:41 +0000143 SilenceRewriteMacroWarning)
144 return;
145
146 Diags.Report(Context->getFullLoc(Loc), RewriteFailedDiag);
147 }
Chris Lattnerb1548372008-01-31 19:37:57 +0000148
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000149 void RemoveText(SourceLocation Loc, unsigned StrLen) {
150 // If removal succeeded or warning disabled return with no warning.
151 if (!Rewrite.RemoveText(Loc, StrLen) || SilenceRewriteMacroWarning)
152 return;
153
154 Diags.Report(Context->getFullLoc(Loc), RewriteFailedDiag);
155 }
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000156
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000157 void ReplaceText(SourceLocation Start, unsigned OrigLength,
158 const char *NewStr, unsigned NewLength) {
159 // If removal succeeded or warning disabled return with no warning.
160 if (!Rewrite.ReplaceText(Start, OrigLength, NewStr, NewLength) ||
161 SilenceRewriteMacroWarning)
162 return;
163
164 Diags.Report(Context->getFullLoc(Start), RewriteFailedDiag);
165 }
166
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000167 // Syntactic Rewriting.
Steve Naroff0744c472007-11-04 22:37:50 +0000168 void RewritePrologue(SourceLocation Loc);
Fariborz Jahaniana42227a2008-01-19 00:30:35 +0000169 void RewriteInclude();
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000170 void RewriteTabs();
Ted Kremenek42730c52008-01-07 19:49:32 +0000171 void RewriteForwardClassDecl(ObjCClassDecl *Dcl);
172 void RewriteInterfaceDecl(ObjCInterfaceDecl *Dcl);
Fariborz Jahanian0136e372007-11-13 20:04:28 +0000173 void RewriteImplementationDecl(NamedDecl *Dcl);
Ted Kremenek42730c52008-01-07 19:49:32 +0000174 void RewriteObjCMethodDecl(ObjCMethodDecl *MDecl, std::string &ResultStr);
175 void RewriteCategoryDecl(ObjCCategoryDecl *Dcl);
176 void RewriteProtocolDecl(ObjCProtocolDecl *Dcl);
177 void RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *Dcl);
178 void RewriteMethodDeclaration(ObjCMethodDecl *Method);
Chris Lattnercffe3662008-03-16 21:23:50 +0000179 void RewriteProperties(unsigned nProperties, ObjCPropertyDecl **Properties);
Steve Naroff02a82aa2007-10-30 23:14:51 +0000180 void RewriteFunctionDecl(FunctionDecl *FD);
Ted Kremenek42730c52008-01-07 19:49:32 +0000181 void RewriteObjCQualifiedInterfaceTypes(Decl *Dcl);
Steve Naroffd06c88d2008-07-29 18:15:38 +0000182 void RewriteObjCQualifiedInterfaceTypes(Expr *E);
Steve Naroffc8a92d12007-11-01 13:24:47 +0000183 bool needToScanForQualifiers(QualType T);
Ted Kremenek42730c52008-01-07 19:49:32 +0000184 ObjCInterfaceDecl *isSuperReceiver(Expr *recExpr);
Steve Naroff764c1ae2007-11-15 10:28:18 +0000185 QualType getSuperStructType();
Steve Naroff47e7fa22008-03-15 00:55:56 +0000186 QualType getConstantStringStructType();
Steve Naroffef82b742008-05-31 14:15:04 +0000187 bool BufferContainsPPDirectives(const char *startBuf, const char *endBuf);
Chris Lattner6fe8b272007-10-16 22:36:42 +0000188
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000189 // Expression Rewriting.
Steve Naroff334fbc22007-11-09 15:20:18 +0000190 Stmt *RewriteFunctionBodyOrGlobalInitializer(Stmt *S);
Chris Lattner0021f452007-10-24 16:57:36 +0000191 Stmt *RewriteAtEncode(ObjCEncodeExpr *Exp);
Chris Lattner343c82b2008-05-23 20:40:52 +0000192 Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV, SourceLocation OrigStart);
Steve Naroff296b74f2007-11-05 14:50:49 +0000193 Stmt *RewriteAtSelector(ObjCSelectorExpr *Exp);
Chris Lattner0021f452007-10-24 16:57:36 +0000194 Stmt *RewriteMessageExpr(ObjCMessageExpr *Exp);
Steve Naroff0add5d22007-11-03 11:27:19 +0000195 Stmt *RewriteObjCStringLiteral(ObjCStringLiteral *Exp);
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +0000196 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp);
Ted Kremenek42730c52008-01-07 19:49:32 +0000197 Stmt *RewriteObjCTryStmt(ObjCAtTryStmt *S);
Fariborz Jahanian499bf412008-01-29 22:59:37 +0000198 Stmt *RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S);
Ted Kremenek42730c52008-01-07 19:49:32 +0000199 Stmt *RewriteObjCCatchStmt(ObjCAtCatchStmt *S);
200 Stmt *RewriteObjCFinallyStmt(ObjCAtFinallyStmt *S);
201 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
Chris Lattner2c022162008-01-31 05:10:40 +0000202 Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
203 SourceLocation OrigEnd);
Steve Naroff71226032007-10-24 22:48:43 +0000204 CallExpr *SynthesizeCallToFunctionDecl(FunctionDecl *FD,
205 Expr **args, unsigned nargs);
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +0000206 Stmt *SynthMessageExpr(ObjCMessageExpr *Exp);
Fariborz Jahanian13dad332008-01-15 23:58:23 +0000207 Stmt *RewriteBreakStmt(BreakStmt *S);
208 Stmt *RewriteContinueStmt(ContinueStmt *S);
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +0000209 void SynthCountByEnumWithState(std::string &buf);
210
Steve Naroff02a82aa2007-10-30 23:14:51 +0000211 void SynthMsgSendFunctionDecl();
Steve Naroff764c1ae2007-11-15 10:28:18 +0000212 void SynthMsgSendSuperFunctionDecl();
Fariborz Jahanianc26b2502007-12-03 19:17:29 +0000213 void SynthMsgSendStretFunctionDecl();
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +0000214 void SynthMsgSendFpretFunctionDecl();
Fariborz Jahanianc26b2502007-12-03 19:17:29 +0000215 void SynthMsgSendSuperStretFunctionDecl();
Steve Naroff02a82aa2007-10-30 23:14:51 +0000216 void SynthGetClassFunctionDecl();
Steve Naroff3b1caac2007-12-07 03:50:46 +0000217 void SynthGetMetaClassFunctionDecl();
Fariborz Jahanianfb8e9912007-12-04 21:47:40 +0000218 void SynthSelGetUidFunctionDecl();
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +0000219 void SynthGetProtocolFunctionDecl();
Steve Naroffbec4bf52008-03-11 17:37:02 +0000220 void SynthSuperContructorFunctionDecl();
Steve Naroffabb96362007-11-08 14:30:50 +0000221
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000222 // Metadata emission.
Ted Kremenek42730c52008-01-07 19:49:32 +0000223 void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +0000224 std::string &Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +0000225
Ted Kremenek42730c52008-01-07 19:49:32 +0000226 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl,
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +0000227 std::string &Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +0000228
Ted Kremenek42730c52008-01-07 19:49:32 +0000229 typedef ObjCCategoryImplDecl::instmeth_iterator instmeth_iterator;
230 void RewriteObjCMethodsMetaData(instmeth_iterator MethodBegin,
Chris Lattnerdea5bec2007-12-12 07:46:12 +0000231 instmeth_iterator MethodEnd,
Fariborz Jahaniana3986372007-10-25 00:14:44 +0000232 bool IsInstanceMethod,
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +0000233 const char *prefix,
Chris Lattnerc3aa5c42007-10-25 17:07:24 +0000234 const char *ClassName,
235 std::string &Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +0000236
Chris Lattner0be08822008-07-21 21:32:27 +0000237 void RewriteObjCProtocolsMetaData(const ObjCList<ObjCProtocolDecl>
238 &Protocols,
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +0000239 const char *prefix,
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +0000240 const char *ClassName,
241 std::string &Result);
Ted Kremenek42730c52008-01-07 19:49:32 +0000242 void SynthesizeObjCInternalStruct(ObjCInterfaceDecl *CDecl,
Fariborz Jahanianf185aef2007-10-26 19:46:17 +0000243 std::string &Result);
Ted Kremenek42730c52008-01-07 19:49:32 +0000244 void SynthesizeIvarOffsetComputation(ObjCImplementationDecl *IDecl,
245 ObjCIvarDecl *ivar,
Fariborz Jahanianf185aef2007-10-26 19:46:17 +0000246 std::string &Result);
Steve Naroff21658f62008-11-13 20:07:04 +0000247 void RewriteImplementations();
248 void SynthesizeMetaDataIntoBuffer(std::string &Result);
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000249
250 // Block rewriting.
251 void RewriteBlocksInFunctionTypeProto(QualType funcType, NamedDecl *D);
252 void CheckFunctionPointerDecl(QualType dType, NamedDecl *ND);
253
254 void InsertBlockLiteralsWithinFunction(FunctionDecl *FD);
255 void InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD);
256
Steve Naroff80c54752008-10-29 18:15:37 +0000257 // Block specific rewrite rules.
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000258 void RewriteBlockCall(CallExpr *Exp);
259 void RewriteBlockPointerDecl(NamedDecl *VD);
260 void RewriteBlockDeclRefExpr(BlockDeclRefExpr *VD);
261 void RewriteBlockPointerFunctionArgs(FunctionDecl *FD);
262
263 std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i,
264 const char *funcName, std::string Tag);
265 std::string SynthesizeBlockFunc(BlockExpr *CE, int i,
266 const char *funcName, std::string Tag);
267 std::string SynthesizeBlockImpl(BlockExpr *CE, std::string Tag,
268 bool hasCopyDisposeHelpers);
Steve Naroff85eb17b2008-10-30 10:07:53 +0000269 Stmt *SynthesizeBlockCall(CallExpr *Exp);
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000270 void SynthesizeBlockLiterals(SourceLocation FunLocStart,
271 const char *FunName);
272
273 void CollectBlockDeclRefInfo(BlockExpr *Exp);
274 void GetBlockCallExprs(Stmt *S);
275 void GetBlockDeclRefExprs(Stmt *S);
276
277 // We avoid calling Type::isBlockPointerType(), since it operates on the
278 // canonical type. We only care if the top-level type is a closure pointer.
279 bool isBlockPointerType(QualType T) { return isa<BlockPointerType>(T); }
280
281 // FIXME: This predicate seems like it would be useful to add to ASTContext.
282 bool isObjCType(QualType T) {
283 if (!LangOpts.ObjC1 && !LangOpts.ObjC2)
284 return false;
285
286 QualType OCT = Context->getCanonicalType(T).getUnqualifiedType();
287
288 if (OCT == Context->getCanonicalType(Context->getObjCIdType()) ||
289 OCT == Context->getCanonicalType(Context->getObjCClassType()))
290 return true;
291
292 if (const PointerType *PT = OCT->getAsPointerType()) {
293 if (isa<ObjCInterfaceType>(PT->getPointeeType()) ||
294 isa<ObjCQualifiedIdType>(PT->getPointeeType()))
295 return true;
296 }
297 return false;
298 }
299 bool PointerTypeTakesAnyBlockArguments(QualType QT);
300 void GetExtentOfArgList(const char *Name, const char *&LParen, const char *&RParen);
Steve Naroff7f1412d2008-11-03 23:29:32 +0000301 void RewriteCastExpr(CStyleCastExpr *CE);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +0000302
303 FunctionDecl *SynthBlockInitFunctionDecl(const char *name);
Steve Naroff80c54752008-10-29 18:15:37 +0000304 Stmt *SynthBlockInitExpr(BlockExpr *Exp);
Chris Lattnerb429ae42007-10-11 00:43:27 +0000305 };
306}
307
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000308void RewriteObjC::RewriteBlocksInFunctionTypeProto(QualType funcType,
309 NamedDecl *D) {
310 if (FunctionTypeProto *fproto = dyn_cast<FunctionTypeProto>(funcType)) {
311 for (FunctionTypeProto::arg_type_iterator I = fproto->arg_type_begin(),
312 E = fproto->arg_type_end(); I && (I != E); ++I)
313 if (isBlockPointerType(*I)) {
314 // All the args are checked/rewritten. Don't call twice!
315 RewriteBlockPointerDecl(D);
316 break;
317 }
318 }
319}
320
321void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) {
322 const PointerType *PT = funcType->getAsPointerType();
323 if (PT && PointerTypeTakesAnyBlockArguments(funcType))
324 RewriteBlocksInFunctionTypeProto(PT->getPointeeType(), ND);
325}
326
Fariborz Jahanian8d2080c2008-01-18 01:15:54 +0000327static bool IsHeaderFile(const std::string &Filename) {
328 std::string::size_type DotPos = Filename.rfind('.');
329
330 if (DotPos == std::string::npos) {
331 // no file extension
332 return false;
333 }
334
335 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
336 // C header: .h
337 // C++ header: .hh or .H;
338 return Ext == "h" || Ext == "hh" || Ext == "H";
339}
340
Steve Naroff44e81222008-04-14 22:03:09 +0000341RewriteObjC::RewriteObjC(std::string inFile, std::string outFile,
Steve Naroffcfd9f4c2008-03-28 22:26:09 +0000342 Diagnostic &D, const LangOptions &LOpts)
343 : Diags(D), LangOpts(LOpts) {
344 IsHeader = IsHeaderFile(inFile);
345 InFileName = inFile;
346 OutFileName = outFile;
347 RewriteFailedDiag = Diags.getCustomDiagID(Diagnostic::Warning,
348 "rewriting sub-expression within a macro (may not be correct)");
349}
350
Fariborz Jahanian8d2080c2008-01-18 01:15:54 +0000351ASTConsumer *clang::CreateCodeRewriterTest(const std::string& InFile,
Chris Lattner673f2bd2008-03-22 00:08:40 +0000352 const std::string& OutFile,
Steve Naroff7fd0aff2008-03-10 20:43:59 +0000353 Diagnostic &Diags,
354 const LangOptions &LOpts) {
Steve Naroff44e81222008-04-14 22:03:09 +0000355 return new RewriteObjC(InFile, OutFile, Diags, LOpts);
Chris Lattner258f26c2007-11-30 22:25:36 +0000356}
Chris Lattnerb429ae42007-10-11 00:43:27 +0000357
Steve Naroff44e81222008-04-14 22:03:09 +0000358void RewriteObjC::Initialize(ASTContext &context) {
Chris Lattner12499682008-01-31 19:38:44 +0000359 Context = &context;
360 SM = &Context->getSourceManager();
Argiris Kirtzidisd3586002008-04-17 14:40:12 +0000361 TUDecl = Context->getTranslationUnitDecl();
Chris Lattner12499682008-01-31 19:38:44 +0000362 MsgSendFunctionDecl = 0;
363 MsgSendSuperFunctionDecl = 0;
364 MsgSendStretFunctionDecl = 0;
365 MsgSendSuperStretFunctionDecl = 0;
366 MsgSendFpretFunctionDecl = 0;
367 GetClassFunctionDecl = 0;
368 GetMetaClassFunctionDecl = 0;
369 SelGetUidFunctionDecl = 0;
370 CFStringFunctionDecl = 0;
371 GetProtocolFunctionDecl = 0;
372 ConstantStringClassReference = 0;
373 NSStringRecord = 0;
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000374 CurMethodDef = 0;
375 CurFunctionDef = 0;
Chris Lattner12499682008-01-31 19:38:44 +0000376 SuperStructDecl = 0;
Steve Naroff053ae3f2008-03-27 22:59:54 +0000377 ConstantStringDecl = 0;
Chris Lattner12499682008-01-31 19:38:44 +0000378 BcLabelCount = 0;
Steve Naroffbec4bf52008-03-11 17:37:02 +0000379 SuperContructorFunctionDecl = 0;
Steve Naroff47e7fa22008-03-15 00:55:56 +0000380 NumObjCStringLiterals = 0;
Chris Lattner12499682008-01-31 19:38:44 +0000381
382 // Get the ID and start/end of the main file.
383 MainFileID = SM->getMainFileID();
384 const llvm::MemoryBuffer *MainBuf = SM->getBuffer(MainFileID);
385 MainFileStart = MainBuf->getBufferStart();
386 MainFileEnd = MainBuf->getBufferEnd();
Steve Narofffef037c2008-03-27 22:29:16 +0000387
Chris Lattner12499682008-01-31 19:38:44 +0000388 Rewrite.setSourceMgr(Context->getSourceManager());
Steve Naroffde0da102008-03-10 23:16:54 +0000389
Chris Lattner12499682008-01-31 19:38:44 +0000390 // declaring objc_selector outside the parameter list removes a silly
391 // scope related warning...
Steve Narofffef037c2008-03-27 22:29:16 +0000392 if (IsHeader)
393 Preamble = "#pragma once\n";
394 Preamble += "struct objc_selector; struct objc_class;\n";
395 Preamble += "#ifndef OBJC_SUPER\n";
396 Preamble += "struct objc_super { struct objc_object *object; ";
397 Preamble += "struct objc_object *superClass; ";
Steve Naroffbec4bf52008-03-11 17:37:02 +0000398 if (LangOpts.Microsoft) {
399 // Add a constructor for creating temporary objects.
Steve Narofffef037c2008-03-27 22:29:16 +0000400 Preamble += "objc_super(struct objc_object *o, struct objc_object *s) : ";
401 Preamble += "object(o), superClass(s) {} ";
Steve Naroffbec4bf52008-03-11 17:37:02 +0000402 }
Steve Narofffef037c2008-03-27 22:29:16 +0000403 Preamble += "};\n";
404 Preamble += "#define OBJC_SUPER\n";
405 Preamble += "#endif\n";
406 Preamble += "#ifndef _REWRITER_typedef_Protocol\n";
407 Preamble += "typedef struct objc_object Protocol;\n";
408 Preamble += "#define _REWRITER_typedef_Protocol\n";
409 Preamble += "#endif\n";
Steve Naroff6453aab2008-03-12 13:19:12 +0000410 if (LangOpts.Microsoft)
Steve Naroff618c6a42008-05-06 22:45:19 +0000411 Preamble += "#define __OBJC_RW_EXTERN extern \"C\" __declspec(dllimport)\n";
412 else
413 Preamble += "#define __OBJC_RW_EXTERN extern\n";
414 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSend";
Steve Narofffef037c2008-03-27 22:29:16 +0000415 Preamble += "(struct objc_object *, struct objc_selector *, ...);\n";
Steve Naroff618c6a42008-05-06 22:45:19 +0000416 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSendSuper";
Steve Narofffef037c2008-03-27 22:29:16 +0000417 Preamble += "(struct objc_super *, struct objc_selector *, ...);\n";
Steve Naroff618c6a42008-05-06 22:45:19 +0000418 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSend_stret";
Steve Narofffef037c2008-03-27 22:29:16 +0000419 Preamble += "(struct objc_object *, struct objc_selector *, ...);\n";
Steve Naroff618c6a42008-05-06 22:45:19 +0000420 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSendSuper_stret";
Steve Narofffef037c2008-03-27 22:29:16 +0000421 Preamble += "(struct objc_super *, struct objc_selector *, ...);\n";
Steve Naroff31316a12008-05-08 22:02:18 +0000422 Preamble += "__OBJC_RW_EXTERN double objc_msgSend_fpret";
Steve Narofffef037c2008-03-27 22:29:16 +0000423 Preamble += "(struct objc_object *, struct objc_selector *, ...);\n";
Steve Naroffa9636222008-05-08 17:52:16 +0000424 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_getClass";
Steve Narofffef037c2008-03-27 22:29:16 +0000425 Preamble += "(const char *);\n";
Steve Naroff618c6a42008-05-06 22:45:19 +0000426 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_getMetaClass";
Steve Narofffef037c2008-03-27 22:29:16 +0000427 Preamble += "(const char *);\n";
Steve Naroff618c6a42008-05-06 22:45:19 +0000428 Preamble += "__OBJC_RW_EXTERN void objc_exception_throw(struct objc_object *);\n";
429 Preamble += "__OBJC_RW_EXTERN void objc_exception_try_enter(void *);\n";
430 Preamble += "__OBJC_RW_EXTERN void objc_exception_try_exit(void *);\n";
431 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_exception_extract(void *);\n";
432 Preamble += "__OBJC_RW_EXTERN int objc_exception_match";
Steve Naroff3e2c98c2008-05-09 21:17:56 +0000433 Preamble += "(struct objc_class *, struct objc_object *);\n";
Steve Naroffcd25d782008-07-16 18:58:11 +0000434 // @synchronized hooks.
435 Preamble += "__OBJC_RW_EXTERN void objc_sync_enter(struct objc_object *);\n";
436 Preamble += "__OBJC_RW_EXTERN void objc_sync_exit(struct objc_object *);\n";
Steve Naroff618c6a42008-05-06 22:45:19 +0000437 Preamble += "__OBJC_RW_EXTERN Protocol *objc_getProtocol(const char *);\n";
Steve Narofffef037c2008-03-27 22:29:16 +0000438 Preamble += "#ifndef __FASTENUMERATIONSTATE\n";
439 Preamble += "struct __objcFastEnumerationState {\n\t";
440 Preamble += "unsigned long state;\n\t";
Steve Naroffc960e9d2008-04-04 22:58:22 +0000441 Preamble += "void **itemsPtr;\n\t";
Steve Narofffef037c2008-03-27 22:29:16 +0000442 Preamble += "unsigned long *mutationsPtr;\n\t";
443 Preamble += "unsigned long extra[5];\n};\n";
Steve Naroff37157242008-06-02 20:23:21 +0000444 Preamble += "__OBJC_RW_EXTERN void objc_enumerationMutation(struct objc_object *);\n";
Steve Narofffef037c2008-03-27 22:29:16 +0000445 Preamble += "#define __FASTENUMERATIONSTATE\n";
446 Preamble += "#endif\n";
447 Preamble += "#ifndef __NSCONSTANTSTRINGIMPL\n";
448 Preamble += "struct __NSConstantStringImpl {\n";
449 Preamble += " int *isa;\n";
450 Preamble += " int flags;\n";
451 Preamble += " char *str;\n";
452 Preamble += " long length;\n";
453 Preamble += "};\n";
Steve Naroffc6e571e2008-08-05 20:04:48 +0000454 Preamble += "#ifdef CF_EXPORT_CONSTANT_STRING\n";
455 Preamble += "extern \"C\" __declspec(dllexport) int __CFConstantStringClassReference[];\n";
456 Preamble += "#else\n";
Steve Naroffb3cd9ac2008-05-15 21:12:10 +0000457 Preamble += "__OBJC_RW_EXTERN int __CFConstantStringClassReference[];\n";
Steve Naroffc6e571e2008-08-05 20:04:48 +0000458 Preamble += "#endif\n";
Steve Narofffef037c2008-03-27 22:29:16 +0000459 Preamble += "#define __NSCONSTANTSTRINGIMPL\n";
460 Preamble += "#endif\n";
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000461 // Blocks preamble.
462 Preamble += "#ifndef BLOCK_IMPL\n";
463 Preamble += "#define BLOCK_IMPL\n";
464 Preamble += "struct __block_impl {\n";
465 Preamble += " void *isa;\n";
466 Preamble += " int Flags;\n";
467 Preamble += " int Size;\n";
468 Preamble += " void *FuncPtr;\n";
469 Preamble += "};\n";
470 Preamble += "enum {\n";
471 Preamble += " BLOCK_HAS_COPY_DISPOSE = (1<<25),\n";
472 Preamble += " BLOCK_IS_GLOBAL = (1<<28)\n";
473 Preamble += "};\n";
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000474 Preamble += "// Runtime copy/destroy helper functions\n";
475 Preamble += "__OBJC_RW_EXTERN void _Block_copy_assign(void *, void *);\n";
476 Preamble += "__OBJC_RW_EXTERN void _Block_byref_assign_copy(void *, void *);\n";
477 Preamble += "__OBJC_RW_EXTERN void _Block_destroy(void *);\n";
478 Preamble += "__OBJC_RW_EXTERN void _Block_byref_release(void *);\n";
479 Preamble += "__OBJC_RW_EXTERN void *_NSConcreteGlobalBlock;\n";
480 Preamble += "__OBJC_RW_EXTERN void *_NSConcreteStackBlock;\n";
481 Preamble += "#endif\n";
Steve Naroff39ba90e2008-10-27 18:50:14 +0000482 if (LangOpts.Microsoft) {
483 Preamble += "#undef __OBJC_RW_EXTERN\n";
484 Preamble += "#define __attribute__(X)\n";
485 }
Chris Lattner12499682008-01-31 19:38:44 +0000486}
487
488
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000489//===----------------------------------------------------------------------===//
490// Top Level Driver Code
491//===----------------------------------------------------------------------===//
492
Steve Naroff44e81222008-04-14 22:03:09 +0000493void RewriteObjC::HandleTopLevelDecl(Decl *D) {
Chris Lattner74db1682007-10-16 21:07:07 +0000494 // Two cases: either the decl could be in the main file, or it could be in a
495 // #included file. If the former, rewrite it now. If the later, check to see
496 // if we rewrote the #include/#import.
497 SourceLocation Loc = D->getLocation();
498 Loc = SM->getLogicalLoc(Loc);
499
500 // If this is for a builtin, ignore it.
501 if (Loc.isInvalid()) return;
502
Steve Naroffe9780582007-10-23 23:50:29 +0000503 // Look for built-in declarations that we need to refer during the rewrite.
504 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Steve Naroff02a82aa2007-10-30 23:14:51 +0000505 RewriteFunctionDecl(FD);
Steve Naroff72a6ebc2008-04-15 22:42:06 +0000506 } else if (VarDecl *FVD = dyn_cast<VarDecl>(D)) {
Steve Naroff0add5d22007-11-03 11:27:19 +0000507 // declared in <Foundation/NSString.h>
Douglas Gregor24afd4a2008-11-17 14:58:09 +0000508 if (strcmp(FVD->getIdentifierName(), "_NSConstantStringClassReference") == 0) {
Steve Naroff0add5d22007-11-03 11:27:19 +0000509 ConstantStringClassReference = FVD;
510 return;
511 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000512 } else if (ObjCInterfaceDecl *MD = dyn_cast<ObjCInterfaceDecl>(D)) {
Steve Naroff3774dd92007-10-26 20:53:56 +0000513 RewriteInterfaceDecl(MD);
Ted Kremenek42730c52008-01-07 19:49:32 +0000514 } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) {
Steve Naroff667f1682007-10-30 13:30:57 +0000515 RewriteCategoryDecl(CD);
Ted Kremenek42730c52008-01-07 19:49:32 +0000516 } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
Steve Narofff4b7d6a2007-10-30 16:42:30 +0000517 RewriteProtocolDecl(PD);
Ted Kremenek42730c52008-01-07 19:49:32 +0000518 } else if (ObjCForwardProtocolDecl *FP =
519 dyn_cast<ObjCForwardProtocolDecl>(D)){
Fariborz Jahanian016a1882007-11-14 00:42:16 +0000520 RewriteForwardProtocolDecl(FP);
Steve Naroffe9780582007-10-23 23:50:29 +0000521 }
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000522 // If we have a decl in the main file, see if we should rewrite it.
Ted Kremenek2450c262008-04-14 21:24:13 +0000523 if (SM->isFromMainFile(Loc))
Chris Lattner74db1682007-10-16 21:07:07 +0000524 return HandleDeclInMainFile(D);
Chris Lattner74db1682007-10-16 21:07:07 +0000525}
526
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000527//===----------------------------------------------------------------------===//
528// Syntactic (non-AST) Rewriting Code
529//===----------------------------------------------------------------------===//
530
Steve Naroff44e81222008-04-14 22:03:09 +0000531void RewriteObjC::RewriteInclude() {
Fariborz Jahaniana42227a2008-01-19 00:30:35 +0000532 SourceLocation LocStart = SourceLocation::getFileLoc(MainFileID, 0);
533 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
534 const char *MainBufStart = MainBuf.first;
535 const char *MainBufEnd = MainBuf.second;
536 size_t ImportLen = strlen("import");
537 size_t IncludeLen = strlen("include");
538
Fariborz Jahanianc81ed742008-01-19 01:03:17 +0000539 // Loop over the whole file, looking for includes.
Fariborz Jahaniana42227a2008-01-19 00:30:35 +0000540 for (const char *BufPtr = MainBufStart; BufPtr < MainBufEnd; ++BufPtr) {
541 if (*BufPtr == '#') {
542 if (++BufPtr == MainBufEnd)
543 return;
544 while (*BufPtr == ' ' || *BufPtr == '\t')
545 if (++BufPtr == MainBufEnd)
546 return;
547 if (!strncmp(BufPtr, "import", ImportLen)) {
548 // replace import with include
549 SourceLocation ImportLoc =
550 LocStart.getFileLocWithOffset(BufPtr-MainBufStart);
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000551 ReplaceText(ImportLoc, ImportLen, "include", IncludeLen);
Fariborz Jahaniana42227a2008-01-19 00:30:35 +0000552 BufPtr += ImportLen;
553 }
554 }
555 }
Chris Lattner74db1682007-10-16 21:07:07 +0000556}
557
Steve Naroff44e81222008-04-14 22:03:09 +0000558void RewriteObjC::RewriteTabs() {
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000559 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
560 const char *MainBufStart = MainBuf.first;
561 const char *MainBufEnd = MainBuf.second;
Fariborz Jahanian640a01f2007-10-18 19:23:00 +0000562
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000563 // Loop over the whole file, looking for tabs.
564 for (const char *BufPtr = MainBufStart; BufPtr != MainBufEnd; ++BufPtr) {
565 if (*BufPtr != '\t')
566 continue;
567
568 // Okay, we found a tab. This tab will turn into at least one character,
569 // but it depends on which 'virtual column' it is in. Compute that now.
570 unsigned VCol = 0;
571 while (BufPtr-VCol != MainBufStart && BufPtr[-VCol-1] != '\t' &&
572 BufPtr[-VCol-1] != '\n' && BufPtr[-VCol-1] != '\r')
573 ++VCol;
574
575 // Okay, now that we know the virtual column, we know how many spaces to
576 // insert. We assume 8-character tab-stops.
577 unsigned Spaces = 8-(VCol & 7);
578
579 // Get the location of the tab.
580 SourceLocation TabLoc =
581 SourceLocation::getFileLoc(MainFileID, BufPtr-MainBufStart);
582
583 // Rewrite the single tab character into a sequence of spaces.
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000584 ReplaceText(TabLoc, 1, " ", Spaces);
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000585 }
Chris Lattner569faa62007-10-11 18:38:32 +0000586}
587
588
Steve Naroff44e81222008-04-14 22:03:09 +0000589void RewriteObjC::RewriteForwardClassDecl(ObjCClassDecl *ClassDecl) {
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000590 int numDecls = ClassDecl->getNumForwardDecls();
Ted Kremenek42730c52008-01-07 19:49:32 +0000591 ObjCInterfaceDecl **ForwardDecls = ClassDecl->getForwardDecls();
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000592
593 // Get the start location and compute the semi location.
594 SourceLocation startLoc = ClassDecl->getLocation();
595 const char *startBuf = SM->getCharacterData(startLoc);
596 const char *semiPtr = strchr(startBuf, ';');
597
598 // Translate to typedef's that forward reference structs with the same name
599 // as the class. As a convenience, we include the original declaration
600 // as a comment.
601 std::string typedefString;
602 typedefString += "// ";
Steve Naroff71226032007-10-24 22:48:43 +0000603 typedefString.append(startBuf, semiPtr-startBuf+1);
604 typedefString += "\n";
605 for (int i = 0; i < numDecls; i++) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000606 ObjCInterfaceDecl *ForwardDecl = ForwardDecls[i];
Steve Naroff2aeae312007-11-09 12:50:28 +0000607 typedefString += "#ifndef _REWRITER_typedef_";
608 typedefString += ForwardDecl->getName();
609 typedefString += "\n";
610 typedefString += "#define _REWRITER_typedef_";
611 typedefString += ForwardDecl->getName();
612 typedefString += "\n";
Steve Naroff4242b972007-11-05 14:36:37 +0000613 typedefString += "typedef struct objc_object ";
Steve Naroff71226032007-10-24 22:48:43 +0000614 typedefString += ForwardDecl->getName();
Steve Naroff2aeae312007-11-09 12:50:28 +0000615 typedefString += ";\n#endif\n";
Steve Naroff71226032007-10-24 22:48:43 +0000616 }
617
618 // Replace the @class with typedefs corresponding to the classes.
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000619 ReplaceText(startLoc, semiPtr-startBuf+1,
620 typedefString.c_str(), typedefString.size());
Chris Lattnerfce2c5a2007-10-24 17:06:59 +0000621}
622
Steve Naroff44e81222008-04-14 22:03:09 +0000623void RewriteObjC::RewriteMethodDeclaration(ObjCMethodDecl *Method) {
Steve Naroff2ce399a2007-12-14 23:37:57 +0000624 SourceLocation LocStart = Method->getLocStart();
625 SourceLocation LocEnd = Method->getLocEnd();
Steve Naroff667f1682007-10-30 13:30:57 +0000626
Steve Naroff2ce399a2007-12-14 23:37:57 +0000627 if (SM->getLineNumber(LocEnd) > SM->getLineNumber(LocStart)) {
Steve Naroff99f50fe2008-10-21 13:37:27 +0000628 InsertText(LocStart, "#if 0\n", 6);
629 ReplaceText(LocEnd, 1, ";\n#endif\n", 9);
Steve Naroff2ce399a2007-12-14 23:37:57 +0000630 } else {
Chris Lattner6216f292008-01-31 19:42:41 +0000631 InsertText(LocStart, "// ", 3);
Steve Naroff667f1682007-10-30 13:30:57 +0000632 }
633}
634
Steve Naroff44e81222008-04-14 22:03:09 +0000635void RewriteObjC::RewriteProperties(unsigned nProperties, ObjCPropertyDecl **Properties)
Fariborz Jahanianeca7fad2007-11-07 00:09:37 +0000636{
Chris Lattnercffe3662008-03-16 21:23:50 +0000637 for (unsigned i = 0; i < nProperties; i++) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000638 ObjCPropertyDecl *Property = Properties[i];
Fariborz Jahanianeca7fad2007-11-07 00:09:37 +0000639 SourceLocation Loc = Property->getLocation();
640
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000641 ReplaceText(Loc, 0, "// ", 3);
Fariborz Jahanianeca7fad2007-11-07 00:09:37 +0000642
643 // FIXME: handle properties that are declared across multiple lines.
644 }
645}
646
Steve Naroff44e81222008-04-14 22:03:09 +0000647void RewriteObjC::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) {
Steve Naroff667f1682007-10-30 13:30:57 +0000648 SourceLocation LocStart = CatDecl->getLocStart();
649
650 // FIXME: handle category headers that are declared across multiple lines.
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000651 ReplaceText(LocStart, 0, "// ", 3);
Steve Naroff667f1682007-10-30 13:30:57 +0000652
Ted Kremenek42730c52008-01-07 19:49:32 +0000653 for (ObjCCategoryDecl::instmeth_iterator I = CatDecl->instmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000654 E = CatDecl->instmeth_end(); I != E; ++I)
655 RewriteMethodDeclaration(*I);
Ted Kremenek42730c52008-01-07 19:49:32 +0000656 for (ObjCCategoryDecl::classmeth_iterator I = CatDecl->classmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000657 E = CatDecl->classmeth_end(); I != E; ++I)
658 RewriteMethodDeclaration(*I);
659
Steve Naroff667f1682007-10-30 13:30:57 +0000660 // Lastly, comment out the @end.
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000661 ReplaceText(CatDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroff667f1682007-10-30 13:30:57 +0000662}
663
Steve Naroff44e81222008-04-14 22:03:09 +0000664void RewriteObjC::RewriteProtocolDecl(ObjCProtocolDecl *PDecl) {
Fariborz Jahanian3960e9c2007-11-14 01:37:46 +0000665 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
Fariborz Jahanian3960e9c2007-11-14 01:37:46 +0000666
Steve Narofff4b7d6a2007-10-30 16:42:30 +0000667 SourceLocation LocStart = PDecl->getLocStart();
668
669 // FIXME: handle protocol headers that are declared across multiple lines.
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000670 ReplaceText(LocStart, 0, "// ", 3);
Steve Narofff4b7d6a2007-10-30 16:42:30 +0000671
Ted Kremenek42730c52008-01-07 19:49:32 +0000672 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000673 E = PDecl->instmeth_end(); I != E; ++I)
674 RewriteMethodDeclaration(*I);
Ted Kremenek42730c52008-01-07 19:49:32 +0000675 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000676 E = PDecl->classmeth_end(); I != E; ++I)
677 RewriteMethodDeclaration(*I);
678
Steve Narofff4b7d6a2007-10-30 16:42:30 +0000679 // Lastly, comment out the @end.
Fariborz Jahanian3960e9c2007-11-14 01:37:46 +0000680 SourceLocation LocEnd = PDecl->getAtEndLoc();
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000681 ReplaceText(LocEnd, 0, "// ", 3);
Steve Naroff268fa592007-11-14 15:03:57 +0000682
Fariborz Jahanian3960e9c2007-11-14 01:37:46 +0000683 // Must comment out @optional/@required
684 const char *startBuf = SM->getCharacterData(LocStart);
685 const char *endBuf = SM->getCharacterData(LocEnd);
686 for (const char *p = startBuf; p < endBuf; p++) {
687 if (*p == '@' && !strncmp(p+1, "optional", strlen("optional"))) {
688 std::string CommentedOptional = "/* @optional */";
Steve Naroff268fa592007-11-14 15:03:57 +0000689 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000690 ReplaceText(OptionalLoc, strlen("@optional"),
691 CommentedOptional.c_str(), CommentedOptional.size());
Fariborz Jahanian3960e9c2007-11-14 01:37:46 +0000692
693 }
694 else if (*p == '@' && !strncmp(p+1, "required", strlen("required"))) {
695 std::string CommentedRequired = "/* @required */";
Steve Naroff268fa592007-11-14 15:03:57 +0000696 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000697 ReplaceText(OptionalLoc, strlen("@required"),
698 CommentedRequired.c_str(), CommentedRequired.size());
Fariborz Jahanian3960e9c2007-11-14 01:37:46 +0000699
700 }
701 }
Steve Narofff4b7d6a2007-10-30 16:42:30 +0000702}
703
Steve Naroff44e81222008-04-14 22:03:09 +0000704void RewriteObjC::RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *PDecl) {
Fariborz Jahanian016a1882007-11-14 00:42:16 +0000705 SourceLocation LocStart = PDecl->getLocation();
Steve Naroff0540f3f2007-11-14 03:37:28 +0000706 if (LocStart.isInvalid())
707 assert(false && "Invalid SourceLocation");
Fariborz Jahanian016a1882007-11-14 00:42:16 +0000708 // FIXME: handle forward protocol that are declared across multiple lines.
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000709 ReplaceText(LocStart, 0, "// ", 3);
Fariborz Jahanian016a1882007-11-14 00:42:16 +0000710}
711
Steve Naroff44e81222008-04-14 22:03:09 +0000712void RewriteObjC::RewriteObjCMethodDecl(ObjCMethodDecl *OMD,
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000713 std::string &ResultStr) {
Steve Naroff6449c6c2008-10-30 12:09:33 +0000714 //fprintf(stderr,"In RewriteObjCMethodDecl\n");
Steve Naroff91044cf2008-07-16 14:40:40 +0000715 const FunctionType *FPRetType = 0;
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000716 ResultStr += "\nstatic ";
Ted Kremenek42730c52008-01-07 19:49:32 +0000717 if (OMD->getResultType()->isObjCQualifiedIdType())
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000718 ResultStr += "id";
Steve Naroff91044cf2008-07-16 14:40:40 +0000719 else if (OMD->getResultType()->isFunctionPointerType()) {
720 // needs special handling, since pointer-to-functions have special
721 // syntax (where a decaration models use).
722 QualType retType = OMD->getResultType();
723 if (const PointerType* PT = retType->getAsPointerType()) {
724 QualType PointeeTy = PT->getPointeeType();
725 if ((FPRetType = PointeeTy->getAsFunctionType())) {
726 ResultStr += FPRetType->getResultType().getAsString();
727 ResultStr += "(*";
728 }
729 }
730 } else
Fariborz Jahaniane76e8412007-12-17 21:03:50 +0000731 ResultStr += OMD->getResultType().getAsString();
Fariborz Jahanian7202d982008-01-10 01:39:52 +0000732 ResultStr += " ";
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000733
734 // Unique method name
Fariborz Jahanianbd2fd922007-11-13 21:02:00 +0000735 std::string NameStr;
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000736
Fariborz Jahanianbd2fd922007-11-13 21:02:00 +0000737 if (OMD->isInstance())
738 NameStr += "_I_";
739 else
740 NameStr += "_C_";
741
742 NameStr += OMD->getClassInterface()->getName();
743 NameStr += "_";
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000744
745 NamedDecl *MethodContext = OMD->getMethodContext();
Ted Kremenek42730c52008-01-07 19:49:32 +0000746 if (ObjCCategoryImplDecl *CID =
747 dyn_cast<ObjCCategoryImplDecl>(MethodContext)) {
Fariborz Jahanianbd2fd922007-11-13 21:02:00 +0000748 NameStr += CID->getName();
749 NameStr += "_";
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000750 }
Steve Naroff5cb1e6e2008-04-04 22:23:44 +0000751 // Append selector names, replacing ':' with '_'
752 if (OMD->getSelector().getName().find(':') == std::string::npos)
Fariborz Jahanianbd2fd922007-11-13 21:02:00 +0000753 NameStr += OMD->getSelector().getName();
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000754 else {
755 std::string selString = OMD->getSelector().getName();
756 int len = selString.size();
757 for (int i = 0; i < len; i++)
758 if (selString[i] == ':')
759 selString[i] = '_';
Fariborz Jahanianbd2fd922007-11-13 21:02:00 +0000760 NameStr += selString;
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000761 }
Fariborz Jahanianbd2fd922007-11-13 21:02:00 +0000762 // Remember this name for metadata emission
763 MethodInternalNames[OMD] = NameStr;
764 ResultStr += NameStr;
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000765
766 // Rewrite arguments
767 ResultStr += "(";
768
769 // invisible arguments
770 if (OMD->isInstance()) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000771 QualType selfTy = Context->getObjCInterfaceType(OMD->getClassInterface());
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000772 selfTy = Context->getPointerType(selfTy);
Steve Naroff60dfb6b2008-03-12 00:25:36 +0000773 if (!LangOpts.Microsoft) {
774 if (ObjCSynthesizedStructs.count(OMD->getClassInterface()))
775 ResultStr += "struct ";
776 }
777 // When rewriting for Microsoft, explicitly omit the structure name.
Steve Naroffde0da102008-03-10 23:16:54 +0000778 ResultStr += OMD->getClassInterface()->getName();
Steve Naroffde0da102008-03-10 23:16:54 +0000779 ResultStr += " *";
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000780 }
781 else
Ted Kremenek42730c52008-01-07 19:49:32 +0000782 ResultStr += Context->getObjCIdType().getAsString();
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000783
784 ResultStr += " self, ";
Ted Kremenek42730c52008-01-07 19:49:32 +0000785 ResultStr += Context->getObjCSelType().getAsString();
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000786 ResultStr += " _cmd";
787
788 // Method arguments.
Chris Lattner685d7922008-03-16 01:07:14 +0000789 for (unsigned i = 0; i < OMD->getNumParams(); i++) {
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000790 ParmVarDecl *PDecl = OMD->getParamDecl(i);
791 ResultStr += ", ";
Steve Naroff133dfda2008-04-18 21:13:19 +0000792 if (PDecl->getType()->isObjCQualifiedIdType()) {
793 ResultStr += "id ";
794 ResultStr += PDecl->getName();
795 } else {
796 std::string Name = PDecl->getName();
Steve Naroff4e2ae512008-10-30 14:45:29 +0000797 if (isBlockPointerType(PDecl->getType())) {
798 // Make sure we convert "t (^)(...)" to "t (*)(...)".
799 const BlockPointerType *BPT = PDecl->getType()->getAsBlockPointerType();
800 Context->getPointerType(BPT->getPointeeType()).getAsStringInternal(Name);
801 } else
802 PDecl->getType().getAsStringInternal(Name);
Steve Naroff133dfda2008-04-18 21:13:19 +0000803 ResultStr += Name;
804 }
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000805 }
Fariborz Jahanian2fab94e2008-01-21 20:14:23 +0000806 if (OMD->isVariadic())
807 ResultStr += ", ...";
Fariborz Jahanian7202d982008-01-10 01:39:52 +0000808 ResultStr += ") ";
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000809
Steve Naroff91044cf2008-07-16 14:40:40 +0000810 if (FPRetType) {
811 ResultStr += ")"; // close the precedence "scope" for "*".
812
813 // Now, emit the argument types (if any).
814 if (const FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(FPRetType)) {
815 ResultStr += "(";
816 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i) {
817 if (i) ResultStr += ", ";
818 std::string ParamStr = FT->getArgType(i).getAsString();
819 ResultStr += ParamStr;
820 }
821 if (FT->isVariadic()) {
822 if (FT->getNumArgs()) ResultStr += ", ";
823 ResultStr += "...";
824 }
825 ResultStr += ")";
826 } else {
827 ResultStr += "()";
828 }
829 }
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000830}
Steve Naroff44e81222008-04-14 22:03:09 +0000831void RewriteObjC::RewriteImplementationDecl(NamedDecl *OID) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000832 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
833 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000834
Fariborz Jahanian0136e372007-11-13 20:04:28 +0000835 if (IMD)
Chris Lattner6216f292008-01-31 19:42:41 +0000836 InsertText(IMD->getLocStart(), "// ", 3);
Fariborz Jahanian0136e372007-11-13 20:04:28 +0000837 else
Chris Lattner6216f292008-01-31 19:42:41 +0000838 InsertText(CID->getLocStart(), "// ", 3);
Steve Naroff21658f62008-11-13 20:07:04 +0000839
Ted Kremenek42730c52008-01-07 19:49:32 +0000840 for (ObjCCategoryImplDecl::instmeth_iterator
Chris Lattnerdea5bec2007-12-12 07:46:12 +0000841 I = IMD ? IMD->instmeth_begin() : CID->instmeth_begin(),
842 E = IMD ? IMD->instmeth_end() : CID->instmeth_end(); I != E; ++I) {
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000843 std::string ResultStr;
Ted Kremenek42730c52008-01-07 19:49:32 +0000844 ObjCMethodDecl *OMD = *I;
845 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000846 SourceLocation LocStart = OMD->getLocStart();
847 SourceLocation LocEnd = OMD->getBody()->getLocStart();
848
849 const char *startBuf = SM->getCharacterData(LocStart);
850 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000851 ReplaceText(LocStart, endBuf-startBuf,
852 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000853 }
854
Ted Kremenek42730c52008-01-07 19:49:32 +0000855 for (ObjCCategoryImplDecl::classmeth_iterator
Chris Lattnerdea5bec2007-12-12 07:46:12 +0000856 I = IMD ? IMD->classmeth_begin() : CID->classmeth_begin(),
857 E = IMD ? IMD->classmeth_end() : CID->classmeth_end(); I != E; ++I) {
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000858 std::string ResultStr;
Ted Kremenek42730c52008-01-07 19:49:32 +0000859 ObjCMethodDecl *OMD = *I;
860 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000861 SourceLocation LocStart = OMD->getLocStart();
862 SourceLocation LocEnd = OMD->getBody()->getLocStart();
863
864 const char *startBuf = SM->getCharacterData(LocStart);
865 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000866 ReplaceText(LocStart, endBuf-startBuf,
867 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000868 }
Fariborz Jahanian0136e372007-11-13 20:04:28 +0000869 if (IMD)
Chris Lattner6216f292008-01-31 19:42:41 +0000870 InsertText(IMD->getLocEnd(), "// ", 3);
Fariborz Jahanian0136e372007-11-13 20:04:28 +0000871 else
Chris Lattner6216f292008-01-31 19:42:41 +0000872 InsertText(CID->getLocEnd(), "// ", 3);
Fariborz Jahanian5ea3a762007-11-13 18:44:14 +0000873}
874
Steve Naroff44e81222008-04-14 22:03:09 +0000875void RewriteObjC::RewriteInterfaceDecl(ObjCInterfaceDecl *ClassDecl) {
Steve Naroffef20ed32007-10-30 02:23:23 +0000876 std::string ResultStr;
Ted Kremenek42730c52008-01-07 19:49:32 +0000877 if (!ObjCForwardDecls.count(ClassDecl)) {
Steve Naroff77d081b2007-11-01 03:35:41 +0000878 // we haven't seen a forward decl - generate a typedef.
Steve Naroff2adead72007-11-14 23:02:56 +0000879 ResultStr = "#ifndef _REWRITER_typedef_";
Steve Naroff2aeae312007-11-09 12:50:28 +0000880 ResultStr += ClassDecl->getName();
881 ResultStr += "\n";
882 ResultStr += "#define _REWRITER_typedef_";
883 ResultStr += ClassDecl->getName();
884 ResultStr += "\n";
Steve Naroffde0da102008-03-10 23:16:54 +0000885 ResultStr += "typedef struct objc_object ";
Steve Naroff77d081b2007-11-01 03:35:41 +0000886 ResultStr += ClassDecl->getName();
Steve Naroff2aeae312007-11-09 12:50:28 +0000887 ResultStr += ";\n#endif\n";
Steve Naroff77d081b2007-11-01 03:35:41 +0000888 // Mark this typedef as having been generated.
Ted Kremenek42730c52008-01-07 19:49:32 +0000889 ObjCForwardDecls.insert(ClassDecl);
Steve Naroff77d081b2007-11-01 03:35:41 +0000890 }
Ted Kremenek42730c52008-01-07 19:49:32 +0000891 SynthesizeObjCInternalStruct(ClassDecl, ResultStr);
Steve Naroffef20ed32007-10-30 02:23:23 +0000892
Fariborz Jahanianeca7fad2007-11-07 00:09:37 +0000893 RewriteProperties(ClassDecl->getNumPropertyDecl(),
894 ClassDecl->getPropertyDecl());
Ted Kremenek42730c52008-01-07 19:49:32 +0000895 for (ObjCInterfaceDecl::instmeth_iterator I = ClassDecl->instmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000896 E = ClassDecl->instmeth_end(); I != E; ++I)
897 RewriteMethodDeclaration(*I);
Ted Kremenek42730c52008-01-07 19:49:32 +0000898 for (ObjCInterfaceDecl::classmeth_iterator I = ClassDecl->classmeth_begin(),
Steve Naroff2ce399a2007-12-14 23:37:57 +0000899 E = ClassDecl->classmeth_end(); I != E; ++I)
900 RewriteMethodDeclaration(*I);
901
Steve Naroff1ccf4632007-10-30 03:43:13 +0000902 // Lastly, comment out the @end.
Chris Lattnerb8a1b042008-01-31 19:51:04 +0000903 ReplaceText(ClassDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroff3774dd92007-10-26 20:53:56 +0000904}
905
Chris Lattner343c82b2008-05-23 20:40:52 +0000906Stmt *RewriteObjC::RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV,
907 SourceLocation OrigStart) {
Ted Kremenek42730c52008-01-07 19:49:32 +0000908 ObjCIvarDecl *D = IV->getDecl();
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000909 if (CurMethodDef) {
Steve Naroff60dfb6b2008-03-12 00:25:36 +0000910 if (const PointerType *pType = IV->getBase()->getType()->getAsPointerType()) {
Steve Naroffa9636222008-05-08 17:52:16 +0000911 ObjCInterfaceType *iFaceDecl = dyn_cast<ObjCInterfaceType>(pType->getPointeeType());
912 // lookup which class implements the instance variable.
913 ObjCInterfaceDecl *clsDeclared = 0;
914 iFaceDecl->getDecl()->lookupInstanceVariable(D->getIdentifier(), clsDeclared);
915 assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class");
916
917 // Synthesize an explicit cast to gain access to the ivar.
918 std::string RecName = clsDeclared->getIdentifier()->getName();
919 RecName += "_IMPL";
920 IdentifierInfo *II = &Context->Idents.get(RecName.c_str());
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +0000921 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Ted Kremenek2c984042008-09-05 01:34:33 +0000922 SourceLocation(), II);
Steve Naroffa9636222008-05-08 17:52:16 +0000923 assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl");
924 QualType castT = Context->getPointerType(Context->getTagDeclType(RD));
Douglas Gregor035d0882008-10-28 15:36:24 +0000925 CastExpr *castExpr = new CStyleCastExpr(castT, IV->getBase(), castT,
Steve Naroff7f1412d2008-11-03 23:29:32 +0000926 SourceLocation(), SourceLocation());
Steve Naroffa9636222008-05-08 17:52:16 +0000927 // Don't forget the parens to enforce the proper binding.
Chris Lattner343c82b2008-05-23 20:40:52 +0000928 ParenExpr *PE = new ParenExpr(IV->getBase()->getLocStart(),
929 IV->getBase()->getLocEnd(),
930 castExpr);
Steve Naroffa9636222008-05-08 17:52:16 +0000931 if (IV->isFreeIvar() &&
Steve Naroff38a9e3f2008-10-27 17:20:55 +0000932 CurMethodDef->getClassInterface() == iFaceDecl->getDecl()) {
Chris Lattner343c82b2008-05-23 20:40:52 +0000933 MemberExpr *ME = new MemberExpr(PE, true, D, IV->getLocation(),
934 D->getType());
Steve Naroffa9636222008-05-08 17:52:16 +0000935 ReplaceStmt(IV, ME);
936 delete IV;
937 return ME;
Steve Naroff292b7b92007-11-15 11:33:00 +0000938 }
Chris Lattner343c82b2008-05-23 20:40:52 +0000939
940 ReplaceStmt(IV->getBase(), PE);
941 // Cannot delete IV->getBase(), since PE points to it.
942 // Replace the old base with the cast. This is important when doing
943 // embedded rewrites. For example, [newInv->_container addObject:0].
944 IV->setBase(PE);
945 return IV;
Steve Naroff292b7b92007-11-15 11:33:00 +0000946 }
Steve Naroffe6155362008-04-18 21:55:08 +0000947 } else { // we are outside a method.
Steve Naroffd8d30b92008-05-06 23:20:07 +0000948 assert(!IV->isFreeIvar() && "Cannot have a free standing ivar outside a method");
949
950 // Explicit ivar refs need to have a cast inserted.
951 // FIXME: consider sharing some of this code with the code above.
952 if (const PointerType *pType = IV->getBase()->getType()->getAsPointerType()) {
Steve Naroffa9636222008-05-08 17:52:16 +0000953 ObjCInterfaceType *iFaceDecl = dyn_cast<ObjCInterfaceType>(pType->getPointeeType());
Steve Naroffd8d30b92008-05-06 23:20:07 +0000954 // lookup which class implements the instance variable.
955 ObjCInterfaceDecl *clsDeclared = 0;
Steve Naroffa9636222008-05-08 17:52:16 +0000956 iFaceDecl->getDecl()->lookupInstanceVariable(D->getIdentifier(), clsDeclared);
Steve Naroffd8d30b92008-05-06 23:20:07 +0000957 assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class");
958
959 // Synthesize an explicit cast to gain access to the ivar.
960 std::string RecName = clsDeclared->getIdentifier()->getName();
961 RecName += "_IMPL";
962 IdentifierInfo *II = &Context->Idents.get(RecName.c_str());
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +0000963 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Ted Kremenek2c984042008-09-05 01:34:33 +0000964 SourceLocation(), II);
Steve Naroffd8d30b92008-05-06 23:20:07 +0000965 assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl");
966 QualType castT = Context->getPointerType(Context->getTagDeclType(RD));
Douglas Gregor035d0882008-10-28 15:36:24 +0000967 CastExpr *castExpr = new CStyleCastExpr(castT, IV->getBase(), castT,
Steve Naroff7f1412d2008-11-03 23:29:32 +0000968 SourceLocation(), SourceLocation());
Steve Naroffd8d30b92008-05-06 23:20:07 +0000969 // Don't forget the parens to enforce the proper binding.
Chris Lattner3cca6612008-05-28 16:38:23 +0000970 ParenExpr *PE = new ParenExpr(IV->getBase()->getLocStart(),
971 IV->getBase()->getLocEnd(), castExpr);
Steve Naroffd8d30b92008-05-06 23:20:07 +0000972 ReplaceStmt(IV->getBase(), PE);
973 // Cannot delete IV->getBase(), since PE points to it.
974 // Replace the old base with the cast. This is important when doing
975 // embedded rewrites. For example, [newInv->_container addObject:0].
976 IV->setBase(PE);
977 return IV;
978 }
Steve Naroff292b7b92007-11-15 11:33:00 +0000979 }
Steve Naroffe6155362008-04-18 21:55:08 +0000980 return IV;
Steve Naroff6b759ce2007-11-15 02:58:25 +0000981}
982
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +0000983/// SynthCountByEnumWithState - To print:
984/// ((unsigned int (*)
985/// (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
986/// (void *)objc_msgSend)((id)l_collection,
987/// sel_registerName(
988/// "countByEnumeratingWithState:objects:count:"),
989/// &enumState,
990/// (id *)items, (unsigned int)16)
991///
Steve Naroff44e81222008-04-14 22:03:09 +0000992void RewriteObjC::SynthCountByEnumWithState(std::string &buf) {
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +0000993 buf += "((unsigned int (*) (id, SEL, struct __objcFastEnumerationState *, "
994 "id *, unsigned int))(void *)objc_msgSend)";
995 buf += "\n\t\t";
996 buf += "((id)l_collection,\n\t\t";
997 buf += "sel_registerName(\"countByEnumeratingWithState:objects:count:\"),";
998 buf += "\n\t\t";
999 buf += "&enumState, "
1000 "(id *)items, (unsigned int)16)";
1001}
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001002
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001003/// RewriteBreakStmt - Rewrite for a break-stmt inside an ObjC2's foreach
1004/// statement to exit to its outer synthesized loop.
1005///
Steve Naroff44e81222008-04-14 22:03:09 +00001006Stmt *RewriteObjC::RewriteBreakStmt(BreakStmt *S) {
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001007 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
1008 return S;
1009 // replace break with goto __break_label
1010 std::string buf;
1011
1012 SourceLocation startLoc = S->getLocStart();
1013 buf = "goto __break_label_";
1014 buf += utostr(ObjCBcLabelNo.back());
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001015 ReplaceText(startLoc, strlen("break"), buf.c_str(), buf.size());
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001016
1017 return 0;
1018}
1019
1020/// RewriteContinueStmt - Rewrite for a continue-stmt inside an ObjC2's foreach
1021/// statement to continue with its inner synthesized loop.
1022///
Steve Naroff44e81222008-04-14 22:03:09 +00001023Stmt *RewriteObjC::RewriteContinueStmt(ContinueStmt *S) {
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001024 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
1025 return S;
1026 // replace continue with goto __continue_label
1027 std::string buf;
1028
1029 SourceLocation startLoc = S->getLocStart();
1030 buf = "goto __continue_label_";
1031 buf += utostr(ObjCBcLabelNo.back());
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001032 ReplaceText(startLoc, strlen("continue"), buf.c_str(), buf.size());
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001033
1034 return 0;
1035}
1036
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001037/// RewriteObjCForCollectionStmt - Rewriter for ObjC2's foreach statement.
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001038/// It rewrites:
1039/// for ( type elem in collection) { stmts; }
Fariborz Jahanian45d52f72007-10-18 22:09:03 +00001040
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001041/// Into:
1042/// {
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001043/// type elem;
1044/// struct __objcFastEnumerationState enumState = { 0 };
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001045/// id items[16];
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001046/// id l_collection = (id)collection;
1047/// unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
1048/// objects:items count:16];
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001049/// if (limit) {
1050/// unsigned long startMutations = *enumState.mutationsPtr;
1051/// do {
1052/// unsigned long counter = 0;
1053/// do {
1054/// if (startMutations != *enumState.mutationsPtr)
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001055/// objc_enumerationMutation(l_collection);
Fariborz Jahanianfb09aa02008-01-09 18:15:42 +00001056/// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001057/// stmts;
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001058/// __continue_label: ;
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001059/// } while (counter < limit);
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001060/// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1061/// objects:items count:16]);
1062/// elem = nil;
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001063/// __break_label: ;
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001064/// }
1065/// else
1066/// elem = nil;
1067/// }
1068///
Steve Naroff44e81222008-04-14 22:03:09 +00001069Stmt *RewriteObjC::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
Chris Lattner2c022162008-01-31 05:10:40 +00001070 SourceLocation OrigEnd) {
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001071 assert(!Stmts.empty() && "ObjCForCollectionStmt - Statement stack empty");
1072 assert(isa<ObjCForCollectionStmt>(Stmts.back()) &&
1073 "ObjCForCollectionStmt Statement stack mismatch");
1074 assert(!ObjCBcLabelNo.empty() &&
1075 "ObjCForCollectionStmt - Label No stack empty");
1076
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001077 SourceLocation startLoc = S->getLocStart();
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001078 const char *startBuf = SM->getCharacterData(startLoc);
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001079 const char *elementName;
Fariborz Jahanianfb09aa02008-01-09 18:15:42 +00001080 std::string elementTypeAsString;
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001081 std::string buf;
1082 buf = "\n{\n\t";
1083 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->getElement())) {
1084 // type elem;
Ted Kremenek91a2bd32008-10-06 22:16:13 +00001085 ScopedDecl* D = DS->getSolitaryDecl();
1086 QualType ElementType = cast<ValueDecl>(D)->getType();
Fariborz Jahanianfb09aa02008-01-09 18:15:42 +00001087 elementTypeAsString = ElementType.getAsString();
1088 buf += elementTypeAsString;
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001089 buf += " ";
Douglas Gregor24afd4a2008-11-17 14:58:09 +00001090 elementName = D->getIdentifierName();
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001091 buf += elementName;
1092 buf += ";\n\t";
1093 }
Chris Lattner690c2872008-04-08 05:52:18 +00001094 else {
1095 DeclRefExpr *DR = cast<DeclRefExpr>(S->getElement());
Douglas Gregor24afd4a2008-11-17 14:58:09 +00001096 elementName = DR->getDecl()->getIdentifierName();
Douglas Gregord2baafd2008-10-21 16:13:35 +00001097 elementTypeAsString
1098 = cast<ValueDecl>(DR->getDecl())->getType().getAsString();
Fariborz Jahanianfb09aa02008-01-09 18:15:42 +00001099 }
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001100
1101 // struct __objcFastEnumerationState enumState = { 0 };
1102 buf += "struct __objcFastEnumerationState enumState = { 0 };\n\t";
1103 // id items[16];
1104 buf += "id items[16];\n\t";
1105 // id l_collection = (id)
1106 buf += "id l_collection = (id)";
Fariborz Jahaniandf2b0952008-01-10 00:24:29 +00001107 // Find start location of 'collection' the hard way!
1108 const char *startCollectionBuf = startBuf;
1109 startCollectionBuf += 3; // skip 'for'
1110 startCollectionBuf = strchr(startCollectionBuf, '(');
1111 startCollectionBuf++; // skip '('
1112 // find 'in' and skip it.
1113 while (*startCollectionBuf != ' ' ||
1114 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' ||
1115 (*(startCollectionBuf+3) != ' ' &&
1116 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '('))
1117 startCollectionBuf++;
1118 startCollectionBuf += 3;
1119
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001120 // Replace: "for (type element in" with string constructed thus far.
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001121 ReplaceText(startLoc, startCollectionBuf - startBuf,
1122 buf.c_str(), buf.size());
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001123 // Replace ')' in for '(' type elem in collection ')' with ';'
Fariborz Jahaniandf2b0952008-01-10 00:24:29 +00001124 SourceLocation rightParenLoc = S->getRParenLoc();
1125 const char *rparenBuf = SM->getCharacterData(rightParenLoc);
1126 SourceLocation lparenLoc = startLoc.getFileLocWithOffset(rparenBuf-startBuf);
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001127 buf = ";\n\t";
1128
1129 // unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
1130 // objects:items count:16];
1131 // which is synthesized into:
1132 // unsigned int limit =
1133 // ((unsigned int (*)
1134 // (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
1135 // (void *)objc_msgSend)((id)l_collection,
1136 // sel_registerName(
1137 // "countByEnumeratingWithState:objects:count:"),
1138 // (struct __objcFastEnumerationState *)&state,
1139 // (id *)items, (unsigned int)16);
1140 buf += "unsigned long limit =\n\t\t";
1141 SynthCountByEnumWithState(buf);
1142 buf += ";\n\t";
1143 /// if (limit) {
1144 /// unsigned long startMutations = *enumState.mutationsPtr;
1145 /// do {
1146 /// unsigned long counter = 0;
1147 /// do {
1148 /// if (startMutations != *enumState.mutationsPtr)
1149 /// objc_enumerationMutation(l_collection);
Fariborz Jahanianfb09aa02008-01-09 18:15:42 +00001150 /// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001151 buf += "if (limit) {\n\t";
1152 buf += "unsigned long startMutations = *enumState.mutationsPtr;\n\t";
1153 buf += "do {\n\t\t";
1154 buf += "unsigned long counter = 0;\n\t\t";
1155 buf += "do {\n\t\t\t";
1156 buf += "if (startMutations != *enumState.mutationsPtr)\n\t\t\t\t";
1157 buf += "objc_enumerationMutation(l_collection);\n\t\t\t";
1158 buf += elementName;
Fariborz Jahanianfb09aa02008-01-09 18:15:42 +00001159 buf += " = (";
1160 buf += elementTypeAsString;
1161 buf += ")enumState.itemsPtr[counter++];";
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001162 // Replace ')' in for '(' type elem in collection ')' with all of these.
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001163 ReplaceText(lparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001164
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001165 /// __continue_label: ;
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001166 /// } while (counter < limit);
1167 /// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1168 /// objects:items count:16]);
1169 /// elem = nil;
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001170 /// __break_label: ;
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001171 /// }
1172 /// else
1173 /// elem = nil;
1174 /// }
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001175 ///
1176 buf = ";\n\t";
1177 buf += "__continue_label_";
1178 buf += utostr(ObjCBcLabelNo.back());
1179 buf += ": ;";
1180 buf += "\n\t\t";
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001181 buf += "} while (counter < limit);\n\t";
1182 buf += "} while (limit = ";
1183 SynthCountByEnumWithState(buf);
1184 buf += ");\n\t";
1185 buf += elementName;
1186 buf += " = nil;\n\t";
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001187 buf += "__break_label_";
1188 buf += utostr(ObjCBcLabelNo.back());
1189 buf += ": ;\n\t";
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001190 buf += "}\n\t";
1191 buf += "else\n\t\t";
1192 buf += elementName;
1193 buf += " = nil;\n";
1194 buf += "}\n";
Steve Naroff5f238fe2008-07-21 18:26:02 +00001195
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001196 // Insert all these *after* the statement body.
Steve Naroff5f238fe2008-07-21 18:26:02 +00001197 if (isa<CompoundStmt>(S->getBody())) {
1198 SourceLocation endBodyLoc = OrigEnd.getFileLocWithOffset(1);
1199 InsertText(endBodyLoc, buf.c_str(), buf.size());
1200 } else {
1201 /* Need to treat single statements specially. For example:
1202 *
1203 * for (A *a in b) if (stuff()) break;
1204 * for (A *a in b) xxxyy;
1205 *
1206 * The following code simply scans ahead to the semi to find the actual end.
1207 */
1208 const char *stmtBuf = SM->getCharacterData(OrigEnd);
1209 const char *semiBuf = strchr(stmtBuf, ';');
1210 assert(semiBuf && "Can't find ';'");
1211 SourceLocation endBodyLoc = OrigEnd.getFileLocWithOffset(semiBuf-stmtBuf+1);
1212 InsertText(endBodyLoc, buf.c_str(), buf.size());
1213 }
Fariborz Jahanian13dad332008-01-15 23:58:23 +00001214 Stmts.pop_back();
1215 ObjCBcLabelNo.pop_back();
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00001216 return 0;
Fariborz Jahanian955fcb82008-01-07 21:40:22 +00001217}
1218
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001219/// RewriteObjCSynchronizedStmt -
1220/// This routine rewrites @synchronized(expr) stmt;
1221/// into:
1222/// objc_sync_enter(expr);
1223/// @try stmt @finally { objc_sync_exit(expr); }
1224///
Steve Naroff44e81222008-04-14 22:03:09 +00001225Stmt *RewriteObjC::RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001226 // Get the start location and compute the semi location.
1227 SourceLocation startLoc = S->getLocStart();
1228 const char *startBuf = SM->getCharacterData(startLoc);
1229
1230 assert((*startBuf == '@') && "bogus @synchronized location");
1231
1232 std::string buf;
Steve Naroffc1656a62008-08-21 13:03:03 +00001233 buf = "objc_sync_enter((id)";
1234 const char *lparenBuf = startBuf;
1235 while (*lparenBuf != '(') lparenBuf++;
1236 ReplaceText(startLoc, lparenBuf-startBuf+1, buf.c_str(), buf.size());
Steve Naroff027cd0b2008-08-19 13:04:19 +00001237 // We can't use S->getSynchExpr()->getLocEnd() to find the end location, since
1238 // the sync expression is typically a message expression that's already
1239 // been rewritten! (which implies the SourceLocation's are invalid).
1240 SourceLocation endLoc = S->getSynchBody()->getLocStart();
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001241 const char *endBuf = SM->getCharacterData(endLoc);
Steve Naroff027cd0b2008-08-19 13:04:19 +00001242 while (*endBuf != ')') endBuf--;
1243 SourceLocation rparenLoc = startLoc.getFileLocWithOffset(endBuf-startBuf);
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001244 buf = ");\n";
1245 // declare a new scope with two variables, _stack and _rethrow.
1246 buf += "/* @try scope begin */ \n{ struct _objc_exception_data {\n";
1247 buf += "int buf[18/*32-bit i386*/];\n";
1248 buf += "char *pointers[4];} _stack;\n";
1249 buf += "id volatile _rethrow = 0;\n";
1250 buf += "objc_exception_try_enter(&_stack);\n";
1251 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001252 ReplaceText(rparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001253 startLoc = S->getSynchBody()->getLocEnd();
1254 startBuf = SM->getCharacterData(startLoc);
1255
Steve Naroff027cd0b2008-08-19 13:04:19 +00001256 assert((*startBuf == '}') && "bogus @synchronized block");
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001257 SourceLocation lastCurlyLoc = startLoc;
1258 buf = "}\nelse {\n";
1259 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1260 buf += " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
Steve Naroff17919b52008-07-16 19:47:39 +00001261 buf += " objc_sync_exit(";
Douglas Gregor035d0882008-10-28 15:36:24 +00001262 Expr *syncExpr = new CStyleCastExpr(Context->getObjCIdType(),
Douglas Gregor21a04f32008-10-27 19:41:14 +00001263 S->getSynchExpr(),
1264 Context->getObjCIdType(),
Steve Naroff7f1412d2008-11-03 23:29:32 +00001265 SourceLocation(), SourceLocation());
Ted Kremenek7b6f67b2008-09-13 05:16:45 +00001266 std::string syncExprBufS;
1267 llvm::raw_string_ostream syncExprBuf(syncExprBufS);
Steve Naroffc1656a62008-08-21 13:03:03 +00001268 syncExpr->printPretty(syncExprBuf);
Steve Naroff17919b52008-07-16 19:47:39 +00001269 buf += syncExprBuf.str();
1270 buf += ");\n";
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001271 buf += " if (_rethrow) objc_exception_throw(_rethrow);\n";
1272 buf += "}\n";
1273 buf += "}";
1274
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001275 ReplaceText(lastCurlyLoc, 1, buf.c_str(), buf.size());
Fariborz Jahanian499bf412008-01-29 22:59:37 +00001276 return 0;
1277}
1278
Steve Naroff44e81222008-04-14 22:03:09 +00001279Stmt *RewriteObjC::RewriteObjCTryStmt(ObjCAtTryStmt *S) {
Steve Naroffe9f69842007-11-07 04:08:17 +00001280 // Get the start location and compute the semi location.
1281 SourceLocation startLoc = S->getLocStart();
1282 const char *startBuf = SM->getCharacterData(startLoc);
1283
1284 assert((*startBuf == '@') && "bogus @try location");
1285
1286 std::string buf;
1287 // declare a new scope with two variables, _stack and _rethrow.
1288 buf = "/* @try scope begin */ { struct _objc_exception_data {\n";
1289 buf += "int buf[18/*32-bit i386*/];\n";
1290 buf += "char *pointers[4];} _stack;\n";
1291 buf += "id volatile _rethrow = 0;\n";
1292 buf += "objc_exception_try_enter(&_stack);\n";
Steve Naroffd3287d82007-11-07 18:43:40 +00001293 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Steve Naroffe9f69842007-11-07 04:08:17 +00001294
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001295 ReplaceText(startLoc, 4, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001296
1297 startLoc = S->getTryBody()->getLocEnd();
1298 startBuf = SM->getCharacterData(startLoc);
1299
1300 assert((*startBuf == '}') && "bogus @try block");
Steve Naroff9d0ff352008-07-16 15:31:30 +00001301
Steve Naroffe9f69842007-11-07 04:08:17 +00001302 SourceLocation lastCurlyLoc = startLoc;
Steve Naroff9d0ff352008-07-16 15:31:30 +00001303 ObjCAtCatchStmt *catchList = S->getCatchStmts();
1304 if (catchList) {
1305 startLoc = startLoc.getFileLocWithOffset(1);
1306 buf = " /* @catch begin */ else {\n";
1307 buf += " id _caught = objc_exception_extract(&_stack);\n";
1308 buf += " objc_exception_try_enter (&_stack);\n";
1309 buf += " if (_setjmp(_stack.buf))\n";
1310 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1311 buf += " else { /* @catch continue */";
1312
1313 InsertText(startLoc, buf.c_str(), buf.size());
Steve Naroff36269d22008-09-09 19:59:12 +00001314 } else { /* no catch list */
1315 buf = "}\nelse {\n";
1316 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1317 buf += "}";
1318 ReplaceText(lastCurlyLoc, 1, buf.c_str(), buf.size());
Steve Naroff9d0ff352008-07-16 15:31:30 +00001319 }
Steve Naroffe9f69842007-11-07 04:08:17 +00001320 bool sawIdTypedCatch = false;
1321 Stmt *lastCatchBody = 0;
Steve Naroffe9f69842007-11-07 04:08:17 +00001322 while (catchList) {
1323 Stmt *catchStmt = catchList->getCatchParamStmt();
1324
1325 if (catchList == S->getCatchStmts())
1326 buf = "if ("; // we are generating code for the first catch clause
1327 else
1328 buf = "else if (";
1329 startLoc = catchList->getLocStart();
1330 startBuf = SM->getCharacterData(startLoc);
1331
1332 assert((*startBuf == '@') && "bogus @catch location");
1333
1334 const char *lParenLoc = strchr(startBuf, '(');
1335
Steve Naroff397c4ce2008-02-01 22:08:12 +00001336 if (catchList->hasEllipsis()) {
Steve Naroff929c77e2008-02-01 20:02:07 +00001337 // Now rewrite the body...
1338 lastCatchBody = catchList->getCatchBody();
Steve Naroff929c77e2008-02-01 20:02:07 +00001339 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1340 const char *bodyBuf = SM->getCharacterData(bodyLoc);
Chris Lattner690c2872008-04-08 05:52:18 +00001341 assert(*SM->getCharacterData(catchList->getRParenLoc()) == ')' &&
1342 "bogus @catch paren location");
Steve Naroff929c77e2008-02-01 20:02:07 +00001343 assert((*bodyBuf == '{') && "bogus @catch body location");
1344
1345 buf += "1) { id _tmp = _caught;";
1346 Rewrite.ReplaceText(startLoc, bodyBuf-startBuf+1,
1347 buf.c_str(), buf.size());
1348 } else if (DeclStmt *declStmt = dyn_cast<DeclStmt>(catchStmt)) {
Ted Kremenek91034202008-10-06 22:39:38 +00001349 QualType t = dyn_cast<ValueDecl>(declStmt->getSolitaryDecl())->getType();
Ted Kremenek42730c52008-01-07 19:49:32 +00001350 if (t == Context->getObjCIdType()) {
Steve Naroffe9f69842007-11-07 04:08:17 +00001351 buf += "1) { ";
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001352 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001353 sawIdTypedCatch = true;
1354 } else if (const PointerType *pType = t->getAsPointerType()) {
Ted Kremenek42730c52008-01-07 19:49:32 +00001355 ObjCInterfaceType *cls; // Should be a pointer to a class.
Steve Naroffe9f69842007-11-07 04:08:17 +00001356
Ted Kremenek42730c52008-01-07 19:49:32 +00001357 cls = dyn_cast<ObjCInterfaceType>(pType->getPointeeType().getTypePtr());
Steve Naroffe9f69842007-11-07 04:08:17 +00001358 if (cls) {
Steve Naroffd3287d82007-11-07 18:43:40 +00001359 buf += "objc_exception_match((struct objc_class *)objc_getClass(\"";
Steve Naroffe9f69842007-11-07 04:08:17 +00001360 buf += cls->getDecl()->getName();
Steve Naroffd3287d82007-11-07 18:43:40 +00001361 buf += "\"), (struct objc_object *)_caught)) { ";
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001362 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001363 }
1364 }
1365 // Now rewrite the body...
1366 lastCatchBody = catchList->getCatchBody();
1367 SourceLocation rParenLoc = catchList->getRParenLoc();
1368 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1369 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1370 const char *rParenBuf = SM->getCharacterData(rParenLoc);
1371 assert((*rParenBuf == ')') && "bogus @catch paren location");
1372 assert((*bodyBuf == '{') && "bogus @catch body location");
1373
1374 buf = " = _caught;";
1375 // Here we replace ") {" with "= _caught;" (which initializes and
1376 // declares the @catch parameter).
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001377 ReplaceText(rParenLoc, bodyBuf-rParenBuf+1, buf.c_str(), buf.size());
Steve Naroff8b1fb8c2007-11-07 15:32:26 +00001378 } else if (!isa<NullStmt>(catchStmt)) {
Steve Naroffe9f69842007-11-07 04:08:17 +00001379 assert(false && "@catch rewrite bug");
Steve Naroff8b1fb8c2007-11-07 15:32:26 +00001380 }
Steve Naroff929c77e2008-02-01 20:02:07 +00001381 // make sure all the catch bodies get rewritten!
Steve Naroffe9f69842007-11-07 04:08:17 +00001382 catchList = catchList->getNextCatchStmt();
1383 }
1384 // Complete the catch list...
1385 if (lastCatchBody) {
1386 SourceLocation bodyLoc = lastCatchBody->getLocEnd();
Chris Lattner690c2872008-04-08 05:52:18 +00001387 assert(*SM->getCharacterData(bodyLoc) == '}' &&
1388 "bogus @catch body location");
Steve Naroffe9f69842007-11-07 04:08:17 +00001389
Steve Naroff31325c12008-09-11 15:29:03 +00001390 // Insert the last (implicit) else clause *before* the right curly brace.
1391 bodyLoc = bodyLoc.getFileLocWithOffset(-1);
1392 buf = "} /* last catch end */\n";
1393 buf += "else {\n";
1394 buf += " _rethrow = _caught;\n";
1395 buf += " objc_exception_try_exit(&_stack);\n";
1396 buf += "} } /* @catch end */\n";
1397 if (!S->getFinallyStmt())
1398 buf += "}\n";
Chris Lattner6216f292008-01-31 19:42:41 +00001399 InsertText(bodyLoc, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001400
1401 // Set lastCurlyLoc
1402 lastCurlyLoc = lastCatchBody->getLocEnd();
1403 }
Ted Kremenek42730c52008-01-07 19:49:32 +00001404 if (ObjCAtFinallyStmt *finalStmt = S->getFinallyStmt()) {
Steve Naroffe9f69842007-11-07 04:08:17 +00001405 startLoc = finalStmt->getLocStart();
1406 startBuf = SM->getCharacterData(startLoc);
1407 assert((*startBuf == '@') && "bogus @finally start");
1408
1409 buf = "/* @finally */";
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001410 ReplaceText(startLoc, 8, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001411
1412 Stmt *body = finalStmt->getFinallyBody();
1413 SourceLocation startLoc = body->getLocStart();
1414 SourceLocation endLoc = body->getLocEnd();
Chris Lattner690c2872008-04-08 05:52:18 +00001415 assert(*SM->getCharacterData(startLoc) == '{' &&
1416 "bogus @finally body location");
1417 assert(*SM->getCharacterData(endLoc) == '}' &&
1418 "bogus @finally body location");
Steve Naroffe9f69842007-11-07 04:08:17 +00001419
1420 startLoc = startLoc.getFileLocWithOffset(1);
1421 buf = " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
Chris Lattner6216f292008-01-31 19:42:41 +00001422 InsertText(startLoc, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001423 endLoc = endLoc.getFileLocWithOffset(-1);
1424 buf = " if (_rethrow) objc_exception_throw(_rethrow);\n";
Chris Lattner6216f292008-01-31 19:42:41 +00001425 InsertText(endLoc, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001426
1427 // Set lastCurlyLoc
1428 lastCurlyLoc = body->getLocEnd();
Steve Naroff31325c12008-09-11 15:29:03 +00001429 } else { /* no finally clause - make sure we synthesize an implicit one */
1430 buf = "{ /* implicit finally clause */\n";
1431 buf += " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
1432 buf += " if (_rethrow) objc_exception_throw(_rethrow);\n";
1433 buf += "}";
1434 ReplaceText(lastCurlyLoc, 1, buf.c_str(), buf.size());
Steve Naroffe9f69842007-11-07 04:08:17 +00001435 }
1436 // Now emit the final closing curly brace...
1437 lastCurlyLoc = lastCurlyLoc.getFileLocWithOffset(1);
1438 buf = " } /* @try scope end */\n";
Chris Lattner6216f292008-01-31 19:42:41 +00001439 InsertText(lastCurlyLoc, buf.c_str(), buf.size());
Fariborz Jahanian9447e462007-11-05 17:47:33 +00001440 return 0;
1441}
1442
Steve Naroff44e81222008-04-14 22:03:09 +00001443Stmt *RewriteObjC::RewriteObjCCatchStmt(ObjCAtCatchStmt *S) {
Fariborz Jahanian9447e462007-11-05 17:47:33 +00001444 return 0;
1445}
1446
Steve Naroff44e81222008-04-14 22:03:09 +00001447Stmt *RewriteObjC::RewriteObjCFinallyStmt(ObjCAtFinallyStmt *S) {
Fariborz Jahanian9447e462007-11-05 17:47:33 +00001448 return 0;
1449}
1450
Chris Lattnerb1548372008-01-31 19:37:57 +00001451// This can't be done with ReplaceStmt(S, ThrowExpr), since
Steve Naroff8b1fb8c2007-11-07 15:32:26 +00001452// the throw expression is typically a message expression that's already
1453// been rewritten! (which implies the SourceLocation's are invalid).
Steve Naroff44e81222008-04-14 22:03:09 +00001454Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) {
Steve Naroff8b1fb8c2007-11-07 15:32:26 +00001455 // Get the start location and compute the semi location.
1456 SourceLocation startLoc = S->getLocStart();
1457 const char *startBuf = SM->getCharacterData(startLoc);
1458
1459 assert((*startBuf == '@') && "bogus @throw location");
1460
1461 std::string buf;
1462 /* void objc_exception_throw(id) __attribute__((noreturn)); */
Steve Naroffbe72efa2008-01-19 00:42:38 +00001463 if (S->getThrowExpr())
1464 buf = "objc_exception_throw(";
1465 else // add an implicit argument
1466 buf = "objc_exception_throw(_caught";
Steve Naroff3de6eaa2008-07-25 15:41:30 +00001467
1468 // handle "@ throw" correctly.
1469 const char *wBuf = strchr(startBuf, 'w');
1470 assert((*wBuf == 'w') && "@throw: can't find 'w'");
1471 ReplaceText(startLoc, wBuf-startBuf+1, buf.c_str(), buf.size());
1472
Steve Naroff8b1fb8c2007-11-07 15:32:26 +00001473 const char *semiBuf = strchr(startBuf, ';');
1474 assert((*semiBuf == ';') && "@throw: can't find ';'");
1475 SourceLocation semiLoc = startLoc.getFileLocWithOffset(semiBuf-startBuf);
1476 buf = ");";
Chris Lattnerb8a1b042008-01-31 19:51:04 +00001477 ReplaceText(semiLoc, 1, buf.c_str(), buf.size());
Steve Naroff8b1fb8c2007-11-07 15:32:26 +00001478 return 0;
1479}
Fariborz Jahanian9447e462007-11-05 17:47:33 +00001480
Steve Naroff44e81222008-04-14 22:03:09 +00001481Stmt *RewriteObjC::RewriteAtEncode(ObjCEncodeExpr *Exp) {
Chris Lattnerbf0bfa62007-10-17 22:35:30 +00001482 // Create a new string expression.
1483 QualType StrType = Context->getPointerType(Context->CharTy);
Anders Carlsson36f07d82007-10-29 05:01:08 +00001484 std::string StrEncoding;
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00001485 Context->getObjCEncodingForType(Exp->getEncodedType(), StrEncoding);
Anders Carlsson36f07d82007-10-29 05:01:08 +00001486 Expr *Replacement = new StringLiteral(StrEncoding.c_str(),
1487 StrEncoding.length(), false, StrType,
Chris Lattnerbf0bfa62007-10-17 22:35:30 +00001488 SourceLocation(), SourceLocation());
Chris Lattnerb1548372008-01-31 19:37:57 +00001489 ReplaceStmt(Exp, Replacement);
Chris Lattner258f26c2007-11-30 22:25:36 +00001490
Chris Lattner4478db92007-11-30 22:53:43 +00001491 // Replace this subexpr in the parent.
Chris Lattner0021f452007-10-24 16:57:36 +00001492 delete Exp;
1493 return Replacement;
Chris Lattner6fe8b272007-10-16 22:36:42 +00001494}
1495
Steve Naroff44e81222008-04-14 22:03:09 +00001496Stmt *RewriteObjC::RewriteAtSelector(ObjCSelectorExpr *Exp) {
Steve Naroff296b74f2007-11-05 14:50:49 +00001497 assert(SelGetUidFunctionDecl && "Can't find sel_registerName() decl");
1498 // Create a call to sel_registerName("selName").
1499 llvm::SmallVector<Expr*, 8> SelExprs;
1500 QualType argType = Context->getPointerType(Context->CharTy);
1501 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
1502 Exp->getSelector().getName().size(),
1503 false, argType, SourceLocation(),
1504 SourceLocation()));
1505 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
1506 &SelExprs[0], SelExprs.size());
Chris Lattnerb1548372008-01-31 19:37:57 +00001507 ReplaceStmt(Exp, SelExp);
Steve Naroff296b74f2007-11-05 14:50:49 +00001508 delete Exp;
1509 return SelExp;
1510}
1511
Steve Naroff44e81222008-04-14 22:03:09 +00001512CallExpr *RewriteObjC::SynthesizeCallToFunctionDecl(
Steve Naroff71226032007-10-24 22:48:43 +00001513 FunctionDecl *FD, Expr **args, unsigned nargs) {
Steve Naroffe9780582007-10-23 23:50:29 +00001514 // Get the type, we will need to reference it in a couple spots.
Steve Naroff71226032007-10-24 22:48:43 +00001515 QualType msgSendType = FD->getType();
Steve Naroffe9780582007-10-23 23:50:29 +00001516
1517 // Create a reference to the objc_msgSend() declaration.
Steve Naroff71226032007-10-24 22:48:43 +00001518 DeclRefExpr *DRE = new DeclRefExpr(FD, msgSendType, SourceLocation());
Steve Naroffe9780582007-10-23 23:50:29 +00001519
1520 // Now, we cast the reference to a pointer to the objc_msgSend type.
Chris Lattnerfce2c5a2007-10-24 17:06:59 +00001521 QualType pToFunc = Context->getPointerType(msgSendType);
Douglas Gregor70d26122008-11-12 17:17:38 +00001522 ImplicitCastExpr *ICE = new ImplicitCastExpr(pToFunc, DRE,
1523 /*isLvalue=*/false);
Steve Naroffe9780582007-10-23 23:50:29 +00001524
1525 const FunctionType *FT = msgSendType->getAsFunctionType();
Chris Lattner0021f452007-10-24 16:57:36 +00001526
Steve Naroff71226032007-10-24 22:48:43 +00001527 return new CallExpr(ICE, args, nargs, FT->getResultType(), SourceLocation());
1528}
1529
Steve Naroffc8a92d12007-11-01 13:24:47 +00001530static bool scanForProtocolRefs(const char *startBuf, const char *endBuf,
1531 const char *&startRef, const char *&endRef) {
1532 while (startBuf < endBuf) {
1533 if (*startBuf == '<')
1534 startRef = startBuf; // mark the start.
1535 if (*startBuf == '>') {
Steve Naroff2aeae312007-11-09 12:50:28 +00001536 if (startRef && *startRef == '<') {
1537 endRef = startBuf; // mark the end.
1538 return true;
1539 }
1540 return false;
Steve Naroffc8a92d12007-11-01 13:24:47 +00001541 }
1542 startBuf++;
1543 }
1544 return false;
1545}
1546
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001547static void scanToNextArgument(const char *&argRef) {
1548 int angle = 0;
1549 while (*argRef != ')' && (*argRef != ',' || angle > 0)) {
1550 if (*argRef == '<')
1551 angle++;
1552 else if (*argRef == '>')
1553 angle--;
1554 argRef++;
1555 }
1556 assert(angle == 0 && "scanToNextArgument - bad protocol type syntax");
1557}
Fariborz Jahaniandb2904f2007-12-11 23:04:08 +00001558
Steve Naroff44e81222008-04-14 22:03:09 +00001559bool RewriteObjC::needToScanForQualifiers(QualType T) {
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001560
Ted Kremenek42730c52008-01-07 19:49:32 +00001561 if (T->isObjCQualifiedIdType())
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00001562 return true;
1563
Steve Naroffc8a92d12007-11-01 13:24:47 +00001564 if (const PointerType *pType = T->getAsPointerType()) {
Steve Naroff05d6ff52007-10-31 04:38:33 +00001565 Type *pointeeType = pType->getPointeeType().getTypePtr();
Ted Kremenek42730c52008-01-07 19:49:32 +00001566 if (isa<ObjCQualifiedInterfaceType>(pointeeType))
Steve Naroff05d6ff52007-10-31 04:38:33 +00001567 return true; // we have "Class <Protocol> *".
1568 }
Steve Naroffc8a92d12007-11-01 13:24:47 +00001569 return false;
1570}
1571
Steve Naroffd06c88d2008-07-29 18:15:38 +00001572void RewriteObjC::RewriteObjCQualifiedInterfaceTypes(Expr *E) {
1573 QualType Type = E->getType();
1574 if (needToScanForQualifiers(Type)) {
1575 SourceLocation Loc = E->getLocStart();
1576 const char *startBuf = SM->getCharacterData(Loc);
1577 const char *endBuf = SM->getCharacterData(E->getLocEnd());
1578 const char *startRef = 0, *endRef = 0;
1579 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1580 // Get the locations of the startRef, endRef.
1581 SourceLocation LessLoc = Loc.getFileLocWithOffset(startRef-startBuf);
1582 SourceLocation GreaterLoc = Loc.getFileLocWithOffset(endRef-startBuf+1);
1583 // Comment out the protocol references.
1584 InsertText(LessLoc, "/*", 2);
1585 InsertText(GreaterLoc, "*/", 2);
1586 }
1587 }
1588}
1589
Steve Naroff44e81222008-04-14 22:03:09 +00001590void RewriteObjC::RewriteObjCQualifiedInterfaceTypes(Decl *Dcl) {
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001591 SourceLocation Loc;
1592 QualType Type;
1593 const FunctionTypeProto *proto = 0;
1594 if (VarDecl *VD = dyn_cast<VarDecl>(Dcl)) {
1595 Loc = VD->getLocation();
1596 Type = VD->getType();
1597 }
1598 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Dcl)) {
1599 Loc = FD->getLocation();
1600 // Check for ObjC 'id' and class types that have been adorned with protocol
1601 // information (id<p>, C<p>*). The protocol references need to be rewritten!
1602 const FunctionType *funcType = FD->getType()->getAsFunctionType();
1603 assert(funcType && "missing function type");
1604 proto = dyn_cast<FunctionTypeProto>(funcType);
1605 if (!proto)
1606 return;
1607 Type = proto->getResultType();
1608 }
1609 else
1610 return;
Steve Naroffc8a92d12007-11-01 13:24:47 +00001611
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001612 if (needToScanForQualifiers(Type)) {
Steve Naroffc8a92d12007-11-01 13:24:47 +00001613 // Since types are unique, we need to scan the buffer.
Steve Naroffc8a92d12007-11-01 13:24:47 +00001614
1615 const char *endBuf = SM->getCharacterData(Loc);
1616 const char *startBuf = endBuf;
Steve Naroffff2fa192008-05-31 05:02:17 +00001617 while (*startBuf != ';' && *startBuf != '<' && startBuf != MainFileStart)
Steve Naroffc8a92d12007-11-01 13:24:47 +00001618 startBuf--; // scan backward (from the decl location) for return type.
1619 const char *startRef = 0, *endRef = 0;
1620 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1621 // Get the locations of the startRef, endRef.
1622 SourceLocation LessLoc = Loc.getFileLocWithOffset(startRef-endBuf);
1623 SourceLocation GreaterLoc = Loc.getFileLocWithOffset(endRef-endBuf+1);
1624 // Comment out the protocol references.
Chris Lattner6216f292008-01-31 19:42:41 +00001625 InsertText(LessLoc, "/*", 2);
1626 InsertText(GreaterLoc, "*/", 2);
Steve Naroff05d6ff52007-10-31 04:38:33 +00001627 }
1628 }
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001629 if (!proto)
1630 return; // most likely, was a variable
Steve Naroffc8a92d12007-11-01 13:24:47 +00001631 // Now check arguments.
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001632 const char *startBuf = SM->getCharacterData(Loc);
1633 const char *startFuncBuf = startBuf;
Steve Naroffc8a92d12007-11-01 13:24:47 +00001634 for (unsigned i = 0; i < proto->getNumArgs(); i++) {
1635 if (needToScanForQualifiers(proto->getArgType(i))) {
1636 // Since types are unique, we need to scan the buffer.
Steve Naroffc8a92d12007-11-01 13:24:47 +00001637
Steve Naroffc8a92d12007-11-01 13:24:47 +00001638 const char *endBuf = startBuf;
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001639 // scan forward (from the decl location) for argument types.
1640 scanToNextArgument(endBuf);
Steve Naroffc8a92d12007-11-01 13:24:47 +00001641 const char *startRef = 0, *endRef = 0;
1642 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1643 // Get the locations of the startRef, endRef.
Fariborz Jahaniandb2904f2007-12-11 23:04:08 +00001644 SourceLocation LessLoc =
1645 Loc.getFileLocWithOffset(startRef-startFuncBuf);
1646 SourceLocation GreaterLoc =
1647 Loc.getFileLocWithOffset(endRef-startFuncBuf+1);
Steve Naroffc8a92d12007-11-01 13:24:47 +00001648 // Comment out the protocol references.
Chris Lattner6216f292008-01-31 19:42:41 +00001649 InsertText(LessLoc, "/*", 2);
1650 InsertText(GreaterLoc, "*/", 2);
Steve Naroffc8a92d12007-11-01 13:24:47 +00001651 }
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001652 startBuf = ++endBuf;
1653 }
1654 else {
Steve Naroff6a1d88b2008-08-06 15:58:23 +00001655 // If the function name is derived from a macro expansion, then the
1656 // argument buffer will not follow the name. Need to speak with Chris.
1657 while (*startBuf && *startBuf != ')' && *startBuf != ',')
Fariborz Jahanian150c6ea2007-12-11 22:50:14 +00001658 startBuf++; // scan forward (from the decl location) for argument types.
1659 startBuf++;
1660 }
Steve Naroffc8a92d12007-11-01 13:24:47 +00001661 }
Steve Naroff05d6ff52007-10-31 04:38:33 +00001662}
1663
Fariborz Jahanianfb8e9912007-12-04 21:47:40 +00001664// SynthSelGetUidFunctionDecl - SEL sel_registerName(const char *str);
Steve Naroff44e81222008-04-14 22:03:09 +00001665void RewriteObjC::SynthSelGetUidFunctionDecl() {
Fariborz Jahanianfb8e9912007-12-04 21:47:40 +00001666 IdentifierInfo *SelGetUidIdent = &Context->Idents.get("sel_registerName");
1667 llvm::SmallVector<QualType, 16> ArgTys;
1668 ArgTys.push_back(Context->getPointerType(
1669 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremenek42730c52008-01-07 19:49:32 +00001670 QualType getFuncType = Context->getFunctionType(Context->getObjCSelType(),
Fariborz Jahanianfb8e9912007-12-04 21:47:40 +00001671 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001672 false /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001673 SelGetUidFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001674 SourceLocation(),
Fariborz Jahanianfb8e9912007-12-04 21:47:40 +00001675 SelGetUidIdent, getFuncType,
1676 FunctionDecl::Extern, false, 0);
1677}
1678
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00001679// SynthGetProtocolFunctionDecl - Protocol objc_getProtocol(const char *proto);
Steve Naroff44e81222008-04-14 22:03:09 +00001680void RewriteObjC::SynthGetProtocolFunctionDecl() {
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00001681 IdentifierInfo *SelGetProtoIdent = &Context->Idents.get("objc_getProtocol");
1682 llvm::SmallVector<QualType, 16> ArgTys;
1683 ArgTys.push_back(Context->getPointerType(
1684 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremenek42730c52008-01-07 19:49:32 +00001685 QualType getFuncType = Context->getFunctionType(Context->getObjCProtoType(),
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00001686 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001687 false /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001688 GetProtocolFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001689 SourceLocation(),
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00001690 SelGetProtoIdent, getFuncType,
1691 FunctionDecl::Extern, false, 0);
1692}
1693
Steve Naroff44e81222008-04-14 22:03:09 +00001694void RewriteObjC::RewriteFunctionDecl(FunctionDecl *FD) {
Steve Naroff02a82aa2007-10-30 23:14:51 +00001695 // declared in <objc/objc.h>
Douglas Gregor24afd4a2008-11-17 14:58:09 +00001696 if (strcmp(FD->getIdentifierName(), "sel_registerName") == 0) {
Steve Naroff02a82aa2007-10-30 23:14:51 +00001697 SelGetUidFunctionDecl = FD;
Steve Naroff05d6ff52007-10-31 04:38:33 +00001698 return;
1699 }
Ted Kremenek42730c52008-01-07 19:49:32 +00001700 RewriteObjCQualifiedInterfaceTypes(FD);
Steve Naroff02a82aa2007-10-30 23:14:51 +00001701}
1702
Steve Naroffbec4bf52008-03-11 17:37:02 +00001703// SynthSuperContructorFunctionDecl - id objc_super(id obj, id super);
Steve Naroff44e81222008-04-14 22:03:09 +00001704void RewriteObjC::SynthSuperContructorFunctionDecl() {
Steve Naroffbec4bf52008-03-11 17:37:02 +00001705 if (SuperContructorFunctionDecl)
1706 return;
1707 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_super");
1708 llvm::SmallVector<QualType, 16> ArgTys;
1709 QualType argT = Context->getObjCIdType();
1710 assert(!argT.isNull() && "Can't find 'id' type");
1711 ArgTys.push_back(argT);
1712 ArgTys.push_back(argT);
1713 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
1714 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001715 false, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001716 SuperContructorFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001717 SourceLocation(),
Steve Naroffbec4bf52008-03-11 17:37:02 +00001718 msgSendIdent, msgSendType,
1719 FunctionDecl::Extern, false, 0);
1720}
1721
Steve Naroff02a82aa2007-10-30 23:14:51 +00001722// SynthMsgSendFunctionDecl - id objc_msgSend(id self, SEL op, ...);
Steve Naroff44e81222008-04-14 22:03:09 +00001723void RewriteObjC::SynthMsgSendFunctionDecl() {
Steve Naroff02a82aa2007-10-30 23:14:51 +00001724 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend");
1725 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremenek42730c52008-01-07 19:49:32 +00001726 QualType argT = Context->getObjCIdType();
Steve Naroff02a82aa2007-10-30 23:14:51 +00001727 assert(!argT.isNull() && "Can't find 'id' type");
1728 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001729 argT = Context->getObjCSelType();
Steve Naroff02a82aa2007-10-30 23:14:51 +00001730 assert(!argT.isNull() && "Can't find 'SEL' type");
1731 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001732 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff02a82aa2007-10-30 23:14:51 +00001733 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001734 true /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001735 MsgSendFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001736 SourceLocation(),
Steve Naroff02a82aa2007-10-30 23:14:51 +00001737 msgSendIdent, msgSendType,
1738 FunctionDecl::Extern, false, 0);
1739}
1740
Steve Naroff764c1ae2007-11-15 10:28:18 +00001741// SynthMsgSendSuperFunctionDecl - id objc_msgSendSuper(struct objc_super *, SEL op, ...);
Steve Naroff44e81222008-04-14 22:03:09 +00001742void RewriteObjC::SynthMsgSendSuperFunctionDecl() {
Steve Naroff764c1ae2007-11-15 10:28:18 +00001743 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSendSuper");
1744 llvm::SmallVector<QualType, 16> ArgTys;
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00001745 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001746 SourceLocation(),
Ted Kremenek2c984042008-09-05 01:34:33 +00001747 &Context->Idents.get("objc_super"));
Steve Naroff764c1ae2007-11-15 10:28:18 +00001748 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1749 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1750 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001751 argT = Context->getObjCSelType();
Steve Naroff764c1ae2007-11-15 10:28:18 +00001752 assert(!argT.isNull() && "Can't find 'SEL' type");
1753 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001754 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff764c1ae2007-11-15 10:28:18 +00001755 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001756 true /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001757 MsgSendSuperFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001758 SourceLocation(),
Steve Naroff764c1ae2007-11-15 10:28:18 +00001759 msgSendIdent, msgSendType,
1760 FunctionDecl::Extern, false, 0);
1761}
1762
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001763// SynthMsgSendStretFunctionDecl - id objc_msgSend_stret(id self, SEL op, ...);
Steve Naroff44e81222008-04-14 22:03:09 +00001764void RewriteObjC::SynthMsgSendStretFunctionDecl() {
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001765 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_stret");
1766 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremenek42730c52008-01-07 19:49:32 +00001767 QualType argT = Context->getObjCIdType();
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001768 assert(!argT.isNull() && "Can't find 'id' type");
1769 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001770 argT = Context->getObjCSelType();
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001771 assert(!argT.isNull() && "Can't find 'SEL' type");
1772 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001773 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001774 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001775 true /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001776 MsgSendStretFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001777 SourceLocation(),
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001778 msgSendIdent, msgSendType,
1779 FunctionDecl::Extern, false, 0);
1780}
1781
1782// SynthMsgSendSuperStretFunctionDecl -
1783// id objc_msgSendSuper_stret(struct objc_super *, SEL op, ...);
Steve Naroff44e81222008-04-14 22:03:09 +00001784void RewriteObjC::SynthMsgSendSuperStretFunctionDecl() {
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001785 IdentifierInfo *msgSendIdent =
1786 &Context->Idents.get("objc_msgSendSuper_stret");
1787 llvm::SmallVector<QualType, 16> ArgTys;
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00001788 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001789 SourceLocation(),
Ted Kremenek2c984042008-09-05 01:34:33 +00001790 &Context->Idents.get("objc_super"));
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001791 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1792 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1793 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001794 argT = Context->getObjCSelType();
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001795 assert(!argT.isNull() && "Can't find 'SEL' type");
1796 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001797 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001798 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001799 true /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001800 MsgSendSuperStretFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner4c7802b2008-03-15 21:24:04 +00001801 SourceLocation(),
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001802 msgSendIdent, msgSendType,
1803 FunctionDecl::Extern, false, 0);
1804}
1805
Steve Naroff31316a12008-05-08 22:02:18 +00001806// SynthMsgSendFpretFunctionDecl - double objc_msgSend_fpret(id self, SEL op, ...);
Steve Naroff44e81222008-04-14 22:03:09 +00001807void RewriteObjC::SynthMsgSendFpretFunctionDecl() {
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +00001808 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_fpret");
1809 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremenek42730c52008-01-07 19:49:32 +00001810 QualType argT = Context->getObjCIdType();
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +00001811 assert(!argT.isNull() && "Can't find 'id' type");
1812 ArgTys.push_back(argT);
Ted Kremenek42730c52008-01-07 19:49:32 +00001813 argT = Context->getObjCSelType();
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +00001814 assert(!argT.isNull() && "Can't find 'SEL' type");
1815 ArgTys.push_back(argT);
Steve Naroff31316a12008-05-08 22:02:18 +00001816 QualType msgSendType = Context->getFunctionType(Context->DoubleTy,
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +00001817 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001818 true /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001819 MsgSendFpretFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001820 SourceLocation(),
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +00001821 msgSendIdent, msgSendType,
1822 FunctionDecl::Extern, false, 0);
1823}
1824
Steve Naroff02a82aa2007-10-30 23:14:51 +00001825// SynthGetClassFunctionDecl - id objc_getClass(const char *name);
Steve Naroff44e81222008-04-14 22:03:09 +00001826void RewriteObjC::SynthGetClassFunctionDecl() {
Steve Naroff02a82aa2007-10-30 23:14:51 +00001827 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getClass");
1828 llvm::SmallVector<QualType, 16> ArgTys;
1829 ArgTys.push_back(Context->getPointerType(
1830 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremenek42730c52008-01-07 19:49:32 +00001831 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff02a82aa2007-10-30 23:14:51 +00001832 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001833 false /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001834 GetClassFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001835 SourceLocation(),
Steve Naroff02a82aa2007-10-30 23:14:51 +00001836 getClassIdent, getClassType,
1837 FunctionDecl::Extern, false, 0);
1838}
1839
Steve Naroff3b1caac2007-12-07 03:50:46 +00001840// SynthGetMetaClassFunctionDecl - id objc_getClass(const char *name);
Steve Naroff44e81222008-04-14 22:03:09 +00001841void RewriteObjC::SynthGetMetaClassFunctionDecl() {
Steve Naroff3b1caac2007-12-07 03:50:46 +00001842 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getMetaClass");
1843 llvm::SmallVector<QualType, 16> ArgTys;
1844 ArgTys.push_back(Context->getPointerType(
1845 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremenek42730c52008-01-07 19:49:32 +00001846 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff3b1caac2007-12-07 03:50:46 +00001847 &ArgTys[0], ArgTys.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00001848 false /*isVariadic*/, 0);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001849 GetMetaClassFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnereee57c02008-04-04 06:12:32 +00001850 SourceLocation(),
Steve Naroff3b1caac2007-12-07 03:50:46 +00001851 getClassIdent, getClassType,
1852 FunctionDecl::Extern, false, 0);
1853}
1854
Steve Naroff44e81222008-04-14 22:03:09 +00001855Stmt *RewriteObjC::RewriteObjCStringLiteral(ObjCStringLiteral *Exp) {
Steve Naroff47e7fa22008-03-15 00:55:56 +00001856 QualType strType = getConstantStringStructType();
1857
1858 std::string S = "__NSConstantStringImpl_";
Steve Naroffa1f00992008-05-31 03:35:42 +00001859
1860 std::string tmpName = InFileName;
1861 unsigned i;
1862 for (i=0; i < tmpName.length(); i++) {
1863 char c = tmpName.at(i);
1864 // replace any non alphanumeric characters with '_'.
1865 if (!isalpha(c) && (c < '0' || c > '9'))
1866 tmpName[i] = '_';
1867 }
1868 S += tmpName;
1869 S += "_";
Steve Naroff47e7fa22008-03-15 00:55:56 +00001870 S += utostr(NumObjCStringLiterals++);
1871
Steve Narofffef037c2008-03-27 22:29:16 +00001872 Preamble += "static __NSConstantStringImpl " + S;
1873 Preamble += " __attribute__ ((section (\"__DATA, __cfstring\"))) = {__CFConstantStringClassReference,";
1874 Preamble += "0x000007c8,"; // utf8_str
Steve Naroff47e7fa22008-03-15 00:55:56 +00001875 // The pretty printer for StringLiteral handles escape characters properly.
Ted Kremenek7b6f67b2008-09-13 05:16:45 +00001876 std::string prettyBufS;
1877 llvm::raw_string_ostream prettyBuf(prettyBufS);
Steve Naroff47e7fa22008-03-15 00:55:56 +00001878 Exp->getString()->printPretty(prettyBuf);
Steve Narofffef037c2008-03-27 22:29:16 +00001879 Preamble += prettyBuf.str();
1880 Preamble += ",";
Steve Naroff64bce352008-03-15 01:36:04 +00001881 // The minus 2 removes the begin/end double quotes.
Steve Narofffef037c2008-03-27 22:29:16 +00001882 Preamble += utostr(prettyBuf.str().size()-2) + "};\n";
Steve Naroff47e7fa22008-03-15 00:55:56 +00001883
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00001884 VarDecl *NewVD = VarDecl::Create(*Context, TUDecl, SourceLocation(),
Steve Naroff72a6ebc2008-04-15 22:42:06 +00001885 &Context->Idents.get(S.c_str()), strType,
1886 VarDecl::Static, NULL);
Steve Naroff47e7fa22008-03-15 00:55:56 +00001887 DeclRefExpr *DRE = new DeclRefExpr(NewVD, strType, SourceLocation());
1888 Expr *Unop = new UnaryOperator(DRE, UnaryOperator::AddrOf,
1889 Context->getPointerType(DRE->getType()),
1890 SourceLocation());
Steve Naroffabb96362007-11-08 14:30:50 +00001891 // cast to NSConstantString *
Douglas Gregor035d0882008-10-28 15:36:24 +00001892 CastExpr *cast = new CStyleCastExpr(Exp->getType(), Unop,
Steve Naroff7f1412d2008-11-03 23:29:32 +00001893 Exp->getType(), SourceLocation(), SourceLocation());
Chris Lattnerb1548372008-01-31 19:37:57 +00001894 ReplaceStmt(Exp, cast);
Steve Naroffabb96362007-11-08 14:30:50 +00001895 delete Exp;
1896 return cast;
Steve Naroff0add5d22007-11-03 11:27:19 +00001897}
1898
Steve Naroff44e81222008-04-14 22:03:09 +00001899ObjCInterfaceDecl *RewriteObjC::isSuperReceiver(Expr *recExpr) {
Steve Naroff3b1caac2007-12-07 03:50:46 +00001900 // check if we are sending a message to 'super'
Steve Naroff38a9e3f2008-10-27 17:20:55 +00001901 if (!CurMethodDef || !CurMethodDef->isInstance()) return 0;
Chris Lattnere4650482008-03-15 06:12:44 +00001902
Douglas Gregord8606632008-11-04 14:56:14 +00001903 if (ObjCSuperExpr *Super = dyn_cast<ObjCSuperExpr>(recExpr)) {
1904 const PointerType *PT = Super->getType()->getAsPointerType();
Chris Lattner4423d372008-06-21 18:04:54 +00001905 assert(PT);
1906 ObjCInterfaceType *IT = cast<ObjCInterfaceType>(PT->getPointeeType());
1907 return IT->getDecl();
1908 }
1909 return 0;
Steve Naroff764c1ae2007-11-15 10:28:18 +00001910}
1911
1912// struct objc_super { struct objc_object *receiver; struct objc_class *super; };
Steve Naroff44e81222008-04-14 22:03:09 +00001913QualType RewriteObjC::getSuperStructType() {
Steve Naroff764c1ae2007-11-15 10:28:18 +00001914 if (!SuperStructDecl) {
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00001915 SuperStructDecl = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattner58114f02008-03-15 21:32:50 +00001916 SourceLocation(),
Ted Kremenek2c984042008-09-05 01:34:33 +00001917 &Context->Idents.get("objc_super"));
Steve Naroff764c1ae2007-11-15 10:28:18 +00001918 QualType FieldTypes[2];
1919
1920 // struct objc_object *receiver;
Ted Kremenek42730c52008-01-07 19:49:32 +00001921 FieldTypes[0] = Context->getObjCIdType();
Steve Naroff764c1ae2007-11-15 10:28:18 +00001922 // struct objc_class *super;
Ted Kremenek42730c52008-01-07 19:49:32 +00001923 FieldTypes[1] = Context->getObjCClassType();
Steve Naroff764c1ae2007-11-15 10:28:18 +00001924 // Create fields
1925 FieldDecl *FieldDecls[2];
1926
1927 for (unsigned i = 0; i < 2; ++i)
Chris Lattnerf3874bc2008-04-06 04:47:34 +00001928 FieldDecls[i] = FieldDecl::Create(*Context, SourceLocation(), 0,
Chris Lattner81db64a2008-03-16 00:16:02 +00001929 FieldTypes[i]);
Steve Naroff764c1ae2007-11-15 10:28:18 +00001930
Ted Kremenek46a837c2008-09-05 17:16:31 +00001931 SuperStructDecl->defineBody(*Context, FieldDecls, 4);
Steve Naroff764c1ae2007-11-15 10:28:18 +00001932 }
1933 return Context->getTagDeclType(SuperStructDecl);
1934}
1935
Steve Naroff44e81222008-04-14 22:03:09 +00001936QualType RewriteObjC::getConstantStringStructType() {
Steve Naroff47e7fa22008-03-15 00:55:56 +00001937 if (!ConstantStringDecl) {
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00001938 ConstantStringDecl = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattner58114f02008-03-15 21:32:50 +00001939 SourceLocation(),
Ted Kremenek2c984042008-09-05 01:34:33 +00001940 &Context->Idents.get("__NSConstantStringImpl"));
Steve Naroff47e7fa22008-03-15 00:55:56 +00001941 QualType FieldTypes[4];
1942
1943 // struct objc_object *receiver;
1944 FieldTypes[0] = Context->getObjCIdType();
1945 // int flags;
1946 FieldTypes[1] = Context->IntTy;
1947 // char *str;
1948 FieldTypes[2] = Context->getPointerType(Context->CharTy);
1949 // long length;
1950 FieldTypes[3] = Context->LongTy;
1951 // Create fields
Steve Naroff053ae3f2008-03-27 22:59:54 +00001952 FieldDecl *FieldDecls[4];
Steve Naroff47e7fa22008-03-15 00:55:56 +00001953
1954 for (unsigned i = 0; i < 4; ++i)
Chris Lattnerf3874bc2008-04-06 04:47:34 +00001955 FieldDecls[i] = FieldDecl::Create(*Context, SourceLocation(), 0,
Chris Lattner81db64a2008-03-16 00:16:02 +00001956 FieldTypes[i]);
Steve Naroff47e7fa22008-03-15 00:55:56 +00001957
Ted Kremenek46a837c2008-09-05 17:16:31 +00001958 ConstantStringDecl->defineBody(*Context, FieldDecls, 4);
Steve Naroff47e7fa22008-03-15 00:55:56 +00001959 }
1960 return Context->getTagDeclType(ConstantStringDecl);
1961}
1962
Steve Naroff44e81222008-04-14 22:03:09 +00001963Stmt *RewriteObjC::SynthMessageExpr(ObjCMessageExpr *Exp) {
Fariborz Jahanianfb8e9912007-12-04 21:47:40 +00001964 if (!SelGetUidFunctionDecl)
1965 SynthSelGetUidFunctionDecl();
Steve Naroff02a82aa2007-10-30 23:14:51 +00001966 if (!MsgSendFunctionDecl)
1967 SynthMsgSendFunctionDecl();
Steve Naroff764c1ae2007-11-15 10:28:18 +00001968 if (!MsgSendSuperFunctionDecl)
1969 SynthMsgSendSuperFunctionDecl();
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001970 if (!MsgSendStretFunctionDecl)
1971 SynthMsgSendStretFunctionDecl();
1972 if (!MsgSendSuperStretFunctionDecl)
1973 SynthMsgSendSuperStretFunctionDecl();
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +00001974 if (!MsgSendFpretFunctionDecl)
1975 SynthMsgSendFpretFunctionDecl();
Steve Naroff02a82aa2007-10-30 23:14:51 +00001976 if (!GetClassFunctionDecl)
1977 SynthGetClassFunctionDecl();
Steve Naroff3b1caac2007-12-07 03:50:46 +00001978 if (!GetMetaClassFunctionDecl)
1979 SynthGetMetaClassFunctionDecl();
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001980
Steve Naroff764c1ae2007-11-15 10:28:18 +00001981 // default to objc_msgSend().
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001982 FunctionDecl *MsgSendFlavor = MsgSendFunctionDecl;
1983 // May need to use objc_msgSend_stret() as well.
1984 FunctionDecl *MsgSendStretFlavor = 0;
Ted Kremenek42730c52008-01-07 19:49:32 +00001985 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001986 QualType resultType = mDecl->getResultType();
Chris Lattnerb724ab22008-07-26 22:36:27 +00001987 if (resultType->isStructureType() || resultType->isUnionType())
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001988 MsgSendStretFlavor = MsgSendStretFunctionDecl;
Chris Lattnerb724ab22008-07-26 22:36:27 +00001989 else if (resultType->isRealFloatingType())
Fariborz Jahanian1d29b5d2007-12-03 21:26:48 +00001990 MsgSendFlavor = MsgSendFpretFunctionDecl;
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00001991 }
Steve Naroff764c1ae2007-11-15 10:28:18 +00001992
Steve Naroff71226032007-10-24 22:48:43 +00001993 // Synthesize a call to objc_msgSend().
1994 llvm::SmallVector<Expr*, 8> MsgExprs;
1995 IdentifierInfo *clsName = Exp->getClassName();
1996
1997 // Derive/push the receiver/selector, 2 implicit arguments to objc_msgSend().
1998 if (clsName) { // class message.
Steve Naroff91a69202008-07-24 19:44:33 +00001999 // FIXME: We need to fix Sema (and the AST for ObjCMessageExpr) to handle
2000 // the 'super' idiom within a class method.
Steve Naroff3b1caac2007-12-07 03:50:46 +00002001 if (!strcmp(clsName->getName(), "super")) {
2002 MsgSendFlavor = MsgSendSuperFunctionDecl;
2003 if (MsgSendStretFlavor)
2004 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
2005 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
2006
Ted Kremenek42730c52008-01-07 19:49:32 +00002007 ObjCInterfaceDecl *SuperDecl =
Steve Naroff38a9e3f2008-10-27 17:20:55 +00002008 CurMethodDef->getClassInterface()->getSuperClass();
Steve Naroff3b1caac2007-12-07 03:50:46 +00002009
2010 llvm::SmallVector<Expr*, 4> InitExprs;
2011
2012 // set the receiver to self, the first argument to all methods.
Chris Lattner8c7c6a12008-06-17 18:05:57 +00002013 InitExprs.push_back(new DeclRefExpr(
Steve Naroff38a9e3f2008-10-27 17:20:55 +00002014 CurMethodDef->getSelfDecl(),
Chris Lattner8c7c6a12008-06-17 18:05:57 +00002015 Context->getObjCIdType(),
2016 SourceLocation()));
Steve Naroff3b1caac2007-12-07 03:50:46 +00002017 llvm::SmallVector<Expr*, 8> ClsExprs;
2018 QualType argType = Context->getPointerType(Context->CharTy);
2019 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
2020 SuperDecl->getIdentifier()->getLength(),
2021 false, argType, SourceLocation(),
2022 SourceLocation()));
2023 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetMetaClassFunctionDecl,
2024 &ClsExprs[0],
2025 ClsExprs.size());
2026 // To turn off a warning, type-cast to 'id'
Douglas Gregor21a04f32008-10-27 19:41:14 +00002027 InitExprs.push_back( // set 'super class', using objc_getClass().
Douglas Gregor035d0882008-10-28 15:36:24 +00002028 new CStyleCastExpr(Context->getObjCIdType(),
Douglas Gregor21a04f32008-10-27 19:41:14 +00002029 Cls, Context->getObjCIdType(),
Steve Naroff7f1412d2008-11-03 23:29:32 +00002030 SourceLocation(), SourceLocation()));
Steve Naroff3b1caac2007-12-07 03:50:46 +00002031 // struct objc_super
2032 QualType superType = getSuperStructType();
Steve Naroffdee066b2008-03-11 18:14:26 +00002033 Expr *SuperRep;
Steve Naroffbec4bf52008-03-11 17:37:02 +00002034
Steve Naroffdee066b2008-03-11 18:14:26 +00002035 if (LangOpts.Microsoft) {
2036 SynthSuperContructorFunctionDecl();
2037 // Simulate a contructor call...
2038 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
2039 superType, SourceLocation());
2040 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
2041 superType, SourceLocation());
2042 } else {
2043 // (struct objc_super) { <exprs from above> }
2044 InitListExpr *ILE = new InitListExpr(SourceLocation(),
2045 &InitExprs[0], InitExprs.size(),
Chris Lattner71ca8c82008-10-26 23:43:26 +00002046 SourceLocation(), false);
2047 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE,
2048 false);
Steve Naroffdee066b2008-03-11 18:14:26 +00002049 }
Steve Naroff3b1caac2007-12-07 03:50:46 +00002050 // struct objc_super *
2051 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
2052 Context->getPointerType(SuperRep->getType()),
2053 SourceLocation());
2054 MsgExprs.push_back(Unop);
2055 } else {
2056 llvm::SmallVector<Expr*, 8> ClsExprs;
2057 QualType argType = Context->getPointerType(Context->CharTy);
2058 ClsExprs.push_back(new StringLiteral(clsName->getName(),
2059 clsName->getLength(),
2060 false, argType, SourceLocation(),
2061 SourceLocation()));
2062 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
2063 &ClsExprs[0],
2064 ClsExprs.size());
2065 MsgExprs.push_back(Cls);
2066 }
Steve Naroff885e2122007-11-14 23:54:14 +00002067 } else { // instance message.
2068 Expr *recExpr = Exp->getReceiver();
Steve Naroff764c1ae2007-11-15 10:28:18 +00002069
Ted Kremenek42730c52008-01-07 19:49:32 +00002070 if (ObjCInterfaceDecl *SuperDecl = isSuperReceiver(recExpr)) {
Steve Naroff764c1ae2007-11-15 10:28:18 +00002071 MsgSendFlavor = MsgSendSuperFunctionDecl;
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002072 if (MsgSendStretFlavor)
2073 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
Steve Naroff764c1ae2007-11-15 10:28:18 +00002074 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
2075
2076 llvm::SmallVector<Expr*, 4> InitExprs;
2077
Fariborz Jahaniandc25ba72007-12-04 22:32:58 +00002078 InitExprs.push_back(
Douglas Gregor035d0882008-10-28 15:36:24 +00002079 new CStyleCastExpr(Context->getObjCIdType(),
Steve Naroff38a9e3f2008-10-27 17:20:55 +00002080 new DeclRefExpr(CurMethodDef->getSelfDecl(),
Steve Naroff23528612008-07-16 22:35:27 +00002081 Context->getObjCIdType(),
Douglas Gregor21a04f32008-10-27 19:41:14 +00002082 SourceLocation()),
2083 Context->getObjCIdType(),
Steve Naroff7f1412d2008-11-03 23:29:32 +00002084 SourceLocation(), SourceLocation())); // set the 'receiver'.
Steve Naroff764c1ae2007-11-15 10:28:18 +00002085
2086 llvm::SmallVector<Expr*, 8> ClsExprs;
2087 QualType argType = Context->getPointerType(Context->CharTy);
Steve Naroff3b1caac2007-12-07 03:50:46 +00002088 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
2089 SuperDecl->getIdentifier()->getLength(),
Steve Naroff764c1ae2007-11-15 10:28:18 +00002090 false, argType, SourceLocation(),
2091 SourceLocation()));
2092 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
Fariborz Jahaniandc25ba72007-12-04 22:32:58 +00002093 &ClsExprs[0],
2094 ClsExprs.size());
Fariborz Jahanianfabf3bf2007-12-05 17:29:46 +00002095 // To turn off a warning, type-cast to 'id'
Fariborz Jahaniandc25ba72007-12-04 22:32:58 +00002096 InitExprs.push_back(
Douglas Gregor21a04f32008-10-27 19:41:14 +00002097 // set 'super class', using objc_getClass().
Douglas Gregor035d0882008-10-28 15:36:24 +00002098 new CStyleCastExpr(Context->getObjCIdType(),
Steve Naroff7f1412d2008-11-03 23:29:32 +00002099 Cls, Context->getObjCIdType(), SourceLocation(), SourceLocation()));
Steve Naroff764c1ae2007-11-15 10:28:18 +00002100 // struct objc_super
2101 QualType superType = getSuperStructType();
Steve Naroffbec4bf52008-03-11 17:37:02 +00002102 Expr *SuperRep;
2103
2104 if (LangOpts.Microsoft) {
2105 SynthSuperContructorFunctionDecl();
2106 // Simulate a contructor call...
2107 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
2108 superType, SourceLocation());
2109 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
2110 superType, SourceLocation());
2111 } else {
2112 // (struct objc_super) { <exprs from above> }
2113 InitListExpr *ILE = new InitListExpr(SourceLocation(),
2114 &InitExprs[0], InitExprs.size(),
Chris Lattner71ca8c82008-10-26 23:43:26 +00002115 SourceLocation(), false);
Steve Naroffbec4bf52008-03-11 17:37:02 +00002116 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE, false);
2117 }
Steve Naroff764c1ae2007-11-15 10:28:18 +00002118 // struct objc_super *
2119 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
2120 Context->getPointerType(SuperRep->getType()),
2121 SourceLocation());
2122 MsgExprs.push_back(Unop);
2123 } else {
Fariborz Jahanianbe4283c2007-12-07 21:21:21 +00002124 // Remove all type-casts because it may contain objc-style types; e.g.
2125 // Foo<Proto> *.
Douglas Gregor035d0882008-10-28 15:36:24 +00002126 while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr))
Fariborz Jahanianbe4283c2007-12-07 21:21:21 +00002127 recExpr = CE->getSubExpr();
Douglas Gregor035d0882008-10-28 15:36:24 +00002128 recExpr = new CStyleCastExpr(Context->getObjCIdType(), recExpr,
Douglas Gregor21a04f32008-10-27 19:41:14 +00002129 Context->getObjCIdType(),
Steve Naroff7f1412d2008-11-03 23:29:32 +00002130 SourceLocation(), SourceLocation());
Steve Naroff764c1ae2007-11-15 10:28:18 +00002131 MsgExprs.push_back(recExpr);
2132 }
Steve Naroff885e2122007-11-14 23:54:14 +00002133 }
Steve Naroff0add5d22007-11-03 11:27:19 +00002134 // Create a call to sel_registerName("selName"), it will be the 2nd argument.
Steve Naroff71226032007-10-24 22:48:43 +00002135 llvm::SmallVector<Expr*, 8> SelExprs;
2136 QualType argType = Context->getPointerType(Context->CharTy);
2137 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
2138 Exp->getSelector().getName().size(),
2139 false, argType, SourceLocation(),
2140 SourceLocation()));
2141 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
2142 &SelExprs[0], SelExprs.size());
2143 MsgExprs.push_back(SelExp);
2144
2145 // Now push any user supplied arguments.
2146 for (unsigned i = 0; i < Exp->getNumArgs(); i++) {
Steve Naroff885e2122007-11-14 23:54:14 +00002147 Expr *userExpr = Exp->getArg(i);
Steve Naroff6b759ce2007-11-15 02:58:25 +00002148 // Make all implicit casts explicit...ICE comes in handy:-)
2149 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(userExpr)) {
2150 // Reuse the ICE type, it is exactly what the doctor ordered.
Douglas Gregor21a04f32008-10-27 19:41:14 +00002151 QualType type = ICE->getType()->isObjCQualifiedIdType()
Ted Kremenek42730c52008-01-07 19:49:32 +00002152 ? Context->getObjCIdType()
Douglas Gregor21a04f32008-10-27 19:41:14 +00002153 : ICE->getType();
Steve Naroff7f1412d2008-11-03 23:29:32 +00002154 userExpr = new CStyleCastExpr(type, userExpr, type, SourceLocation(), SourceLocation());
Fariborz Jahaniandcb2b1e2007-12-18 21:33:44 +00002155 }
2156 // Make id<P...> cast into an 'id' cast.
Douglas Gregor035d0882008-10-28 15:36:24 +00002157 else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) {
Ted Kremenek42730c52008-01-07 19:49:32 +00002158 if (CE->getType()->isObjCQualifiedIdType()) {
Douglas Gregor035d0882008-10-28 15:36:24 +00002159 while ((CE = dyn_cast<CStyleCastExpr>(userExpr)))
Fariborz Jahaniandcb2b1e2007-12-18 21:33:44 +00002160 userExpr = CE->getSubExpr();
Douglas Gregor035d0882008-10-28 15:36:24 +00002161 userExpr = new CStyleCastExpr(Context->getObjCIdType(),
Douglas Gregor21a04f32008-10-27 19:41:14 +00002162 userExpr, Context->getObjCIdType(),
Steve Naroff7f1412d2008-11-03 23:29:32 +00002163 SourceLocation(), SourceLocation());
Fariborz Jahaniandcb2b1e2007-12-18 21:33:44 +00002164 }
Steve Naroff6b759ce2007-11-15 02:58:25 +00002165 }
Steve Naroff885e2122007-11-14 23:54:14 +00002166 MsgExprs.push_back(userExpr);
Steve Naroff71226032007-10-24 22:48:43 +00002167 // We've transferred the ownership to MsgExprs. Null out the argument in
2168 // the original expression, since we will delete it below.
2169 Exp->setArg(i, 0);
2170 }
Steve Naroff0744c472007-11-04 22:37:50 +00002171 // Generate the funky cast.
2172 CastExpr *cast;
2173 llvm::SmallVector<QualType, 8> ArgTypes;
2174 QualType returnType;
2175
2176 // Push 'id' and 'SEL', the 2 implicit arguments.
Steve Naroff0c04bb62007-11-15 10:43:57 +00002177 if (MsgSendFlavor == MsgSendSuperFunctionDecl)
2178 ArgTypes.push_back(Context->getPointerType(getSuperStructType()));
2179 else
Ted Kremenek42730c52008-01-07 19:49:32 +00002180 ArgTypes.push_back(Context->getObjCIdType());
2181 ArgTypes.push_back(Context->getObjCSelType());
2182 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Steve Naroff0744c472007-11-04 22:37:50 +00002183 // Push any user argument types.
Chris Lattner685d7922008-03-16 01:07:14 +00002184 for (unsigned i = 0; i < mDecl->getNumParams(); i++) {
Ted Kremenek42730c52008-01-07 19:49:32 +00002185 QualType t = mDecl->getParamDecl(i)->getType()->isObjCQualifiedIdType()
2186 ? Context->getObjCIdType()
Fariborz Jahaniane76e8412007-12-17 21:03:50 +00002187 : mDecl->getParamDecl(i)->getType();
Steve Naroff66c842f2008-10-29 14:49:46 +00002188 // Make sure we convert "t (^)(...)" to "t (*)(...)".
2189 if (isBlockPointerType(t)) {
2190 const BlockPointerType *BPT = t->getAsBlockPointerType();
2191 t = Context->getPointerType(BPT->getPointeeType());
2192 }
Steve Naroff4242b972007-11-05 14:36:37 +00002193 ArgTypes.push_back(t);
2194 }
Ted Kremenek42730c52008-01-07 19:49:32 +00002195 returnType = mDecl->getResultType()->isObjCQualifiedIdType()
2196 ? Context->getObjCIdType() : mDecl->getResultType();
Steve Naroff0744c472007-11-04 22:37:50 +00002197 } else {
Ted Kremenek42730c52008-01-07 19:49:32 +00002198 returnType = Context->getObjCIdType();
Steve Naroff0744c472007-11-04 22:37:50 +00002199 }
2200 // Get the type, we will need to reference it in a couple spots.
Steve Naroff764c1ae2007-11-15 10:28:18 +00002201 QualType msgSendType = MsgSendFlavor->getType();
Steve Naroff0744c472007-11-04 22:37:50 +00002202
2203 // Create a reference to the objc_msgSend() declaration.
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002204 DeclRefExpr *DRE = new DeclRefExpr(MsgSendFlavor, msgSendType,
2205 SourceLocation());
Steve Naroff0744c472007-11-04 22:37:50 +00002206
2207 // Need to cast objc_msgSend to "void *" (to workaround a GCC bandaid).
2208 // If we don't do this cast, we get the following bizarre warning/note:
2209 // xx.m:13: warning: function called through a non-compatible type
2210 // xx.m:13: note: if this code is reached, the program will abort
Douglas Gregor035d0882008-10-28 15:36:24 +00002211 cast = new CStyleCastExpr(Context->getPointerType(Context->VoidTy), DRE,
Douglas Gregor21a04f32008-10-27 19:41:14 +00002212 Context->getPointerType(Context->VoidTy),
Steve Naroff7f1412d2008-11-03 23:29:32 +00002213 SourceLocation(), SourceLocation());
Steve Naroff29fe7462007-11-15 12:35:21 +00002214
Steve Naroff0744c472007-11-04 22:37:50 +00002215 // Now do the "normal" pointer to function cast.
2216 QualType castType = Context->getFunctionType(returnType,
Fariborz Jahanianefba8c82007-12-06 19:49:56 +00002217 &ArgTypes[0], ArgTypes.size(),
Steve Naroff3b8b4e32008-03-18 02:02:04 +00002218 // If we don't have a method decl, force a variadic cast.
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00002219 Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : true, 0);
Steve Naroff0744c472007-11-04 22:37:50 +00002220 castType = Context->getPointerType(castType);
Steve Naroff7f1412d2008-11-03 23:29:32 +00002221 cast = new CStyleCastExpr(castType, cast, castType, SourceLocation(), SourceLocation());
Steve Naroff0744c472007-11-04 22:37:50 +00002222
2223 // Don't forget the parens to enforce the proper binding.
2224 ParenExpr *PE = new ParenExpr(SourceLocation(), SourceLocation(), cast);
2225
2226 const FunctionType *FT = msgSendType->getAsFunctionType();
2227 CallExpr *CE = new CallExpr(PE, &MsgExprs[0], MsgExprs.size(),
2228 FT->getResultType(), SourceLocation());
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00002229 Stmt *ReplacingStmt = CE;
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002230 if (MsgSendStretFlavor) {
2231 // We have the method which returns a struct/union. Must also generate
2232 // call to objc_msgSend_stret and hang both varieties on a conditional
2233 // expression which dictate which one to envoke depending on size of
2234 // method's return type.
2235
2236 // Create a reference to the objc_msgSend_stret() declaration.
2237 DeclRefExpr *STDRE = new DeclRefExpr(MsgSendStretFlavor, msgSendType,
2238 SourceLocation());
2239 // Need to cast objc_msgSend_stret to "void *" (see above comment).
Douglas Gregor035d0882008-10-28 15:36:24 +00002240 cast = new CStyleCastExpr(Context->getPointerType(Context->VoidTy), STDRE,
Douglas Gregor21a04f32008-10-27 19:41:14 +00002241 Context->getPointerType(Context->VoidTy),
Steve Naroff7f1412d2008-11-03 23:29:32 +00002242 SourceLocation(), SourceLocation());
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002243 // Now do the "normal" pointer to function cast.
2244 castType = Context->getFunctionType(returnType,
Fariborz Jahanianefba8c82007-12-06 19:49:56 +00002245 &ArgTypes[0], ArgTypes.size(),
Argiris Kirtzidis65b99642008-10-26 16:43:14 +00002246 Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : false, 0);
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002247 castType = Context->getPointerType(castType);
Steve Naroff7f1412d2008-11-03 23:29:32 +00002248 cast = new CStyleCastExpr(castType, cast, castType, SourceLocation(), SourceLocation());
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002249
2250 // Don't forget the parens to enforce the proper binding.
2251 PE = new ParenExpr(SourceLocation(), SourceLocation(), cast);
2252
2253 FT = msgSendType->getAsFunctionType();
2254 CallExpr *STCE = new CallExpr(PE, &MsgExprs[0], MsgExprs.size(),
2255 FT->getResultType(), SourceLocation());
2256
2257 // Build sizeof(returnType)
Sebastian Redl0cb7c872008-11-11 17:56:53 +00002258 SizeOfAlignOfExpr *sizeofExpr = new SizeOfAlignOfExpr(true, true,
2259 returnType.getAsOpaquePtr(),
2260 Context->getSizeType(),
2261 SourceLocation(), SourceLocation());
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002262 // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...))
2263 // FIXME: Value of 8 is base on ppc32/x86 ABI for the most common cases.
2264 // For X86 it is more complicated and some kind of target specific routine
2265 // is needed to decide what to do.
Chris Lattner8cd0e932008-03-05 18:54:05 +00002266 unsigned IntSize =
2267 static_cast<unsigned>(Context->getTypeSize(Context->IntTy));
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002268 IntegerLiteral *limit = new IntegerLiteral(llvm::APInt(IntSize, 8),
2269 Context->IntTy,
2270 SourceLocation());
2271 BinaryOperator *lessThanExpr = new BinaryOperator(sizeofExpr, limit,
2272 BinaryOperator::LE,
2273 Context->IntTy,
2274 SourceLocation());
2275 // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...))
2276 ConditionalOperator *CondExpr =
2277 new ConditionalOperator(lessThanExpr, CE, STCE, returnType);
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00002278 ReplacingStmt = new ParenExpr(SourceLocation(), SourceLocation(), CondExpr);
Fariborz Jahanianc26b2502007-12-03 19:17:29 +00002279 }
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00002280 return ReplacingStmt;
2281}
2282
Steve Naroff44e81222008-04-14 22:03:09 +00002283Stmt *RewriteObjC::RewriteMessageExpr(ObjCMessageExpr *Exp) {
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00002284 Stmt *ReplacingStmt = SynthMessageExpr(Exp);
Steve Naroffe8efe892008-10-27 20:54:44 +00002285
Steve Naroff71226032007-10-24 22:48:43 +00002286 // Now do the actual rewrite.
Chris Lattnerb1548372008-01-31 19:37:57 +00002287 ReplaceStmt(Exp, ReplacingStmt);
Steve Naroff71226032007-10-24 22:48:43 +00002288
Chris Lattner0021f452007-10-24 16:57:36 +00002289 delete Exp;
Fariborz Jahanian9ea6a2d2008-01-08 22:06:28 +00002290 return ReplacingStmt;
Steve Naroffe9780582007-10-23 23:50:29 +00002291}
2292
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00002293/// RewriteObjCProtocolExpr - Rewrite a protocol expression into
2294/// call to objc_getProtocol("proto-name").
Steve Naroff44e81222008-04-14 22:03:09 +00002295Stmt *RewriteObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) {
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00002296 if (!GetProtocolFunctionDecl)
2297 SynthGetProtocolFunctionDecl();
2298 // Create a call to objc_getProtocol("ProtocolName").
2299 llvm::SmallVector<Expr*, 8> ProtoExprs;
2300 QualType argType = Context->getPointerType(Context->CharTy);
Douglas Gregor24afd4a2008-11-17 14:58:09 +00002301 ProtoExprs.push_back(new StringLiteral(Exp->getProtocol()->getIdentifierName(),
2302 strlen(Exp->getProtocol()->getIdentifierName()),
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00002303 false, argType, SourceLocation(),
2304 SourceLocation()));
2305 CallExpr *ProtoExp = SynthesizeCallToFunctionDecl(GetProtocolFunctionDecl,
2306 &ProtoExprs[0],
2307 ProtoExprs.size());
Chris Lattnerb1548372008-01-31 19:37:57 +00002308 ReplaceStmt(Exp, ProtoExp);
Fariborz Jahanian6ff57c62007-12-07 18:47:10 +00002309 delete Exp;
2310 return ProtoExp;
2311
2312}
2313
Steve Naroffef82b742008-05-31 14:15:04 +00002314bool RewriteObjC::BufferContainsPPDirectives(const char *startBuf,
2315 const char *endBuf) {
2316 while (startBuf < endBuf) {
2317 if (*startBuf == '#') {
2318 // Skip whitespace.
2319 for (++startBuf; startBuf[0] == ' ' || startBuf[0] == '\t'; ++startBuf)
2320 ;
2321 if (!strncmp(startBuf, "if", strlen("if")) ||
2322 !strncmp(startBuf, "ifdef", strlen("ifdef")) ||
2323 !strncmp(startBuf, "ifndef", strlen("ifndef")) ||
2324 !strncmp(startBuf, "define", strlen("define")) ||
2325 !strncmp(startBuf, "undef", strlen("undef")) ||
2326 !strncmp(startBuf, "else", strlen("else")) ||
2327 !strncmp(startBuf, "elif", strlen("elif")) ||
2328 !strncmp(startBuf, "endif", strlen("endif")) ||
2329 !strncmp(startBuf, "pragma", strlen("pragma")) ||
2330 !strncmp(startBuf, "include", strlen("include")) ||
2331 !strncmp(startBuf, "import", strlen("import")) ||
2332 !strncmp(startBuf, "include_next", strlen("include_next")))
2333 return true;
2334 }
2335 startBuf++;
2336 }
2337 return false;
2338}
2339
Ted Kremenek42730c52008-01-07 19:49:32 +00002340/// SynthesizeObjCInternalStruct - Rewrite one internal struct corresponding to
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002341/// an objective-c class with ivars.
Steve Naroff44e81222008-04-14 22:03:09 +00002342void RewriteObjC::SynthesizeObjCInternalStruct(ObjCInterfaceDecl *CDecl,
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002343 std::string &Result) {
Ted Kremenek42730c52008-01-07 19:49:32 +00002344 assert(CDecl && "Class missing in SynthesizeObjCInternalStruct");
Douglas Gregor24afd4a2008-11-17 14:58:09 +00002345 assert(CDecl->getIdentifierName() &&
2346 "Name missing in SynthesizeObjCInternalStruct");
Fariborz Jahanianfb4f6a32007-10-31 23:08:24 +00002347 // Do not synthesize more than once.
Ted Kremenek42730c52008-01-07 19:49:32 +00002348 if (ObjCSynthesizedStructs.count(CDecl))
Fariborz Jahanianfb4f6a32007-10-31 23:08:24 +00002349 return;
Ted Kremenek42730c52008-01-07 19:49:32 +00002350 ObjCInterfaceDecl *RCDecl = CDecl->getSuperClass();
Chris Lattnerec4979b2008-03-16 21:08:55 +00002351 int NumIvars = CDecl->ivar_size();
Steve Naroff2c7afc92007-11-14 19:25:57 +00002352 SourceLocation LocStart = CDecl->getLocStart();
2353 SourceLocation LocEnd = CDecl->getLocEnd();
2354
2355 const char *startBuf = SM->getCharacterData(LocStart);
2356 const char *endBuf = SM->getCharacterData(LocEnd);
Steve Naroffef82b742008-05-31 14:15:04 +00002357
Fariborz Jahanian920cde32007-11-26 19:52:57 +00002358 // If no ivars and no root or if its root, directly or indirectly,
2359 // have no ivars (thus not synthesized) then no need to synthesize this class.
Chris Lattnerec4979b2008-03-16 21:08:55 +00002360 if ((CDecl->isForwardDecl() || NumIvars == 0) &&
2361 (!RCDecl || !ObjCSynthesizedStructs.count(RCDecl))) {
Fariborz Jahanian920cde32007-11-26 19:52:57 +00002362 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
Chris Lattnerb8a1b042008-01-31 19:51:04 +00002363 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanian920cde32007-11-26 19:52:57 +00002364 return;
2365 }
2366
2367 // FIXME: This has potential of causing problem. If
Ted Kremenek42730c52008-01-07 19:49:32 +00002368 // SynthesizeObjCInternalStruct is ever called recursively.
Fariborz Jahanian920cde32007-11-26 19:52:57 +00002369 Result += "\nstruct ";
2370 Result += CDecl->getName();
Steve Naroffde0da102008-03-10 23:16:54 +00002371 if (LangOpts.Microsoft)
2372 Result += "_IMPL";
Steve Naroff60dfb6b2008-03-12 00:25:36 +00002373
Fariborz Jahanian6acfa2b2007-10-31 17:29:28 +00002374 if (NumIvars > 0) {
Steve Naroff2c7afc92007-11-14 19:25:57 +00002375 const char *cursor = strchr(startBuf, '{');
2376 assert((cursor && endBuf)
Ted Kremenek42730c52008-01-07 19:49:32 +00002377 && "SynthesizeObjCInternalStruct - malformed @interface");
Steve Naroffef82b742008-05-31 14:15:04 +00002378 // If the buffer contains preprocessor directives, we do more fine-grained
2379 // rewrites. This is intended to fix code that looks like (which occurs in
2380 // NSURL.h, for example):
2381 //
2382 // #ifdef XYZ
2383 // @interface Foo : NSObject
2384 // #else
2385 // @interface FooBar : NSObject
2386 // #endif
2387 // {
2388 // int i;
2389 // }
2390 // @end
2391 //
2392 // This clause is segregated to avoid breaking the common case.
2393 if (BufferContainsPPDirectives(startBuf, cursor)) {
2394 SourceLocation L = RCDecl ? CDecl->getSuperClassLoc() :
2395 CDecl->getClassLoc();
2396 const char *endHeader = SM->getCharacterData(L);
2397 endHeader += Lexer::MeasureTokenLength(L, *SM);
2398
Chris Lattner8bcb5252008-07-21 18:19:38 +00002399 if (!CDecl->getReferencedProtocols().empty()) {
Steve Naroffef82b742008-05-31 14:15:04 +00002400 // advance to the end of the referenced protocols.
2401 while (endHeader < cursor && *endHeader != '>') endHeader++;
2402 endHeader++;
2403 }
2404 // rewrite the original header
2405 ReplaceText(LocStart, endHeader-startBuf, Result.c_str(), Result.size());
2406 } else {
2407 // rewrite the original header *without* disturbing the '{'
2408 ReplaceText(LocStart, cursor-startBuf-1, Result.c_str(), Result.size());
2409 }
Ted Kremenek42730c52008-01-07 19:49:32 +00002410 if (RCDecl && ObjCSynthesizedStructs.count(RCDecl)) {
Steve Naroff2c7afc92007-11-14 19:25:57 +00002411 Result = "\n struct ";
2412 Result += RCDecl->getName();
Steve Naroffcbf88fe2008-03-12 21:09:20 +00002413 Result += "_IMPL ";
2414 Result += RCDecl->getName();
Steve Naroff4850dfe2008-03-12 21:22:52 +00002415 Result += "_IVARS;\n";
Steve Naroff2c7afc92007-11-14 19:25:57 +00002416
2417 // insert the super class structure definition.
Chris Lattner6216f292008-01-31 19:42:41 +00002418 SourceLocation OnePastCurly =
2419 LocStart.getFileLocWithOffset(cursor-startBuf+1);
2420 InsertText(OnePastCurly, Result.c_str(), Result.size());
Steve Naroff2c7afc92007-11-14 19:25:57 +00002421 }
2422 cursor++; // past '{'
2423
2424 // Now comment out any visibility specifiers.
2425 while (cursor < endBuf) {
2426 if (*cursor == '@') {
2427 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerf04ead52007-11-14 22:57:51 +00002428 // Skip whitespace.
2429 for (++cursor; cursor[0] == ' ' || cursor[0] == '\t'; ++cursor)
2430 /*scan*/;
2431
Fariborz Jahanian6acfa2b2007-10-31 17:29:28 +00002432 // FIXME: presence of @public, etc. inside comment results in
2433 // this transformation as well, which is still correct c-code.
Steve Naroff2c7afc92007-11-14 19:25:57 +00002434 if (!strncmp(cursor, "public", strlen("public")) ||
2435 !strncmp(cursor, "private", strlen("private")) ||
Steve Naroffa93924a2008-04-04 22:34:24 +00002436 !strncmp(cursor, "package", strlen("package")) ||
Fariborz Jahanian8d9c7352007-11-14 22:26:25 +00002437 !strncmp(cursor, "protected", strlen("protected")))
Chris Lattner6216f292008-01-31 19:42:41 +00002438 InsertText(atLoc, "// ", 3);
Fariborz Jahanian6acfa2b2007-10-31 17:29:28 +00002439 }
Fariborz Jahanian8d9c7352007-11-14 22:26:25 +00002440 // FIXME: If there are cases where '<' is used in ivar declaration part
2441 // of user code, then scan the ivar list and use needToScanForQualifiers
2442 // for type checking.
2443 else if (*cursor == '<') {
2444 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattner6216f292008-01-31 19:42:41 +00002445 InsertText(atLoc, "/* ", 3);
Fariborz Jahanian8d9c7352007-11-14 22:26:25 +00002446 cursor = strchr(cursor, '>');
2447 cursor++;
2448 atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattner6216f292008-01-31 19:42:41 +00002449 InsertText(atLoc, " */", 3);
Steve Naroff6449c6c2008-10-30 12:09:33 +00002450 } else if (*cursor == '^') { // rewrite block specifier.
2451 SourceLocation caretLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
2452 ReplaceText(caretLoc, 1, "*", 1);
Fariborz Jahanian8d9c7352007-11-14 22:26:25 +00002453 }
Steve Naroff2c7afc92007-11-14 19:25:57 +00002454 cursor++;
Fariborz Jahanian6acfa2b2007-10-31 17:29:28 +00002455 }
Steve Naroff2c7afc92007-11-14 19:25:57 +00002456 // Don't forget to add a ';'!!
Chris Lattner6216f292008-01-31 19:42:41 +00002457 InsertText(LocEnd.getFileLocWithOffset(1), ";", 1);
Steve Naroff2c7afc92007-11-14 19:25:57 +00002458 } else { // we don't have any instance variables - insert super struct.
2459 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
2460 Result += " {\n struct ";
2461 Result += RCDecl->getName();
Steve Naroffcbf88fe2008-03-12 21:09:20 +00002462 Result += "_IMPL ";
2463 Result += RCDecl->getName();
Steve Naroff4850dfe2008-03-12 21:22:52 +00002464 Result += "_IVARS;\n};\n";
Chris Lattnerb8a1b042008-01-31 19:51:04 +00002465 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002466 }
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002467 // Mark this struct as having been generated.
Ted Kremenek42730c52008-01-07 19:49:32 +00002468 if (!ObjCSynthesizedStructs.insert(CDecl))
Steve Naroff04eaa192008-05-06 18:26:51 +00002469 assert(false && "struct already synthesize- SynthesizeObjCInternalStruct");
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002470}
2471
Ted Kremenek42730c52008-01-07 19:49:32 +00002472// RewriteObjCMethodsMetaData - Rewrite methods metadata for instance or
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002473/// class methods.
Steve Naroff44e81222008-04-14 22:03:09 +00002474void RewriteObjC::RewriteObjCMethodsMetaData(instmeth_iterator MethodBegin,
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002475 instmeth_iterator MethodEnd,
Fariborz Jahaniana3986372007-10-25 00:14:44 +00002476 bool IsInstanceMethod,
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002477 const char *prefix,
Chris Lattnerc3aa5c42007-10-25 17:07:24 +00002478 const char *ClassName,
2479 std::string &Result) {
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002480 if (MethodBegin == MethodEnd) return;
2481
Fariborz Jahanian04455192007-10-22 21:41:37 +00002482 static bool objc_impl_method = false;
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002483 if (!objc_impl_method) {
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002484 /* struct _objc_method {
Fariborz Jahanian04455192007-10-22 21:41:37 +00002485 SEL _cmd;
2486 char *method_types;
2487 void *_imp;
2488 }
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002489 */
Chris Lattnerc3aa5c42007-10-25 17:07:24 +00002490 Result += "\nstruct _objc_method {\n";
2491 Result += "\tSEL _cmd;\n";
2492 Result += "\tchar *method_types;\n";
2493 Result += "\tvoid *_imp;\n";
2494 Result += "};\n";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002495
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002496 objc_impl_method = true;
Fariborz Jahanian96b55da2007-10-19 00:36:46 +00002497 }
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002498
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002499 // Build _objc_method_list for class's methods if needed
Steve Naroffc723eec2008-03-11 00:12:29 +00002500
2501 /* struct {
2502 struct _objc_method_list *next_method;
2503 int method_count;
2504 struct _objc_method method_list[];
2505 }
2506 */
2507 Result += "\nstatic struct {\n";
2508 Result += "\tstruct _objc_method_list *next_method;\n";
2509 Result += "\tint method_count;\n";
2510 Result += "\tstruct _objc_method method_list[";
2511 Result += utostr(MethodEnd-MethodBegin);
2512 Result += "];\n} _OBJC_";
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002513 Result += prefix;
2514 Result += IsInstanceMethod ? "INSTANCE" : "CLASS";
2515 Result += "_METHODS_";
2516 Result += ClassName;
Steve Naroff5ce4a242008-03-12 17:18:30 +00002517 Result += " __attribute__ ((used, section (\"__OBJC, __";
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002518 Result += IsInstanceMethod ? "inst" : "cls";
2519 Result += "_meth\")))= ";
2520 Result += "{\n\t0, " + utostr(MethodEnd-MethodBegin) + "\n";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002521
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002522 Result += "\t,{{(SEL)\"";
2523 Result += (*MethodBegin)->getSelector().getName().c_str();
2524 std::string MethodTypeString;
Ted Kremenek42730c52008-01-07 19:49:32 +00002525 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002526 Result += "\", \"";
2527 Result += MethodTypeString;
Steve Naroffc723eec2008-03-11 00:12:29 +00002528 Result += "\", (void *)";
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002529 Result += MethodInternalNames[*MethodBegin];
2530 Result += "}\n";
2531 for (++MethodBegin; MethodBegin != MethodEnd; ++MethodBegin) {
2532 Result += "\t ,{(SEL)\"";
2533 Result += (*MethodBegin)->getSelector().getName().c_str();
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00002534 std::string MethodTypeString;
Ted Kremenek42730c52008-01-07 19:49:32 +00002535 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Fariborz Jahanianc81f3162007-10-29 22:57:28 +00002536 Result += "\", \"";
2537 Result += MethodTypeString;
Steve Naroffc723eec2008-03-11 00:12:29 +00002538 Result += "\", (void *)";
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002539 Result += MethodInternalNames[*MethodBegin];
Fariborz Jahanianbd2fd922007-11-13 21:02:00 +00002540 Result += "}\n";
Fariborz Jahanian04455192007-10-22 21:41:37 +00002541 }
Chris Lattnerdea5bec2007-12-12 07:46:12 +00002542 Result += "\t }\n};\n";
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002543}
2544
Ted Kremenek42730c52008-01-07 19:49:32 +00002545/// RewriteObjCProtocolsMetaData - Rewrite protocols meta-data.
Chris Lattner0be08822008-07-21 21:32:27 +00002546void RewriteObjC::
2547RewriteObjCProtocolsMetaData(const ObjCList<ObjCProtocolDecl> &Protocols,
2548 const char *prefix,
2549 const char *ClassName,
2550 std::string &Result) {
Fariborz Jahanian04455192007-10-22 21:41:37 +00002551 static bool objc_protocol_methods = false;
Chris Lattnera19b5ec2008-07-21 21:33:21 +00002552 if (Protocols.empty()) return;
2553
2554 for (unsigned i = 0; i != Protocols.size(); i++) {
2555 ObjCProtocolDecl *PDecl = Protocols[i];
2556 // Output struct protocol_methods holder of method selector and type.
2557 if (!objc_protocol_methods && !PDecl->isForwardDecl()) {
2558 /* struct protocol_methods {
2559 SEL _cmd;
2560 char *method_types;
2561 }
Fariborz Jahanian04455192007-10-22 21:41:37 +00002562 */
Chris Lattnera19b5ec2008-07-21 21:33:21 +00002563 Result += "\nstruct protocol_methods {\n";
2564 Result += "\tSEL _cmd;\n";
2565 Result += "\tchar *method_types;\n";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002566 Result += "};\n";
Steve Naroff04eaa192008-05-06 18:26:51 +00002567
Chris Lattnera19b5ec2008-07-21 21:33:21 +00002568 objc_protocol_methods = true;
Fariborz Jahanian04455192007-10-22 21:41:37 +00002569 }
Chris Lattnera19b5ec2008-07-21 21:33:21 +00002570 // Do not synthesize the protocol more than once.
2571 if (ObjCSynthesizedProtocols.count(PDecl))
2572 continue;
2573
2574 if (PDecl->instmeth_begin() != PDecl->instmeth_end()) {
2575 unsigned NumMethods = PDecl->getNumInstanceMethods();
2576 /* struct _objc_protocol_method_list {
2577 int protocol_method_count;
2578 struct protocol_methods protocols[];
2579 }
2580 */
2581 Result += "\nstatic struct {\n";
2582 Result += "\tint protocol_method_count;\n";
2583 Result += "\tstruct protocol_methods protocols[";
2584 Result += utostr(NumMethods);
2585 Result += "];\n} _OBJC_PROTOCOL_INSTANCE_METHODS_";
2586 Result += PDecl->getName();
2587 Result += " __attribute__ ((used, section (\"__OBJC, __cat_inst_meth\")))= "
2588 "{\n\t" + utostr(NumMethods) + "\n";
2589
2590 // Output instance methods declared in this protocol.
2591 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
2592 E = PDecl->instmeth_end(); I != E; ++I) {
2593 if (I == PDecl->instmeth_begin())
2594 Result += "\t ,{{(SEL)\"";
2595 else
2596 Result += "\t ,{(SEL)\"";
2597 Result += (*I)->getSelector().getName().c_str();
2598 std::string MethodTypeString;
2599 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
2600 Result += "\", \"";
2601 Result += MethodTypeString;
2602 Result += "\"}\n";
2603 }
2604 Result += "\t }\n};\n";
2605 }
2606
2607 // Output class methods declared in this protocol.
2608 int NumMethods = PDecl->getNumClassMethods();
2609 if (NumMethods > 0) {
2610 /* struct _objc_protocol_method_list {
2611 int protocol_method_count;
2612 struct protocol_methods protocols[];
2613 }
2614 */
2615 Result += "\nstatic struct {\n";
2616 Result += "\tint protocol_method_count;\n";
2617 Result += "\tstruct protocol_methods protocols[";
2618 Result += utostr(NumMethods);
2619 Result += "];\n} _OBJC_PROTOCOL_CLASS_METHODS_";
2620 Result += PDecl->getName();
2621 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
2622 "{\n\t";
2623 Result += utostr(NumMethods);
2624 Result += "\n";
2625
2626 // Output instance methods declared in this protocol.
2627 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
2628 E = PDecl->classmeth_end(); I != E; ++I) {
2629 if (I == PDecl->classmeth_begin())
2630 Result += "\t ,{{(SEL)\"";
2631 else
2632 Result += "\t ,{(SEL)\"";
2633 Result += (*I)->getSelector().getName().c_str();
2634 std::string MethodTypeString;
2635 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
2636 Result += "\", \"";
2637 Result += MethodTypeString;
2638 Result += "\"}\n";
2639 }
2640 Result += "\t }\n};\n";
2641 }
2642
2643 // Output:
2644 /* struct _objc_protocol {
2645 // Objective-C 1.0 extensions
2646 struct _objc_protocol_extension *isa;
2647 char *protocol_name;
2648 struct _objc_protocol **protocol_list;
2649 struct _objc_protocol_method_list *instance_methods;
2650 struct _objc_protocol_method_list *class_methods;
2651 };
Steve Naroff27429432008-03-12 01:06:30 +00002652 */
Chris Lattnera19b5ec2008-07-21 21:33:21 +00002653 static bool objc_protocol = false;
2654 if (!objc_protocol) {
2655 Result += "\nstruct _objc_protocol {\n";
2656 Result += "\tstruct _objc_protocol_extension *isa;\n";
2657 Result += "\tchar *protocol_name;\n";
2658 Result += "\tstruct _objc_protocol **protocol_list;\n";
2659 Result += "\tstruct _objc_protocol_method_list *instance_methods;\n";
2660 Result += "\tstruct _objc_protocol_method_list *class_methods;\n";
2661 Result += "};\n";
2662
2663 objc_protocol = true;
2664 }
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002665
Chris Lattnera19b5ec2008-07-21 21:33:21 +00002666 Result += "\nstatic struct _objc_protocol _OBJC_PROTOCOL_";
2667 Result += PDecl->getName();
2668 Result += " __attribute__ ((used, section (\"__OBJC, __protocol\")))= "
2669 "{\n\t0, \"";
2670 Result += PDecl->getName();
2671 Result += "\", 0, ";
2672 if (PDecl->instmeth_begin() != PDecl->instmeth_end()) {
2673 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_INSTANCE_METHODS_";
2674 Result += PDecl->getName();
2675 Result += ", ";
2676 }
2677 else
2678 Result += "0, ";
2679 if (PDecl->getNumClassMethods() > 0) {
2680 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_CLASS_METHODS_";
2681 Result += PDecl->getName();
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002682 Result += "\n";
Fariborz Jahanian04455192007-10-22 21:41:37 +00002683 }
Chris Lattnera19b5ec2008-07-21 21:33:21 +00002684 else
2685 Result += "0\n";
2686 Result += "};\n";
2687
2688 // Mark this protocol as having been generated.
2689 if (!ObjCSynthesizedProtocols.insert(PDecl))
2690 assert(false && "protocol already synthesized");
2691 }
2692 // Output the top lovel protocol meta-data for the class.
2693 /* struct _objc_protocol_list {
2694 struct _objc_protocol_list *next;
2695 int protocol_count;
2696 struct _objc_protocol *class_protocols[];
2697 }
2698 */
2699 Result += "\nstatic struct {\n";
2700 Result += "\tstruct _objc_protocol_list *next;\n";
2701 Result += "\tint protocol_count;\n";
2702 Result += "\tstruct _objc_protocol *class_protocols[";
2703 Result += utostr(Protocols.size());
2704 Result += "];\n} _OBJC_";
2705 Result += prefix;
2706 Result += "_PROTOCOLS_";
2707 Result += ClassName;
2708 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
2709 "{\n\t0, ";
2710 Result += utostr(Protocols.size());
2711 Result += "\n";
2712
2713 Result += "\t,{&_OBJC_PROTOCOL_";
2714 Result += Protocols[0]->getName();
2715 Result += " \n";
2716
2717 for (unsigned i = 1; i != Protocols.size(); i++) {
2718 Result += "\t ,&_OBJC_PROTOCOL_";
2719 Result += Protocols[i]->getName();
2720 Result += "\n";
2721 }
2722 Result += "\t }\n};\n";
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002723}
2724
Ted Kremenek42730c52008-01-07 19:49:32 +00002725/// RewriteObjCCategoryImplDecl - Rewrite metadata for each category
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002726/// implementation.
Steve Naroff44e81222008-04-14 22:03:09 +00002727void RewriteObjC::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl,
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002728 std::string &Result) {
Ted Kremenek42730c52008-01-07 19:49:32 +00002729 ObjCInterfaceDecl *ClassDecl = IDecl->getClassInterface();
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002730 // Find category declaration for this implementation.
Ted Kremenek42730c52008-01-07 19:49:32 +00002731 ObjCCategoryDecl *CDecl;
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002732 for (CDecl = ClassDecl->getCategoryList(); CDecl;
2733 CDecl = CDecl->getNextClassCategory())
2734 if (CDecl->getIdentifier() == IDecl->getIdentifier())
2735 break;
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002736
Chris Lattnera661a4d2007-12-23 01:40:15 +00002737 std::string FullCategoryName = ClassDecl->getName();
2738 FullCategoryName += '_';
2739 FullCategoryName += IDecl->getName();
2740
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002741 // Build _objc_method_list for class's instance methods if needed
Ted Kremenek42730c52008-01-07 19:49:32 +00002742 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Chris Lattnera661a4d2007-12-23 01:40:15 +00002743 true, "CATEGORY_", FullCategoryName.c_str(),
2744 Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002745
2746 // Build _objc_method_list for class's class methods if needed
Ted Kremenek42730c52008-01-07 19:49:32 +00002747 RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(),
Chris Lattnera661a4d2007-12-23 01:40:15 +00002748 false, "CATEGORY_", FullCategoryName.c_str(),
2749 Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002750
2751 // Protocols referenced in class declaration?
Fariborz Jahaniand256e062007-11-13 22:09:49 +00002752 // Null CDecl is case of a category implementation with no category interface
2753 if (CDecl)
Chris Lattner0be08822008-07-21 21:32:27 +00002754 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(), "CATEGORY",
Chris Lattnera661a4d2007-12-23 01:40:15 +00002755 FullCategoryName.c_str(), Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002756
2757 /* struct _objc_category {
2758 char *category_name;
2759 char *class_name;
2760 struct _objc_method_list *instance_methods;
2761 struct _objc_method_list *class_methods;
2762 struct _objc_protocol_list *protocols;
2763 // Objective-C 1.0 extensions
2764 uint32_t size; // sizeof (struct _objc_category)
2765 struct _objc_property_list *instance_properties; // category's own
2766 // @property decl.
2767 };
2768 */
2769
2770 static bool objc_category = false;
2771 if (!objc_category) {
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002772 Result += "\nstruct _objc_category {\n";
2773 Result += "\tchar *category_name;\n";
2774 Result += "\tchar *class_name;\n";
2775 Result += "\tstruct _objc_method_list *instance_methods;\n";
2776 Result += "\tstruct _objc_method_list *class_methods;\n";
2777 Result += "\tstruct _objc_protocol_list *protocols;\n";
2778 Result += "\tunsigned int size;\n";
2779 Result += "\tstruct _objc_property_list *instance_properties;\n";
2780 Result += "};\n";
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002781 objc_category = true;
Fariborz Jahanian04455192007-10-22 21:41:37 +00002782 }
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002783 Result += "\nstatic struct _objc_category _OBJC_CATEGORY_";
2784 Result += FullCategoryName;
Steve Naroff5ce4a242008-03-12 17:18:30 +00002785 Result += " __attribute__ ((used, section (\"__OBJC, __category\")))= {\n\t\"";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002786 Result += IDecl->getName();
2787 Result += "\"\n\t, \"";
2788 Result += ClassDecl->getName();
2789 Result += "\"\n";
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002790
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002791 if (IDecl->getNumInstanceMethods() > 0) {
2792 Result += "\t, (struct _objc_method_list *)"
2793 "&_OBJC_CATEGORY_INSTANCE_METHODS_";
2794 Result += FullCategoryName;
2795 Result += "\n";
2796 }
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002797 else
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002798 Result += "\t, 0\n";
2799 if (IDecl->getNumClassMethods() > 0) {
2800 Result += "\t, (struct _objc_method_list *)"
2801 "&_OBJC_CATEGORY_CLASS_METHODS_";
2802 Result += FullCategoryName;
2803 Result += "\n";
2804 }
2805 else
2806 Result += "\t, 0\n";
2807
Chris Lattner0be08822008-07-21 21:32:27 +00002808 if (CDecl && !CDecl->getReferencedProtocols().empty()) {
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002809 Result += "\t, (struct _objc_protocol_list *)&_OBJC_CATEGORY_PROTOCOLS_";
2810 Result += FullCategoryName;
2811 Result += "\n";
2812 }
2813 else
2814 Result += "\t, 0\n";
2815 Result += "\t, sizeof(struct _objc_category), 0\n};\n";
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002816}
2817
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002818/// SynthesizeIvarOffsetComputation - This rutine synthesizes computation of
2819/// ivar offset.
Steve Naroff44e81222008-04-14 22:03:09 +00002820void RewriteObjC::SynthesizeIvarOffsetComputation(ObjCImplementationDecl *IDecl,
Ted Kremenek42730c52008-01-07 19:49:32 +00002821 ObjCIvarDecl *ivar,
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002822 std::string &Result) {
Steve Naroffd3354222008-07-16 18:22:22 +00002823 if (ivar->isBitField()) {
2824 // FIXME: The hack below doesn't work for bitfields. For now, we simply
2825 // place all bitfields at offset 0.
2826 Result += "0";
2827 } else {
2828 Result += "__OFFSETOFIVAR__(struct ";
2829 Result += IDecl->getName();
2830 if (LangOpts.Microsoft)
2831 Result += "_IMPL";
2832 Result += ", ";
2833 Result += ivar->getName();
2834 Result += ")";
2835 }
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002836}
2837
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002838//===----------------------------------------------------------------------===//
2839// Meta Data Emission
2840//===----------------------------------------------------------------------===//
2841
Steve Naroff44e81222008-04-14 22:03:09 +00002842void RewriteObjC::RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002843 std::string &Result) {
Ted Kremenek42730c52008-01-07 19:49:32 +00002844 ObjCInterfaceDecl *CDecl = IDecl->getClassInterface();
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002845
Fariborz Jahanian7e216522007-11-26 20:59:57 +00002846 // Explictly declared @interface's are already synthesized.
2847 if (CDecl->ImplicitInterfaceDecl()) {
2848 // FIXME: Implementation of a class with no @interface (legacy) doese not
2849 // produce correct synthesis as yet.
Ted Kremenek42730c52008-01-07 19:49:32 +00002850 SynthesizeObjCInternalStruct(CDecl, Result);
Fariborz Jahanian7e216522007-11-26 20:59:57 +00002851 }
Fariborz Jahanianab3ec252007-10-26 23:09:28 +00002852
Chris Lattnerc7b06752007-12-12 07:56:42 +00002853 // Build _objc_ivar_list metadata for classes ivars if needed
Chris Lattnerec4979b2008-03-16 21:08:55 +00002854 unsigned NumIvars = !IDecl->ivar_empty()
2855 ? IDecl->ivar_size()
2856 : (CDecl ? CDecl->ivar_size() : 0);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002857 if (NumIvars > 0) {
2858 static bool objc_ivar = false;
2859 if (!objc_ivar) {
2860 /* struct _objc_ivar {
2861 char *ivar_name;
2862 char *ivar_type;
2863 int ivar_offset;
2864 };
2865 */
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002866 Result += "\nstruct _objc_ivar {\n";
2867 Result += "\tchar *ivar_name;\n";
2868 Result += "\tchar *ivar_type;\n";
2869 Result += "\tint ivar_offset;\n";
2870 Result += "};\n";
2871
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002872 objc_ivar = true;
2873 }
2874
Steve Naroffc723eec2008-03-11 00:12:29 +00002875 /* struct {
2876 int ivar_count;
2877 struct _objc_ivar ivar_list[nIvars];
2878 };
2879 */
2880 Result += "\nstatic struct {\n";
2881 Result += "\tint ivar_count;\n";
2882 Result += "\tstruct _objc_ivar ivar_list[";
2883 Result += utostr(NumIvars);
2884 Result += "];\n} _OBJC_INSTANCE_VARIABLES_";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002885 Result += IDecl->getName();
Steve Naroff5ce4a242008-03-12 17:18:30 +00002886 Result += " __attribute__ ((used, section (\"__OBJC, __instance_vars\")))= "
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002887 "{\n\t";
2888 Result += utostr(NumIvars);
2889 Result += "\n";
Chris Lattnerc7b06752007-12-12 07:56:42 +00002890
Ted Kremenek42730c52008-01-07 19:49:32 +00002891 ObjCInterfaceDecl::ivar_iterator IVI, IVE;
Chris Lattnerec4979b2008-03-16 21:08:55 +00002892 if (!IDecl->ivar_empty()) {
Chris Lattnerc7b06752007-12-12 07:56:42 +00002893 IVI = IDecl->ivar_begin();
2894 IVE = IDecl->ivar_end();
2895 } else {
2896 IVI = CDecl->ivar_begin();
2897 IVE = CDecl->ivar_end();
2898 }
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002899 Result += "\t,{{\"";
Chris Lattnerc7b06752007-12-12 07:56:42 +00002900 Result += (*IVI)->getName();
Fariborz Jahaniand5ea4612007-10-29 17:16:25 +00002901 Result += "\", \"";
2902 std::string StrEncoding;
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00002903 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding);
Fariborz Jahaniand5ea4612007-10-29 17:16:25 +00002904 Result += StrEncoding;
2905 Result += "\", ";
Chris Lattnerc7b06752007-12-12 07:56:42 +00002906 SynthesizeIvarOffsetComputation(IDecl, *IVI, Result);
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002907 Result += "}\n";
Chris Lattnerc7b06752007-12-12 07:56:42 +00002908 for (++IVI; IVI != IVE; ++IVI) {
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002909 Result += "\t ,{\"";
Chris Lattnerc7b06752007-12-12 07:56:42 +00002910 Result += (*IVI)->getName();
Fariborz Jahaniand5ea4612007-10-29 17:16:25 +00002911 Result += "\", \"";
2912 std::string StrEncoding;
Daniel Dunbarc9197cd2008-10-17 20:21:44 +00002913 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding);
Fariborz Jahaniand5ea4612007-10-29 17:16:25 +00002914 Result += StrEncoding;
2915 Result += "\", ";
Chris Lattnerc7b06752007-12-12 07:56:42 +00002916 SynthesizeIvarOffsetComputation(IDecl, (*IVI), Result);
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00002917 Result += "}\n";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002918 }
2919
2920 Result += "\t }\n};\n";
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002921 }
2922
2923 // Build _objc_method_list for class's instance methods if needed
Ted Kremenek42730c52008-01-07 19:49:32 +00002924 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Douglas Gregor24afd4a2008-11-17 14:58:09 +00002925 true, "", IDecl->getIdentifierName(), Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002926
2927 // Build _objc_method_list for class's class methods if needed
Ted Kremenek42730c52008-01-07 19:49:32 +00002928 RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(),
Douglas Gregor24afd4a2008-11-17 14:58:09 +00002929 false, "", IDecl->getIdentifierName(), Result);
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002930
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002931 // Protocols referenced in class declaration?
Chris Lattner0be08822008-07-21 21:32:27 +00002932 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(),
Douglas Gregor24afd4a2008-11-17 14:58:09 +00002933 "CLASS", CDecl->getIdentifierName(), Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00002934
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00002935
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00002936 // Declaration of class/meta-class metadata
2937 /* struct _objc_class {
2938 struct _objc_class *isa; // or const char *root_class_name when metadata
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00002939 const char *super_class_name;
2940 char *name;
2941 long version;
2942 long info;
2943 long instance_size;
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00002944 struct _objc_ivar_list *ivars;
2945 struct _objc_method_list *methods;
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00002946 struct objc_cache *cache;
2947 struct objc_protocol_list *protocols;
2948 const char *ivar_layout;
2949 struct _objc_class_ext *ext;
2950 };
2951 */
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00002952 static bool objc_class = false;
2953 if (!objc_class) {
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002954 Result += "\nstruct _objc_class {\n";
2955 Result += "\tstruct _objc_class *isa;\n";
2956 Result += "\tconst char *super_class_name;\n";
2957 Result += "\tchar *name;\n";
2958 Result += "\tlong version;\n";
2959 Result += "\tlong info;\n";
2960 Result += "\tlong instance_size;\n";
2961 Result += "\tstruct _objc_ivar_list *ivars;\n";
2962 Result += "\tstruct _objc_method_list *methods;\n";
2963 Result += "\tstruct objc_cache *cache;\n";
2964 Result += "\tstruct _objc_protocol_list *protocols;\n";
2965 Result += "\tconst char *ivar_layout;\n";
2966 Result += "\tstruct _objc_class_ext *ext;\n";
2967 Result += "};\n";
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00002968 objc_class = true;
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00002969 }
2970
2971 // Meta-class metadata generation.
Ted Kremenek42730c52008-01-07 19:49:32 +00002972 ObjCInterfaceDecl *RootClass = 0;
2973 ObjCInterfaceDecl *SuperClass = CDecl->getSuperClass();
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00002974 while (SuperClass) {
2975 RootClass = SuperClass;
2976 SuperClass = SuperClass->getSuperClass();
2977 }
2978 SuperClass = CDecl->getSuperClass();
2979
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002980 Result += "\nstatic struct _objc_class _OBJC_METACLASS_";
2981 Result += CDecl->getName();
Steve Naroff5ce4a242008-03-12 17:18:30 +00002982 Result += " __attribute__ ((used, section (\"__OBJC, __meta_class\")))= "
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00002983 "{\n\t(struct _objc_class *)\"";
2984 Result += (RootClass ? RootClass->getName() : CDecl->getName());
2985 Result += "\"";
2986
2987 if (SuperClass) {
2988 Result += ", \"";
2989 Result += SuperClass->getName();
2990 Result += "\", \"";
2991 Result += CDecl->getName();
2992 Result += "\"";
2993 }
2994 else {
2995 Result += ", 0, \"";
2996 Result += CDecl->getName();
2997 Result += "\"";
2998 }
Ted Kremenek42730c52008-01-07 19:49:32 +00002999 // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it.
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00003000 // 'info' field is initialized to CLS_META(2) for metaclass
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003001 Result += ", 0,2, sizeof(struct _objc_class), 0";
Steve Naroffbde81042007-12-05 21:49:40 +00003002 if (IDecl->getNumClassMethods() > 0) {
Steve Naroffdee066b2008-03-11 18:14:26 +00003003 Result += "\n\t, (struct _objc_method_list *)&_OBJC_CLASS_METHODS_";
Steve Naroffbde81042007-12-05 21:49:40 +00003004 Result += IDecl->getName();
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003005 Result += "\n";
3006 }
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00003007 else
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003008 Result += ", 0\n";
Chris Lattner8bcb5252008-07-21 18:19:38 +00003009 if (!CDecl->getReferencedProtocols().empty()) {
Steve Naroff27429432008-03-12 01:06:30 +00003010 Result += "\t,0, (struct _objc_protocol_list *)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003011 Result += CDecl->getName();
3012 Result += ",0,0\n";
3013 }
Fariborz Jahanian0cb4d922007-10-24 20:54:23 +00003014 else
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003015 Result += "\t,0,0,0,0\n";
3016 Result += "};\n";
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00003017
3018 // class metadata generation.
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003019 Result += "\nstatic struct _objc_class _OBJC_CLASS_";
3020 Result += CDecl->getName();
Steve Naroff5ce4a242008-03-12 17:18:30 +00003021 Result += " __attribute__ ((used, section (\"__OBJC, __class\")))= "
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003022 "{\n\t&_OBJC_METACLASS_";
3023 Result += CDecl->getName();
3024 if (SuperClass) {
3025 Result += ", \"";
3026 Result += SuperClass->getName();
3027 Result += "\", \"";
3028 Result += CDecl->getName();
3029 Result += "\"";
3030 }
3031 else {
3032 Result += ", 0, \"";
3033 Result += CDecl->getName();
3034 Result += "\"";
3035 }
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00003036 // 'info' field is initialized to CLS_CLASS(1) for class
Fariborz Jahanianab3ec252007-10-26 23:09:28 +00003037 Result += ", 0,1";
Ted Kremenek42730c52008-01-07 19:49:32 +00003038 if (!ObjCSynthesizedStructs.count(CDecl))
Fariborz Jahanianab3ec252007-10-26 23:09:28 +00003039 Result += ",0";
3040 else {
3041 // class has size. Must synthesize its size.
Fariborz Jahanian9447e462007-11-05 17:47:33 +00003042 Result += ",sizeof(struct ";
Fariborz Jahanianab3ec252007-10-26 23:09:28 +00003043 Result += CDecl->getName();
Steve Naroffc302e5b2008-03-10 23:33:22 +00003044 if (LangOpts.Microsoft)
3045 Result += "_IMPL";
Fariborz Jahanianab3ec252007-10-26 23:09:28 +00003046 Result += ")";
3047 }
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003048 if (NumIvars > 0) {
Steve Naroffbec4bf52008-03-11 17:37:02 +00003049 Result += ", (struct _objc_ivar_list *)&_OBJC_INSTANCE_VARIABLES_";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003050 Result += CDecl->getName();
3051 Result += "\n\t";
3052 }
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00003053 else
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003054 Result += ",0";
3055 if (IDecl->getNumInstanceMethods() > 0) {
Steve Naroffc723eec2008-03-11 00:12:29 +00003056 Result += ", (struct _objc_method_list *)&_OBJC_INSTANCE_METHODS_";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003057 Result += CDecl->getName();
3058 Result += ", 0\n\t";
3059 }
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00003060 else
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003061 Result += ",0,0";
Chris Lattner8bcb5252008-07-21 18:19:38 +00003062 if (!CDecl->getReferencedProtocols().empty()) {
Steve Naroff27429432008-03-12 01:06:30 +00003063 Result += ", (struct _objc_protocol_list*)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003064 Result += CDecl->getName();
3065 Result += ", 0,0\n";
3066 }
Fariborz Jahanianf8fa1e72007-10-23 18:53:48 +00003067 else
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003068 Result += ",0,0,0\n";
3069 Result += "};\n";
Fariborz Jahanian0f013d12007-10-23 00:02:02 +00003070}
Fariborz Jahanian45d52f72007-10-18 22:09:03 +00003071
Fariborz Jahanian8c664912007-11-13 19:21:13 +00003072/// RewriteImplementations - This routine rewrites all method implementations
3073/// and emits meta-data.
3074
Steve Naroff21658f62008-11-13 20:07:04 +00003075void RewriteObjC::RewriteImplementations() {
Fariborz Jahanian640a01f2007-10-18 19:23:00 +00003076 int ClsDefCount = ClassImplementation.size();
3077 int CatDefCount = CategoryImplementation.size();
Fariborz Jahanian8c664912007-11-13 19:21:13 +00003078
Fariborz Jahanian8c664912007-11-13 19:21:13 +00003079 // Rewrite implemented methods
3080 for (int i = 0; i < ClsDefCount; i++)
3081 RewriteImplementationDecl(ClassImplementation[i]);
Fariborz Jahanian45d52f72007-10-18 22:09:03 +00003082
Fariborz Jahanian0136e372007-11-13 20:04:28 +00003083 for (int i = 0; i < CatDefCount; i++)
3084 RewriteImplementationDecl(CategoryImplementation[i]);
Steve Naroff21658f62008-11-13 20:07:04 +00003085}
Fariborz Jahanian0136e372007-11-13 20:04:28 +00003086
Steve Naroff21658f62008-11-13 20:07:04 +00003087void RewriteObjC::SynthesizeMetaDataIntoBuffer(std::string &Result) {
3088 int ClsDefCount = ClassImplementation.size();
3089 int CatDefCount = CategoryImplementation.size();
3090
Steve Naroff5bf10222008-05-07 21:23:49 +00003091 // This is needed for determining instance variable offsets.
Steve Naroff314c1a62008-08-05 18:47:23 +00003092 Result += "\n#define __OFFSETOFIVAR__(TYPE, MEMBER) ((int) &((TYPE *)0)->MEMBER)\n";
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00003093 // For each implemented class, write out all its meta data.
Fariborz Jahanian45d52f72007-10-18 22:09:03 +00003094 for (int i = 0; i < ClsDefCount; i++)
Ted Kremenek42730c52008-01-07 19:49:32 +00003095 RewriteObjCClassMetaData(ClassImplementation[i], Result);
Fariborz Jahanian9b4e4ff2007-10-24 19:23:36 +00003096
3097 // For each implemented category, write out all its meta data.
3098 for (int i = 0; i < CatDefCount; i++)
Ted Kremenek42730c52008-01-07 19:49:32 +00003099 RewriteObjCCategoryImplDecl(CategoryImplementation[i], Result);
Fariborz Jahanian45d52f72007-10-18 22:09:03 +00003100
Fariborz Jahanian640a01f2007-10-18 19:23:00 +00003101 // Write objc_symtab metadata
3102 /*
3103 struct _objc_symtab
3104 {
3105 long sel_ref_cnt;
3106 SEL *refs;
3107 short cls_def_cnt;
3108 short cat_def_cnt;
3109 void *defs[cls_def_cnt + cat_def_cnt];
3110 };
3111 */
3112
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003113 Result += "\nstruct _objc_symtab {\n";
3114 Result += "\tlong sel_ref_cnt;\n";
3115 Result += "\tSEL *refs;\n";
3116 Result += "\tshort cls_def_cnt;\n";
3117 Result += "\tshort cat_def_cnt;\n";
3118 Result += "\tvoid *defs[" + utostr(ClsDefCount + CatDefCount)+ "];\n";
3119 Result += "};\n\n";
Fariborz Jahanian640a01f2007-10-18 19:23:00 +00003120
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003121 Result += "static struct _objc_symtab "
Steve Naroff5ce4a242008-03-12 17:18:30 +00003122 "_OBJC_SYMBOLS __attribute__((used, section (\"__OBJC, __symbols\")))= {\n";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003123 Result += "\t0, 0, " + utostr(ClsDefCount)
3124 + ", " + utostr(CatDefCount) + "\n";
3125 for (int i = 0; i < ClsDefCount; i++) {
3126 Result += "\t,&_OBJC_CLASS_";
3127 Result += ClassImplementation[i]->getName();
3128 Result += "\n";
3129 }
Fariborz Jahanian640a01f2007-10-18 19:23:00 +00003130
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003131 for (int i = 0; i < CatDefCount; i++) {
3132 Result += "\t,&_OBJC_CATEGORY_";
3133 Result += CategoryImplementation[i]->getClassInterface()->getName();
3134 Result += "_";
3135 Result += CategoryImplementation[i]->getName();
3136 Result += "\n";
3137 }
Fariborz Jahanian640a01f2007-10-18 19:23:00 +00003138
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003139 Result += "};\n\n";
Fariborz Jahanian640a01f2007-10-18 19:23:00 +00003140
3141 // Write objc_module metadata
3142
3143 /*
3144 struct _objc_module {
3145 long version;
3146 long size;
3147 const char *name;
3148 struct _objc_symtab *symtab;
3149 }
3150 */
3151
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003152 Result += "\nstruct _objc_module {\n";
3153 Result += "\tlong version;\n";
3154 Result += "\tlong size;\n";
3155 Result += "\tconst char *name;\n";
3156 Result += "\tstruct _objc_symtab *symtab;\n";
3157 Result += "};\n\n";
3158 Result += "static struct _objc_module "
Steve Naroff5ce4a242008-03-12 17:18:30 +00003159 "_OBJC_MODULES __attribute__ ((used, section (\"__OBJC, __module_info\")))= {\n";
Fariborz Jahanianf185aef2007-10-26 19:46:17 +00003160 Result += "\t" + utostr(OBJC_ABI_VERSION) +
3161 ", sizeof(struct _objc_module), \"\", &_OBJC_SYMBOLS\n";
Fariborz Jahaniancf89c7e2007-10-25 20:55:25 +00003162 Result += "};\n\n";
Steve Naroff7fd0aff2008-03-10 20:43:59 +00003163
3164 if (LangOpts.Microsoft) {
3165 Result += "#pragma section(\".objc_module_info$B\",long,read,write)\n";
Steve Naroffbdd2dba2008-05-07 00:06:16 +00003166 Result += "#pragma data_seg(push, \".objc_module_info$B\")\n";
Steve Naroff7fd0aff2008-03-10 20:43:59 +00003167 Result += "static struct _objc_module *_POINTER_OBJC_MODULES = ";
3168 Result += "&_OBJC_MODULES;\n";
3169 Result += "#pragma data_seg(pop)\n\n";
3170 }
Fariborz Jahanian640a01f2007-10-18 19:23:00 +00003171}
Chris Lattner6fe8b272007-10-16 22:36:42 +00003172
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003173std::string RewriteObjC::SynthesizeBlockFunc(BlockExpr *CE, int i,
3174 const char *funcName,
3175 std::string Tag) {
3176 const FunctionType *AFT = CE->getFunctionType();
3177 QualType RT = AFT->getResultType();
3178 std::string StructRef = "struct " + Tag;
3179 std::string S = "static " + RT.getAsString() + " __" +
3180 funcName + "_" + "block_func_" + utostr(i);
Argiris Kirtzidisd3586002008-04-17 14:40:12 +00003181
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003182 BlockDecl *BD = CE->getBlockDecl();
3183
3184 if (isa<FunctionTypeNoProto>(AFT)) {
3185 S += "()";
3186 } else if (BD->param_empty()) {
3187 S += "(" + StructRef + " *__cself)";
3188 } else {
3189 const FunctionTypeProto *FT = cast<FunctionTypeProto>(AFT);
3190 assert(FT && "SynthesizeBlockFunc: No function proto");
3191 S += '(';
3192 // first add the implicit argument.
3193 S += StructRef + " *__cself, ";
3194 std::string ParamStr;
3195 for (BlockDecl::param_iterator AI = BD->param_begin(),
3196 E = BD->param_end(); AI != E; ++AI) {
3197 if (AI != BD->param_begin()) S += ", ";
3198 ParamStr = (*AI)->getName();
3199 (*AI)->getType().getAsStringInternal(ParamStr);
3200 S += ParamStr;
3201 }
3202 if (FT->isVariadic()) {
3203 if (!BD->param_empty()) S += ", ";
3204 S += "...";
3205 }
3206 S += ')';
3207 }
3208 S += " {\n";
3209
3210 // Create local declarations to avoid rewriting all closure decl ref exprs.
3211 // First, emit a declaration for all "by ref" decls.
3212 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(),
3213 E = BlockByRefDecls.end(); I != E; ++I) {
3214 S += " ";
3215 std::string Name = (*I)->getName();
3216 Context->getPointerType((*I)->getType()).getAsStringInternal(Name);
3217 S += Name + " = __cself->" + (*I)->getName() + "; // bound by ref\n";
3218 }
3219 // Next, emit a declaration for all "by copy" declarations.
3220 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(),
3221 E = BlockByCopyDecls.end(); I != E; ++I) {
3222 S += " ";
3223 std::string Name = (*I)->getName();
3224 // Handle nested closure invocation. For example:
3225 //
3226 // void (^myImportedClosure)(void);
3227 // myImportedClosure = ^(void) { setGlobalInt(x + y); };
3228 //
3229 // void (^anotherClosure)(void);
3230 // anotherClosure = ^(void) {
3231 // myImportedClosure(); // import and invoke the closure
3232 // };
3233 //
3234 if (isBlockPointerType((*I)->getType()))
3235 S += "struct __block_impl *";
3236 else
3237 (*I)->getType().getAsStringInternal(Name);
3238 S += Name + " = __cself->" + (*I)->getName() + "; // bound by copy\n";
3239 }
3240 std::string RewrittenStr = RewrittenBlockExprs[CE];
3241 const char *cstr = RewrittenStr.c_str();
3242 while (*cstr++ != '{') ;
3243 S += cstr;
3244 S += "\n";
3245 return S;
3246}
Argiris Kirtzidisc6cc7d52008-06-09 23:19:58 +00003247
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003248std::string RewriteObjC::SynthesizeBlockHelperFuncs(BlockExpr *CE, int i,
3249 const char *funcName,
3250 std::string Tag) {
3251 std::string StructRef = "struct " + Tag;
3252 std::string S = "static void __";
3253
3254 S += funcName;
3255 S += "_block_copy_" + utostr(i);
3256 S += "(" + StructRef;
3257 S += "*dst, " + StructRef;
3258 S += "*src) {";
3259 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = ImportedBlockDecls.begin(),
3260 E = ImportedBlockDecls.end(); I != E; ++I) {
3261 S += "_Block_copy_assign(&dst->";
3262 S += (*I)->getName();
3263 S += ", src->";
3264 S += (*I)->getName();
3265 S += ");}";
3266 }
3267 S += "\nstatic void __";
3268 S += funcName;
3269 S += "_block_dispose_" + utostr(i);
3270 S += "(" + StructRef;
3271 S += "*src) {";
3272 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = ImportedBlockDecls.begin(),
3273 E = ImportedBlockDecls.end(); I != E; ++I) {
3274 S += "_Block_destroy(src->";
3275 S += (*I)->getName();
3276 S += ");";
3277 }
3278 S += "}\n";
3279 return S;
3280}
3281
3282std::string RewriteObjC::SynthesizeBlockImpl(BlockExpr *CE, std::string Tag,
3283 bool hasCopyDisposeHelpers) {
Steve Naroff6449c6c2008-10-30 12:09:33 +00003284 std::string S = "\nstruct " + Tag;
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003285 std::string Constructor = " " + Tag;
3286
3287 S += " {\n struct __block_impl impl;\n";
3288
3289 if (hasCopyDisposeHelpers)
3290 S += " void *copy;\n void *dispose;\n";
3291
3292 Constructor += "(void *fp";
3293
3294 if (hasCopyDisposeHelpers)
3295 Constructor += ", void *copyHelp, void *disposeHelp";
3296
3297 if (BlockDeclRefs.size()) {
3298 // Output all "by copy" declarations.
3299 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(),
3300 E = BlockByCopyDecls.end(); I != E; ++I) {
3301 S += " ";
3302 std::string FieldName = (*I)->getName();
3303 std::string ArgName = "_" + FieldName;
3304 // Handle nested closure invocation. For example:
3305 //
3306 // void (^myImportedBlock)(void);
3307 // myImportedBlock = ^(void) { setGlobalInt(x + y); };
3308 //
3309 // void (^anotherBlock)(void);
3310 // anotherBlock = ^(void) {
3311 // myImportedBlock(); // import and invoke the closure
3312 // };
3313 //
3314 if (isBlockPointerType((*I)->getType())) {
3315 S += "struct __block_impl *";
3316 Constructor += ", void *" + ArgName;
3317 } else {
3318 (*I)->getType().getAsStringInternal(FieldName);
3319 (*I)->getType().getAsStringInternal(ArgName);
3320 Constructor += ", " + ArgName;
3321 }
3322 S += FieldName + ";\n";
3323 }
3324 // Output all "by ref" declarations.
3325 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(),
3326 E = BlockByRefDecls.end(); I != E; ++I) {
3327 S += " ";
3328 std::string FieldName = (*I)->getName();
3329 std::string ArgName = "_" + FieldName;
3330 // Handle nested closure invocation. For example:
3331 //
3332 // void (^myImportedBlock)(void);
3333 // myImportedBlock = ^(void) { setGlobalInt(x + y); };
3334 //
3335 // void (^anotherBlock)(void);
3336 // anotherBlock = ^(void) {
3337 // myImportedBlock(); // import and invoke the closure
3338 // };
3339 //
3340 if (isBlockPointerType((*I)->getType())) {
3341 S += "struct __block_impl *";
3342 Constructor += ", void *" + ArgName;
3343 } else {
3344 Context->getPointerType((*I)->getType()).getAsStringInternal(FieldName);
3345 Context->getPointerType((*I)->getType()).getAsStringInternal(ArgName);
3346 Constructor += ", " + ArgName;
3347 }
3348 S += FieldName + "; // by ref\n";
3349 }
3350 // Finish writing the constructor.
3351 // FIXME: handle NSConcreteGlobalBlock.
3352 Constructor += ", int flags=0) {\n";
3353 Constructor += " impl.isa = 0/*&_NSConcreteStackBlock*/;\n impl.Size = sizeof(";
3354 Constructor += Tag + ");\n impl.Flags = flags;\n impl.FuncPtr = fp;\n";
3355
3356 if (hasCopyDisposeHelpers)
3357 Constructor += " copy = copyHelp;\n dispose = disposeHelp;\n";
3358
3359 // Initialize all "by copy" arguments.
3360 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(),
3361 E = BlockByCopyDecls.end(); I != E; ++I) {
3362 std::string Name = (*I)->getName();
3363 Constructor += " ";
3364 if (isBlockPointerType((*I)->getType()))
3365 Constructor += Name + " = (struct __block_impl *)_";
3366 else
3367 Constructor += Name + " = _";
3368 Constructor += Name + ";\n";
3369 }
3370 // Initialize all "by ref" arguments.
3371 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(),
3372 E = BlockByRefDecls.end(); I != E; ++I) {
3373 std::string Name = (*I)->getName();
3374 Constructor += " ";
3375 if (isBlockPointerType((*I)->getType()))
3376 Constructor += Name + " = (struct __block_impl *)_";
3377 else
3378 Constructor += Name + " = _";
3379 Constructor += Name + ";\n";
3380 }
3381 } else {
3382 // Finish writing the constructor.
3383 // FIXME: handle NSConcreteGlobalBlock.
3384 Constructor += ", int flags=0) {\n";
3385 Constructor += " impl.isa = 0/*&_NSConcreteStackBlock*/;\n impl.Size = sizeof(";
3386 Constructor += Tag + ");\n impl.Flags = flags;\n impl.FuncPtr = fp;\n";
3387 if (hasCopyDisposeHelpers)
3388 Constructor += " copy = copyHelp;\n dispose = disposeHelp;\n";
3389 }
3390 Constructor += " ";
3391 Constructor += "}\n";
3392 S += Constructor;
3393 S += "};\n";
3394 return S;
3395}
3396
3397void RewriteObjC::SynthesizeBlockLiterals(SourceLocation FunLocStart,
3398 const char *FunName) {
3399 // Insert closures that were part of the function.
3400 for (unsigned i = 0; i < Blocks.size(); i++) {
3401
3402 CollectBlockDeclRefInfo(Blocks[i]);
3403
3404 std::string Tag = "__" + std::string(FunName) + "_block_impl_" + utostr(i);
3405
3406 std::string CI = SynthesizeBlockImpl(Blocks[i], Tag,
3407 ImportedBlockDecls.size() > 0);
3408
3409 InsertText(FunLocStart, CI.c_str(), CI.size());
3410
3411 std::string CF = SynthesizeBlockFunc(Blocks[i], i, FunName, Tag);
3412
3413 InsertText(FunLocStart, CF.c_str(), CF.size());
3414
3415 if (ImportedBlockDecls.size()) {
3416 std::string HF = SynthesizeBlockHelperFuncs(Blocks[i], i, FunName, Tag);
3417 InsertText(FunLocStart, HF.c_str(), HF.size());
3418 }
3419
3420 BlockDeclRefs.clear();
3421 BlockByRefDecls.clear();
3422 BlockByCopyDecls.clear();
3423 BlockCallExprs.clear();
3424 ImportedBlockDecls.clear();
3425 }
3426 Blocks.clear();
3427 RewrittenBlockExprs.clear();
3428}
3429
3430void RewriteObjC::InsertBlockLiteralsWithinFunction(FunctionDecl *FD) {
3431 SourceLocation FunLocStart = FD->getTypeSpecStartLoc();
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003432 const char *FuncName = FD->getIdentifierName();
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003433
3434 SynthesizeBlockLiterals(FunLocStart, FuncName);
3435}
3436
3437void RewriteObjC::InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD) {
Steve Naroff6449c6c2008-10-30 12:09:33 +00003438 //fprintf(stderr,"In InsertBlockLiteralsWitinMethod\n");
3439 //SourceLocation FunLocStart = MD->getLocStart();
3440 // FIXME: This hack works around a bug in Rewrite.InsertText().
3441 SourceLocation FunLocStart = MD->getLocStart().getFileLocWithOffset(-1);
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003442 std::string FuncName = std::string(MD->getSelector().getName());
3443 // Convert colons to underscores.
3444 std::string::size_type loc = 0;
3445 while ((loc = FuncName.find(":", loc)) != std::string::npos)
3446 FuncName.replace(loc, 1, "_");
3447
3448 SynthesizeBlockLiterals(FunLocStart, FuncName.c_str());
3449}
3450
3451void RewriteObjC::GetBlockDeclRefExprs(Stmt *S) {
3452 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end();
3453 CI != E; ++CI)
3454 if (*CI) {
3455 if (BlockExpr *CBE = dyn_cast<BlockExpr>(*CI))
3456 GetBlockDeclRefExprs(CBE->getBody());
3457 else
3458 GetBlockDeclRefExprs(*CI);
3459 }
3460 // Handle specific things.
3461 if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(S))
3462 // FIXME: Handle enums.
3463 if (!isa<FunctionDecl>(CDRE->getDecl()))
3464 BlockDeclRefs.push_back(CDRE);
3465 return;
3466}
3467
3468void RewriteObjC::GetBlockCallExprs(Stmt *S) {
3469 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end();
3470 CI != E; ++CI)
3471 if (*CI) {
3472 if (BlockExpr *CBE = dyn_cast<BlockExpr>(*CI))
3473 GetBlockCallExprs(CBE->getBody());
3474 else
3475 GetBlockCallExprs(*CI);
3476 }
3477
3478 if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
3479 if (CE->getCallee()->getType()->isBlockPointerType()) {
3480 BlockCallExprs[dyn_cast<BlockDeclRefExpr>(CE->getCallee())] = CE;
3481 }
3482 }
3483 return;
3484}
3485
Steve Naroff85eb17b2008-10-30 10:07:53 +00003486Stmt *RewriteObjC::SynthesizeBlockCall(CallExpr *Exp) {
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003487 // Navigate to relevant type information.
3488 const char *closureName = 0;
3489 const BlockPointerType *CPT = 0;
3490
3491 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp->getCallee())) {
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003492 closureName = DRE->getDecl()->getIdentifierName();
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003493 CPT = DRE->getType()->getAsBlockPointerType();
3494 } else if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(Exp->getCallee())) {
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003495 closureName = CDRE->getDecl()->getIdentifierName();
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003496 CPT = CDRE->getType()->getAsBlockPointerType();
3497 } else if (MemberExpr *MExpr = dyn_cast<MemberExpr>(Exp->getCallee())) {
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003498 closureName = MExpr->getMemberDecl()->getIdentifierName();
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003499 CPT = MExpr->getType()->getAsBlockPointerType();
3500 } else {
3501 assert(1 && "RewriteBlockClass: Bad type");
3502 }
3503 assert(CPT && "RewriteBlockClass: Bad type");
3504 const FunctionType *FT = CPT->getPointeeType()->getAsFunctionType();
3505 assert(FT && "RewriteBlockClass: Bad type");
3506 const FunctionTypeProto *FTP = dyn_cast<FunctionTypeProto>(FT);
3507 // FTP will be null for closures that don't take arguments.
3508
Steve Naroff85eb17b2008-10-30 10:07:53 +00003509 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
3510 SourceLocation(),
3511 &Context->Idents.get("__block_impl"));
3512 QualType PtrBlock = Context->getPointerType(Context->getTagDeclType(RD));
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003513
Steve Naroff85eb17b2008-10-30 10:07:53 +00003514 // Generate a funky cast.
3515 llvm::SmallVector<QualType, 8> ArgTypes;
3516
3517 // Push the block argument type.
3518 ArgTypes.push_back(PtrBlock);
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003519 if (FTP) {
3520 for (FunctionTypeProto::arg_type_iterator I = FTP->arg_type_begin(),
Steve Naroff85eb17b2008-10-30 10:07:53 +00003521 E = FTP->arg_type_end(); I && (I != E); ++I) {
3522 QualType t = *I;
3523 // Make sure we convert "t (^)(...)" to "t (*)(...)".
3524 if (isBlockPointerType(t)) {
3525 const BlockPointerType *BPT = t->getAsBlockPointerType();
3526 t = Context->getPointerType(BPT->getPointeeType());
3527 }
3528 ArgTypes.push_back(t);
3529 }
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003530 }
Steve Naroff85eb17b2008-10-30 10:07:53 +00003531 // Now do the pointer to function cast.
3532 QualType PtrToFuncCastType = Context->getFunctionType(Exp->getType(),
3533 &ArgTypes[0], ArgTypes.size(), false/*no variadic*/, 0);
3534
3535 PtrToFuncCastType = Context->getPointerType(PtrToFuncCastType);
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003536
Steve Naroff7f1412d2008-11-03 23:29:32 +00003537 CastExpr *BlkCast = new CStyleCastExpr(PtrBlock, Exp->getCallee(), PtrBlock, SourceLocation(), SourceLocation());
Steve Naroff85eb17b2008-10-30 10:07:53 +00003538 // Don't forget the parens to enforce the proper binding.
3539 ParenExpr *PE = new ParenExpr(SourceLocation(), SourceLocation(), BlkCast);
3540 //PE->dump();
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003541
Steve Naroff85eb17b2008-10-30 10:07:53 +00003542 FieldDecl *FD = FieldDecl::Create(*Context, SourceLocation(),
3543 &Context->Idents.get("FuncPtr"), Context->VoidPtrTy);
3544 MemberExpr *ME = new MemberExpr(PE, true, FD, SourceLocation(), FD->getType());
3545
Steve Naroff7f1412d2008-11-03 23:29:32 +00003546 CastExpr *FunkCast = new CStyleCastExpr(PtrToFuncCastType, ME, PtrToFuncCastType, SourceLocation(), SourceLocation());
Steve Naroff85eb17b2008-10-30 10:07:53 +00003547 PE = new ParenExpr(SourceLocation(), SourceLocation(), FunkCast);
3548
3549 llvm::SmallVector<Expr*, 8> BlkExprs;
3550 // Add the implicit argument.
3551 BlkExprs.push_back(BlkCast);
3552 // Add the user arguments.
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003553 for (CallExpr::arg_iterator I = Exp->arg_begin(),
3554 E = Exp->arg_end(); I != E; ++I) {
Steve Naroff85eb17b2008-10-30 10:07:53 +00003555 BlkExprs.push_back(*I);
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003556 }
Steve Naroff85eb17b2008-10-30 10:07:53 +00003557 CallExpr *CE = new CallExpr(PE, &BlkExprs[0], BlkExprs.size(), Exp->getType(), SourceLocation());
3558 return CE;
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003559}
3560
3561void RewriteObjC::RewriteBlockCall(CallExpr *Exp) {
Steve Naroff85eb17b2008-10-30 10:07:53 +00003562 Stmt *BlockCall = SynthesizeBlockCall(Exp);
3563 ReplaceStmt(Exp, BlockCall);
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003564}
3565
3566void RewriteObjC::RewriteBlockDeclRefExpr(BlockDeclRefExpr *BDRE) {
3567 // FIXME: Add more elaborate code generation required by the ABI.
3568 InsertText(BDRE->getLocStart(), "*", 1);
3569}
3570
Steve Naroff7f1412d2008-11-03 23:29:32 +00003571void RewriteObjC::RewriteCastExpr(CStyleCastExpr *CE) {
3572 SourceLocation LocStart = CE->getLParenLoc();
3573 SourceLocation LocEnd = CE->getRParenLoc();
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003574
3575 // Need to avoid trying to rewrite synthesized casts.
3576 if (LocStart.isInvalid())
3577 return;
Steve Naroff1c53c022008-11-03 11:20:24 +00003578 // Need to avoid trying to rewrite casts contained in macros.
3579 if (!Rewriter::isRewritable(LocStart) || !Rewriter::isRewritable(LocEnd))
3580 return;
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003581
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003582 const char *startBuf = SM->getCharacterData(LocStart);
3583 const char *endBuf = SM->getCharacterData(LocEnd);
3584
3585 // advance the location to startArgList.
3586 const char *argPtr = startBuf;
3587
3588 while (*argPtr++ && (argPtr < endBuf)) {
3589 switch (*argPtr) {
3590 case '^':
3591 // Replace the '^' with '*'.
3592 LocStart = LocStart.getFileLocWithOffset(argPtr-startBuf);
3593 ReplaceText(LocStart, 1, "*", 1);
3594 break;
3595 }
3596 }
3597 return;
3598}
3599
3600void RewriteObjC::RewriteBlockPointerFunctionArgs(FunctionDecl *FD) {
3601 SourceLocation DeclLoc = FD->getLocation();
3602 unsigned parenCount = 0;
3603
3604 // We have 1 or more arguments that have closure pointers.
3605 const char *startBuf = SM->getCharacterData(DeclLoc);
3606 const char *startArgList = strchr(startBuf, '(');
3607
3608 assert((*startArgList == '(') && "Rewriter fuzzy parser confused");
3609
3610 parenCount++;
3611 // advance the location to startArgList.
3612 DeclLoc = DeclLoc.getFileLocWithOffset(startArgList-startBuf);
3613 assert((DeclLoc.isValid()) && "Invalid DeclLoc");
3614
3615 const char *argPtr = startArgList;
3616
3617 while (*argPtr++ && parenCount) {
3618 switch (*argPtr) {
3619 case '^':
3620 // Replace the '^' with '*'.
3621 DeclLoc = DeclLoc.getFileLocWithOffset(argPtr-startArgList);
3622 ReplaceText(DeclLoc, 1, "*", 1);
3623 break;
3624 case '(':
3625 parenCount++;
3626 break;
3627 case ')':
3628 parenCount--;
3629 break;
3630 }
3631 }
3632 return;
3633}
3634
3635bool RewriteObjC::PointerTypeTakesAnyBlockArguments(QualType QT) {
3636 const FunctionTypeProto *FTP;
3637 const PointerType *PT = QT->getAsPointerType();
3638 if (PT) {
3639 FTP = PT->getPointeeType()->getAsFunctionTypeProto();
3640 } else {
3641 const BlockPointerType *BPT = QT->getAsBlockPointerType();
3642 assert(BPT && "BlockPointerTypeTakeAnyBlockArguments(): not a block pointer type");
3643 FTP = BPT->getPointeeType()->getAsFunctionTypeProto();
3644 }
3645 if (FTP) {
3646 for (FunctionTypeProto::arg_type_iterator I = FTP->arg_type_begin(),
3647 E = FTP->arg_type_end(); I != E; ++I)
3648 if (isBlockPointerType(*I))
3649 return true;
3650 }
3651 return false;
3652}
3653
3654void RewriteObjC::GetExtentOfArgList(const char *Name,
3655 const char *&LParen, const char *&RParen) {
3656 const char *argPtr = strchr(Name, '(');
3657 assert((*argPtr == '(') && "Rewriter fuzzy parser confused");
3658
3659 LParen = argPtr; // output the start.
3660 argPtr++; // skip past the left paren.
3661 unsigned parenCount = 1;
3662
3663 while (*argPtr && parenCount) {
3664 switch (*argPtr) {
3665 case '(': parenCount++; break;
3666 case ')': parenCount--; break;
3667 default: break;
3668 }
3669 if (parenCount) argPtr++;
3670 }
3671 assert((*argPtr == ')') && "Rewriter fuzzy parser confused");
3672 RParen = argPtr; // output the end
3673}
3674
3675void RewriteObjC::RewriteBlockPointerDecl(NamedDecl *ND) {
3676 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) {
3677 RewriteBlockPointerFunctionArgs(FD);
3678 return;
3679 }
3680 // Handle Variables and Typedefs.
3681 SourceLocation DeclLoc = ND->getLocation();
3682 QualType DeclT;
3683 if (VarDecl *VD = dyn_cast<VarDecl>(ND))
3684 DeclT = VD->getType();
3685 else if (TypedefDecl *TDD = dyn_cast<TypedefDecl>(ND))
3686 DeclT = TDD->getUnderlyingType();
3687 else if (FieldDecl *FD = dyn_cast<FieldDecl>(ND))
3688 DeclT = FD->getType();
3689 else
3690 assert(0 && "RewriteBlockPointerDecl(): Decl type not yet handled");
3691
3692 const char *startBuf = SM->getCharacterData(DeclLoc);
3693 const char *endBuf = startBuf;
3694 // scan backward (from the decl location) for the end of the previous decl.
3695 while (*startBuf != '^' && *startBuf != ';' && startBuf != MainFileStart)
3696 startBuf--;
3697
3698 // *startBuf != '^' if we are dealing with a pointer to function that
3699 // may take block argument types (which will be handled below).
3700 if (*startBuf == '^') {
3701 // Replace the '^' with '*', computing a negative offset.
3702 DeclLoc = DeclLoc.getFileLocWithOffset(startBuf-endBuf);
3703 ReplaceText(DeclLoc, 1, "*", 1);
3704 }
3705 if (PointerTypeTakesAnyBlockArguments(DeclT)) {
3706 // Replace the '^' with '*' for arguments.
3707 DeclLoc = ND->getLocation();
3708 startBuf = SM->getCharacterData(DeclLoc);
3709 const char *argListBegin, *argListEnd;
3710 GetExtentOfArgList(startBuf, argListBegin, argListEnd);
3711 while (argListBegin < argListEnd) {
3712 if (*argListBegin == '^') {
3713 SourceLocation CaretLoc = DeclLoc.getFileLocWithOffset(argListBegin-startBuf);
3714 ReplaceText(CaretLoc, 1, "*", 1);
3715 }
3716 argListBegin++;
3717 }
3718 }
3719 return;
3720}
3721
3722void RewriteObjC::CollectBlockDeclRefInfo(BlockExpr *Exp) {
3723 // Add initializers for any closure decl refs.
3724 GetBlockDeclRefExprs(Exp->getBody());
3725 if (BlockDeclRefs.size()) {
3726 // Unique all "by copy" declarations.
3727 for (unsigned i = 0; i < BlockDeclRefs.size(); i++)
3728 if (!BlockDeclRefs[i]->isByRef())
3729 BlockByCopyDecls.insert(BlockDeclRefs[i]->getDecl());
3730 // Unique all "by ref" declarations.
3731 for (unsigned i = 0; i < BlockDeclRefs.size(); i++)
3732 if (BlockDeclRefs[i]->isByRef()) {
3733 BlockByRefDecls.insert(BlockDeclRefs[i]->getDecl());
3734 }
3735 // Find any imported blocks...they will need special attention.
3736 for (unsigned i = 0; i < BlockDeclRefs.size(); i++)
3737 if (isBlockPointerType(BlockDeclRefs[i]->getType())) {
Steve Naroffe59c8b12008-11-13 17:40:07 +00003738 GetBlockCallExprs(BlockDeclRefs[i]);
Steve Naroff38a9e3f2008-10-27 17:20:55 +00003739 ImportedBlockDecls.insert(BlockDeclRefs[i]->getDecl());
3740 }
3741 }
3742}
3743
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003744FunctionDecl *RewriteObjC::SynthBlockInitFunctionDecl(const char *name) {
3745 IdentifierInfo *ID = &Context->Idents.get(name);
3746 QualType FType = Context->getFunctionTypeNoProto(Context->VoidPtrTy);
3747 return FunctionDecl::Create(*Context, TUDecl,SourceLocation(),
3748 ID, FType, FunctionDecl::Extern, false, 0);
3749}
3750
Steve Naroff80c54752008-10-29 18:15:37 +00003751Stmt *RewriteObjC::SynthBlockInitExpr(BlockExpr *Exp) {
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003752 Blocks.push_back(Exp);
3753
3754 CollectBlockDeclRefInfo(Exp);
3755 std::string FuncName;
3756
3757 if (CurFunctionDef)
3758 FuncName = std::string(CurFunctionDef->getName());
3759 else if (CurMethodDef) {
3760 FuncName = std::string(CurMethodDef->getSelector().getName());
3761 // Convert colons to underscores.
3762 std::string::size_type loc = 0;
3763 while ((loc = FuncName.find(":", loc)) != std::string::npos)
3764 FuncName.replace(loc, 1, "_");
Steve Naroff80c54752008-10-29 18:15:37 +00003765 } else if (GlobalVarDecl)
3766 FuncName = std::string(GlobalVarDecl->getName());
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003767
3768 std::string BlockNumber = utostr(Blocks.size()-1);
3769
3770 std::string Tag = "__" + FuncName + "_block_impl_" + BlockNumber;
3771 std::string Func = "__" + FuncName + "_block_func_" + BlockNumber;
3772
3773 // Get a pointer to the function type so we can cast appropriately.
3774 QualType FType = Context->getPointerType(QualType(Exp->getFunctionType(),0));
3775
3776 FunctionDecl *FD;
3777 Expr *NewRep;
3778
3779 // Simulate a contructor call...
3780 FD = SynthBlockInitFunctionDecl(Tag.c_str());
3781 DeclRefExpr *DRE = new DeclRefExpr(FD, FType, SourceLocation());
3782
3783 llvm::SmallVector<Expr*, 4> InitExprs;
3784
Steve Naroffd0419d62008-10-29 21:23:59 +00003785 // Initialize the block function.
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003786 FD = SynthBlockInitFunctionDecl(Func.c_str());
3787 DeclRefExpr *Arg = new DeclRefExpr(FD, FD->getType(), SourceLocation());
3788 CastExpr *castExpr = new CStyleCastExpr(Context->VoidPtrTy, Arg,
Steve Naroff7f1412d2008-11-03 23:29:32 +00003789 Context->VoidPtrTy, SourceLocation(), SourceLocation());
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003790 InitExprs.push_back(castExpr);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003791
3792 if (ImportedBlockDecls.size()) {
3793 std::string Buf = "__" + FuncName + "_block_copy_" + BlockNumber;
Steve Naroffd0419d62008-10-29 21:23:59 +00003794 FD = SynthBlockInitFunctionDecl(Buf.c_str());
3795 Arg = new DeclRefExpr(FD, FD->getType(), SourceLocation());
3796 castExpr = new CStyleCastExpr(Context->VoidPtrTy, Arg,
Steve Naroff7f1412d2008-11-03 23:29:32 +00003797 Context->VoidPtrTy, SourceLocation(), SourceLocation());
Steve Naroffd0419d62008-10-29 21:23:59 +00003798 InitExprs.push_back(castExpr);
3799
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003800 Buf = "__" + FuncName + "_block_dispose_" + BlockNumber;
Steve Naroffd0419d62008-10-29 21:23:59 +00003801 FD = SynthBlockInitFunctionDecl(Buf.c_str());
3802 Arg = new DeclRefExpr(FD, FD->getType(), SourceLocation());
3803 castExpr = new CStyleCastExpr(Context->VoidPtrTy, Arg,
Steve Naroff7f1412d2008-11-03 23:29:32 +00003804 Context->VoidPtrTy, SourceLocation(), SourceLocation());
Steve Naroffd0419d62008-10-29 21:23:59 +00003805 InitExprs.push_back(castExpr);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003806 }
3807 // Add initializers for any closure decl refs.
3808 if (BlockDeclRefs.size()) {
Steve Naroffd0419d62008-10-29 21:23:59 +00003809 Expr *Exp;
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003810 // Output all "by copy" declarations.
3811 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(),
3812 E = BlockByCopyDecls.end(); I != E; ++I) {
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003813 if (isObjCType((*I)->getType())) {
Steve Naroffd0419d62008-10-29 21:23:59 +00003814 // FIXME: Conform to ABI ([[obj retain] autorelease]).
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003815 FD = SynthBlockInitFunctionDecl((*I)->getIdentifierName());
Steve Naroffd0419d62008-10-29 21:23:59 +00003816 Exp = new DeclRefExpr(FD, FD->getType(), SourceLocation());
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003817 } else if (isBlockPointerType((*I)->getType())) {
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003818 FD = SynthBlockInitFunctionDecl((*I)->getIdentifierName());
Steve Naroffd0419d62008-10-29 21:23:59 +00003819 Arg = new DeclRefExpr(FD, FD->getType(), SourceLocation());
3820 Exp = new CStyleCastExpr(Context->VoidPtrTy, Arg,
Steve Naroff7f1412d2008-11-03 23:29:32 +00003821 Context->VoidPtrTy, SourceLocation(), SourceLocation());
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003822 } else {
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003823 FD = SynthBlockInitFunctionDecl((*I)->getIdentifierName());
Steve Naroffd0419d62008-10-29 21:23:59 +00003824 Exp = new DeclRefExpr(FD, FD->getType(), SourceLocation());
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003825 }
Steve Naroffd0419d62008-10-29 21:23:59 +00003826 InitExprs.push_back(Exp);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003827 }
3828 // Output all "by ref" declarations.
3829 for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(),
3830 E = BlockByRefDecls.end(); I != E; ++I) {
Douglas Gregor24afd4a2008-11-17 14:58:09 +00003831 FD = SynthBlockInitFunctionDecl((*I)->getIdentifierName());
Steve Naroffd0419d62008-10-29 21:23:59 +00003832 Exp = new DeclRefExpr(FD, FD->getType(), SourceLocation());
3833 Exp = new UnaryOperator(Exp, UnaryOperator::AddrOf,
3834 Context->getPointerType(Exp->getType()),
3835 SourceLocation());
Steve Naroff362c7562008-11-14 21:36:12 +00003836 InitExprs.push_back(Exp);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003837 }
3838 }
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003839 NewRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
3840 FType, SourceLocation());
3841 NewRep = new UnaryOperator(NewRep, UnaryOperator::AddrOf,
3842 Context->getPointerType(NewRep->getType()),
3843 SourceLocation());
Steve Naroff7f1412d2008-11-03 23:29:32 +00003844 NewRep = new CStyleCastExpr(FType, NewRep, FType, SourceLocation(), SourceLocation());
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003845 BlockDeclRefs.clear();
3846 BlockByRefDecls.clear();
3847 BlockByCopyDecls.clear();
3848 ImportedBlockDecls.clear();
3849 return NewRep;
3850}
3851
3852//===----------------------------------------------------------------------===//
3853// Function Body / Expression rewriting
3854//===----------------------------------------------------------------------===//
3855
3856Stmt *RewriteObjC::RewriteFunctionBodyOrGlobalInitializer(Stmt *S) {
3857 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
3858 isa<DoStmt>(S) || isa<ForStmt>(S))
3859 Stmts.push_back(S);
3860 else if (isa<ObjCForCollectionStmt>(S)) {
3861 Stmts.push_back(S);
3862 ObjCBcLabelNo.push_back(++BcLabelCount);
3863 }
3864
3865 SourceRange OrigStmtRange = S->getSourceRange();
3866
3867 // Perform a bottom up rewrite of all children.
3868 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end();
3869 CI != E; ++CI)
3870 if (*CI) {
3871 Stmt *newStmt = RewriteFunctionBodyOrGlobalInitializer(*CI);
3872 if (newStmt)
3873 *CI = newStmt;
3874 }
3875
3876 if (BlockExpr *BE = dyn_cast<BlockExpr>(S)) {
3877 // Rewrite the block body in place.
3878 RewriteFunctionBodyOrGlobalInitializer(BE->getBody());
3879
3880 // Now we snarf the rewritten text and stash it away for later use.
Steve Naroff80c54752008-10-29 18:15:37 +00003881 std::string Str = Rewrite.getRewritenText(BE->getSourceRange());
3882 RewrittenBlockExprs[BE] = Str;
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003883
3884 Stmt *blockTranscribed = SynthBlockInitExpr(BE);
3885 //blockTranscribed->dump();
Steve Naroff80c54752008-10-29 18:15:37 +00003886 ReplaceStmt(S, blockTranscribed);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003887 return blockTranscribed;
3888 }
3889 // Handle specific things.
3890 if (ObjCEncodeExpr *AtEncode = dyn_cast<ObjCEncodeExpr>(S))
3891 return RewriteAtEncode(AtEncode);
3892
3893 if (ObjCIvarRefExpr *IvarRefExpr = dyn_cast<ObjCIvarRefExpr>(S))
3894 return RewriteObjCIvarRefExpr(IvarRefExpr, OrigStmtRange.getBegin());
3895
3896 if (ObjCSelectorExpr *AtSelector = dyn_cast<ObjCSelectorExpr>(S))
3897 return RewriteAtSelector(AtSelector);
3898
3899 if (ObjCStringLiteral *AtString = dyn_cast<ObjCStringLiteral>(S))
3900 return RewriteObjCStringLiteral(AtString);
3901
3902 if (ObjCMessageExpr *MessExpr = dyn_cast<ObjCMessageExpr>(S)) {
3903 // Before we rewrite it, put the original message expression in a comment.
3904 SourceLocation startLoc = MessExpr->getLocStart();
3905 SourceLocation endLoc = MessExpr->getLocEnd();
3906
3907 const char *startBuf = SM->getCharacterData(startLoc);
3908 const char *endBuf = SM->getCharacterData(endLoc);
3909
3910 std::string messString;
3911 messString += "// ";
3912 messString.append(startBuf, endBuf-startBuf+1);
3913 messString += "\n";
3914
3915 // FIXME: Missing definition of
3916 // InsertText(clang::SourceLocation, char const*, unsigned int).
3917 // InsertText(startLoc, messString.c_str(), messString.size());
3918 // Tried this, but it didn't work either...
3919 // ReplaceText(startLoc, 0, messString.c_str(), messString.size());
3920 return RewriteMessageExpr(MessExpr);
3921 }
3922
3923 if (ObjCAtTryStmt *StmtTry = dyn_cast<ObjCAtTryStmt>(S))
3924 return RewriteObjCTryStmt(StmtTry);
3925
3926 if (ObjCAtSynchronizedStmt *StmtTry = dyn_cast<ObjCAtSynchronizedStmt>(S))
3927 return RewriteObjCSynchronizedStmt(StmtTry);
3928
3929 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S))
3930 return RewriteObjCThrowStmt(StmtThrow);
3931
3932 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S))
3933 return RewriteObjCProtocolExpr(ProtocolExp);
3934
3935 if (ObjCForCollectionStmt *StmtForCollection =
3936 dyn_cast<ObjCForCollectionStmt>(S))
3937 return RewriteObjCForCollectionStmt(StmtForCollection,
3938 OrigStmtRange.getEnd());
3939 if (BreakStmt *StmtBreakStmt =
3940 dyn_cast<BreakStmt>(S))
3941 return RewriteBreakStmt(StmtBreakStmt);
3942 if (ContinueStmt *StmtContinueStmt =
3943 dyn_cast<ContinueStmt>(S))
3944 return RewriteContinueStmt(StmtContinueStmt);
3945
3946 // Need to check for protocol refs (id <P>, Foo <P> *) in variable decls
3947 // and cast exprs.
3948 if (DeclStmt *DS = dyn_cast<DeclStmt>(S)) {
3949 // FIXME: What we're doing here is modifying the type-specifier that
3950 // precedes the first Decl. In the future the DeclGroup should have
3951 // a separate type-specifier that we can rewrite.
3952 RewriteObjCQualifiedInterfaceTypes(*DS->decl_begin());
3953
3954 // Blocks rewrite rules.
3955 for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end();
3956 DI != DE; ++DI) {
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003957 ScopedDecl *SD = *DI;
3958 if (ValueDecl *ND = dyn_cast<ValueDecl>(SD)) {
3959 if (isBlockPointerType(ND->getType()))
3960 RewriteBlockPointerDecl(ND);
3961 else if (ND->getType()->isFunctionPointerType())
3962 CheckFunctionPointerDecl(ND->getType(), ND);
3963 }
3964 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(SD)) {
3965 if (isBlockPointerType(TD->getUnderlyingType()))
3966 RewriteBlockPointerDecl(TD);
3967 else if (TD->getUnderlyingType()->isFunctionPointerType())
3968 CheckFunctionPointerDecl(TD->getUnderlyingType(), TD);
3969 }
3970 }
3971 }
3972
3973 if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(S))
3974 RewriteObjCQualifiedInterfaceTypes(CE);
3975
3976 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
3977 isa<DoStmt>(S) || isa<ForStmt>(S)) {
3978 assert(!Stmts.empty() && "Statement stack is empty");
3979 assert ((isa<SwitchStmt>(Stmts.back()) || isa<WhileStmt>(Stmts.back()) ||
3980 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
3981 && "Statement stack mismatch");
3982 Stmts.pop_back();
3983 }
3984 // Handle blocks rewriting.
3985 if (BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(S)) {
3986 if (BDRE->isByRef())
3987 RewriteBlockDeclRefExpr(BDRE);
3988 }
3989 if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
Steve Naroff85eb17b2008-10-30 10:07:53 +00003990 if (CE->getCallee()->getType()->isBlockPointerType()) {
3991 Stmt *BlockCall = SynthesizeBlockCall(CE);
3992 ReplaceStmt(S, BlockCall);
3993 return BlockCall;
3994 }
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003995 }
Steve Naroff7f1412d2008-11-03 23:29:32 +00003996 if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(S)) {
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00003997 RewriteCastExpr(CE);
3998 }
3999#if 0
4000 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(S)) {
4001 CastExpr *Replacement = new CastExpr(ICE->getType(), ICE->getSubExpr(), SourceLocation());
4002 // Get the new text.
4003 std::string SStr;
4004 llvm::raw_string_ostream Buf(SStr);
4005 Replacement->printPretty(Buf);
4006 const std::string &Str = Buf.str();
4007
4008 printf("CAST = %s\n", &Str[0]);
4009 InsertText(ICE->getSubExpr()->getLocStart(), &Str[0], Str.size());
4010 delete S;
4011 return Replacement;
4012 }
4013#endif
4014 // Return this stmt unmodified.
4015 return S;
4016}
4017
4018/// HandleDeclInMainFile - This is called for each top-level decl defined in the
4019/// main file of the input.
4020void RewriteObjC::HandleDeclInMainFile(Decl *D) {
4021 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
4022 // Since function prototypes don't have ParmDecl's, we check the function
4023 // prototype. This enables us to rewrite function declarations and
4024 // definitions using the same code.
4025 RewriteBlocksInFunctionTypeProto(FD->getType(), FD);
4026
4027 if (Stmt *Body = FD->getBody()) {
4028 CurFunctionDef = FD;
4029 FD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
4030 // This synthesizes and inserts the block "impl" struct, invoke function,
4031 // and any copy/dispose helper functions.
4032 InsertBlockLiteralsWithinFunction(FD);
4033 CurFunctionDef = 0;
4034 }
4035 return;
4036 }
4037 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
4038 if (Stmt *Body = MD->getBody()) {
4039 //Body->dump();
4040 CurMethodDef = MD;
4041 MD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
4042 InsertBlockLiteralsWithinMethod(MD);
4043 CurMethodDef = 0;
4044 }
4045 }
4046 if (ObjCImplementationDecl *CI = dyn_cast<ObjCImplementationDecl>(D))
4047 ClassImplementation.push_back(CI);
4048 else if (ObjCCategoryImplDecl *CI = dyn_cast<ObjCCategoryImplDecl>(D))
4049 CategoryImplementation.push_back(CI);
4050 else if (ObjCClassDecl *CD = dyn_cast<ObjCClassDecl>(D))
4051 RewriteForwardClassDecl(CD);
4052 else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
4053 RewriteObjCQualifiedInterfaceTypes(VD);
Steve Naroff80c54752008-10-29 18:15:37 +00004054 if (isBlockPointerType(VD->getType()))
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004055 RewriteBlockPointerDecl(VD);
Steve Naroff80c54752008-10-29 18:15:37 +00004056 else if (VD->getType()->isFunctionPointerType()) {
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004057 CheckFunctionPointerDecl(VD->getType(), VD);
4058 if (VD->getInit()) {
Steve Naroff7f1412d2008-11-03 23:29:32 +00004059 if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(VD->getInit())) {
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004060 RewriteCastExpr(CE);
4061 }
4062 }
4063 }
Steve Naroff80c54752008-10-29 18:15:37 +00004064 if (VD->getInit()) {
4065 GlobalVarDecl = VD;
4066 RewriteFunctionBodyOrGlobalInitializer(VD->getInit());
Douglas Gregor24afd4a2008-11-17 14:58:09 +00004067 SynthesizeBlockLiterals(VD->getTypeSpecStartLoc(),
4068 VD->getIdentifierName());
Steve Naroff80c54752008-10-29 18:15:37 +00004069 GlobalVarDecl = 0;
4070
4071 // This is needed for blocks.
Steve Naroff7f1412d2008-11-03 23:29:32 +00004072 if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(VD->getInit())) {
Steve Naroff80c54752008-10-29 18:15:37 +00004073 RewriteCastExpr(CE);
4074 }
4075 }
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004076 return;
4077 }
4078 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) {
4079 if (isBlockPointerType(TD->getUnderlyingType()))
4080 RewriteBlockPointerDecl(TD);
4081 else if (TD->getUnderlyingType()->isFunctionPointerType())
4082 CheckFunctionPointerDecl(TD->getUnderlyingType(), TD);
4083 return;
4084 }
4085 if (RecordDecl *RD = dyn_cast<RecordDecl>(D)) {
4086 if (RD->isDefinition()) {
4087 for (RecordDecl::field_const_iterator i = RD->field_begin(),
4088 e = RD->field_end(); i != e; ++i) {
4089 FieldDecl *FD = *i;
4090 if (isBlockPointerType(FD->getType()))
4091 RewriteBlockPointerDecl(FD);
4092 }
4093 }
4094 return;
4095 }
4096 // Nothing yet.
4097}
4098
4099void RewriteObjC::HandleTranslationUnit(TranslationUnit& TU) {
4100 // Get the top-level buffer that this corresponds to.
4101
4102 // Rewrite tabs if we care.
4103 //RewriteTabs();
4104
4105 if (Diags.hasErrorOccurred())
4106 return;
4107
4108 // Create the output file.
4109
4110 llvm::OwningPtr<llvm::raw_ostream> OwnedStream;
4111 llvm::raw_ostream *OutFile;
4112 if (OutFileName == "-") {
4113 OutFile = &llvm::outs();
4114 } else if (!OutFileName.empty()) {
4115 std::string Err;
Daniel Dunbar8fc9ba62008-11-13 05:09:21 +00004116 OutFile = new llvm::raw_fd_ostream(OutFileName.c_str(), false, Err);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004117 OwnedStream.reset(OutFile);
4118 } else if (InFileName == "-") {
4119 OutFile = &llvm::outs();
4120 } else {
4121 llvm::sys::Path Path(InFileName);
4122 Path.eraseSuffix();
4123 Path.appendSuffix("cpp");
4124 std::string Err;
Daniel Dunbar8fc9ba62008-11-13 05:09:21 +00004125 OutFile = new llvm::raw_fd_ostream(Path.toString().c_str(), false, Err);
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004126 OwnedStream.reset(OutFile);
4127 }
4128
4129 RewriteInclude();
4130
4131 InsertText(SourceLocation::getFileLoc(MainFileID, 0),
4132 Preamble.c_str(), Preamble.size(), false);
4133
Steve Naroff901d8fd2008-11-14 14:10:01 +00004134 if (ClassImplementation.size() || CategoryImplementation.size())
4135 RewriteImplementations();
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004136
4137 // Get the buffer corresponding to MainFileID. If we haven't changed it, then
4138 // we are done.
4139 if (const RewriteBuffer *RewriteBuf =
4140 Rewrite.getRewriteBufferFor(MainFileID)) {
4141 //printf("Changed:\n");
4142 *OutFile << std::string(RewriteBuf->begin(), RewriteBuf->end());
4143 } else {
4144 fprintf(stderr, "No changes\n");
4145 }
Steve Naroff21658f62008-11-13 20:07:04 +00004146
Steve Naroff901d8fd2008-11-14 14:10:01 +00004147 if (ClassImplementation.size() || CategoryImplementation.size()) {
4148 // Rewrite Objective-c meta data*
4149 std::string ResultStr;
4150 SynthesizeMetaDataIntoBuffer(ResultStr);
4151 // Emit metadata.
4152 *OutFile << ResultStr;
4153 }
Steve Naroff0f3b9eb2008-10-28 20:29:00 +00004154 OutFile->flush();
4155}
4156