blob: 80b5784bdfac98b3457aefa74e2974b5c0b8d58a [file] [log] [blame]
Steve Naroffb29b4272008-04-14 22:03:09 +00001//===--- RewriteObjC.cpp - Playground for the code rewriter ---------------===//
Chris Lattner77cd2a02007-10-11 00:43:27 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-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 Lattner77cd2a02007-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 Lattner8a12c272007-10-11 18:38:32 +000015#include "clang/Rewrite/Rewriter.h"
Chris Lattner77cd2a02007-10-11 00:43:27 +000016#include "clang/AST/AST.h"
17#include "clang/AST/ASTConsumer.h"
Ted Kremeneke3a61982008-05-31 20:11:04 +000018#include "clang/AST/TranslationUnit.h"
Chris Lattner8a12c272007-10-11 18:38:32 +000019#include "clang/Basic/SourceManager.h"
Steve Naroffebf2b562007-10-23 23:50:29 +000020#include "clang/Basic/IdentifierTable.h"
Chris Lattner07506182007-11-30 22:53:43 +000021#include "clang/Basic/Diagnostic.h"
Chris Lattner26de4652007-12-02 01:13:47 +000022#include "clang/Lex/Lexer.h"
Chris Lattner158ecb92007-10-25 17:07:24 +000023#include "llvm/ADT/StringExtras.h"
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +000024#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner26de4652007-12-02 01:13:47 +000025#include "llvm/Support/MemoryBuffer.h"
Steve Naroff0113c9d2008-01-28 21:34:52 +000026#include "llvm/Support/CommandLine.h"
Dan Gohman63e2dcc2008-05-21 20:19:16 +000027#include "llvm/Support/Streams.h"
Chris Lattnerc68ab772008-03-22 00:08:40 +000028#include "llvm/System/Path.h"
Steve Naroff0d4e9632008-04-14 22:53:48 +000029#include <sstream>
Chris Lattnerc68ab772008-03-22 00:08:40 +000030#include <fstream>
Chris Lattner77cd2a02007-10-11 00:43:27 +000031using namespace clang;
Chris Lattner158ecb92007-10-25 17:07:24 +000032using llvm::utostr;
Chris Lattner77cd2a02007-10-11 00:43:27 +000033
Steve Naroff0113c9d2008-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 Lattner77cd2a02007-10-11 00:43:27 +000038namespace {
Steve Naroffb29b4272008-04-14 22:03:09 +000039 class RewriteObjC : public ASTConsumer {
Chris Lattner2c64b7b2007-10-16 21:07:07 +000040 Rewriter Rewrite;
Chris Lattnere365c502007-11-30 22:25:36 +000041 Diagnostic &Diags;
Steve Naroff4f943c22008-03-10 20:43:59 +000042 const LangOptions &LangOpts;
Steve Narofff69cc5d2008-01-30 19:17:43 +000043 unsigned RewriteFailedDiag;
44
Chris Lattner01c57482007-10-17 22:35:30 +000045 ASTContext *Context;
Chris Lattner77cd2a02007-10-11 00:43:27 +000046 SourceManager *SM;
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +000047 TranslationUnitDecl *TUDecl;
Chris Lattner8a12c272007-10-11 18:38:32 +000048 unsigned MainFileID;
Chris Lattner26de4652007-12-02 01:13:47 +000049 const char *MainFileStart, *MainFileEnd;
Chris Lattner2c64b7b2007-10-16 21:07:07 +000050 SourceLocation LastIncLoc;
Steve Naroffba92b2e2008-03-27 22:29:16 +000051
Ted Kremeneka526c5c2008-01-07 19:49:32 +000052 llvm::SmallVector<ObjCImplementationDecl *, 8> ClassImplementation;
53 llvm::SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation;
54 llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCSynthesizedStructs;
Steve Narofffbfe8252008-05-06 18:26:51 +000055 llvm::SmallPtrSet<ObjCProtocolDecl*, 8> ObjCSynthesizedProtocols;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000056 llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCForwardDecls;
57 llvm::DenseMap<ObjCMethodDecl*, std::string> MethodInternalNames;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +000058 llvm::SmallVector<Stmt *, 32> Stmts;
59 llvm::SmallVector<int, 8> ObjCBcLabelNo;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +000060 llvm::SmallVector<const RecordType *, 8> EncodingRecordTypes;
Steve Naroffebf2b562007-10-23 23:50:29 +000061
Steve Naroffd82a9ab2008-03-15 00:55:56 +000062 unsigned NumObjCStringLiterals;
63
Steve Naroffebf2b562007-10-23 23:50:29 +000064 FunctionDecl *MsgSendFunctionDecl;
Steve Naroff874e2322007-11-15 10:28:18 +000065 FunctionDecl *MsgSendSuperFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +000066 FunctionDecl *MsgSendStretFunctionDecl;
67 FunctionDecl *MsgSendSuperStretFunctionDecl;
Fariborz Jahanianacb49772007-12-03 21:26:48 +000068 FunctionDecl *MsgSendFpretFunctionDecl;
Steve Naroffebf2b562007-10-23 23:50:29 +000069 FunctionDecl *GetClassFunctionDecl;
Steve Naroff9bcb5fc2007-12-07 03:50:46 +000070 FunctionDecl *GetMetaClassFunctionDecl;
Steve Naroff934f2762007-10-24 22:48:43 +000071 FunctionDecl *SelGetUidFunctionDecl;
Steve Naroff96984642007-11-08 14:30:50 +000072 FunctionDecl *CFStringFunctionDecl;
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +000073 FunctionDecl *GetProtocolFunctionDecl;
Steve Naroffc0a123c2008-03-11 17:37:02 +000074 FunctionDecl *SuperContructorFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +000075
Steve Naroffbeaf2992007-11-03 11:27:19 +000076 // ObjC string constant support.
Steve Naroff248a7532008-04-15 22:42:06 +000077 VarDecl *ConstantStringClassReference;
Steve Naroffbeaf2992007-11-03 11:27:19 +000078 RecordDecl *NSStringRecord;
Steve Naroffab972d32007-11-04 22:37:50 +000079
Fariborz Jahanianb586cce2008-01-16 00:09:11 +000080 // ObjC foreach break/continue generation support.
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +000081 int BcLabelCount;
82
Steve Naroff874e2322007-11-15 10:28:18 +000083 // Needed for super.
Ted Kremeneka526c5c2008-01-07 19:49:32 +000084 ObjCMethodDecl *CurMethodDecl;
Steve Naroff874e2322007-11-15 10:28:18 +000085 RecordDecl *SuperStructDecl;
Steve Naroffd82a9ab2008-03-15 00:55:56 +000086 RecordDecl *ConstantStringDecl;
Steve Naroff874e2322007-11-15 10:28:18 +000087
Fariborz Jahanianb4b2f0c2008-01-18 01:15:54 +000088 // Needed for header files being rewritten
89 bool IsHeader;
90
Steve Naroffa7b402d2008-03-28 22:26:09 +000091 std::string InFileName;
92 std::string OutFileName;
93
Steve Naroffba92b2e2008-03-27 22:29:16 +000094 std::string Preamble;
95
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +000096 static const int OBJC_ABI_VERSION =7 ;
Chris Lattner77cd2a02007-10-11 00:43:27 +000097 public:
Ted Kremeneke3a61982008-05-31 20:11:04 +000098 virtual void Initialize(ASTContext &context);
99
100 virtual void InitializeTU(TranslationUnit &TU) {
101 TU.SetOwnsDecls(false);
102 Initialize(TU.getContext());
103 }
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000104
Chris Lattner8a12c272007-10-11 18:38:32 +0000105
Chris Lattnerf04da132007-10-24 17:06:59 +0000106 // Top Level Driver code.
107 virtual void HandleTopLevelDecl(Decl *D);
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000108 void HandleDeclInMainFile(Decl *D);
Steve Naroffb29b4272008-04-14 22:03:09 +0000109 RewriteObjC(std::string inFile, std::string outFile,
Steve Naroffa7b402d2008-03-28 22:26:09 +0000110 Diagnostic &D, const LangOptions &LOpts);
Steve Naroffb29b4272008-04-14 22:03:09 +0000111 ~RewriteObjC();
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000112
113 void ReplaceStmt(Stmt *Old, Stmt *New) {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000114 // If replacement succeeded or warning disabled return with no warning.
115 if (!Rewrite.ReplaceStmt(Old, New) || SilenceRewriteMacroWarning)
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000116 return;
117
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000118 SourceRange Range = Old->getSourceRange();
119 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag,
120 0, 0, &Range, 1);
121 }
122
Steve Naroffba92b2e2008-03-27 22:29:16 +0000123 void InsertText(SourceLocation Loc, const char *StrData, unsigned StrLen,
124 bool InsertAfter = true) {
Chris Lattneraadaf782008-01-31 19:51:04 +0000125 // If insertion succeeded or warning disabled return with no warning.
Steve Naroffba92b2e2008-03-27 22:29:16 +0000126 if (!Rewrite.InsertText(Loc, StrData, StrLen, InsertAfter) ||
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000127 SilenceRewriteMacroWarning)
128 return;
129
130 Diags.Report(Context->getFullLoc(Loc), RewriteFailedDiag);
131 }
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000132
Chris Lattneraadaf782008-01-31 19:51:04 +0000133 void RemoveText(SourceLocation Loc, unsigned StrLen) {
134 // If removal succeeded or warning disabled return with no warning.
135 if (!Rewrite.RemoveText(Loc, StrLen) || SilenceRewriteMacroWarning)
136 return;
137
138 Diags.Report(Context->getFullLoc(Loc), RewriteFailedDiag);
139 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000140
Chris Lattneraadaf782008-01-31 19:51:04 +0000141 void ReplaceText(SourceLocation Start, unsigned OrigLength,
142 const char *NewStr, unsigned NewLength) {
143 // If removal succeeded or warning disabled return with no warning.
144 if (!Rewrite.ReplaceText(Start, OrigLength, NewStr, NewLength) ||
145 SilenceRewriteMacroWarning)
146 return;
147
148 Diags.Report(Context->getFullLoc(Start), RewriteFailedDiag);
149 }
150
Chris Lattnerf04da132007-10-24 17:06:59 +0000151 // Syntactic Rewriting.
Steve Naroffab972d32007-11-04 22:37:50 +0000152 void RewritePrologue(SourceLocation Loc);
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000153 void RewriteInclude();
Chris Lattnerf04da132007-10-24 17:06:59 +0000154 void RewriteTabs();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000155 void RewriteForwardClassDecl(ObjCClassDecl *Dcl);
156 void RewriteInterfaceDecl(ObjCInterfaceDecl *Dcl);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000157 void RewriteImplementationDecl(NamedDecl *Dcl);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000158 void RewriteObjCMethodDecl(ObjCMethodDecl *MDecl, std::string &ResultStr);
159 void RewriteCategoryDecl(ObjCCategoryDecl *Dcl);
160 void RewriteProtocolDecl(ObjCProtocolDecl *Dcl);
161 void RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *Dcl);
162 void RewriteMethodDeclaration(ObjCMethodDecl *Method);
Chris Lattner55d13b42008-03-16 21:23:50 +0000163 void RewriteProperties(unsigned nProperties, ObjCPropertyDecl **Properties);
Steve Naroff09b266e2007-10-30 23:14:51 +0000164 void RewriteFunctionDecl(FunctionDecl *FD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000165 void RewriteObjCQualifiedInterfaceTypes(Decl *Dcl);
Steve Naroffd5255f52007-11-01 13:24:47 +0000166 bool needToScanForQualifiers(QualType T);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000167 ObjCInterfaceDecl *isSuperReceiver(Expr *recExpr);
Steve Naroff874e2322007-11-15 10:28:18 +0000168 QualType getSuperStructType();
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000169 QualType getConstantStringStructType();
Steve Naroffbaf58c32008-05-31 14:15:04 +0000170 bool BufferContainsPPDirectives(const char *startBuf, const char *endBuf);
Chris Lattner311ff022007-10-16 22:36:42 +0000171
Chris Lattnerf04da132007-10-24 17:06:59 +0000172 // Expression Rewriting.
Steve Narofff3473a72007-11-09 15:20:18 +0000173 Stmt *RewriteFunctionBodyOrGlobalInitializer(Stmt *S);
Chris Lattnere64b7772007-10-24 16:57:36 +0000174 Stmt *RewriteAtEncode(ObjCEncodeExpr *Exp);
Chris Lattner3b2c58c2008-05-23 20:40:52 +0000175 Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV, SourceLocation OrigStart);
Steve Naroffb42f8412007-11-05 14:50:49 +0000176 Stmt *RewriteAtSelector(ObjCSelectorExpr *Exp);
Chris Lattnere64b7772007-10-24 16:57:36 +0000177 Stmt *RewriteMessageExpr(ObjCMessageExpr *Exp);
Steve Naroffbeaf2992007-11-03 11:27:19 +0000178 Stmt *RewriteObjCStringLiteral(ObjCStringLiteral *Exp);
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +0000179 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000180 Stmt *RewriteObjCTryStmt(ObjCAtTryStmt *S);
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000181 Stmt *RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000182 Stmt *RewriteObjCCatchStmt(ObjCAtCatchStmt *S);
183 Stmt *RewriteObjCFinallyStmt(ObjCAtFinallyStmt *S);
184 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
Chris Lattner338d1e22008-01-31 05:10:40 +0000185 Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
186 SourceLocation OrigEnd);
Steve Naroff934f2762007-10-24 22:48:43 +0000187 CallExpr *SynthesizeCallToFunctionDecl(FunctionDecl *FD,
188 Expr **args, unsigned nargs);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000189 Stmt *SynthMessageExpr(ObjCMessageExpr *Exp);
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000190 Stmt *RewriteBreakStmt(BreakStmt *S);
191 Stmt *RewriteContinueStmt(ContinueStmt *S);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000192 void SynthCountByEnumWithState(std::string &buf);
193
Steve Naroff09b266e2007-10-30 23:14:51 +0000194 void SynthMsgSendFunctionDecl();
Steve Naroff874e2322007-11-15 10:28:18 +0000195 void SynthMsgSendSuperFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +0000196 void SynthMsgSendStretFunctionDecl();
Fariborz Jahanianacb49772007-12-03 21:26:48 +0000197 void SynthMsgSendFpretFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +0000198 void SynthMsgSendSuperStretFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +0000199 void SynthGetClassFunctionDecl();
Steve Naroff9bcb5fc2007-12-07 03:50:46 +0000200 void SynthGetMetaClassFunctionDecl();
Fariborz Jahaniana70711b2007-12-04 21:47:40 +0000201 void SynthSelGetUidFunctionDecl();
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +0000202 void SynthGetProtocolFunctionDecl();
Steve Naroffc0a123c2008-03-11 17:37:02 +0000203 void SynthSuperContructorFunctionDecl();
Steve Naroff96984642007-11-08 14:30:50 +0000204
Chris Lattnerf04da132007-10-24 17:06:59 +0000205 // Metadata emission.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000206 void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +0000207 std::string &Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000208
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000209 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +0000210 std::string &Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000211
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000212 typedef ObjCCategoryImplDecl::instmeth_iterator instmeth_iterator;
213 void RewriteObjCMethodsMetaData(instmeth_iterator MethodBegin,
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000214 instmeth_iterator MethodEnd,
Fariborz Jahanian8e991ba2007-10-25 00:14:44 +0000215 bool IsInstanceMethod,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000216 const char *prefix,
Chris Lattner158ecb92007-10-25 17:07:24 +0000217 const char *ClassName,
218 std::string &Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000219
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000220 void RewriteObjCProtocolsMetaData(ObjCProtocolDecl **Protocols,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000221 int NumProtocols,
222 const char *prefix,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +0000223 const char *ClassName,
224 std::string &Result);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000225 void SynthesizeObjCInternalStruct(ObjCInterfaceDecl *CDecl,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +0000226 std::string &Result);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000227 void SynthesizeIvarOffsetComputation(ObjCImplementationDecl *IDecl,
228 ObjCIvarDecl *ivar,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +0000229 std::string &Result);
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +0000230 void RewriteImplementations(std::string &Result);
Chris Lattner77cd2a02007-10-11 00:43:27 +0000231 };
232}
233
Fariborz Jahanianb4b2f0c2008-01-18 01:15:54 +0000234static bool IsHeaderFile(const std::string &Filename) {
235 std::string::size_type DotPos = Filename.rfind('.');
236
237 if (DotPos == std::string::npos) {
238 // no file extension
239 return false;
240 }
241
242 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
243 // C header: .h
244 // C++ header: .hh or .H;
245 return Ext == "h" || Ext == "hh" || Ext == "H";
246}
247
Steve Naroffb29b4272008-04-14 22:03:09 +0000248RewriteObjC::RewriteObjC(std::string inFile, std::string outFile,
Steve Naroffa7b402d2008-03-28 22:26:09 +0000249 Diagnostic &D, const LangOptions &LOpts)
250 : Diags(D), LangOpts(LOpts) {
251 IsHeader = IsHeaderFile(inFile);
252 InFileName = inFile;
253 OutFileName = outFile;
254 RewriteFailedDiag = Diags.getCustomDiagID(Diagnostic::Warning,
255 "rewriting sub-expression within a macro (may not be correct)");
256}
257
Fariborz Jahanianb4b2f0c2008-01-18 01:15:54 +0000258ASTConsumer *clang::CreateCodeRewriterTest(const std::string& InFile,
Chris Lattnerc68ab772008-03-22 00:08:40 +0000259 const std::string& OutFile,
Steve Naroff4f943c22008-03-10 20:43:59 +0000260 Diagnostic &Diags,
261 const LangOptions &LOpts) {
Steve Naroffb29b4272008-04-14 22:03:09 +0000262 return new RewriteObjC(InFile, OutFile, Diags, LOpts);
Chris Lattnere365c502007-11-30 22:25:36 +0000263}
Chris Lattner77cd2a02007-10-11 00:43:27 +0000264
Steve Naroffb29b4272008-04-14 22:03:09 +0000265void RewriteObjC::Initialize(ASTContext &context) {
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000266 Context = &context;
267 SM = &Context->getSourceManager();
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +0000268 TUDecl = Context->getTranslationUnitDecl();
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000269 MsgSendFunctionDecl = 0;
270 MsgSendSuperFunctionDecl = 0;
271 MsgSendStretFunctionDecl = 0;
272 MsgSendSuperStretFunctionDecl = 0;
273 MsgSendFpretFunctionDecl = 0;
274 GetClassFunctionDecl = 0;
275 GetMetaClassFunctionDecl = 0;
276 SelGetUidFunctionDecl = 0;
277 CFStringFunctionDecl = 0;
278 GetProtocolFunctionDecl = 0;
279 ConstantStringClassReference = 0;
280 NSStringRecord = 0;
281 CurMethodDecl = 0;
282 SuperStructDecl = 0;
Steve Naroff9630ec52008-03-27 22:59:54 +0000283 ConstantStringDecl = 0;
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000284 BcLabelCount = 0;
Steve Naroffc0a123c2008-03-11 17:37:02 +0000285 SuperContructorFunctionDecl = 0;
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000286 NumObjCStringLiterals = 0;
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000287
288 // Get the ID and start/end of the main file.
289 MainFileID = SM->getMainFileID();
290 const llvm::MemoryBuffer *MainBuf = SM->getBuffer(MainFileID);
291 MainFileStart = MainBuf->getBufferStart();
292 MainFileEnd = MainBuf->getBufferEnd();
Steve Naroffba92b2e2008-03-27 22:29:16 +0000293
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000294 Rewrite.setSourceMgr(Context->getSourceManager());
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000295
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000296 // declaring objc_selector outside the parameter list removes a silly
297 // scope related warning...
Steve Naroffba92b2e2008-03-27 22:29:16 +0000298 if (IsHeader)
299 Preamble = "#pragma once\n";
300 Preamble += "struct objc_selector; struct objc_class;\n";
301 Preamble += "#ifndef OBJC_SUPER\n";
302 Preamble += "struct objc_super { struct objc_object *object; ";
303 Preamble += "struct objc_object *superClass; ";
Steve Naroffc0a123c2008-03-11 17:37:02 +0000304 if (LangOpts.Microsoft) {
305 // Add a constructor for creating temporary objects.
Steve Naroffba92b2e2008-03-27 22:29:16 +0000306 Preamble += "objc_super(struct objc_object *o, struct objc_object *s) : ";
307 Preamble += "object(o), superClass(s) {} ";
Steve Naroffc0a123c2008-03-11 17:37:02 +0000308 }
Steve Naroffba92b2e2008-03-27 22:29:16 +0000309 Preamble += "};\n";
310 Preamble += "#define OBJC_SUPER\n";
311 Preamble += "#endif\n";
312 Preamble += "#ifndef _REWRITER_typedef_Protocol\n";
313 Preamble += "typedef struct objc_object Protocol;\n";
314 Preamble += "#define _REWRITER_typedef_Protocol\n";
315 Preamble += "#endif\n";
Steve Naroff3c64d9e2008-03-12 13:19:12 +0000316 if (LangOpts.Microsoft)
Steve Naroff69c827f2008-05-06 22:45:19 +0000317 Preamble += "#define __OBJC_RW_EXTERN extern \"C\" __declspec(dllimport)\n";
318 else
319 Preamble += "#define __OBJC_RW_EXTERN extern\n";
320 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSend";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000321 Preamble += "(struct objc_object *, struct objc_selector *, ...);\n";
Steve Naroff69c827f2008-05-06 22:45:19 +0000322 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSendSuper";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000323 Preamble += "(struct objc_super *, struct objc_selector *, ...);\n";
Steve Naroff69c827f2008-05-06 22:45:19 +0000324 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSend_stret";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000325 Preamble += "(struct objc_object *, struct objc_selector *, ...);\n";
Steve Naroff69c827f2008-05-06 22:45:19 +0000326 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_msgSendSuper_stret";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000327 Preamble += "(struct objc_super *, struct objc_selector *, ...);\n";
Steve Naroff1284db82008-05-08 22:02:18 +0000328 Preamble += "__OBJC_RW_EXTERN double objc_msgSend_fpret";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000329 Preamble += "(struct objc_object *, struct objc_selector *, ...);\n";
Steve Narofff0757612008-05-08 17:52:16 +0000330 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_getClass";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000331 Preamble += "(const char *);\n";
Steve Naroff69c827f2008-05-06 22:45:19 +0000332 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_getMetaClass";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000333 Preamble += "(const char *);\n";
Steve Naroff69c827f2008-05-06 22:45:19 +0000334 Preamble += "__OBJC_RW_EXTERN void objc_exception_throw(struct objc_object *);\n";
335 Preamble += "__OBJC_RW_EXTERN void objc_exception_try_enter(void *);\n";
336 Preamble += "__OBJC_RW_EXTERN void objc_exception_try_exit(void *);\n";
337 Preamble += "__OBJC_RW_EXTERN struct objc_object *objc_exception_extract(void *);\n";
338 Preamble += "__OBJC_RW_EXTERN int objc_exception_match";
Steve Naroff580ca782008-05-09 21:17:56 +0000339 Preamble += "(struct objc_class *, struct objc_object *);\n";
Steve Naroff59f05a42008-07-16 18:58:11 +0000340 // @synchronized hooks.
341 Preamble += "__OBJC_RW_EXTERN void objc_sync_enter(struct objc_object *);\n";
342 Preamble += "__OBJC_RW_EXTERN void objc_sync_exit(struct objc_object *);\n";
Steve Naroff69c827f2008-05-06 22:45:19 +0000343 Preamble += "__OBJC_RW_EXTERN Protocol *objc_getProtocol(const char *);\n";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000344 Preamble += "#ifndef __FASTENUMERATIONSTATE\n";
345 Preamble += "struct __objcFastEnumerationState {\n\t";
346 Preamble += "unsigned long state;\n\t";
Steve Naroffb10f2732008-04-04 22:58:22 +0000347 Preamble += "void **itemsPtr;\n\t";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000348 Preamble += "unsigned long *mutationsPtr;\n\t";
349 Preamble += "unsigned long extra[5];\n};\n";
Steve Naroff73ebd6d2008-06-02 20:23:21 +0000350 Preamble += "__OBJC_RW_EXTERN void objc_enumerationMutation(struct objc_object *);\n";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000351 Preamble += "#define __FASTENUMERATIONSTATE\n";
352 Preamble += "#endif\n";
353 Preamble += "#ifndef __NSCONSTANTSTRINGIMPL\n";
354 Preamble += "struct __NSConstantStringImpl {\n";
355 Preamble += " int *isa;\n";
356 Preamble += " int flags;\n";
357 Preamble += " char *str;\n";
358 Preamble += " long length;\n";
359 Preamble += "};\n";
Steve Naroff73b17cd2008-05-15 21:12:10 +0000360 Preamble += "__OBJC_RW_EXTERN int __CFConstantStringClassReference[];\n";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000361 Preamble += "#define __NSCONSTANTSTRINGIMPL\n";
362 Preamble += "#endif\n";
Steve Naroff73b17cd2008-05-15 21:12:10 +0000363 if (LangOpts.Microsoft) {
364 Preamble += "#undef __OBJC_RW_EXTERN\n";
Steve Naroffba92b2e2008-03-27 22:29:16 +0000365 Preamble += "#define __attribute__(X)\n";
Steve Naroff73b17cd2008-05-15 21:12:10 +0000366 }
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000367}
368
369
Chris Lattnerf04da132007-10-24 17:06:59 +0000370//===----------------------------------------------------------------------===//
371// Top Level Driver Code
372//===----------------------------------------------------------------------===//
373
Steve Naroffb29b4272008-04-14 22:03:09 +0000374void RewriteObjC::HandleTopLevelDecl(Decl *D) {
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000375 // Two cases: either the decl could be in the main file, or it could be in a
376 // #included file. If the former, rewrite it now. If the later, check to see
377 // if we rewrote the #include/#import.
378 SourceLocation Loc = D->getLocation();
379 Loc = SM->getLogicalLoc(Loc);
380
381 // If this is for a builtin, ignore it.
382 if (Loc.isInvalid()) return;
383
Steve Naroffebf2b562007-10-23 23:50:29 +0000384 // Look for built-in declarations that we need to refer during the rewrite.
385 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Steve Naroff09b266e2007-10-30 23:14:51 +0000386 RewriteFunctionDecl(FD);
Steve Naroff248a7532008-04-15 22:42:06 +0000387 } else if (VarDecl *FVD = dyn_cast<VarDecl>(D)) {
Steve Naroffbeaf2992007-11-03 11:27:19 +0000388 // declared in <Foundation/NSString.h>
389 if (strcmp(FVD->getName(), "_NSConstantStringClassReference") == 0) {
390 ConstantStringClassReference = FVD;
391 return;
392 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000393 } else if (ObjCInterfaceDecl *MD = dyn_cast<ObjCInterfaceDecl>(D)) {
Steve Naroffbef11852007-10-26 20:53:56 +0000394 RewriteInterfaceDecl(MD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000395 } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) {
Steve Naroff423cb562007-10-30 13:30:57 +0000396 RewriteCategoryDecl(CD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000397 } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
Steve Naroff752d6ef2007-10-30 16:42:30 +0000398 RewriteProtocolDecl(PD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000399 } else if (ObjCForwardProtocolDecl *FP =
400 dyn_cast<ObjCForwardProtocolDecl>(D)){
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000401 RewriteForwardProtocolDecl(FP);
Steve Naroffebf2b562007-10-23 23:50:29 +0000402 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000403 // If we have a decl in the main file, see if we should rewrite it.
Ted Kremenekcf7e9582008-04-14 21:24:13 +0000404 if (SM->isFromMainFile(Loc))
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000405 return HandleDeclInMainFile(D);
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000406}
407
Chris Lattnerf04da132007-10-24 17:06:59 +0000408/// HandleDeclInMainFile - This is called for each top-level decl defined in the
409/// main file of the input.
Steve Naroffb29b4272008-04-14 22:03:09 +0000410void RewriteObjC::HandleDeclInMainFile(Decl *D) {
Chris Lattnerf04da132007-10-24 17:06:59 +0000411 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
412 if (Stmt *Body = FD->getBody())
Steve Narofff3473a72007-11-09 15:20:18 +0000413 FD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
Steve Narofff69cc5d2008-01-30 19:17:43 +0000414
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000415 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Steve Naroff874e2322007-11-15 10:28:18 +0000416 if (Stmt *Body = MD->getBody()) {
417 //Body->dump();
418 CurMethodDecl = MD;
Steve Naroff71c0a952007-11-13 23:01:27 +0000419 MD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
Steve Naroff874e2322007-11-15 10:28:18 +0000420 CurMethodDecl = 0;
421 }
Steve Naroff71c0a952007-11-13 23:01:27 +0000422 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000423 if (ObjCImplementationDecl *CI = dyn_cast<ObjCImplementationDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000424 ClassImplementation.push_back(CI);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000425 else if (ObjCCategoryImplDecl *CI = dyn_cast<ObjCCategoryImplDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000426 CategoryImplementation.push_back(CI);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000427 else if (ObjCClassDecl *CD = dyn_cast<ObjCClassDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000428 RewriteForwardClassDecl(CD);
Steve Narofff3473a72007-11-09 15:20:18 +0000429 else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000430 RewriteObjCQualifiedInterfaceTypes(VD);
Steve Narofff3473a72007-11-09 15:20:18 +0000431 if (VD->getInit())
432 RewriteFunctionBodyOrGlobalInitializer(VD->getInit());
433 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000434 // Nothing yet.
435}
436
Steve Naroffb29b4272008-04-14 22:03:09 +0000437RewriteObjC::~RewriteObjC() {
Chris Lattnerf04da132007-10-24 17:06:59 +0000438 // Get the top-level buffer that this corresponds to.
Chris Lattner74a0c772007-11-08 04:27:23 +0000439
440 // Rewrite tabs if we care.
441 //RewriteTabs();
Chris Lattnerf04da132007-10-24 17:06:59 +0000442
Steve Naroffa7b402d2008-03-28 22:26:09 +0000443 if (Diags.hasErrorOccurred())
444 return;
445
446 // Create the output file.
447
448 std::ostream *OutFile;
449 if (OutFileName == "-") {
450 OutFile = llvm::cout.stream();
451 } else if (!OutFileName.empty()) {
452 OutFile = new std::ofstream(OutFileName.c_str(),
453 std::ios_base::binary|std::ios_base::out);
454 } else if (InFileName == "-") {
455 OutFile = llvm::cout.stream();
456 } else {
457 llvm::sys::Path Path(InFileName);
458 Path.eraseSuffix();
459 Path.appendSuffix("cpp");
460 OutFile = new std::ofstream(Path.toString().c_str(),
461 std::ios_base::binary|std::ios_base::out);
462 }
463
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000464 RewriteInclude();
465
Steve Naroffba92b2e2008-03-27 22:29:16 +0000466 InsertText(SourceLocation::getFileLoc(MainFileID, 0),
467 Preamble.c_str(), Preamble.size(), false);
468
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000469 // Rewrite Objective-c meta data*
470 std::string ResultStr;
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +0000471 RewriteImplementations(ResultStr);
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000472
Chris Lattnerf04da132007-10-24 17:06:59 +0000473 // Get the buffer corresponding to MainFileID. If we haven't changed it, then
474 // we are done.
475 if (const RewriteBuffer *RewriteBuf =
476 Rewrite.getRewriteBufferFor(MainFileID)) {
Steve Naroffbeaf2992007-11-03 11:27:19 +0000477 //printf("Changed:\n");
Steve Naroffa7b402d2008-03-28 22:26:09 +0000478 *OutFile << std::string(RewriteBuf->begin(), RewriteBuf->end());
Chris Lattnerf04da132007-10-24 17:06:59 +0000479 } else {
Chris Lattnerc68ab772008-03-22 00:08:40 +0000480 fprintf(stderr, "No changes\n");
Chris Lattnerf04da132007-10-24 17:06:59 +0000481 }
Fariborz Jahanian4402d812007-11-07 18:40:28 +0000482 // Emit metadata.
Steve Naroffa7b402d2008-03-28 22:26:09 +0000483 *OutFile << ResultStr;
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +0000484}
485
Chris Lattnerf04da132007-10-24 17:06:59 +0000486//===----------------------------------------------------------------------===//
487// Syntactic (non-AST) Rewriting Code
488//===----------------------------------------------------------------------===//
489
Steve Naroffb29b4272008-04-14 22:03:09 +0000490void RewriteObjC::RewriteInclude() {
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000491 SourceLocation LocStart = SourceLocation::getFileLoc(MainFileID, 0);
492 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
493 const char *MainBufStart = MainBuf.first;
494 const char *MainBufEnd = MainBuf.second;
495 size_t ImportLen = strlen("import");
496 size_t IncludeLen = strlen("include");
497
Fariborz Jahanianaf57b462008-01-19 01:03:17 +0000498 // Loop over the whole file, looking for includes.
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000499 for (const char *BufPtr = MainBufStart; BufPtr < MainBufEnd; ++BufPtr) {
500 if (*BufPtr == '#') {
501 if (++BufPtr == MainBufEnd)
502 return;
503 while (*BufPtr == ' ' || *BufPtr == '\t')
504 if (++BufPtr == MainBufEnd)
505 return;
506 if (!strncmp(BufPtr, "import", ImportLen)) {
507 // replace import with include
508 SourceLocation ImportLoc =
509 LocStart.getFileLocWithOffset(BufPtr-MainBufStart);
Chris Lattneraadaf782008-01-31 19:51:04 +0000510 ReplaceText(ImportLoc, ImportLen, "include", IncludeLen);
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000511 BufPtr += ImportLen;
512 }
513 }
514 }
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000515}
516
Steve Naroffb29b4272008-04-14 22:03:09 +0000517void RewriteObjC::RewriteTabs() {
Chris Lattnerf04da132007-10-24 17:06:59 +0000518 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
519 const char *MainBufStart = MainBuf.first;
520 const char *MainBufEnd = MainBuf.second;
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +0000521
Chris Lattnerf04da132007-10-24 17:06:59 +0000522 // Loop over the whole file, looking for tabs.
523 for (const char *BufPtr = MainBufStart; BufPtr != MainBufEnd; ++BufPtr) {
524 if (*BufPtr != '\t')
525 continue;
526
527 // Okay, we found a tab. This tab will turn into at least one character,
528 // but it depends on which 'virtual column' it is in. Compute that now.
529 unsigned VCol = 0;
530 while (BufPtr-VCol != MainBufStart && BufPtr[-VCol-1] != '\t' &&
531 BufPtr[-VCol-1] != '\n' && BufPtr[-VCol-1] != '\r')
532 ++VCol;
533
534 // Okay, now that we know the virtual column, we know how many spaces to
535 // insert. We assume 8-character tab-stops.
536 unsigned Spaces = 8-(VCol & 7);
537
538 // Get the location of the tab.
539 SourceLocation TabLoc =
540 SourceLocation::getFileLoc(MainFileID, BufPtr-MainBufStart);
541
542 // Rewrite the single tab character into a sequence of spaces.
Chris Lattneraadaf782008-01-31 19:51:04 +0000543 ReplaceText(TabLoc, 1, " ", Spaces);
Chris Lattnerf04da132007-10-24 17:06:59 +0000544 }
Chris Lattner8a12c272007-10-11 18:38:32 +0000545}
546
547
Steve Naroffb29b4272008-04-14 22:03:09 +0000548void RewriteObjC::RewriteForwardClassDecl(ObjCClassDecl *ClassDecl) {
Chris Lattnerf04da132007-10-24 17:06:59 +0000549 int numDecls = ClassDecl->getNumForwardDecls();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000550 ObjCInterfaceDecl **ForwardDecls = ClassDecl->getForwardDecls();
Chris Lattnerf04da132007-10-24 17:06:59 +0000551
552 // Get the start location and compute the semi location.
553 SourceLocation startLoc = ClassDecl->getLocation();
554 const char *startBuf = SM->getCharacterData(startLoc);
555 const char *semiPtr = strchr(startBuf, ';');
556
557 // Translate to typedef's that forward reference structs with the same name
558 // as the class. As a convenience, we include the original declaration
559 // as a comment.
560 std::string typedefString;
561 typedefString += "// ";
Steve Naroff934f2762007-10-24 22:48:43 +0000562 typedefString.append(startBuf, semiPtr-startBuf+1);
563 typedefString += "\n";
564 for (int i = 0; i < numDecls; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000565 ObjCInterfaceDecl *ForwardDecl = ForwardDecls[i];
Steve Naroff32174822007-11-09 12:50:28 +0000566 typedefString += "#ifndef _REWRITER_typedef_";
567 typedefString += ForwardDecl->getName();
568 typedefString += "\n";
569 typedefString += "#define _REWRITER_typedef_";
570 typedefString += ForwardDecl->getName();
571 typedefString += "\n";
Steve Naroff352336b2007-11-05 14:36:37 +0000572 typedefString += "typedef struct objc_object ";
Steve Naroff934f2762007-10-24 22:48:43 +0000573 typedefString += ForwardDecl->getName();
Steve Naroff32174822007-11-09 12:50:28 +0000574 typedefString += ";\n#endif\n";
Steve Naroff934f2762007-10-24 22:48:43 +0000575 }
576
577 // Replace the @class with typedefs corresponding to the classes.
Chris Lattneraadaf782008-01-31 19:51:04 +0000578 ReplaceText(startLoc, semiPtr-startBuf+1,
579 typedefString.c_str(), typedefString.size());
Chris Lattnerf04da132007-10-24 17:06:59 +0000580}
581
Steve Naroffb29b4272008-04-14 22:03:09 +0000582void RewriteObjC::RewriteMethodDeclaration(ObjCMethodDecl *Method) {
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000583 SourceLocation LocStart = Method->getLocStart();
584 SourceLocation LocEnd = Method->getLocEnd();
Steve Naroff423cb562007-10-30 13:30:57 +0000585
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000586 if (SM->getLineNumber(LocEnd) > SM->getLineNumber(LocStart)) {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000587 InsertText(LocStart, "/* ", 3);
Chris Lattneraadaf782008-01-31 19:51:04 +0000588 ReplaceText(LocEnd, 1, ";*/ ", 4);
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000589 } else {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000590 InsertText(LocStart, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000591 }
592}
593
Steve Naroffb29b4272008-04-14 22:03:09 +0000594void RewriteObjC::RewriteProperties(unsigned nProperties, ObjCPropertyDecl **Properties)
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000595{
Chris Lattner55d13b42008-03-16 21:23:50 +0000596 for (unsigned i = 0; i < nProperties; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000597 ObjCPropertyDecl *Property = Properties[i];
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000598 SourceLocation Loc = Property->getLocation();
599
Chris Lattneraadaf782008-01-31 19:51:04 +0000600 ReplaceText(Loc, 0, "// ", 3);
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000601
602 // FIXME: handle properties that are declared across multiple lines.
603 }
604}
605
Steve Naroffb29b4272008-04-14 22:03:09 +0000606void RewriteObjC::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) {
Steve Naroff423cb562007-10-30 13:30:57 +0000607 SourceLocation LocStart = CatDecl->getLocStart();
608
609 // FIXME: handle category headers that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000610 ReplaceText(LocStart, 0, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000611
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000612 for (ObjCCategoryDecl::instmeth_iterator I = CatDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000613 E = CatDecl->instmeth_end(); I != E; ++I)
614 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000615 for (ObjCCategoryDecl::classmeth_iterator I = CatDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000616 E = CatDecl->classmeth_end(); I != E; ++I)
617 RewriteMethodDeclaration(*I);
618
Steve Naroff423cb562007-10-30 13:30:57 +0000619 // Lastly, comment out the @end.
Chris Lattneraadaf782008-01-31 19:51:04 +0000620 ReplaceText(CatDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000621}
622
Steve Naroffb29b4272008-04-14 22:03:09 +0000623void RewriteObjC::RewriteProtocolDecl(ObjCProtocolDecl *PDecl) {
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000624 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000625
Steve Naroff752d6ef2007-10-30 16:42:30 +0000626 SourceLocation LocStart = PDecl->getLocStart();
627
628 // FIXME: handle protocol headers that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000629 ReplaceText(LocStart, 0, "// ", 3);
Steve Naroff752d6ef2007-10-30 16:42:30 +0000630
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000631 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000632 E = PDecl->instmeth_end(); I != E; ++I)
633 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000634 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000635 E = PDecl->classmeth_end(); I != E; ++I)
636 RewriteMethodDeclaration(*I);
637
Steve Naroff752d6ef2007-10-30 16:42:30 +0000638 // Lastly, comment out the @end.
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000639 SourceLocation LocEnd = PDecl->getAtEndLoc();
Chris Lattneraadaf782008-01-31 19:51:04 +0000640 ReplaceText(LocEnd, 0, "// ", 3);
Steve Naroff8cc764c2007-11-14 15:03:57 +0000641
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000642 // Must comment out @optional/@required
643 const char *startBuf = SM->getCharacterData(LocStart);
644 const char *endBuf = SM->getCharacterData(LocEnd);
645 for (const char *p = startBuf; p < endBuf; p++) {
646 if (*p == '@' && !strncmp(p+1, "optional", strlen("optional"))) {
647 std::string CommentedOptional = "/* @optional */";
Steve Naroff8cc764c2007-11-14 15:03:57 +0000648 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattneraadaf782008-01-31 19:51:04 +0000649 ReplaceText(OptionalLoc, strlen("@optional"),
650 CommentedOptional.c_str(), CommentedOptional.size());
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000651
652 }
653 else if (*p == '@' && !strncmp(p+1, "required", strlen("required"))) {
654 std::string CommentedRequired = "/* @required */";
Steve Naroff8cc764c2007-11-14 15:03:57 +0000655 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattneraadaf782008-01-31 19:51:04 +0000656 ReplaceText(OptionalLoc, strlen("@required"),
657 CommentedRequired.c_str(), CommentedRequired.size());
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000658
659 }
660 }
Steve Naroff752d6ef2007-10-30 16:42:30 +0000661}
662
Steve Naroffb29b4272008-04-14 22:03:09 +0000663void RewriteObjC::RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *PDecl) {
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000664 SourceLocation LocStart = PDecl->getLocation();
Steve Naroffb7fa9922007-11-14 03:37:28 +0000665 if (LocStart.isInvalid())
666 assert(false && "Invalid SourceLocation");
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000667 // FIXME: handle forward protocol that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000668 ReplaceText(LocStart, 0, "// ", 3);
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000669}
670
Steve Naroffb29b4272008-04-14 22:03:09 +0000671void RewriteObjC::RewriteObjCMethodDecl(ObjCMethodDecl *OMD,
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000672 std::string &ResultStr) {
Steve Naroff76e429d2008-07-16 14:40:40 +0000673 const FunctionType *FPRetType = 0;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000674 ResultStr += "\nstatic ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000675 if (OMD->getResultType()->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000676 ResultStr += "id";
Steve Naroff76e429d2008-07-16 14:40:40 +0000677 else if (OMD->getResultType()->isFunctionPointerType()) {
678 // needs special handling, since pointer-to-functions have special
679 // syntax (where a decaration models use).
680 QualType retType = OMD->getResultType();
681 if (const PointerType* PT = retType->getAsPointerType()) {
682 QualType PointeeTy = PT->getPointeeType();
683 if ((FPRetType = PointeeTy->getAsFunctionType())) {
684 ResultStr += FPRetType->getResultType().getAsString();
685 ResultStr += "(*";
686 }
687 }
688 } else
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000689 ResultStr += OMD->getResultType().getAsString();
Fariborz Jahanian531a1ea2008-01-10 01:39:52 +0000690 ResultStr += " ";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000691
692 // Unique method name
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000693 std::string NameStr;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000694
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000695 if (OMD->isInstance())
696 NameStr += "_I_";
697 else
698 NameStr += "_C_";
699
700 NameStr += OMD->getClassInterface()->getName();
701 NameStr += "_";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000702
703 NamedDecl *MethodContext = OMD->getMethodContext();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000704 if (ObjCCategoryImplDecl *CID =
705 dyn_cast<ObjCCategoryImplDecl>(MethodContext)) {
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000706 NameStr += CID->getName();
707 NameStr += "_";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000708 }
Steve Naroff563b8282008-04-04 22:23:44 +0000709 // Append selector names, replacing ':' with '_'
710 if (OMD->getSelector().getName().find(':') == std::string::npos)
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000711 NameStr += OMD->getSelector().getName();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000712 else {
713 std::string selString = OMD->getSelector().getName();
714 int len = selString.size();
715 for (int i = 0; i < len; i++)
716 if (selString[i] == ':')
717 selString[i] = '_';
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000718 NameStr += selString;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000719 }
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000720 // Remember this name for metadata emission
721 MethodInternalNames[OMD] = NameStr;
722 ResultStr += NameStr;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000723
724 // Rewrite arguments
725 ResultStr += "(";
726
727 // invisible arguments
728 if (OMD->isInstance()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000729 QualType selfTy = Context->getObjCInterfaceType(OMD->getClassInterface());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000730 selfTy = Context->getPointerType(selfTy);
Steve Naroff05b8c782008-03-12 00:25:36 +0000731 if (!LangOpts.Microsoft) {
732 if (ObjCSynthesizedStructs.count(OMD->getClassInterface()))
733 ResultStr += "struct ";
734 }
735 // When rewriting for Microsoft, explicitly omit the structure name.
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000736 ResultStr += OMD->getClassInterface()->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000737 ResultStr += " *";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000738 }
739 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000740 ResultStr += Context->getObjCIdType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000741
742 ResultStr += " self, ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000743 ResultStr += Context->getObjCSelType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000744 ResultStr += " _cmd";
745
746 // Method arguments.
Chris Lattner58cce3b2008-03-16 01:07:14 +0000747 for (unsigned i = 0; i < OMD->getNumParams(); i++) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000748 ParmVarDecl *PDecl = OMD->getParamDecl(i);
749 ResultStr += ", ";
Steve Naroff543409e2008-04-18 21:13:19 +0000750 if (PDecl->getType()->isObjCQualifiedIdType()) {
751 ResultStr += "id ";
752 ResultStr += PDecl->getName();
753 } else {
754 std::string Name = PDecl->getName();
755 PDecl->getType().getAsStringInternal(Name);
756 ResultStr += Name;
757 }
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000758 }
Fariborz Jahanian7c39ff72008-01-21 20:14:23 +0000759 if (OMD->isVariadic())
760 ResultStr += ", ...";
Fariborz Jahanian531a1ea2008-01-10 01:39:52 +0000761 ResultStr += ") ";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000762
Steve Naroff76e429d2008-07-16 14:40:40 +0000763 if (FPRetType) {
764 ResultStr += ")"; // close the precedence "scope" for "*".
765
766 // Now, emit the argument types (if any).
767 if (const FunctionTypeProto *FT = dyn_cast<FunctionTypeProto>(FPRetType)) {
768 ResultStr += "(";
769 for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i) {
770 if (i) ResultStr += ", ";
771 std::string ParamStr = FT->getArgType(i).getAsString();
772 ResultStr += ParamStr;
773 }
774 if (FT->isVariadic()) {
775 if (FT->getNumArgs()) ResultStr += ", ";
776 ResultStr += "...";
777 }
778 ResultStr += ")";
779 } else {
780 ResultStr += "()";
781 }
782 }
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000783}
Steve Naroffb29b4272008-04-14 22:03:09 +0000784void RewriteObjC::RewriteImplementationDecl(NamedDecl *OID) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000785 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
786 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000787
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000788 if (IMD)
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000789 InsertText(IMD->getLocStart(), "// ", 3);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000790 else
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000791 InsertText(CID->getLocStart(), "// ", 3);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000792
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000793 for (ObjCCategoryImplDecl::instmeth_iterator
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000794 I = IMD ? IMD->instmeth_begin() : CID->instmeth_begin(),
795 E = IMD ? IMD->instmeth_end() : CID->instmeth_end(); I != E; ++I) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000796 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000797 ObjCMethodDecl *OMD = *I;
798 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000799 SourceLocation LocStart = OMD->getLocStart();
800 SourceLocation LocEnd = OMD->getBody()->getLocStart();
801
802 const char *startBuf = SM->getCharacterData(LocStart);
803 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattneraadaf782008-01-31 19:51:04 +0000804 ReplaceText(LocStart, endBuf-startBuf,
805 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000806 }
807
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000808 for (ObjCCategoryImplDecl::classmeth_iterator
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000809 I = IMD ? IMD->classmeth_begin() : CID->classmeth_begin(),
810 E = IMD ? IMD->classmeth_end() : CID->classmeth_end(); I != E; ++I) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000811 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000812 ObjCMethodDecl *OMD = *I;
813 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000814 SourceLocation LocStart = OMD->getLocStart();
815 SourceLocation LocEnd = OMD->getBody()->getLocStart();
816
817 const char *startBuf = SM->getCharacterData(LocStart);
818 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattneraadaf782008-01-31 19:51:04 +0000819 ReplaceText(LocStart, endBuf-startBuf,
820 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000821 }
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000822 if (IMD)
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000823 InsertText(IMD->getLocEnd(), "// ", 3);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000824 else
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000825 InsertText(CID->getLocEnd(), "// ", 3);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000826}
827
Steve Naroffb29b4272008-04-14 22:03:09 +0000828void RewriteObjC::RewriteInterfaceDecl(ObjCInterfaceDecl *ClassDecl) {
Steve Narofff908a872007-10-30 02:23:23 +0000829 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000830 if (!ObjCForwardDecls.count(ClassDecl)) {
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000831 // we haven't seen a forward decl - generate a typedef.
Steve Naroff5086a8d2007-11-14 23:02:56 +0000832 ResultStr = "#ifndef _REWRITER_typedef_";
Steve Naroff32174822007-11-09 12:50:28 +0000833 ResultStr += ClassDecl->getName();
834 ResultStr += "\n";
835 ResultStr += "#define _REWRITER_typedef_";
836 ResultStr += ClassDecl->getName();
837 ResultStr += "\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000838 ResultStr += "typedef struct objc_object ";
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000839 ResultStr += ClassDecl->getName();
Steve Naroff32174822007-11-09 12:50:28 +0000840 ResultStr += ";\n#endif\n";
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000841 // Mark this typedef as having been generated.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000842 ObjCForwardDecls.insert(ClassDecl);
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000843 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000844 SynthesizeObjCInternalStruct(ClassDecl, ResultStr);
Steve Narofff908a872007-10-30 02:23:23 +0000845
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000846 RewriteProperties(ClassDecl->getNumPropertyDecl(),
847 ClassDecl->getPropertyDecl());
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000848 for (ObjCInterfaceDecl::instmeth_iterator I = ClassDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000849 E = ClassDecl->instmeth_end(); I != E; ++I)
850 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000851 for (ObjCInterfaceDecl::classmeth_iterator I = ClassDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000852 E = ClassDecl->classmeth_end(); I != E; ++I)
853 RewriteMethodDeclaration(*I);
854
Steve Naroff2feac5e2007-10-30 03:43:13 +0000855 // Lastly, comment out the @end.
Chris Lattneraadaf782008-01-31 19:51:04 +0000856 ReplaceText(ClassDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroffbef11852007-10-26 20:53:56 +0000857}
858
Chris Lattner3b2c58c2008-05-23 20:40:52 +0000859Stmt *RewriteObjC::RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV,
860 SourceLocation OrigStart) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000861 ObjCIvarDecl *D = IV->getDecl();
Steve Naroff05b8c782008-03-12 00:25:36 +0000862 if (CurMethodDecl) {
863 if (const PointerType *pType = IV->getBase()->getType()->getAsPointerType()) {
Steve Narofff0757612008-05-08 17:52:16 +0000864 ObjCInterfaceType *iFaceDecl = dyn_cast<ObjCInterfaceType>(pType->getPointeeType());
865 // lookup which class implements the instance variable.
866 ObjCInterfaceDecl *clsDeclared = 0;
867 iFaceDecl->getDecl()->lookupInstanceVariable(D->getIdentifier(), clsDeclared);
868 assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class");
869
870 // Synthesize an explicit cast to gain access to the ivar.
871 std::string RecName = clsDeclared->getIdentifier()->getName();
872 RecName += "_IMPL";
873 IdentifierInfo *II = &Context->Idents.get(RecName.c_str());
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000874 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Steve Narofff0757612008-05-08 17:52:16 +0000875 SourceLocation(), II, 0);
876 assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl");
877 QualType castT = Context->getPointerType(Context->getTagDeclType(RD));
878 CastExpr *castExpr = new CastExpr(castT, IV->getBase(), SourceLocation());
879 // Don't forget the parens to enforce the proper binding.
Chris Lattner3b2c58c2008-05-23 20:40:52 +0000880 ParenExpr *PE = new ParenExpr(IV->getBase()->getLocStart(),
881 IV->getBase()->getLocEnd(),
882 castExpr);
Steve Narofff0757612008-05-08 17:52:16 +0000883 if (IV->isFreeIvar() &&
884 CurMethodDecl->getClassInterface() == iFaceDecl->getDecl()) {
Chris Lattner3b2c58c2008-05-23 20:40:52 +0000885 MemberExpr *ME = new MemberExpr(PE, true, D, IV->getLocation(),
886 D->getType());
Steve Narofff0757612008-05-08 17:52:16 +0000887 ReplaceStmt(IV, ME);
888 delete IV;
889 return ME;
Steve Naroffc2a689b2007-11-15 11:33:00 +0000890 }
Chris Lattner3b2c58c2008-05-23 20:40:52 +0000891
892 ReplaceStmt(IV->getBase(), PE);
893 // Cannot delete IV->getBase(), since PE points to it.
894 // Replace the old base with the cast. This is important when doing
895 // embedded rewrites. For example, [newInv->_container addObject:0].
896 IV->setBase(PE);
897 return IV;
Steve Naroffc2a689b2007-11-15 11:33:00 +0000898 }
Steve Naroff84472a82008-04-18 21:55:08 +0000899 } else { // we are outside a method.
Steve Naroff9f525972008-05-06 23:20:07 +0000900 assert(!IV->isFreeIvar() && "Cannot have a free standing ivar outside a method");
901
902 // Explicit ivar refs need to have a cast inserted.
903 // FIXME: consider sharing some of this code with the code above.
904 if (const PointerType *pType = IV->getBase()->getType()->getAsPointerType()) {
Steve Narofff0757612008-05-08 17:52:16 +0000905 ObjCInterfaceType *iFaceDecl = dyn_cast<ObjCInterfaceType>(pType->getPointeeType());
Steve Naroff9f525972008-05-06 23:20:07 +0000906 // lookup which class implements the instance variable.
907 ObjCInterfaceDecl *clsDeclared = 0;
Steve Narofff0757612008-05-08 17:52:16 +0000908 iFaceDecl->getDecl()->lookupInstanceVariable(D->getIdentifier(), clsDeclared);
Steve Naroff9f525972008-05-06 23:20:07 +0000909 assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class");
910
911 // Synthesize an explicit cast to gain access to the ivar.
912 std::string RecName = clsDeclared->getIdentifier()->getName();
913 RecName += "_IMPL";
914 IdentifierInfo *II = &Context->Idents.get(RecName.c_str());
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +0000915 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Steve Naroff9f525972008-05-06 23:20:07 +0000916 SourceLocation(), II, 0);
917 assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl");
918 QualType castT = Context->getPointerType(Context->getTagDeclType(RD));
919 CastExpr *castExpr = new CastExpr(castT, IV->getBase(), SourceLocation());
920 // Don't forget the parens to enforce the proper binding.
Chris Lattner8d366162008-05-28 16:38:23 +0000921 ParenExpr *PE = new ParenExpr(IV->getBase()->getLocStart(),
922 IV->getBase()->getLocEnd(), castExpr);
Steve Naroff9f525972008-05-06 23:20:07 +0000923 ReplaceStmt(IV->getBase(), PE);
924 // Cannot delete IV->getBase(), since PE points to it.
925 // Replace the old base with the cast. This is important when doing
926 // embedded rewrites. For example, [newInv->_container addObject:0].
927 IV->setBase(PE);
928 return IV;
929 }
Steve Naroffc2a689b2007-11-15 11:33:00 +0000930 }
Steve Naroff84472a82008-04-18 21:55:08 +0000931 return IV;
Steve Naroff7e3411b2007-11-15 02:58:25 +0000932}
933
Chris Lattnerf04da132007-10-24 17:06:59 +0000934//===----------------------------------------------------------------------===//
935// Function Body / Expression rewriting
936//===----------------------------------------------------------------------===//
937
Steve Naroffb29b4272008-04-14 22:03:09 +0000938Stmt *RewriteObjC::RewriteFunctionBodyOrGlobalInitializer(Stmt *S) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000939 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
940 isa<DoStmt>(S) || isa<ForStmt>(S))
941 Stmts.push_back(S);
942 else if (isa<ObjCForCollectionStmt>(S)) {
943 Stmts.push_back(S);
944 ObjCBcLabelNo.push_back(++BcLabelCount);
945 }
946
Chris Lattner3b2c58c2008-05-23 20:40:52 +0000947 SourceRange OrigStmtRange = S->getSourceRange();
Chris Lattner338d1e22008-01-31 05:10:40 +0000948
949 // Start by rewriting all children.
Chris Lattner311ff022007-10-16 22:36:42 +0000950 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end();
951 CI != E; ++CI)
Steve Naroff75730982007-11-07 04:08:17 +0000952 if (*CI) {
Steve Narofff3473a72007-11-09 15:20:18 +0000953 Stmt *newStmt = RewriteFunctionBodyOrGlobalInitializer(*CI);
Steve Naroff75730982007-11-07 04:08:17 +0000954 if (newStmt)
955 *CI = newStmt;
956 }
Steve Naroffebf2b562007-10-23 23:50:29 +0000957
958 // Handle specific things.
959 if (ObjCEncodeExpr *AtEncode = dyn_cast<ObjCEncodeExpr>(S))
960 return RewriteAtEncode(AtEncode);
Steve Naroff7e3411b2007-11-15 02:58:25 +0000961
962 if (ObjCIvarRefExpr *IvarRefExpr = dyn_cast<ObjCIvarRefExpr>(S))
Chris Lattner3b2c58c2008-05-23 20:40:52 +0000963 return RewriteObjCIvarRefExpr(IvarRefExpr, OrigStmtRange.getBegin());
Steve Naroffb42f8412007-11-05 14:50:49 +0000964
965 if (ObjCSelectorExpr *AtSelector = dyn_cast<ObjCSelectorExpr>(S))
966 return RewriteAtSelector(AtSelector);
Steve Narofff69cc5d2008-01-30 19:17:43 +0000967
Steve Naroffbeaf2992007-11-03 11:27:19 +0000968 if (ObjCStringLiteral *AtString = dyn_cast<ObjCStringLiteral>(S))
969 return RewriteObjCStringLiteral(AtString);
Steve Naroffebf2b562007-10-23 23:50:29 +0000970
Steve Naroff934f2762007-10-24 22:48:43 +0000971 if (ObjCMessageExpr *MessExpr = dyn_cast<ObjCMessageExpr>(S)) {
972 // Before we rewrite it, put the original message expression in a comment.
973 SourceLocation startLoc = MessExpr->getLocStart();
974 SourceLocation endLoc = MessExpr->getLocEnd();
975
976 const char *startBuf = SM->getCharacterData(startLoc);
977 const char *endBuf = SM->getCharacterData(endLoc);
978
979 std::string messString;
980 messString += "// ";
981 messString.append(startBuf, endBuf-startBuf+1);
982 messString += "\n";
Steve Naroffbef11852007-10-26 20:53:56 +0000983
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000984 // FIXME: Missing definition of
985 // InsertText(clang::SourceLocation, char const*, unsigned int).
986 // InsertText(startLoc, messString.c_str(), messString.size());
Steve Naroff934f2762007-10-24 22:48:43 +0000987 // Tried this, but it didn't work either...
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000988 // ReplaceText(startLoc, 0, messString.c_str(), messString.size());
Steve Naroffebf2b562007-10-23 23:50:29 +0000989 return RewriteMessageExpr(MessExpr);
Steve Naroff934f2762007-10-24 22:48:43 +0000990 }
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000991
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000992 if (ObjCAtTryStmt *StmtTry = dyn_cast<ObjCAtTryStmt>(S))
993 return RewriteObjCTryStmt(StmtTry);
Steve Naroff2bd03922007-11-07 15:32:26 +0000994
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000995 if (ObjCAtSynchronizedStmt *StmtTry = dyn_cast<ObjCAtSynchronizedStmt>(S))
996 return RewriteObjCSynchronizedStmt(StmtTry);
997
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000998 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S))
999 return RewriteObjCThrowStmt(StmtThrow);
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001000
1001 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S))
1002 return RewriteObjCProtocolExpr(ProtocolExp);
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001003
1004 if (ObjCForCollectionStmt *StmtForCollection =
1005 dyn_cast<ObjCForCollectionStmt>(S))
Chris Lattner3b2c58c2008-05-23 20:40:52 +00001006 return RewriteObjCForCollectionStmt(StmtForCollection,
1007 OrigStmtRange.getEnd());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001008 if (BreakStmt *StmtBreakStmt =
1009 dyn_cast<BreakStmt>(S))
1010 return RewriteBreakStmt(StmtBreakStmt);
1011 if (ContinueStmt *StmtContinueStmt =
1012 dyn_cast<ContinueStmt>(S))
1013 return RewriteContinueStmt(StmtContinueStmt);
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001014
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001015 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
1016 isa<DoStmt>(S) || isa<ForStmt>(S)) {
1017 assert(!Stmts.empty() && "Statement stack is empty");
1018 assert ((isa<SwitchStmt>(Stmts.back()) || isa<WhileStmt>(Stmts.back()) ||
1019 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
1020 && "Statement stack mismatch");
1021 Stmts.pop_back();
1022 }
Steve Naroff874e2322007-11-15 10:28:18 +00001023#if 0
1024 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(S)) {
1025 CastExpr *Replacement = new CastExpr(ICE->getType(), ICE->getSubExpr(), SourceLocation());
1026 // Get the new text.
1027 std::ostringstream Buf;
1028 Replacement->printPretty(Buf);
1029 const std::string &Str = Buf.str();
1030
1031 printf("CAST = %s\n", &Str[0]);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001032 InsertText(ICE->getSubExpr()->getLocStart(), &Str[0], Str.size());
Steve Naroff874e2322007-11-15 10:28:18 +00001033 delete S;
1034 return Replacement;
1035 }
1036#endif
Chris Lattnere64b7772007-10-24 16:57:36 +00001037 // Return this stmt unmodified.
1038 return S;
Chris Lattner311ff022007-10-16 22:36:42 +00001039}
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001040
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001041/// SynthCountByEnumWithState - To print:
1042/// ((unsigned int (*)
1043/// (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
1044/// (void *)objc_msgSend)((id)l_collection,
1045/// sel_registerName(
1046/// "countByEnumeratingWithState:objects:count:"),
1047/// &enumState,
1048/// (id *)items, (unsigned int)16)
1049///
Steve Naroffb29b4272008-04-14 22:03:09 +00001050void RewriteObjC::SynthCountByEnumWithState(std::string &buf) {
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001051 buf += "((unsigned int (*) (id, SEL, struct __objcFastEnumerationState *, "
1052 "id *, unsigned int))(void *)objc_msgSend)";
1053 buf += "\n\t\t";
1054 buf += "((id)l_collection,\n\t\t";
1055 buf += "sel_registerName(\"countByEnumeratingWithState:objects:count:\"),";
1056 buf += "\n\t\t";
1057 buf += "&enumState, "
1058 "(id *)items, (unsigned int)16)";
1059}
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001060
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001061/// RewriteBreakStmt - Rewrite for a break-stmt inside an ObjC2's foreach
1062/// statement to exit to its outer synthesized loop.
1063///
Steve Naroffb29b4272008-04-14 22:03:09 +00001064Stmt *RewriteObjC::RewriteBreakStmt(BreakStmt *S) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001065 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
1066 return S;
1067 // replace break with goto __break_label
1068 std::string buf;
1069
1070 SourceLocation startLoc = S->getLocStart();
1071 buf = "goto __break_label_";
1072 buf += utostr(ObjCBcLabelNo.back());
Chris Lattneraadaf782008-01-31 19:51:04 +00001073 ReplaceText(startLoc, strlen("break"), buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001074
1075 return 0;
1076}
1077
1078/// RewriteContinueStmt - Rewrite for a continue-stmt inside an ObjC2's foreach
1079/// statement to continue with its inner synthesized loop.
1080///
Steve Naroffb29b4272008-04-14 22:03:09 +00001081Stmt *RewriteObjC::RewriteContinueStmt(ContinueStmt *S) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001082 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
1083 return S;
1084 // replace continue with goto __continue_label
1085 std::string buf;
1086
1087 SourceLocation startLoc = S->getLocStart();
1088 buf = "goto __continue_label_";
1089 buf += utostr(ObjCBcLabelNo.back());
Chris Lattneraadaf782008-01-31 19:51:04 +00001090 ReplaceText(startLoc, strlen("continue"), buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001091
1092 return 0;
1093}
1094
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001095/// RewriteObjCForCollectionStmt - Rewriter for ObjC2's foreach statement.
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001096/// It rewrites:
1097/// for ( type elem in collection) { stmts; }
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00001098
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001099/// Into:
1100/// {
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001101/// type elem;
1102/// struct __objcFastEnumerationState enumState = { 0 };
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001103/// id items[16];
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001104/// id l_collection = (id)collection;
1105/// unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
1106/// objects:items count:16];
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001107/// if (limit) {
1108/// unsigned long startMutations = *enumState.mutationsPtr;
1109/// do {
1110/// unsigned long counter = 0;
1111/// do {
1112/// if (startMutations != *enumState.mutationsPtr)
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001113/// objc_enumerationMutation(l_collection);
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001114/// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001115/// stmts;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001116/// __continue_label: ;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001117/// } while (counter < limit);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001118/// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1119/// objects:items count:16]);
1120/// elem = nil;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001121/// __break_label: ;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001122/// }
1123/// else
1124/// elem = nil;
1125/// }
1126///
Steve Naroffb29b4272008-04-14 22:03:09 +00001127Stmt *RewriteObjC::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
Chris Lattner338d1e22008-01-31 05:10:40 +00001128 SourceLocation OrigEnd) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001129 assert(!Stmts.empty() && "ObjCForCollectionStmt - Statement stack empty");
1130 assert(isa<ObjCForCollectionStmt>(Stmts.back()) &&
1131 "ObjCForCollectionStmt Statement stack mismatch");
1132 assert(!ObjCBcLabelNo.empty() &&
1133 "ObjCForCollectionStmt - Label No stack empty");
1134
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001135 SourceLocation startLoc = S->getLocStart();
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001136 const char *startBuf = SM->getCharacterData(startLoc);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001137 const char *elementName;
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001138 std::string elementTypeAsString;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001139 std::string buf;
1140 buf = "\n{\n\t";
1141 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->getElement())) {
1142 // type elem;
1143 QualType ElementType = cast<ValueDecl>(DS->getDecl())->getType();
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001144 elementTypeAsString = ElementType.getAsString();
1145 buf += elementTypeAsString;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001146 buf += " ";
1147 elementName = DS->getDecl()->getName();
1148 buf += elementName;
1149 buf += ";\n\t";
1150 }
Chris Lattner06767512008-04-08 05:52:18 +00001151 else {
1152 DeclRefExpr *DR = cast<DeclRefExpr>(S->getElement());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001153 elementName = DR->getDecl()->getName();
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001154 elementTypeAsString = DR->getDecl()->getType().getAsString();
1155 }
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001156
1157 // struct __objcFastEnumerationState enumState = { 0 };
1158 buf += "struct __objcFastEnumerationState enumState = { 0 };\n\t";
1159 // id items[16];
1160 buf += "id items[16];\n\t";
1161 // id l_collection = (id)
1162 buf += "id l_collection = (id)";
Fariborz Jahanian75712282008-01-10 00:24:29 +00001163 // Find start location of 'collection' the hard way!
1164 const char *startCollectionBuf = startBuf;
1165 startCollectionBuf += 3; // skip 'for'
1166 startCollectionBuf = strchr(startCollectionBuf, '(');
1167 startCollectionBuf++; // skip '('
1168 // find 'in' and skip it.
1169 while (*startCollectionBuf != ' ' ||
1170 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' ||
1171 (*(startCollectionBuf+3) != ' ' &&
1172 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '('))
1173 startCollectionBuf++;
1174 startCollectionBuf += 3;
1175
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001176 // Replace: "for (type element in" with string constructed thus far.
Chris Lattneraadaf782008-01-31 19:51:04 +00001177 ReplaceText(startLoc, startCollectionBuf - startBuf,
1178 buf.c_str(), buf.size());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001179 // Replace ')' in for '(' type elem in collection ')' with ';'
Fariborz Jahanian75712282008-01-10 00:24:29 +00001180 SourceLocation rightParenLoc = S->getRParenLoc();
1181 const char *rparenBuf = SM->getCharacterData(rightParenLoc);
1182 SourceLocation lparenLoc = startLoc.getFileLocWithOffset(rparenBuf-startBuf);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001183 buf = ";\n\t";
1184
1185 // unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
1186 // objects:items count:16];
1187 // which is synthesized into:
1188 // unsigned int limit =
1189 // ((unsigned int (*)
1190 // (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
1191 // (void *)objc_msgSend)((id)l_collection,
1192 // sel_registerName(
1193 // "countByEnumeratingWithState:objects:count:"),
1194 // (struct __objcFastEnumerationState *)&state,
1195 // (id *)items, (unsigned int)16);
1196 buf += "unsigned long limit =\n\t\t";
1197 SynthCountByEnumWithState(buf);
1198 buf += ";\n\t";
1199 /// if (limit) {
1200 /// unsigned long startMutations = *enumState.mutationsPtr;
1201 /// do {
1202 /// unsigned long counter = 0;
1203 /// do {
1204 /// if (startMutations != *enumState.mutationsPtr)
1205 /// objc_enumerationMutation(l_collection);
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001206 /// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001207 buf += "if (limit) {\n\t";
1208 buf += "unsigned long startMutations = *enumState.mutationsPtr;\n\t";
1209 buf += "do {\n\t\t";
1210 buf += "unsigned long counter = 0;\n\t\t";
1211 buf += "do {\n\t\t\t";
1212 buf += "if (startMutations != *enumState.mutationsPtr)\n\t\t\t\t";
1213 buf += "objc_enumerationMutation(l_collection);\n\t\t\t";
1214 buf += elementName;
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001215 buf += " = (";
1216 buf += elementTypeAsString;
1217 buf += ")enumState.itemsPtr[counter++];";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001218 // Replace ')' in for '(' type elem in collection ')' with all of these.
Chris Lattneraadaf782008-01-31 19:51:04 +00001219 ReplaceText(lparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001220
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001221 /// __continue_label: ;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001222 /// } while (counter < limit);
1223 /// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1224 /// objects:items count:16]);
1225 /// elem = nil;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001226 /// __break_label: ;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001227 /// }
1228 /// else
1229 /// elem = nil;
1230 /// }
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001231 ///
1232 buf = ";\n\t";
1233 buf += "__continue_label_";
1234 buf += utostr(ObjCBcLabelNo.back());
1235 buf += ": ;";
1236 buf += "\n\t\t";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001237 buf += "} while (counter < limit);\n\t";
1238 buf += "} while (limit = ";
1239 SynthCountByEnumWithState(buf);
1240 buf += ");\n\t";
1241 buf += elementName;
1242 buf += " = nil;\n\t";
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001243 buf += "__break_label_";
1244 buf += utostr(ObjCBcLabelNo.back());
1245 buf += ": ;\n\t";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001246 buf += "}\n\t";
1247 buf += "else\n\t\t";
1248 buf += elementName;
1249 buf += " = nil;\n";
1250 buf += "}\n";
1251 // Insert all these *after* the statement body.
Chris Lattner338d1e22008-01-31 05:10:40 +00001252 SourceLocation endBodyLoc = OrigEnd.getFileLocWithOffset(1);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001253 InsertText(endBodyLoc, buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001254 Stmts.pop_back();
1255 ObjCBcLabelNo.pop_back();
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001256 return 0;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001257}
1258
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001259/// RewriteObjCSynchronizedStmt -
1260/// This routine rewrites @synchronized(expr) stmt;
1261/// into:
1262/// objc_sync_enter(expr);
1263/// @try stmt @finally { objc_sync_exit(expr); }
1264///
Steve Naroffb29b4272008-04-14 22:03:09 +00001265Stmt *RewriteObjC::RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001266 // Get the start location and compute the semi location.
1267 SourceLocation startLoc = S->getLocStart();
1268 const char *startBuf = SM->getCharacterData(startLoc);
1269
1270 assert((*startBuf == '@') && "bogus @synchronized location");
1271
1272 std::string buf;
1273 buf = "objc_sync_enter";
Chris Lattneraadaf782008-01-31 19:51:04 +00001274 ReplaceText(startLoc, 13, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001275 SourceLocation endLoc = S->getSynchExpr()->getLocEnd();
1276 const char *endBuf = SM->getCharacterData(endLoc);
1277 endBuf++;
1278 const char *rparenBuf = strchr(endBuf, ')');
1279 SourceLocation rparenLoc = startLoc.getFileLocWithOffset(rparenBuf-startBuf);
1280 buf = ");\n";
1281 // declare a new scope with two variables, _stack and _rethrow.
1282 buf += "/* @try scope begin */ \n{ struct _objc_exception_data {\n";
1283 buf += "int buf[18/*32-bit i386*/];\n";
1284 buf += "char *pointers[4];} _stack;\n";
1285 buf += "id volatile _rethrow = 0;\n";
1286 buf += "objc_exception_try_enter(&_stack);\n";
1287 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Chris Lattneraadaf782008-01-31 19:51:04 +00001288 ReplaceText(rparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001289 startLoc = S->getSynchBody()->getLocEnd();
1290 startBuf = SM->getCharacterData(startLoc);
1291
1292 assert((*startBuf == '}') && "bogus @try block");
1293 SourceLocation lastCurlyLoc = startLoc;
1294 buf = "}\nelse {\n";
1295 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1296 buf += " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
Steve Naroffb2a39452008-07-16 19:47:39 +00001297 buf += " objc_sync_exit(";
1298 std::ostringstream syncExprBuf;
1299 S->getSynchExpr()->printPretty(syncExprBuf);
1300 buf += syncExprBuf.str();
1301 buf += ");\n";
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001302 buf += " if (_rethrow) objc_exception_throw(_rethrow);\n";
1303 buf += "}\n";
1304 buf += "}";
1305
Chris Lattneraadaf782008-01-31 19:51:04 +00001306 ReplaceText(lastCurlyLoc, 1, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001307 return 0;
1308}
1309
Steve Naroffb29b4272008-04-14 22:03:09 +00001310Stmt *RewriteObjC::RewriteObjCTryStmt(ObjCAtTryStmt *S) {
Steve Naroff75730982007-11-07 04:08:17 +00001311 // Get the start location and compute the semi location.
1312 SourceLocation startLoc = S->getLocStart();
1313 const char *startBuf = SM->getCharacterData(startLoc);
1314
1315 assert((*startBuf == '@') && "bogus @try location");
1316
1317 std::string buf;
1318 // declare a new scope with two variables, _stack and _rethrow.
1319 buf = "/* @try scope begin */ { struct _objc_exception_data {\n";
1320 buf += "int buf[18/*32-bit i386*/];\n";
1321 buf += "char *pointers[4];} _stack;\n";
1322 buf += "id volatile _rethrow = 0;\n";
1323 buf += "objc_exception_try_enter(&_stack);\n";
Steve Naroff21867b12007-11-07 18:43:40 +00001324 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Steve Naroff75730982007-11-07 04:08:17 +00001325
Chris Lattneraadaf782008-01-31 19:51:04 +00001326 ReplaceText(startLoc, 4, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001327
1328 startLoc = S->getTryBody()->getLocEnd();
1329 startBuf = SM->getCharacterData(startLoc);
1330
1331 assert((*startBuf == '}') && "bogus @try block");
Steve Naroffc9ba1722008-07-16 15:31:30 +00001332
Steve Naroff75730982007-11-07 04:08:17 +00001333 SourceLocation lastCurlyLoc = startLoc;
Steve Naroffc9ba1722008-07-16 15:31:30 +00001334 ObjCAtCatchStmt *catchList = S->getCatchStmts();
1335 if (catchList) {
1336 startLoc = startLoc.getFileLocWithOffset(1);
1337 buf = " /* @catch begin */ else {\n";
1338 buf += " id _caught = objc_exception_extract(&_stack);\n";
1339 buf += " objc_exception_try_enter (&_stack);\n";
1340 buf += " if (_setjmp(_stack.buf))\n";
1341 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1342 buf += " else { /* @catch continue */";
1343
1344 InsertText(startLoc, buf.c_str(), buf.size());
1345 }
Steve Naroff75730982007-11-07 04:08:17 +00001346 bool sawIdTypedCatch = false;
1347 Stmt *lastCatchBody = 0;
Steve Naroff75730982007-11-07 04:08:17 +00001348 while (catchList) {
1349 Stmt *catchStmt = catchList->getCatchParamStmt();
1350
1351 if (catchList == S->getCatchStmts())
1352 buf = "if ("; // we are generating code for the first catch clause
1353 else
1354 buf = "else if (";
1355 startLoc = catchList->getLocStart();
1356 startBuf = SM->getCharacterData(startLoc);
1357
1358 assert((*startBuf == '@') && "bogus @catch location");
1359
1360 const char *lParenLoc = strchr(startBuf, '(');
1361
Steve Naroffbe4b3332008-02-01 22:08:12 +00001362 if (catchList->hasEllipsis()) {
Steve Naroffe12e6922008-02-01 20:02:07 +00001363 // Now rewrite the body...
1364 lastCatchBody = catchList->getCatchBody();
Steve Naroffe12e6922008-02-01 20:02:07 +00001365 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1366 const char *bodyBuf = SM->getCharacterData(bodyLoc);
Chris Lattner06767512008-04-08 05:52:18 +00001367 assert(*SM->getCharacterData(catchList->getRParenLoc()) == ')' &&
1368 "bogus @catch paren location");
Steve Naroffe12e6922008-02-01 20:02:07 +00001369 assert((*bodyBuf == '{') && "bogus @catch body location");
1370
1371 buf += "1) { id _tmp = _caught;";
1372 Rewrite.ReplaceText(startLoc, bodyBuf-startBuf+1,
1373 buf.c_str(), buf.size());
1374 } else if (DeclStmt *declStmt = dyn_cast<DeclStmt>(catchStmt)) {
Steve Naroff75730982007-11-07 04:08:17 +00001375 QualType t = dyn_cast<ValueDecl>(declStmt->getDecl())->getType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001376 if (t == Context->getObjCIdType()) {
Steve Naroff75730982007-11-07 04:08:17 +00001377 buf += "1) { ";
Chris Lattneraadaf782008-01-31 19:51:04 +00001378 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001379 sawIdTypedCatch = true;
1380 } else if (const PointerType *pType = t->getAsPointerType()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001381 ObjCInterfaceType *cls; // Should be a pointer to a class.
Steve Naroff75730982007-11-07 04:08:17 +00001382
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001383 cls = dyn_cast<ObjCInterfaceType>(pType->getPointeeType().getTypePtr());
Steve Naroff75730982007-11-07 04:08:17 +00001384 if (cls) {
Steve Naroff21867b12007-11-07 18:43:40 +00001385 buf += "objc_exception_match((struct objc_class *)objc_getClass(\"";
Steve Naroff75730982007-11-07 04:08:17 +00001386 buf += cls->getDecl()->getName();
Steve Naroff21867b12007-11-07 18:43:40 +00001387 buf += "\"), (struct objc_object *)_caught)) { ";
Chris Lattneraadaf782008-01-31 19:51:04 +00001388 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001389 }
1390 }
1391 // Now rewrite the body...
1392 lastCatchBody = catchList->getCatchBody();
1393 SourceLocation rParenLoc = catchList->getRParenLoc();
1394 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1395 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1396 const char *rParenBuf = SM->getCharacterData(rParenLoc);
1397 assert((*rParenBuf == ')') && "bogus @catch paren location");
1398 assert((*bodyBuf == '{') && "bogus @catch body location");
1399
1400 buf = " = _caught;";
1401 // Here we replace ") {" with "= _caught;" (which initializes and
1402 // declares the @catch parameter).
Chris Lattneraadaf782008-01-31 19:51:04 +00001403 ReplaceText(rParenLoc, bodyBuf-rParenBuf+1, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001404 } else if (!isa<NullStmt>(catchStmt)) {
Steve Naroff75730982007-11-07 04:08:17 +00001405 assert(false && "@catch rewrite bug");
Steve Naroff2bd03922007-11-07 15:32:26 +00001406 }
Steve Naroffe12e6922008-02-01 20:02:07 +00001407 // make sure all the catch bodies get rewritten!
Steve Naroff75730982007-11-07 04:08:17 +00001408 catchList = catchList->getNextCatchStmt();
1409 }
1410 // Complete the catch list...
1411 if (lastCatchBody) {
1412 SourceLocation bodyLoc = lastCatchBody->getLocEnd();
Chris Lattner06767512008-04-08 05:52:18 +00001413 assert(*SM->getCharacterData(bodyLoc) == '}' &&
1414 "bogus @catch body location");
Steve Naroff75730982007-11-07 04:08:17 +00001415 bodyLoc = bodyLoc.getFileLocWithOffset(1);
1416 buf = " } } /* @catch end */\n";
1417
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001418 InsertText(bodyLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001419
1420 // Set lastCurlyLoc
1421 lastCurlyLoc = lastCatchBody->getLocEnd();
1422 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001423 if (ObjCAtFinallyStmt *finalStmt = S->getFinallyStmt()) {
Steve Naroff75730982007-11-07 04:08:17 +00001424 startLoc = finalStmt->getLocStart();
1425 startBuf = SM->getCharacterData(startLoc);
1426 assert((*startBuf == '@') && "bogus @finally start");
1427
1428 buf = "/* @finally */";
Chris Lattneraadaf782008-01-31 19:51:04 +00001429 ReplaceText(startLoc, 8, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001430
1431 Stmt *body = finalStmt->getFinallyBody();
1432 SourceLocation startLoc = body->getLocStart();
1433 SourceLocation endLoc = body->getLocEnd();
Chris Lattner06767512008-04-08 05:52:18 +00001434 assert(*SM->getCharacterData(startLoc) == '{' &&
1435 "bogus @finally body location");
1436 assert(*SM->getCharacterData(endLoc) == '}' &&
1437 "bogus @finally body location");
Steve Naroff75730982007-11-07 04:08:17 +00001438
1439 startLoc = startLoc.getFileLocWithOffset(1);
1440 buf = " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001441 InsertText(startLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001442 endLoc = endLoc.getFileLocWithOffset(-1);
1443 buf = " if (_rethrow) objc_exception_throw(_rethrow);\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001444 InsertText(endLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001445
1446 // Set lastCurlyLoc
1447 lastCurlyLoc = body->getLocEnd();
1448 }
1449 // Now emit the final closing curly brace...
1450 lastCurlyLoc = lastCurlyLoc.getFileLocWithOffset(1);
1451 buf = " } /* @try scope end */\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001452 InsertText(lastCurlyLoc, buf.c_str(), buf.size());
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001453 return 0;
1454}
1455
Steve Naroffb29b4272008-04-14 22:03:09 +00001456Stmt *RewriteObjC::RewriteObjCCatchStmt(ObjCAtCatchStmt *S) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001457 return 0;
1458}
1459
Steve Naroffb29b4272008-04-14 22:03:09 +00001460Stmt *RewriteObjC::RewriteObjCFinallyStmt(ObjCAtFinallyStmt *S) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001461 return 0;
1462}
1463
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001464// This can't be done with ReplaceStmt(S, ThrowExpr), since
Steve Naroff2bd03922007-11-07 15:32:26 +00001465// the throw expression is typically a message expression that's already
1466// been rewritten! (which implies the SourceLocation's are invalid).
Steve Naroffb29b4272008-04-14 22:03:09 +00001467Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) {
Steve Naroff2bd03922007-11-07 15:32:26 +00001468 // Get the start location and compute the semi location.
1469 SourceLocation startLoc = S->getLocStart();
1470 const char *startBuf = SM->getCharacterData(startLoc);
1471
1472 assert((*startBuf == '@') && "bogus @throw location");
1473
1474 std::string buf;
1475 /* void objc_exception_throw(id) __attribute__((noreturn)); */
Steve Naroff20ebf8f2008-01-19 00:42:38 +00001476 if (S->getThrowExpr())
1477 buf = "objc_exception_throw(";
1478 else // add an implicit argument
1479 buf = "objc_exception_throw(_caught";
Chris Lattneraadaf782008-01-31 19:51:04 +00001480 ReplaceText(startLoc, 6, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001481 const char *semiBuf = strchr(startBuf, ';');
1482 assert((*semiBuf == ';') && "@throw: can't find ';'");
1483 SourceLocation semiLoc = startLoc.getFileLocWithOffset(semiBuf-startBuf);
1484 buf = ");";
Chris Lattneraadaf782008-01-31 19:51:04 +00001485 ReplaceText(semiLoc, 1, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001486 return 0;
1487}
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001488
Steve Naroffb29b4272008-04-14 22:03:09 +00001489Stmt *RewriteObjC::RewriteAtEncode(ObjCEncodeExpr *Exp) {
Chris Lattner01c57482007-10-17 22:35:30 +00001490 // Create a new string expression.
1491 QualType StrType = Context->getPointerType(Context->CharTy);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001492 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001493 Context->getObjCEncodingForType(Exp->getEncodedType(), StrEncoding,
1494 EncodingRecordTypes);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001495 Expr *Replacement = new StringLiteral(StrEncoding.c_str(),
1496 StrEncoding.length(), false, StrType,
Chris Lattner01c57482007-10-17 22:35:30 +00001497 SourceLocation(), SourceLocation());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001498 ReplaceStmt(Exp, Replacement);
Chris Lattnere365c502007-11-30 22:25:36 +00001499
Chris Lattner07506182007-11-30 22:53:43 +00001500 // Replace this subexpr in the parent.
Chris Lattnere64b7772007-10-24 16:57:36 +00001501 delete Exp;
1502 return Replacement;
Chris Lattner311ff022007-10-16 22:36:42 +00001503}
1504
Steve Naroffb29b4272008-04-14 22:03:09 +00001505Stmt *RewriteObjC::RewriteAtSelector(ObjCSelectorExpr *Exp) {
Steve Naroffb42f8412007-11-05 14:50:49 +00001506 assert(SelGetUidFunctionDecl && "Can't find sel_registerName() decl");
1507 // Create a call to sel_registerName("selName").
1508 llvm::SmallVector<Expr*, 8> SelExprs;
1509 QualType argType = Context->getPointerType(Context->CharTy);
1510 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
1511 Exp->getSelector().getName().size(),
1512 false, argType, SourceLocation(),
1513 SourceLocation()));
1514 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
1515 &SelExprs[0], SelExprs.size());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001516 ReplaceStmt(Exp, SelExp);
Steve Naroffb42f8412007-11-05 14:50:49 +00001517 delete Exp;
1518 return SelExp;
1519}
1520
Steve Naroffb29b4272008-04-14 22:03:09 +00001521CallExpr *RewriteObjC::SynthesizeCallToFunctionDecl(
Steve Naroff934f2762007-10-24 22:48:43 +00001522 FunctionDecl *FD, Expr **args, unsigned nargs) {
Steve Naroffebf2b562007-10-23 23:50:29 +00001523 // Get the type, we will need to reference it in a couple spots.
Steve Naroff934f2762007-10-24 22:48:43 +00001524 QualType msgSendType = FD->getType();
Steve Naroffebf2b562007-10-23 23:50:29 +00001525
1526 // Create a reference to the objc_msgSend() declaration.
Steve Naroff934f2762007-10-24 22:48:43 +00001527 DeclRefExpr *DRE = new DeclRefExpr(FD, msgSendType, SourceLocation());
Steve Naroffebf2b562007-10-23 23:50:29 +00001528
1529 // Now, we cast the reference to a pointer to the objc_msgSend type.
Chris Lattnerf04da132007-10-24 17:06:59 +00001530 QualType pToFunc = Context->getPointerType(msgSendType);
Steve Naroffebf2b562007-10-23 23:50:29 +00001531 ImplicitCastExpr *ICE = new ImplicitCastExpr(pToFunc, DRE);
1532
1533 const FunctionType *FT = msgSendType->getAsFunctionType();
Chris Lattnere64b7772007-10-24 16:57:36 +00001534
Steve Naroff934f2762007-10-24 22:48:43 +00001535 return new CallExpr(ICE, args, nargs, FT->getResultType(), SourceLocation());
1536}
1537
Steve Naroffd5255f52007-11-01 13:24:47 +00001538static bool scanForProtocolRefs(const char *startBuf, const char *endBuf,
1539 const char *&startRef, const char *&endRef) {
1540 while (startBuf < endBuf) {
1541 if (*startBuf == '<')
1542 startRef = startBuf; // mark the start.
1543 if (*startBuf == '>') {
Steve Naroff32174822007-11-09 12:50:28 +00001544 if (startRef && *startRef == '<') {
1545 endRef = startBuf; // mark the end.
1546 return true;
1547 }
1548 return false;
Steve Naroffd5255f52007-11-01 13:24:47 +00001549 }
1550 startBuf++;
1551 }
1552 return false;
1553}
1554
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001555static void scanToNextArgument(const char *&argRef) {
1556 int angle = 0;
1557 while (*argRef != ')' && (*argRef != ',' || angle > 0)) {
1558 if (*argRef == '<')
1559 angle++;
1560 else if (*argRef == '>')
1561 angle--;
1562 argRef++;
1563 }
1564 assert(angle == 0 && "scanToNextArgument - bad protocol type syntax");
1565}
Fariborz Jahanian291e04b2007-12-11 23:04:08 +00001566
Steve Naroffb29b4272008-04-14 22:03:09 +00001567bool RewriteObjC::needToScanForQualifiers(QualType T) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001568
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001569 if (T->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001570 return true;
1571
Steve Naroffd5255f52007-11-01 13:24:47 +00001572 if (const PointerType *pType = T->getAsPointerType()) {
Steve Naroff9165ad32007-10-31 04:38:33 +00001573 Type *pointeeType = pType->getPointeeType().getTypePtr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001574 if (isa<ObjCQualifiedInterfaceType>(pointeeType))
Steve Naroff9165ad32007-10-31 04:38:33 +00001575 return true; // we have "Class <Protocol> *".
1576 }
Steve Naroffd5255f52007-11-01 13:24:47 +00001577 return false;
1578}
1579
Steve Naroffb29b4272008-04-14 22:03:09 +00001580void RewriteObjC::RewriteObjCQualifiedInterfaceTypes(Decl *Dcl) {
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001581 SourceLocation Loc;
1582 QualType Type;
1583 const FunctionTypeProto *proto = 0;
1584 if (VarDecl *VD = dyn_cast<VarDecl>(Dcl)) {
1585 Loc = VD->getLocation();
1586 Type = VD->getType();
1587 }
1588 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Dcl)) {
1589 Loc = FD->getLocation();
1590 // Check for ObjC 'id' and class types that have been adorned with protocol
1591 // information (id<p>, C<p>*). The protocol references need to be rewritten!
1592 const FunctionType *funcType = FD->getType()->getAsFunctionType();
1593 assert(funcType && "missing function type");
1594 proto = dyn_cast<FunctionTypeProto>(funcType);
1595 if (!proto)
1596 return;
1597 Type = proto->getResultType();
1598 }
1599 else
1600 return;
Steve Naroffd5255f52007-11-01 13:24:47 +00001601
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001602 if (needToScanForQualifiers(Type)) {
Steve Naroffd5255f52007-11-01 13:24:47 +00001603 // Since types are unique, we need to scan the buffer.
Steve Naroffd5255f52007-11-01 13:24:47 +00001604
1605 const char *endBuf = SM->getCharacterData(Loc);
1606 const char *startBuf = endBuf;
Steve Naroff6cafbf22008-05-31 05:02:17 +00001607 while (*startBuf != ';' && *startBuf != '<' && startBuf != MainFileStart)
Steve Naroffd5255f52007-11-01 13:24:47 +00001608 startBuf--; // scan backward (from the decl location) for return type.
1609 const char *startRef = 0, *endRef = 0;
1610 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1611 // Get the locations of the startRef, endRef.
1612 SourceLocation LessLoc = Loc.getFileLocWithOffset(startRef-endBuf);
1613 SourceLocation GreaterLoc = Loc.getFileLocWithOffset(endRef-endBuf+1);
1614 // Comment out the protocol references.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001615 InsertText(LessLoc, "/*", 2);
1616 InsertText(GreaterLoc, "*/", 2);
Steve Naroff9165ad32007-10-31 04:38:33 +00001617 }
1618 }
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001619 if (!proto)
1620 return; // most likely, was a variable
Steve Naroffd5255f52007-11-01 13:24:47 +00001621 // Now check arguments.
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001622 const char *startBuf = SM->getCharacterData(Loc);
1623 const char *startFuncBuf = startBuf;
Steve Naroffd5255f52007-11-01 13:24:47 +00001624 for (unsigned i = 0; i < proto->getNumArgs(); i++) {
1625 if (needToScanForQualifiers(proto->getArgType(i))) {
1626 // Since types are unique, we need to scan the buffer.
Steve Naroffd5255f52007-11-01 13:24:47 +00001627
Steve Naroffd5255f52007-11-01 13:24:47 +00001628 const char *endBuf = startBuf;
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001629 // scan forward (from the decl location) for argument types.
1630 scanToNextArgument(endBuf);
Steve Naroffd5255f52007-11-01 13:24:47 +00001631 const char *startRef = 0, *endRef = 0;
1632 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1633 // Get the locations of the startRef, endRef.
Fariborz Jahanian291e04b2007-12-11 23:04:08 +00001634 SourceLocation LessLoc =
1635 Loc.getFileLocWithOffset(startRef-startFuncBuf);
1636 SourceLocation GreaterLoc =
1637 Loc.getFileLocWithOffset(endRef-startFuncBuf+1);
Steve Naroffd5255f52007-11-01 13:24:47 +00001638 // Comment out the protocol references.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001639 InsertText(LessLoc, "/*", 2);
1640 InsertText(GreaterLoc, "*/", 2);
Steve Naroffd5255f52007-11-01 13:24:47 +00001641 }
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001642 startBuf = ++endBuf;
1643 }
1644 else {
1645 while (*startBuf != ')' && *startBuf != ',')
1646 startBuf++; // scan forward (from the decl location) for argument types.
1647 startBuf++;
1648 }
Steve Naroffd5255f52007-11-01 13:24:47 +00001649 }
Steve Naroff9165ad32007-10-31 04:38:33 +00001650}
1651
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001652// SynthSelGetUidFunctionDecl - SEL sel_registerName(const char *str);
Steve Naroffb29b4272008-04-14 22:03:09 +00001653void RewriteObjC::SynthSelGetUidFunctionDecl() {
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001654 IdentifierInfo *SelGetUidIdent = &Context->Idents.get("sel_registerName");
1655 llvm::SmallVector<QualType, 16> ArgTys;
1656 ArgTys.push_back(Context->getPointerType(
1657 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001658 QualType getFuncType = Context->getFunctionType(Context->getObjCSelType(),
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001659 &ArgTys[0], ArgTys.size(),
1660 false /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001661 SelGetUidFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001662 SourceLocation(),
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001663 SelGetUidIdent, getFuncType,
1664 FunctionDecl::Extern, false, 0);
1665}
1666
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001667// SynthGetProtocolFunctionDecl - Protocol objc_getProtocol(const char *proto);
Steve Naroffb29b4272008-04-14 22:03:09 +00001668void RewriteObjC::SynthGetProtocolFunctionDecl() {
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001669 IdentifierInfo *SelGetProtoIdent = &Context->Idents.get("objc_getProtocol");
1670 llvm::SmallVector<QualType, 16> ArgTys;
1671 ArgTys.push_back(Context->getPointerType(
1672 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001673 QualType getFuncType = Context->getFunctionType(Context->getObjCProtoType(),
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001674 &ArgTys[0], ArgTys.size(),
1675 false /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001676 GetProtocolFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001677 SourceLocation(),
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001678 SelGetProtoIdent, getFuncType,
1679 FunctionDecl::Extern, false, 0);
1680}
1681
Steve Naroffb29b4272008-04-14 22:03:09 +00001682void RewriteObjC::RewriteFunctionDecl(FunctionDecl *FD) {
Steve Naroff09b266e2007-10-30 23:14:51 +00001683 // declared in <objc/objc.h>
Steve Naroffbeaf2992007-11-03 11:27:19 +00001684 if (strcmp(FD->getName(), "sel_registerName") == 0) {
Steve Naroff09b266e2007-10-30 23:14:51 +00001685 SelGetUidFunctionDecl = FD;
Steve Naroff9165ad32007-10-31 04:38:33 +00001686 return;
1687 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001688 RewriteObjCQualifiedInterfaceTypes(FD);
Steve Naroff09b266e2007-10-30 23:14:51 +00001689}
1690
Steve Naroffc0a123c2008-03-11 17:37:02 +00001691// SynthSuperContructorFunctionDecl - id objc_super(id obj, id super);
Steve Naroffb29b4272008-04-14 22:03:09 +00001692void RewriteObjC::SynthSuperContructorFunctionDecl() {
Steve Naroffc0a123c2008-03-11 17:37:02 +00001693 if (SuperContructorFunctionDecl)
1694 return;
1695 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_super");
1696 llvm::SmallVector<QualType, 16> ArgTys;
1697 QualType argT = Context->getObjCIdType();
1698 assert(!argT.isNull() && "Can't find 'id' type");
1699 ArgTys.push_back(argT);
1700 ArgTys.push_back(argT);
1701 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
1702 &ArgTys[0], ArgTys.size(),
1703 false);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001704 SuperContructorFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001705 SourceLocation(),
Steve Naroffc0a123c2008-03-11 17:37:02 +00001706 msgSendIdent, msgSendType,
1707 FunctionDecl::Extern, false, 0);
1708}
1709
Steve Naroff09b266e2007-10-30 23:14:51 +00001710// SynthMsgSendFunctionDecl - id objc_msgSend(id self, SEL op, ...);
Steve Naroffb29b4272008-04-14 22:03:09 +00001711void RewriteObjC::SynthMsgSendFunctionDecl() {
Steve Naroff09b266e2007-10-30 23:14:51 +00001712 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend");
1713 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001714 QualType argT = Context->getObjCIdType();
Steve Naroff09b266e2007-10-30 23:14:51 +00001715 assert(!argT.isNull() && "Can't find 'id' type");
1716 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001717 argT = Context->getObjCSelType();
Steve Naroff09b266e2007-10-30 23:14:51 +00001718 assert(!argT.isNull() && "Can't find 'SEL' type");
1719 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001720 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001721 &ArgTys[0], ArgTys.size(),
1722 true /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001723 MsgSendFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001724 SourceLocation(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001725 msgSendIdent, msgSendType,
1726 FunctionDecl::Extern, false, 0);
1727}
1728
Steve Naroff874e2322007-11-15 10:28:18 +00001729// SynthMsgSendSuperFunctionDecl - id objc_msgSendSuper(struct objc_super *, SEL op, ...);
Steve Naroffb29b4272008-04-14 22:03:09 +00001730void RewriteObjC::SynthMsgSendSuperFunctionDecl() {
Steve Naroff874e2322007-11-15 10:28:18 +00001731 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSendSuper");
1732 llvm::SmallVector<QualType, 16> ArgTys;
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001733 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001734 SourceLocation(),
Chris Lattnerc63e6602008-03-15 21:32:50 +00001735 &Context->Idents.get("objc_super"), 0);
Steve Naroff874e2322007-11-15 10:28:18 +00001736 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1737 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1738 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001739 argT = Context->getObjCSelType();
Steve Naroff874e2322007-11-15 10:28:18 +00001740 assert(!argT.isNull() && "Can't find 'SEL' type");
1741 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001742 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff874e2322007-11-15 10:28:18 +00001743 &ArgTys[0], ArgTys.size(),
1744 true /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001745 MsgSendSuperFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001746 SourceLocation(),
Steve Naroff874e2322007-11-15 10:28:18 +00001747 msgSendIdent, msgSendType,
1748 FunctionDecl::Extern, false, 0);
1749}
1750
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001751// SynthMsgSendStretFunctionDecl - id objc_msgSend_stret(id self, SEL op, ...);
Steve Naroffb29b4272008-04-14 22:03:09 +00001752void RewriteObjC::SynthMsgSendStretFunctionDecl() {
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001753 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_stret");
1754 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001755 QualType argT = Context->getObjCIdType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001756 assert(!argT.isNull() && "Can't find 'id' type");
1757 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001758 argT = Context->getObjCSelType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001759 assert(!argT.isNull() && "Can't find 'SEL' type");
1760 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001761 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001762 &ArgTys[0], ArgTys.size(),
1763 true /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001764 MsgSendStretFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001765 SourceLocation(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001766 msgSendIdent, msgSendType,
1767 FunctionDecl::Extern, false, 0);
1768}
1769
1770// SynthMsgSendSuperStretFunctionDecl -
1771// id objc_msgSendSuper_stret(struct objc_super *, SEL op, ...);
Steve Naroffb29b4272008-04-14 22:03:09 +00001772void RewriteObjC::SynthMsgSendSuperStretFunctionDecl() {
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001773 IdentifierInfo *msgSendIdent =
1774 &Context->Idents.get("objc_msgSendSuper_stret");
1775 llvm::SmallVector<QualType, 16> ArgTys;
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001776 RecordDecl *RD = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001777 SourceLocation(),
Chris Lattnerc63e6602008-03-15 21:32:50 +00001778 &Context->Idents.get("objc_super"), 0);
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001779 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1780 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1781 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001782 argT = Context->getObjCSelType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001783 assert(!argT.isNull() && "Can't find 'SEL' type");
1784 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001785 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001786 &ArgTys[0], ArgTys.size(),
1787 true /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001788 MsgSendSuperStretFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattnera98e58d2008-03-15 21:24:04 +00001789 SourceLocation(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001790 msgSendIdent, msgSendType,
1791 FunctionDecl::Extern, false, 0);
1792}
1793
Steve Naroff1284db82008-05-08 22:02:18 +00001794// SynthMsgSendFpretFunctionDecl - double objc_msgSend_fpret(id self, SEL op, ...);
Steve Naroffb29b4272008-04-14 22:03:09 +00001795void RewriteObjC::SynthMsgSendFpretFunctionDecl() {
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001796 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_fpret");
1797 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001798 QualType argT = Context->getObjCIdType();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001799 assert(!argT.isNull() && "Can't find 'id' type");
1800 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001801 argT = Context->getObjCSelType();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001802 assert(!argT.isNull() && "Can't find 'SEL' type");
1803 ArgTys.push_back(argT);
Steve Naroff1284db82008-05-08 22:02:18 +00001804 QualType msgSendType = Context->getFunctionType(Context->DoubleTy,
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001805 &ArgTys[0], ArgTys.size(),
1806 true /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001807 MsgSendFpretFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001808 SourceLocation(),
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001809 msgSendIdent, msgSendType,
1810 FunctionDecl::Extern, false, 0);
1811}
1812
Steve Naroff09b266e2007-10-30 23:14:51 +00001813// SynthGetClassFunctionDecl - id objc_getClass(const char *name);
Steve Naroffb29b4272008-04-14 22:03:09 +00001814void RewriteObjC::SynthGetClassFunctionDecl() {
Steve Naroff09b266e2007-10-30 23:14:51 +00001815 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getClass");
1816 llvm::SmallVector<QualType, 16> ArgTys;
1817 ArgTys.push_back(Context->getPointerType(
1818 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001819 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001820 &ArgTys[0], ArgTys.size(),
1821 false /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001822 GetClassFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001823 SourceLocation(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001824 getClassIdent, getClassType,
1825 FunctionDecl::Extern, false, 0);
1826}
1827
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001828// SynthGetMetaClassFunctionDecl - id objc_getClass(const char *name);
Steve Naroffb29b4272008-04-14 22:03:09 +00001829void RewriteObjC::SynthGetMetaClassFunctionDecl() {
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001830 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getMetaClass");
1831 llvm::SmallVector<QualType, 16> ArgTys;
1832 ArgTys.push_back(Context->getPointerType(
1833 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001834 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001835 &ArgTys[0], ArgTys.size(),
1836 false /*isVariadic*/);
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001837 GetMetaClassFunctionDecl = FunctionDecl::Create(*Context, TUDecl,
Chris Lattner0ed844b2008-04-04 06:12:32 +00001838 SourceLocation(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001839 getClassIdent, getClassType,
1840 FunctionDecl::Extern, false, 0);
1841}
1842
Steve Naroffb29b4272008-04-14 22:03:09 +00001843Stmt *RewriteObjC::RewriteObjCStringLiteral(ObjCStringLiteral *Exp) {
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001844 QualType strType = getConstantStringStructType();
1845
1846 std::string S = "__NSConstantStringImpl_";
Steve Naroff7691d9b2008-05-31 03:35:42 +00001847
1848 std::string tmpName = InFileName;
1849 unsigned i;
1850 for (i=0; i < tmpName.length(); i++) {
1851 char c = tmpName.at(i);
1852 // replace any non alphanumeric characters with '_'.
1853 if (!isalpha(c) && (c < '0' || c > '9'))
1854 tmpName[i] = '_';
1855 }
1856 S += tmpName;
1857 S += "_";
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001858 S += utostr(NumObjCStringLiterals++);
1859
Steve Naroffba92b2e2008-03-27 22:29:16 +00001860 Preamble += "static __NSConstantStringImpl " + S;
1861 Preamble += " __attribute__ ((section (\"__DATA, __cfstring\"))) = {__CFConstantStringClassReference,";
1862 Preamble += "0x000007c8,"; // utf8_str
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001863 // The pretty printer for StringLiteral handles escape characters properly.
1864 std::ostringstream prettyBuf;
1865 Exp->getString()->printPretty(prettyBuf);
Steve Naroffba92b2e2008-03-27 22:29:16 +00001866 Preamble += prettyBuf.str();
1867 Preamble += ",";
Steve Naroff3652c2d2008-03-15 01:36:04 +00001868 // The minus 2 removes the begin/end double quotes.
Steve Naroffba92b2e2008-03-27 22:29:16 +00001869 Preamble += utostr(prettyBuf.str().size()-2) + "};\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001870
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00001871 VarDecl *NewVD = VarDecl::Create(*Context, TUDecl, SourceLocation(),
Steve Naroff248a7532008-04-15 22:42:06 +00001872 &Context->Idents.get(S.c_str()), strType,
1873 VarDecl::Static, NULL);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001874 DeclRefExpr *DRE = new DeclRefExpr(NewVD, strType, SourceLocation());
1875 Expr *Unop = new UnaryOperator(DRE, UnaryOperator::AddrOf,
1876 Context->getPointerType(DRE->getType()),
1877 SourceLocation());
Steve Naroff96984642007-11-08 14:30:50 +00001878 // cast to NSConstantString *
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001879 CastExpr *cast = new CastExpr(Exp->getType(), Unop, SourceLocation());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001880 ReplaceStmt(Exp, cast);
Steve Naroff96984642007-11-08 14:30:50 +00001881 delete Exp;
1882 return cast;
Steve Naroffbeaf2992007-11-03 11:27:19 +00001883}
1884
Steve Naroffb29b4272008-04-14 22:03:09 +00001885ObjCInterfaceDecl *RewriteObjC::isSuperReceiver(Expr *recExpr) {
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001886 // check if we are sending a message to 'super'
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001887 if (!CurMethodDecl || !CurMethodDecl->isInstance()) return 0;
1888
Chris Lattner0d17f6f2008-06-21 18:04:54 +00001889 if (PreDefinedExpr *PDE = dyn_cast<PreDefinedExpr>(recExpr))
1890 if (PDE->getIdentType() == PreDefinedExpr::ObjCSuper) {
1891 const PointerType *PT = PDE->getType()->getAsPointerType();
1892 assert(PT);
1893 ObjCInterfaceType *IT = cast<ObjCInterfaceType>(PT->getPointeeType());
1894 return IT->getDecl();
1895 }
1896 return 0;
Steve Naroff874e2322007-11-15 10:28:18 +00001897}
1898
1899// struct objc_super { struct objc_object *receiver; struct objc_class *super; };
Steve Naroffb29b4272008-04-14 22:03:09 +00001900QualType RewriteObjC::getSuperStructType() {
Steve Naroff874e2322007-11-15 10:28:18 +00001901 if (!SuperStructDecl) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001902 SuperStructDecl = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattnerc63e6602008-03-15 21:32:50 +00001903 SourceLocation(),
1904 &Context->Idents.get("objc_super"), 0);
Steve Naroff874e2322007-11-15 10:28:18 +00001905 QualType FieldTypes[2];
1906
1907 // struct objc_object *receiver;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001908 FieldTypes[0] = Context->getObjCIdType();
Steve Naroff874e2322007-11-15 10:28:18 +00001909 // struct objc_class *super;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001910 FieldTypes[1] = Context->getObjCClassType();
Steve Naroff874e2322007-11-15 10:28:18 +00001911 // Create fields
1912 FieldDecl *FieldDecls[2];
1913
1914 for (unsigned i = 0; i < 2; ++i)
Chris Lattnerb048c982008-04-06 04:47:34 +00001915 FieldDecls[i] = FieldDecl::Create(*Context, SourceLocation(), 0,
Chris Lattner8e25d862008-03-16 00:16:02 +00001916 FieldTypes[i]);
Steve Naroff874e2322007-11-15 10:28:18 +00001917
1918 SuperStructDecl->defineBody(FieldDecls, 4);
1919 }
1920 return Context->getTagDeclType(SuperStructDecl);
1921}
1922
Steve Naroffb29b4272008-04-14 22:03:09 +00001923QualType RewriteObjC::getConstantStringStructType() {
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001924 if (!ConstantStringDecl) {
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00001925 ConstantStringDecl = RecordDecl::Create(*Context, TagDecl::TK_struct, TUDecl,
Chris Lattnerc63e6602008-03-15 21:32:50 +00001926 SourceLocation(),
1927 &Context->Idents.get("__NSConstantStringImpl"), 0);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001928 QualType FieldTypes[4];
1929
1930 // struct objc_object *receiver;
1931 FieldTypes[0] = Context->getObjCIdType();
1932 // int flags;
1933 FieldTypes[1] = Context->IntTy;
1934 // char *str;
1935 FieldTypes[2] = Context->getPointerType(Context->CharTy);
1936 // long length;
1937 FieldTypes[3] = Context->LongTy;
1938 // Create fields
Steve Naroff9630ec52008-03-27 22:59:54 +00001939 FieldDecl *FieldDecls[4];
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001940
1941 for (unsigned i = 0; i < 4; ++i)
Chris Lattnerb048c982008-04-06 04:47:34 +00001942 FieldDecls[i] = FieldDecl::Create(*Context, SourceLocation(), 0,
Chris Lattner8e25d862008-03-16 00:16:02 +00001943 FieldTypes[i]);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001944
1945 ConstantStringDecl->defineBody(FieldDecls, 4);
1946 }
1947 return Context->getTagDeclType(ConstantStringDecl);
1948}
1949
Steve Naroffb29b4272008-04-14 22:03:09 +00001950Stmt *RewriteObjC::SynthMessageExpr(ObjCMessageExpr *Exp) {
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001951 if (!SelGetUidFunctionDecl)
1952 SynthSelGetUidFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +00001953 if (!MsgSendFunctionDecl)
1954 SynthMsgSendFunctionDecl();
Steve Naroff874e2322007-11-15 10:28:18 +00001955 if (!MsgSendSuperFunctionDecl)
1956 SynthMsgSendSuperFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001957 if (!MsgSendStretFunctionDecl)
1958 SynthMsgSendStretFunctionDecl();
1959 if (!MsgSendSuperStretFunctionDecl)
1960 SynthMsgSendSuperStretFunctionDecl();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001961 if (!MsgSendFpretFunctionDecl)
1962 SynthMsgSendFpretFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +00001963 if (!GetClassFunctionDecl)
1964 SynthGetClassFunctionDecl();
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001965 if (!GetMetaClassFunctionDecl)
1966 SynthGetMetaClassFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001967
Steve Naroff874e2322007-11-15 10:28:18 +00001968 // default to objc_msgSend().
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001969 FunctionDecl *MsgSendFlavor = MsgSendFunctionDecl;
1970 // May need to use objc_msgSend_stret() as well.
1971 FunctionDecl *MsgSendStretFlavor = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001972 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001973 QualType resultType = mDecl->getResultType();
1974 if (resultType.getCanonicalType()->isStructureType()
1975 || resultType.getCanonicalType()->isUnionType())
1976 MsgSendStretFlavor = MsgSendStretFunctionDecl;
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001977 else if (resultType.getCanonicalType()->isRealFloatingType())
1978 MsgSendFlavor = MsgSendFpretFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001979 }
Steve Naroff874e2322007-11-15 10:28:18 +00001980
Steve Naroff934f2762007-10-24 22:48:43 +00001981 // Synthesize a call to objc_msgSend().
1982 llvm::SmallVector<Expr*, 8> MsgExprs;
1983 IdentifierInfo *clsName = Exp->getClassName();
1984
1985 // Derive/push the receiver/selector, 2 implicit arguments to objc_msgSend().
1986 if (clsName) { // class message.
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001987 if (!strcmp(clsName->getName(), "super")) {
1988 MsgSendFlavor = MsgSendSuperFunctionDecl;
1989 if (MsgSendStretFlavor)
1990 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
1991 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
1992
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001993 ObjCInterfaceDecl *SuperDecl =
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001994 CurMethodDecl->getClassInterface()->getSuperClass();
1995
1996 llvm::SmallVector<Expr*, 4> InitExprs;
1997
1998 // set the receiver to self, the first argument to all methods.
Chris Lattner41110242008-06-17 18:05:57 +00001999 InitExprs.push_back(new DeclRefExpr(
2000 CurMethodDecl->getSelfDecl(),
2001 Context->getObjCIdType(),
2002 SourceLocation()));
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002003 llvm::SmallVector<Expr*, 8> ClsExprs;
2004 QualType argType = Context->getPointerType(Context->CharTy);
2005 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
2006 SuperDecl->getIdentifier()->getLength(),
2007 false, argType, SourceLocation(),
2008 SourceLocation()));
2009 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetMetaClassFunctionDecl,
2010 &ClsExprs[0],
2011 ClsExprs.size());
2012 // To turn off a warning, type-cast to 'id'
2013 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002014 new CastExpr(Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002015 Cls, SourceLocation())); // set 'super class', using objc_getClass().
2016 // struct objc_super
2017 QualType superType = getSuperStructType();
Steve Naroff23f41272008-03-11 18:14:26 +00002018 Expr *SuperRep;
Steve Naroffc0a123c2008-03-11 17:37:02 +00002019
Steve Naroff23f41272008-03-11 18:14:26 +00002020 if (LangOpts.Microsoft) {
2021 SynthSuperContructorFunctionDecl();
2022 // Simulate a contructor call...
2023 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
2024 superType, SourceLocation());
2025 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
2026 superType, SourceLocation());
2027 } else {
2028 // (struct objc_super) { <exprs from above> }
2029 InitListExpr *ILE = new InitListExpr(SourceLocation(),
2030 &InitExprs[0], InitExprs.size(),
2031 SourceLocation());
2032 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE, false);
2033 }
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002034 // struct objc_super *
2035 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
2036 Context->getPointerType(SuperRep->getType()),
2037 SourceLocation());
2038 MsgExprs.push_back(Unop);
2039 } else {
2040 llvm::SmallVector<Expr*, 8> ClsExprs;
2041 QualType argType = Context->getPointerType(Context->CharTy);
2042 ClsExprs.push_back(new StringLiteral(clsName->getName(),
2043 clsName->getLength(),
2044 false, argType, SourceLocation(),
2045 SourceLocation()));
2046 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
2047 &ClsExprs[0],
2048 ClsExprs.size());
2049 MsgExprs.push_back(Cls);
2050 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00002051 } else { // instance message.
2052 Expr *recExpr = Exp->getReceiver();
Steve Naroff874e2322007-11-15 10:28:18 +00002053
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002054 if (ObjCInterfaceDecl *SuperDecl = isSuperReceiver(recExpr)) {
Steve Naroff874e2322007-11-15 10:28:18 +00002055 MsgSendFlavor = MsgSendSuperFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002056 if (MsgSendStretFlavor)
2057 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
Steve Naroff874e2322007-11-15 10:28:18 +00002058 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
2059
2060 llvm::SmallVector<Expr*, 4> InitExprs;
2061
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00002062 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002063 new CastExpr(Context->getObjCIdType(),
Steve Narofff616ebb2008-07-16 22:35:27 +00002064 new DeclRefExpr(CurMethodDecl->getSelfDecl(),
2065 Context->getObjCIdType(),
2066 SourceLocation()),
2067 SourceLocation())); // set the 'receiver'.
Steve Naroff874e2322007-11-15 10:28:18 +00002068
2069 llvm::SmallVector<Expr*, 8> ClsExprs;
2070 QualType argType = Context->getPointerType(Context->CharTy);
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00002071 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
2072 SuperDecl->getIdentifier()->getLength(),
Steve Naroff874e2322007-11-15 10:28:18 +00002073 false, argType, SourceLocation(),
2074 SourceLocation()));
2075 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00002076 &ClsExprs[0],
2077 ClsExprs.size());
Fariborz Jahanian71274312007-12-05 17:29:46 +00002078 // To turn off a warning, type-cast to 'id'
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00002079 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002080 new CastExpr(Context->getObjCIdType(),
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00002081 Cls, SourceLocation())); // set 'super class', using objc_getClass().
Steve Naroff874e2322007-11-15 10:28:18 +00002082 // struct objc_super
2083 QualType superType = getSuperStructType();
Steve Naroffc0a123c2008-03-11 17:37:02 +00002084 Expr *SuperRep;
2085
2086 if (LangOpts.Microsoft) {
2087 SynthSuperContructorFunctionDecl();
2088 // Simulate a contructor call...
2089 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
2090 superType, SourceLocation());
2091 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
2092 superType, SourceLocation());
2093 } else {
2094 // (struct objc_super) { <exprs from above> }
2095 InitListExpr *ILE = new InitListExpr(SourceLocation(),
2096 &InitExprs[0], InitExprs.size(),
2097 SourceLocation());
2098 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE, false);
2099 }
Steve Naroff874e2322007-11-15 10:28:18 +00002100 // struct objc_super *
2101 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
2102 Context->getPointerType(SuperRep->getType()),
2103 SourceLocation());
2104 MsgExprs.push_back(Unop);
2105 } else {
Fariborz Jahanian7dd82832007-12-07 21:21:21 +00002106 // Remove all type-casts because it may contain objc-style types; e.g.
2107 // Foo<Proto> *.
2108 while (CastExpr *CE = dyn_cast<CastExpr>(recExpr))
2109 recExpr = CE->getSubExpr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002110 recExpr = new CastExpr(Context->getObjCIdType(), recExpr, SourceLocation());
Steve Naroff874e2322007-11-15 10:28:18 +00002111 MsgExprs.push_back(recExpr);
2112 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00002113 }
Steve Naroffbeaf2992007-11-03 11:27:19 +00002114 // Create a call to sel_registerName("selName"), it will be the 2nd argument.
Steve Naroff934f2762007-10-24 22:48:43 +00002115 llvm::SmallVector<Expr*, 8> SelExprs;
2116 QualType argType = Context->getPointerType(Context->CharTy);
2117 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
2118 Exp->getSelector().getName().size(),
2119 false, argType, SourceLocation(),
2120 SourceLocation()));
2121 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
2122 &SelExprs[0], SelExprs.size());
2123 MsgExprs.push_back(SelExp);
2124
2125 // Now push any user supplied arguments.
2126 for (unsigned i = 0; i < Exp->getNumArgs(); i++) {
Steve Naroff6568d4d2007-11-14 23:54:14 +00002127 Expr *userExpr = Exp->getArg(i);
Steve Naroff7e3411b2007-11-15 02:58:25 +00002128 // Make all implicit casts explicit...ICE comes in handy:-)
2129 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(userExpr)) {
2130 // Reuse the ICE type, it is exactly what the doctor ordered.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002131 userExpr = new CastExpr(ICE->getType()->isObjCQualifiedIdType()
2132 ? Context->getObjCIdType()
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002133 : ICE->getType(), userExpr, SourceLocation());
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002134 }
2135 // Make id<P...> cast into an 'id' cast.
2136 else if (CastExpr *CE = dyn_cast<CastExpr>(userExpr)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002137 if (CE->getType()->isObjCQualifiedIdType()) {
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002138 while ((CE = dyn_cast<CastExpr>(userExpr)))
2139 userExpr = CE->getSubExpr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002140 userExpr = new CastExpr(Context->getObjCIdType(),
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002141 userExpr, SourceLocation());
2142 }
Steve Naroff7e3411b2007-11-15 02:58:25 +00002143 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00002144 MsgExprs.push_back(userExpr);
Steve Naroff934f2762007-10-24 22:48:43 +00002145 // We've transferred the ownership to MsgExprs. Null out the argument in
2146 // the original expression, since we will delete it below.
2147 Exp->setArg(i, 0);
2148 }
Steve Naroffab972d32007-11-04 22:37:50 +00002149 // Generate the funky cast.
2150 CastExpr *cast;
2151 llvm::SmallVector<QualType, 8> ArgTypes;
2152 QualType returnType;
2153
2154 // Push 'id' and 'SEL', the 2 implicit arguments.
Steve Naroffc3a438c2007-11-15 10:43:57 +00002155 if (MsgSendFlavor == MsgSendSuperFunctionDecl)
2156 ArgTypes.push_back(Context->getPointerType(getSuperStructType()));
2157 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002158 ArgTypes.push_back(Context->getObjCIdType());
2159 ArgTypes.push_back(Context->getObjCSelType());
2160 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Steve Naroffab972d32007-11-04 22:37:50 +00002161 // Push any user argument types.
Chris Lattner58cce3b2008-03-16 01:07:14 +00002162 for (unsigned i = 0; i < mDecl->getNumParams(); i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002163 QualType t = mDecl->getParamDecl(i)->getType()->isObjCQualifiedIdType()
2164 ? Context->getObjCIdType()
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002165 : mDecl->getParamDecl(i)->getType();
Steve Naroff352336b2007-11-05 14:36:37 +00002166 ArgTypes.push_back(t);
2167 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002168 returnType = mDecl->getResultType()->isObjCQualifiedIdType()
2169 ? Context->getObjCIdType() : mDecl->getResultType();
Steve Naroffab972d32007-11-04 22:37:50 +00002170 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002171 returnType = Context->getObjCIdType();
Steve Naroffab972d32007-11-04 22:37:50 +00002172 }
2173 // Get the type, we will need to reference it in a couple spots.
Steve Naroff874e2322007-11-15 10:28:18 +00002174 QualType msgSendType = MsgSendFlavor->getType();
Steve Naroffab972d32007-11-04 22:37:50 +00002175
2176 // Create a reference to the objc_msgSend() declaration.
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002177 DeclRefExpr *DRE = new DeclRefExpr(MsgSendFlavor, msgSendType,
2178 SourceLocation());
Steve Naroffab972d32007-11-04 22:37:50 +00002179
2180 // Need to cast objc_msgSend to "void *" (to workaround a GCC bandaid).
2181 // If we don't do this cast, we get the following bizarre warning/note:
2182 // xx.m:13: warning: function called through a non-compatible type
2183 // xx.m:13: note: if this code is reached, the program will abort
2184 cast = new CastExpr(Context->getPointerType(Context->VoidTy), DRE,
2185 SourceLocation());
Steve Naroff335eafa2007-11-15 12:35:21 +00002186
Steve Naroffab972d32007-11-04 22:37:50 +00002187 // Now do the "normal" pointer to function cast.
2188 QualType castType = Context->getFunctionType(returnType,
Fariborz Jahaniand0ee6f92007-12-06 19:49:56 +00002189 &ArgTypes[0], ArgTypes.size(),
Steve Naroff2679e482008-03-18 02:02:04 +00002190 // If we don't have a method decl, force a variadic cast.
2191 Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : true);
Steve Naroffab972d32007-11-04 22:37:50 +00002192 castType = Context->getPointerType(castType);
2193 cast = new CastExpr(castType, cast, SourceLocation());
2194
2195 // Don't forget the parens to enforce the proper binding.
2196 ParenExpr *PE = new ParenExpr(SourceLocation(), SourceLocation(), cast);
2197
2198 const FunctionType *FT = msgSendType->getAsFunctionType();
2199 CallExpr *CE = new CallExpr(PE, &MsgExprs[0], MsgExprs.size(),
2200 FT->getResultType(), SourceLocation());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002201 Stmt *ReplacingStmt = CE;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002202 if (MsgSendStretFlavor) {
2203 // We have the method which returns a struct/union. Must also generate
2204 // call to objc_msgSend_stret and hang both varieties on a conditional
2205 // expression which dictate which one to envoke depending on size of
2206 // method's return type.
2207
2208 // Create a reference to the objc_msgSend_stret() declaration.
2209 DeclRefExpr *STDRE = new DeclRefExpr(MsgSendStretFlavor, msgSendType,
2210 SourceLocation());
2211 // Need to cast objc_msgSend_stret to "void *" (see above comment).
2212 cast = new CastExpr(Context->getPointerType(Context->VoidTy), STDRE,
2213 SourceLocation());
2214 // Now do the "normal" pointer to function cast.
2215 castType = Context->getFunctionType(returnType,
Fariborz Jahaniand0ee6f92007-12-06 19:49:56 +00002216 &ArgTypes[0], ArgTypes.size(),
2217 Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : false);
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002218 castType = Context->getPointerType(castType);
2219 cast = new CastExpr(castType, cast, SourceLocation());
2220
2221 // Don't forget the parens to enforce the proper binding.
2222 PE = new ParenExpr(SourceLocation(), SourceLocation(), cast);
2223
2224 FT = msgSendType->getAsFunctionType();
2225 CallExpr *STCE = new CallExpr(PE, &MsgExprs[0], MsgExprs.size(),
2226 FT->getResultType(), SourceLocation());
2227
2228 // Build sizeof(returnType)
2229 SizeOfAlignOfTypeExpr *sizeofExpr = new SizeOfAlignOfTypeExpr(true,
2230 returnType, Context->getSizeType(),
2231 SourceLocation(), SourceLocation());
2232 // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...))
2233 // FIXME: Value of 8 is base on ppc32/x86 ABI for the most common cases.
2234 // For X86 it is more complicated and some kind of target specific routine
2235 // is needed to decide what to do.
Chris Lattner98be4942008-03-05 18:54:05 +00002236 unsigned IntSize =
2237 static_cast<unsigned>(Context->getTypeSize(Context->IntTy));
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002238 IntegerLiteral *limit = new IntegerLiteral(llvm::APInt(IntSize, 8),
2239 Context->IntTy,
2240 SourceLocation());
2241 BinaryOperator *lessThanExpr = new BinaryOperator(sizeofExpr, limit,
2242 BinaryOperator::LE,
2243 Context->IntTy,
2244 SourceLocation());
2245 // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...))
2246 ConditionalOperator *CondExpr =
2247 new ConditionalOperator(lessThanExpr, CE, STCE, returnType);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002248 ReplacingStmt = new ParenExpr(SourceLocation(), SourceLocation(), CondExpr);
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002249 }
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002250 return ReplacingStmt;
2251}
2252
Steve Naroffb29b4272008-04-14 22:03:09 +00002253Stmt *RewriteObjC::RewriteMessageExpr(ObjCMessageExpr *Exp) {
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002254 Stmt *ReplacingStmt = SynthMessageExpr(Exp);
Steve Naroff934f2762007-10-24 22:48:43 +00002255 // Now do the actual rewrite.
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00002256 ReplaceStmt(Exp, ReplacingStmt);
Steve Naroff934f2762007-10-24 22:48:43 +00002257
Chris Lattnere64b7772007-10-24 16:57:36 +00002258 delete Exp;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002259 return ReplacingStmt;
Steve Naroffebf2b562007-10-23 23:50:29 +00002260}
2261
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00002262/// RewriteObjCProtocolExpr - Rewrite a protocol expression into
2263/// call to objc_getProtocol("proto-name").
Steve Naroffb29b4272008-04-14 22:03:09 +00002264Stmt *RewriteObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) {
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00002265 if (!GetProtocolFunctionDecl)
2266 SynthGetProtocolFunctionDecl();
2267 // Create a call to objc_getProtocol("ProtocolName").
2268 llvm::SmallVector<Expr*, 8> ProtoExprs;
2269 QualType argType = Context->getPointerType(Context->CharTy);
2270 ProtoExprs.push_back(new StringLiteral(Exp->getProtocol()->getName(),
2271 strlen(Exp->getProtocol()->getName()),
2272 false, argType, SourceLocation(),
2273 SourceLocation()));
2274 CallExpr *ProtoExp = SynthesizeCallToFunctionDecl(GetProtocolFunctionDecl,
2275 &ProtoExprs[0],
2276 ProtoExprs.size());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00002277 ReplaceStmt(Exp, ProtoExp);
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00002278 delete Exp;
2279 return ProtoExp;
2280
2281}
2282
Steve Naroffbaf58c32008-05-31 14:15:04 +00002283bool RewriteObjC::BufferContainsPPDirectives(const char *startBuf,
2284 const char *endBuf) {
2285 while (startBuf < endBuf) {
2286 if (*startBuf == '#') {
2287 // Skip whitespace.
2288 for (++startBuf; startBuf[0] == ' ' || startBuf[0] == '\t'; ++startBuf)
2289 ;
2290 if (!strncmp(startBuf, "if", strlen("if")) ||
2291 !strncmp(startBuf, "ifdef", strlen("ifdef")) ||
2292 !strncmp(startBuf, "ifndef", strlen("ifndef")) ||
2293 !strncmp(startBuf, "define", strlen("define")) ||
2294 !strncmp(startBuf, "undef", strlen("undef")) ||
2295 !strncmp(startBuf, "else", strlen("else")) ||
2296 !strncmp(startBuf, "elif", strlen("elif")) ||
2297 !strncmp(startBuf, "endif", strlen("endif")) ||
2298 !strncmp(startBuf, "pragma", strlen("pragma")) ||
2299 !strncmp(startBuf, "include", strlen("include")) ||
2300 !strncmp(startBuf, "import", strlen("import")) ||
2301 !strncmp(startBuf, "include_next", strlen("include_next")))
2302 return true;
2303 }
2304 startBuf++;
2305 }
2306 return false;
2307}
2308
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002309/// SynthesizeObjCInternalStruct - Rewrite one internal struct corresponding to
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002310/// an objective-c class with ivars.
Steve Naroffb29b4272008-04-14 22:03:09 +00002311void RewriteObjC::SynthesizeObjCInternalStruct(ObjCInterfaceDecl *CDecl,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002312 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002313 assert(CDecl && "Class missing in SynthesizeObjCInternalStruct");
2314 assert(CDecl->getName() && "Name missing in SynthesizeObjCInternalStruct");
Fariborz Jahanian212b7682007-10-31 23:08:24 +00002315 // Do not synthesize more than once.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002316 if (ObjCSynthesizedStructs.count(CDecl))
Fariborz Jahanian212b7682007-10-31 23:08:24 +00002317 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002318 ObjCInterfaceDecl *RCDecl = CDecl->getSuperClass();
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002319 int NumIvars = CDecl->ivar_size();
Steve Narofffea763e82007-11-14 19:25:57 +00002320 SourceLocation LocStart = CDecl->getLocStart();
2321 SourceLocation LocEnd = CDecl->getLocEnd();
2322
2323 const char *startBuf = SM->getCharacterData(LocStart);
2324 const char *endBuf = SM->getCharacterData(LocEnd);
Steve Naroffbaf58c32008-05-31 14:15:04 +00002325
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002326 // If no ivars and no root or if its root, directly or indirectly,
2327 // have no ivars (thus not synthesized) then no need to synthesize this class.
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002328 if ((CDecl->isForwardDecl() || NumIvars == 0) &&
2329 (!RCDecl || !ObjCSynthesizedStructs.count(RCDecl))) {
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002330 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
Chris Lattneraadaf782008-01-31 19:51:04 +00002331 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002332 return;
2333 }
2334
2335 // FIXME: This has potential of causing problem. If
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002336 // SynthesizeObjCInternalStruct is ever called recursively.
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002337 Result += "\nstruct ";
2338 Result += CDecl->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +00002339 if (LangOpts.Microsoft)
2340 Result += "_IMPL";
Steve Naroff05b8c782008-03-12 00:25:36 +00002341
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002342 if (NumIvars > 0) {
Steve Narofffea763e82007-11-14 19:25:57 +00002343 const char *cursor = strchr(startBuf, '{');
2344 assert((cursor && endBuf)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002345 && "SynthesizeObjCInternalStruct - malformed @interface");
Steve Naroffbaf58c32008-05-31 14:15:04 +00002346 // If the buffer contains preprocessor directives, we do more fine-grained
2347 // rewrites. This is intended to fix code that looks like (which occurs in
2348 // NSURL.h, for example):
2349 //
2350 // #ifdef XYZ
2351 // @interface Foo : NSObject
2352 // #else
2353 // @interface FooBar : NSObject
2354 // #endif
2355 // {
2356 // int i;
2357 // }
2358 // @end
2359 //
2360 // This clause is segregated to avoid breaking the common case.
2361 if (BufferContainsPPDirectives(startBuf, cursor)) {
2362 SourceLocation L = RCDecl ? CDecl->getSuperClassLoc() :
2363 CDecl->getClassLoc();
2364 const char *endHeader = SM->getCharacterData(L);
2365 endHeader += Lexer::MeasureTokenLength(L, *SM);
2366
2367 if (CDecl->getNumIntfRefProtocols()) {
2368 // advance to the end of the referenced protocols.
2369 while (endHeader < cursor && *endHeader != '>') endHeader++;
2370 endHeader++;
2371 }
2372 // rewrite the original header
2373 ReplaceText(LocStart, endHeader-startBuf, Result.c_str(), Result.size());
2374 } else {
2375 // rewrite the original header *without* disturbing the '{'
2376 ReplaceText(LocStart, cursor-startBuf-1, Result.c_str(), Result.size());
2377 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002378 if (RCDecl && ObjCSynthesizedStructs.count(RCDecl)) {
Steve Narofffea763e82007-11-14 19:25:57 +00002379 Result = "\n struct ";
2380 Result += RCDecl->getName();
Steve Naroff39bbd9f2008-03-12 21:09:20 +00002381 Result += "_IMPL ";
2382 Result += RCDecl->getName();
Steve Naroff819173c2008-03-12 21:22:52 +00002383 Result += "_IVARS;\n";
Steve Narofffea763e82007-11-14 19:25:57 +00002384
2385 // insert the super class structure definition.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002386 SourceLocation OnePastCurly =
2387 LocStart.getFileLocWithOffset(cursor-startBuf+1);
2388 InsertText(OnePastCurly, Result.c_str(), Result.size());
Steve Narofffea763e82007-11-14 19:25:57 +00002389 }
2390 cursor++; // past '{'
2391
2392 // Now comment out any visibility specifiers.
2393 while (cursor < endBuf) {
2394 if (*cursor == '@') {
2395 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerdf6a51b2007-11-14 22:57:51 +00002396 // Skip whitespace.
2397 for (++cursor; cursor[0] == ' ' || cursor[0] == '\t'; ++cursor)
2398 /*scan*/;
2399
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002400 // FIXME: presence of @public, etc. inside comment results in
2401 // this transformation as well, which is still correct c-code.
Steve Narofffea763e82007-11-14 19:25:57 +00002402 if (!strncmp(cursor, "public", strlen("public")) ||
2403 !strncmp(cursor, "private", strlen("private")) ||
Steve Naroffc5e32772008-04-04 22:34:24 +00002404 !strncmp(cursor, "package", strlen("package")) ||
Fariborz Jahanian95673922007-11-14 22:26:25 +00002405 !strncmp(cursor, "protected", strlen("protected")))
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002406 InsertText(atLoc, "// ", 3);
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002407 }
Fariborz Jahanian95673922007-11-14 22:26:25 +00002408 // FIXME: If there are cases where '<' is used in ivar declaration part
2409 // of user code, then scan the ivar list and use needToScanForQualifiers
2410 // for type checking.
2411 else if (*cursor == '<') {
2412 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002413 InsertText(atLoc, "/* ", 3);
Fariborz Jahanian95673922007-11-14 22:26:25 +00002414 cursor = strchr(cursor, '>');
2415 cursor++;
2416 atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002417 InsertText(atLoc, " */", 3);
Fariborz Jahanian95673922007-11-14 22:26:25 +00002418 }
Steve Narofffea763e82007-11-14 19:25:57 +00002419 cursor++;
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002420 }
Steve Narofffea763e82007-11-14 19:25:57 +00002421 // Don't forget to add a ';'!!
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002422 InsertText(LocEnd.getFileLocWithOffset(1), ";", 1);
Steve Narofffea763e82007-11-14 19:25:57 +00002423 } else { // we don't have any instance variables - insert super struct.
2424 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
2425 Result += " {\n struct ";
2426 Result += RCDecl->getName();
Steve Naroff39bbd9f2008-03-12 21:09:20 +00002427 Result += "_IMPL ";
2428 Result += RCDecl->getName();
Steve Naroff819173c2008-03-12 21:22:52 +00002429 Result += "_IVARS;\n};\n";
Chris Lattneraadaf782008-01-31 19:51:04 +00002430 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002431 }
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002432 // Mark this struct as having been generated.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002433 if (!ObjCSynthesizedStructs.insert(CDecl))
Steve Narofffbfe8252008-05-06 18:26:51 +00002434 assert(false && "struct already synthesize- SynthesizeObjCInternalStruct");
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002435}
2436
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002437// RewriteObjCMethodsMetaData - Rewrite methods metadata for instance or
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002438/// class methods.
Steve Naroffb29b4272008-04-14 22:03:09 +00002439void RewriteObjC::RewriteObjCMethodsMetaData(instmeth_iterator MethodBegin,
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002440 instmeth_iterator MethodEnd,
Fariborz Jahanian8e991ba2007-10-25 00:14:44 +00002441 bool IsInstanceMethod,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002442 const char *prefix,
Chris Lattner158ecb92007-10-25 17:07:24 +00002443 const char *ClassName,
2444 std::string &Result) {
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002445 if (MethodBegin == MethodEnd) return;
2446
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002447 static bool objc_impl_method = false;
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002448 if (!objc_impl_method) {
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002449 /* struct _objc_method {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002450 SEL _cmd;
2451 char *method_types;
2452 void *_imp;
2453 }
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002454 */
Chris Lattner158ecb92007-10-25 17:07:24 +00002455 Result += "\nstruct _objc_method {\n";
2456 Result += "\tSEL _cmd;\n";
2457 Result += "\tchar *method_types;\n";
2458 Result += "\tvoid *_imp;\n";
2459 Result += "};\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002460
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002461 objc_impl_method = true;
Fariborz Jahanian776d6ff2007-10-19 00:36:46 +00002462 }
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002463
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002464 // Build _objc_method_list for class's methods if needed
Steve Naroff946a6932008-03-11 00:12:29 +00002465
2466 /* struct {
2467 struct _objc_method_list *next_method;
2468 int method_count;
2469 struct _objc_method method_list[];
2470 }
2471 */
2472 Result += "\nstatic struct {\n";
2473 Result += "\tstruct _objc_method_list *next_method;\n";
2474 Result += "\tint method_count;\n";
2475 Result += "\tstruct _objc_method method_list[";
2476 Result += utostr(MethodEnd-MethodBegin);
2477 Result += "];\n} _OBJC_";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002478 Result += prefix;
2479 Result += IsInstanceMethod ? "INSTANCE" : "CLASS";
2480 Result += "_METHODS_";
2481 Result += ClassName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002482 Result += " __attribute__ ((used, section (\"__OBJC, __";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002483 Result += IsInstanceMethod ? "inst" : "cls";
2484 Result += "_meth\")))= ";
2485 Result += "{\n\t0, " + utostr(MethodEnd-MethodBegin) + "\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002486
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002487 Result += "\t,{{(SEL)\"";
2488 Result += (*MethodBegin)->getSelector().getName().c_str();
2489 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002490 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002491 Result += "\", \"";
2492 Result += MethodTypeString;
Steve Naroff946a6932008-03-11 00:12:29 +00002493 Result += "\", (void *)";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002494 Result += MethodInternalNames[*MethodBegin];
2495 Result += "}\n";
2496 for (++MethodBegin; MethodBegin != MethodEnd; ++MethodBegin) {
2497 Result += "\t ,{(SEL)\"";
2498 Result += (*MethodBegin)->getSelector().getName().c_str();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002499 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002500 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002501 Result += "\", \"";
2502 Result += MethodTypeString;
Steve Naroff946a6932008-03-11 00:12:29 +00002503 Result += "\", (void *)";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002504 Result += MethodInternalNames[*MethodBegin];
Fariborz Jahanianb7908b52007-11-13 21:02:00 +00002505 Result += "}\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002506 }
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002507 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002508}
2509
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002510/// RewriteObjCProtocolsMetaData - Rewrite protocols meta-data.
Steve Naroffb29b4272008-04-14 22:03:09 +00002511void RewriteObjC::RewriteObjCProtocolsMetaData(ObjCProtocolDecl **Protocols,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002512 int NumProtocols,
2513 const char *prefix,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002514 const char *ClassName,
2515 std::string &Result) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002516 static bool objc_protocol_methods = false;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002517 if (NumProtocols > 0) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002518 for (int i = 0; i < NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002519 ObjCProtocolDecl *PDecl = Protocols[i];
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002520 // Output struct protocol_methods holder of method selector and type.
Chris Lattnerc8581052008-03-16 20:19:15 +00002521 if (!objc_protocol_methods && !PDecl->isForwardDecl()) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002522 /* struct protocol_methods {
2523 SEL _cmd;
2524 char *method_types;
2525 }
2526 */
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002527 Result += "\nstruct protocol_methods {\n";
2528 Result += "\tSEL _cmd;\n";
2529 Result += "\tchar *method_types;\n";
2530 Result += "};\n";
2531
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002532 objc_protocol_methods = true;
2533 }
Steve Narofffbfe8252008-05-06 18:26:51 +00002534 // Do not synthesize the protocol more than once.
2535 if (ObjCSynthesizedProtocols.count(PDecl))
2536 continue;
2537
Chris Lattnerc8581052008-03-16 20:19:15 +00002538 if (PDecl->instmeth_begin() != PDecl->instmeth_end()) {
2539 unsigned NumMethods = PDecl->getNumInstanceMethods();
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002540 /* struct _objc_protocol_method_list {
2541 int protocol_method_count;
2542 struct protocol_methods protocols[];
2543 }
2544 */
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002545 Result += "\nstatic struct {\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002546 Result += "\tint protocol_method_count;\n";
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002547 Result += "\tstruct protocol_methods protocols[";
2548 Result += utostr(NumMethods);
2549 Result += "];\n} _OBJC_PROTOCOL_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002550 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002551 Result += " __attribute__ ((used, section (\"__OBJC, __cat_inst_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002552 "{\n\t" + utostr(NumMethods) + "\n";
2553
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002554 // Output instance methods declared in this protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002555 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002556 E = PDecl->instmeth_end(); I != E; ++I) {
2557 if (I == PDecl->instmeth_begin())
2558 Result += "\t ,{{(SEL)\"";
2559 else
2560 Result += "\t ,{(SEL)\"";
2561 Result += (*I)->getSelector().getName().c_str();
2562 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002563 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002564 Result += "\", \"";
2565 Result += MethodTypeString;
2566 Result += "\"}\n";
2567 }
2568 Result += "\t }\n};\n";
2569 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002570
2571 // Output class methods declared in this protocol.
Chris Lattnerc8581052008-03-16 20:19:15 +00002572 int NumMethods = PDecl->getNumClassMethods();
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002573 if (NumMethods > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002574 /* struct _objc_protocol_method_list {
2575 int protocol_method_count;
2576 struct protocol_methods protocols[];
2577 }
2578 */
2579 Result += "\nstatic struct {\n";
2580 Result += "\tint protocol_method_count;\n";
2581 Result += "\tstruct protocol_methods protocols[";
2582 Result += utostr(NumMethods);
2583 Result += "];\n} _OBJC_PROTOCOL_CLASS_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002584 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002585 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002586 "{\n\t";
2587 Result += utostr(NumMethods);
2588 Result += "\n";
2589
Fariborz Jahanianc6e2c2a2007-12-17 18:07:01 +00002590 // Output instance methods declared in this protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002591 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Fariborz Jahanianc6e2c2a2007-12-17 18:07:01 +00002592 E = PDecl->classmeth_end(); I != E; ++I) {
2593 if (I == PDecl->classmeth_begin())
2594 Result += "\t ,{{(SEL)\"";
2595 else
2596 Result += "\t ,{(SEL)\"";
Steve Naroff58dbdeb2007-12-14 23:37:57 +00002597 Result += (*I)->getSelector().getName().c_str();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002598 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002599 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002600 Result += "\", \"";
2601 Result += MethodTypeString;
2602 Result += "\"}\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002603 }
2604 Result += "\t }\n};\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002605 }
Steve Narofffbfe8252008-05-06 18:26:51 +00002606
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002607 // Output:
2608 /* struct _objc_protocol {
2609 // Objective-C 1.0 extensions
2610 struct _objc_protocol_extension *isa;
2611 char *protocol_name;
2612 struct _objc_protocol **protocol_list;
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002613 struct _objc_protocol_method_list *instance_methods;
2614 struct _objc_protocol_method_list *class_methods;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002615 };
2616 */
2617 static bool objc_protocol = false;
2618 if (!objc_protocol) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002619 Result += "\nstruct _objc_protocol {\n";
2620 Result += "\tstruct _objc_protocol_extension *isa;\n";
2621 Result += "\tchar *protocol_name;\n";
2622 Result += "\tstruct _objc_protocol **protocol_list;\n";
2623 Result += "\tstruct _objc_protocol_method_list *instance_methods;\n";
2624 Result += "\tstruct _objc_protocol_method_list *class_methods;\n";
2625 Result += "};\n";
2626
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002627 objc_protocol = true;
2628 }
2629
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002630 Result += "\nstatic struct _objc_protocol _OBJC_PROTOCOL_";
2631 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002632 Result += " __attribute__ ((used, section (\"__OBJC, __protocol\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002633 "{\n\t0, \"";
2634 Result += PDecl->getName();
2635 Result += "\", 0, ";
Chris Lattnerc8581052008-03-16 20:19:15 +00002636 if (PDecl->instmeth_begin() != PDecl->instmeth_end()) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002637 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002638 Result += PDecl->getName();
2639 Result += ", ";
2640 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002641 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002642 Result += "0, ";
Steve Naroff58dbdeb2007-12-14 23:37:57 +00002643 if (PDecl->getNumClassMethods() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002644 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_CLASS_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002645 Result += PDecl->getName();
2646 Result += "\n";
2647 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002648 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002649 Result += "0\n";
2650 Result += "};\n";
Steve Narofffbfe8252008-05-06 18:26:51 +00002651
2652 // Mark this protocol as having been generated.
2653 if (!ObjCSynthesizedProtocols.insert(PDecl))
2654 assert(false && "protocol already synthesized");
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002655 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002656 // Output the top lovel protocol meta-data for the class.
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002657 /* struct _objc_protocol_list {
2658 struct _objc_protocol_list *next;
2659 int protocol_count;
2660 struct _objc_protocol *class_protocols[];
2661 }
2662 */
2663 Result += "\nstatic struct {\n";
2664 Result += "\tstruct _objc_protocol_list *next;\n";
2665 Result += "\tint protocol_count;\n";
2666 Result += "\tstruct _objc_protocol *class_protocols[";
2667 Result += utostr(NumProtocols);
2668 Result += "];\n} _OBJC_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002669 Result += prefix;
2670 Result += "_PROTOCOLS_";
2671 Result += ClassName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002672 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002673 "{\n\t0, ";
2674 Result += utostr(NumProtocols);
2675 Result += "\n";
2676
2677 Result += "\t,{&_OBJC_PROTOCOL_";
2678 Result += Protocols[0]->getName();
2679 Result += " \n";
2680
2681 for (int i = 1; i < NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002682 ObjCProtocolDecl *PDecl = Protocols[i];
Steve Narofffa8ec622008-04-18 22:15:15 +00002683 Result += "\t ,&_OBJC_PROTOCOL_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002684 Result += PDecl->getName();
2685 Result += "\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002686 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002687 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002688 }
2689}
2690
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002691/// RewriteObjCCategoryImplDecl - Rewrite metadata for each category
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002692/// implementation.
Steve Naroffb29b4272008-04-14 22:03:09 +00002693void RewriteObjC::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002694 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002695 ObjCInterfaceDecl *ClassDecl = IDecl->getClassInterface();
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002696 // Find category declaration for this implementation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002697 ObjCCategoryDecl *CDecl;
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002698 for (CDecl = ClassDecl->getCategoryList(); CDecl;
2699 CDecl = CDecl->getNextClassCategory())
2700 if (CDecl->getIdentifier() == IDecl->getIdentifier())
2701 break;
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002702
Chris Lattnereb44eee2007-12-23 01:40:15 +00002703 std::string FullCategoryName = ClassDecl->getName();
2704 FullCategoryName += '_';
2705 FullCategoryName += IDecl->getName();
2706
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002707 // Build _objc_method_list for class's instance methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002708 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Chris Lattnereb44eee2007-12-23 01:40:15 +00002709 true, "CATEGORY_", FullCategoryName.c_str(),
2710 Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002711
2712 // Build _objc_method_list for class's class methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002713 RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(),
Chris Lattnereb44eee2007-12-23 01:40:15 +00002714 false, "CATEGORY_", FullCategoryName.c_str(),
2715 Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002716
2717 // Protocols referenced in class declaration?
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002718 // Null CDecl is case of a category implementation with no category interface
2719 if (CDecl)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002720 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(),
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002721 CDecl->getNumReferencedProtocols(),
2722 "CATEGORY",
Chris Lattnereb44eee2007-12-23 01:40:15 +00002723 FullCategoryName.c_str(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002724
2725 /* struct _objc_category {
2726 char *category_name;
2727 char *class_name;
2728 struct _objc_method_list *instance_methods;
2729 struct _objc_method_list *class_methods;
2730 struct _objc_protocol_list *protocols;
2731 // Objective-C 1.0 extensions
2732 uint32_t size; // sizeof (struct _objc_category)
2733 struct _objc_property_list *instance_properties; // category's own
2734 // @property decl.
2735 };
2736 */
2737
2738 static bool objc_category = false;
2739 if (!objc_category) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002740 Result += "\nstruct _objc_category {\n";
2741 Result += "\tchar *category_name;\n";
2742 Result += "\tchar *class_name;\n";
2743 Result += "\tstruct _objc_method_list *instance_methods;\n";
2744 Result += "\tstruct _objc_method_list *class_methods;\n";
2745 Result += "\tstruct _objc_protocol_list *protocols;\n";
2746 Result += "\tunsigned int size;\n";
2747 Result += "\tstruct _objc_property_list *instance_properties;\n";
2748 Result += "};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002749 objc_category = true;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002750 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002751 Result += "\nstatic struct _objc_category _OBJC_CATEGORY_";
2752 Result += FullCategoryName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002753 Result += " __attribute__ ((used, section (\"__OBJC, __category\")))= {\n\t\"";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002754 Result += IDecl->getName();
2755 Result += "\"\n\t, \"";
2756 Result += ClassDecl->getName();
2757 Result += "\"\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002758
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002759 if (IDecl->getNumInstanceMethods() > 0) {
2760 Result += "\t, (struct _objc_method_list *)"
2761 "&_OBJC_CATEGORY_INSTANCE_METHODS_";
2762 Result += FullCategoryName;
2763 Result += "\n";
2764 }
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002765 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002766 Result += "\t, 0\n";
2767 if (IDecl->getNumClassMethods() > 0) {
2768 Result += "\t, (struct _objc_method_list *)"
2769 "&_OBJC_CATEGORY_CLASS_METHODS_";
2770 Result += FullCategoryName;
2771 Result += "\n";
2772 }
2773 else
2774 Result += "\t, 0\n";
2775
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002776 if (CDecl && CDecl->getNumReferencedProtocols() > 0) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002777 Result += "\t, (struct _objc_protocol_list *)&_OBJC_CATEGORY_PROTOCOLS_";
2778 Result += FullCategoryName;
2779 Result += "\n";
2780 }
2781 else
2782 Result += "\t, 0\n";
2783 Result += "\t, sizeof(struct _objc_category), 0\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002784}
2785
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002786/// SynthesizeIvarOffsetComputation - This rutine synthesizes computation of
2787/// ivar offset.
Steve Naroffb29b4272008-04-14 22:03:09 +00002788void RewriteObjC::SynthesizeIvarOffsetComputation(ObjCImplementationDecl *IDecl,
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002789 ObjCIvarDecl *ivar,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002790 std::string &Result) {
Steve Naroff8f3b2652008-07-16 18:22:22 +00002791 if (ivar->isBitField()) {
2792 // FIXME: The hack below doesn't work for bitfields. For now, we simply
2793 // place all bitfields at offset 0.
2794 Result += "0";
2795 } else {
2796 Result += "__OFFSETOFIVAR__(struct ";
2797 Result += IDecl->getName();
2798 if (LangOpts.Microsoft)
2799 Result += "_IMPL";
2800 Result += ", ";
2801 Result += ivar->getName();
2802 Result += ")";
2803 }
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002804}
2805
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002806//===----------------------------------------------------------------------===//
2807// Meta Data Emission
2808//===----------------------------------------------------------------------===//
2809
Steve Naroffb29b4272008-04-14 22:03:09 +00002810void RewriteObjC::RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002811 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002812 ObjCInterfaceDecl *CDecl = IDecl->getClassInterface();
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002813
Fariborz Jahanianebe668f2007-11-26 20:59:57 +00002814 // Explictly declared @interface's are already synthesized.
2815 if (CDecl->ImplicitInterfaceDecl()) {
2816 // FIXME: Implementation of a class with no @interface (legacy) doese not
2817 // produce correct synthesis as yet.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002818 SynthesizeObjCInternalStruct(CDecl, Result);
Fariborz Jahanianebe668f2007-11-26 20:59:57 +00002819 }
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002820
Chris Lattnerbe6df082007-12-12 07:56:42 +00002821 // Build _objc_ivar_list metadata for classes ivars if needed
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002822 unsigned NumIvars = !IDecl->ivar_empty()
2823 ? IDecl->ivar_size()
2824 : (CDecl ? CDecl->ivar_size() : 0);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002825 if (NumIvars > 0) {
2826 static bool objc_ivar = false;
2827 if (!objc_ivar) {
2828 /* struct _objc_ivar {
2829 char *ivar_name;
2830 char *ivar_type;
2831 int ivar_offset;
2832 };
2833 */
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002834 Result += "\nstruct _objc_ivar {\n";
2835 Result += "\tchar *ivar_name;\n";
2836 Result += "\tchar *ivar_type;\n";
2837 Result += "\tint ivar_offset;\n";
2838 Result += "};\n";
2839
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002840 objc_ivar = true;
2841 }
2842
Steve Naroff946a6932008-03-11 00:12:29 +00002843 /* struct {
2844 int ivar_count;
2845 struct _objc_ivar ivar_list[nIvars];
2846 };
2847 */
2848 Result += "\nstatic struct {\n";
2849 Result += "\tint ivar_count;\n";
2850 Result += "\tstruct _objc_ivar ivar_list[";
2851 Result += utostr(NumIvars);
2852 Result += "];\n} _OBJC_INSTANCE_VARIABLES_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002853 Result += IDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002854 Result += " __attribute__ ((used, section (\"__OBJC, __instance_vars\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002855 "{\n\t";
2856 Result += utostr(NumIvars);
2857 Result += "\n";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002858
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002859 ObjCInterfaceDecl::ivar_iterator IVI, IVE;
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002860 if (!IDecl->ivar_empty()) {
Chris Lattnerbe6df082007-12-12 07:56:42 +00002861 IVI = IDecl->ivar_begin();
2862 IVE = IDecl->ivar_end();
2863 } else {
2864 IVI = CDecl->ivar_begin();
2865 IVE = CDecl->ivar_end();
2866 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002867 Result += "\t,{{\"";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002868 Result += (*IVI)->getName();
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002869 Result += "\", \"";
2870 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002871 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding,
2872 EncodingRecordTypes);
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002873 Result += StrEncoding;
2874 Result += "\", ";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002875 SynthesizeIvarOffsetComputation(IDecl, *IVI, Result);
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002876 Result += "}\n";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002877 for (++IVI; IVI != IVE; ++IVI) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002878 Result += "\t ,{\"";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002879 Result += (*IVI)->getName();
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002880 Result += "\", \"";
2881 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002882 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding,
2883 EncodingRecordTypes);
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002884 Result += StrEncoding;
2885 Result += "\", ";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002886 SynthesizeIvarOffsetComputation(IDecl, (*IVI), Result);
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002887 Result += "}\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002888 }
2889
2890 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002891 }
2892
2893 // Build _objc_method_list for class's instance methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002894 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002895 true, "", IDecl->getName(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002896
2897 // Build _objc_method_list for class's class methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002898 RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002899 false, "", IDecl->getName(), Result);
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002900
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002901 // Protocols referenced in class declaration?
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002902 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(),
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002903 CDecl->getNumIntfRefProtocols(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002904 "CLASS", CDecl->getName(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002905
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002906
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002907 // Declaration of class/meta-class metadata
2908 /* struct _objc_class {
2909 struct _objc_class *isa; // or const char *root_class_name when metadata
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002910 const char *super_class_name;
2911 char *name;
2912 long version;
2913 long info;
2914 long instance_size;
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002915 struct _objc_ivar_list *ivars;
2916 struct _objc_method_list *methods;
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002917 struct objc_cache *cache;
2918 struct objc_protocol_list *protocols;
2919 const char *ivar_layout;
2920 struct _objc_class_ext *ext;
2921 };
2922 */
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002923 static bool objc_class = false;
2924 if (!objc_class) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002925 Result += "\nstruct _objc_class {\n";
2926 Result += "\tstruct _objc_class *isa;\n";
2927 Result += "\tconst char *super_class_name;\n";
2928 Result += "\tchar *name;\n";
2929 Result += "\tlong version;\n";
2930 Result += "\tlong info;\n";
2931 Result += "\tlong instance_size;\n";
2932 Result += "\tstruct _objc_ivar_list *ivars;\n";
2933 Result += "\tstruct _objc_method_list *methods;\n";
2934 Result += "\tstruct objc_cache *cache;\n";
2935 Result += "\tstruct _objc_protocol_list *protocols;\n";
2936 Result += "\tconst char *ivar_layout;\n";
2937 Result += "\tstruct _objc_class_ext *ext;\n";
2938 Result += "};\n";
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002939 objc_class = true;
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002940 }
2941
2942 // Meta-class metadata generation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002943 ObjCInterfaceDecl *RootClass = 0;
2944 ObjCInterfaceDecl *SuperClass = CDecl->getSuperClass();
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002945 while (SuperClass) {
2946 RootClass = SuperClass;
2947 SuperClass = SuperClass->getSuperClass();
2948 }
2949 SuperClass = CDecl->getSuperClass();
2950
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002951 Result += "\nstatic struct _objc_class _OBJC_METACLASS_";
2952 Result += CDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002953 Result += " __attribute__ ((used, section (\"__OBJC, __meta_class\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002954 "{\n\t(struct _objc_class *)\"";
2955 Result += (RootClass ? RootClass->getName() : CDecl->getName());
2956 Result += "\"";
2957
2958 if (SuperClass) {
2959 Result += ", \"";
2960 Result += SuperClass->getName();
2961 Result += "\", \"";
2962 Result += CDecl->getName();
2963 Result += "\"";
2964 }
2965 else {
2966 Result += ", 0, \"";
2967 Result += CDecl->getName();
2968 Result += "\"";
2969 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002970 // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it.
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002971 // 'info' field is initialized to CLS_META(2) for metaclass
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002972 Result += ", 0,2, sizeof(struct _objc_class), 0";
Steve Naroffb26d7132007-12-05 21:49:40 +00002973 if (IDecl->getNumClassMethods() > 0) {
Steve Naroff23f41272008-03-11 18:14:26 +00002974 Result += "\n\t, (struct _objc_method_list *)&_OBJC_CLASS_METHODS_";
Steve Naroffb26d7132007-12-05 21:49:40 +00002975 Result += IDecl->getName();
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002976 Result += "\n";
2977 }
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002978 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002979 Result += ", 0\n";
2980 if (CDecl->getNumIntfRefProtocols() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002981 Result += "\t,0, (struct _objc_protocol_list *)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002982 Result += CDecl->getName();
2983 Result += ",0,0\n";
2984 }
Fariborz Jahanian454cb012007-10-24 20:54:23 +00002985 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002986 Result += "\t,0,0,0,0\n";
2987 Result += "};\n";
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002988
2989 // class metadata generation.
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002990 Result += "\nstatic struct _objc_class _OBJC_CLASS_";
2991 Result += CDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002992 Result += " __attribute__ ((used, section (\"__OBJC, __class\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002993 "{\n\t&_OBJC_METACLASS_";
2994 Result += CDecl->getName();
2995 if (SuperClass) {
2996 Result += ", \"";
2997 Result += SuperClass->getName();
2998 Result += "\", \"";
2999 Result += CDecl->getName();
3000 Result += "\"";
3001 }
3002 else {
3003 Result += ", 0, \"";
3004 Result += CDecl->getName();
3005 Result += "\"";
3006 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00003007 // 'info' field is initialized to CLS_CLASS(1) for class
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00003008 Result += ", 0,1";
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003009 if (!ObjCSynthesizedStructs.count(CDecl))
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00003010 Result += ",0";
3011 else {
3012 // class has size. Must synthesize its size.
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00003013 Result += ",sizeof(struct ";
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00003014 Result += CDecl->getName();
Steve Naroffba9ac4e2008-03-10 23:33:22 +00003015 if (LangOpts.Microsoft)
3016 Result += "_IMPL";
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00003017 Result += ")";
3018 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003019 if (NumIvars > 0) {
Steve Naroffc0a123c2008-03-11 17:37:02 +00003020 Result += ", (struct _objc_ivar_list *)&_OBJC_INSTANCE_VARIABLES_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003021 Result += CDecl->getName();
3022 Result += "\n\t";
3023 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00003024 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003025 Result += ",0";
3026 if (IDecl->getNumInstanceMethods() > 0) {
Steve Naroff946a6932008-03-11 00:12:29 +00003027 Result += ", (struct _objc_method_list *)&_OBJC_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003028 Result += CDecl->getName();
3029 Result += ", 0\n\t";
3030 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00003031 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003032 Result += ",0,0";
3033 if (CDecl->getNumIntfRefProtocols() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00003034 Result += ", (struct _objc_protocol_list*)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003035 Result += CDecl->getName();
3036 Result += ", 0,0\n";
3037 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00003038 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003039 Result += ",0,0,0\n";
3040 Result += "};\n";
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00003041}
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00003042
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00003043/// RewriteImplementations - This routine rewrites all method implementations
3044/// and emits meta-data.
3045
Steve Naroffb29b4272008-04-14 22:03:09 +00003046void RewriteObjC::RewriteImplementations(std::string &Result) {
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003047 int ClsDefCount = ClassImplementation.size();
3048 int CatDefCount = CategoryImplementation.size();
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00003049
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003050 if (ClsDefCount == 0 && CatDefCount == 0)
3051 return;
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00003052 // Rewrite implemented methods
3053 for (int i = 0; i < ClsDefCount; i++)
3054 RewriteImplementationDecl(ClassImplementation[i]);
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00003055
Fariborz Jahanian66d6b292007-11-13 20:04:28 +00003056 for (int i = 0; i < CatDefCount; i++)
3057 RewriteImplementationDecl(CategoryImplementation[i]);
3058
Steve Naroff5df5b762008-05-07 21:23:49 +00003059 // This is needed for determining instance variable offsets.
3060 Result += "#define __OFFSETOFIVAR__(TYPE, MEMBER) ((int) &((TYPE *)0)->MEMBER)\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00003061 // For each implemented class, write out all its meta data.
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00003062 for (int i = 0; i < ClsDefCount; i++)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003063 RewriteObjCClassMetaData(ClassImplementation[i], Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00003064
3065 // For each implemented category, write out all its meta data.
3066 for (int i = 0; i < CatDefCount; i++)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00003067 RewriteObjCCategoryImplDecl(CategoryImplementation[i], Result);
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00003068
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003069 // Write objc_symtab metadata
3070 /*
3071 struct _objc_symtab
3072 {
3073 long sel_ref_cnt;
3074 SEL *refs;
3075 short cls_def_cnt;
3076 short cat_def_cnt;
3077 void *defs[cls_def_cnt + cat_def_cnt];
3078 };
3079 */
3080
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003081 Result += "\nstruct _objc_symtab {\n";
3082 Result += "\tlong sel_ref_cnt;\n";
3083 Result += "\tSEL *refs;\n";
3084 Result += "\tshort cls_def_cnt;\n";
3085 Result += "\tshort cat_def_cnt;\n";
3086 Result += "\tvoid *defs[" + utostr(ClsDefCount + CatDefCount)+ "];\n";
3087 Result += "};\n\n";
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003088
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003089 Result += "static struct _objc_symtab "
Steve Naroffdbb65432008-03-12 17:18:30 +00003090 "_OBJC_SYMBOLS __attribute__((used, section (\"__OBJC, __symbols\")))= {\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003091 Result += "\t0, 0, " + utostr(ClsDefCount)
3092 + ", " + utostr(CatDefCount) + "\n";
3093 for (int i = 0; i < ClsDefCount; i++) {
3094 Result += "\t,&_OBJC_CLASS_";
3095 Result += ClassImplementation[i]->getName();
3096 Result += "\n";
3097 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003098
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003099 for (int i = 0; i < CatDefCount; i++) {
3100 Result += "\t,&_OBJC_CATEGORY_";
3101 Result += CategoryImplementation[i]->getClassInterface()->getName();
3102 Result += "_";
3103 Result += CategoryImplementation[i]->getName();
3104 Result += "\n";
3105 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003106
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003107 Result += "};\n\n";
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003108
3109 // Write objc_module metadata
3110
3111 /*
3112 struct _objc_module {
3113 long version;
3114 long size;
3115 const char *name;
3116 struct _objc_symtab *symtab;
3117 }
3118 */
3119
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003120 Result += "\nstruct _objc_module {\n";
3121 Result += "\tlong version;\n";
3122 Result += "\tlong size;\n";
3123 Result += "\tconst char *name;\n";
3124 Result += "\tstruct _objc_symtab *symtab;\n";
3125 Result += "};\n\n";
3126 Result += "static struct _objc_module "
Steve Naroffdbb65432008-03-12 17:18:30 +00003127 "_OBJC_MODULES __attribute__ ((used, section (\"__OBJC, __module_info\")))= {\n";
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00003128 Result += "\t" + utostr(OBJC_ABI_VERSION) +
3129 ", sizeof(struct _objc_module), \"\", &_OBJC_SYMBOLS\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00003130 Result += "};\n\n";
Steve Naroff4f943c22008-03-10 20:43:59 +00003131
3132 if (LangOpts.Microsoft) {
3133 Result += "#pragma section(\".objc_module_info$B\",long,read,write)\n";
Steve Naroff19190322008-05-07 00:06:16 +00003134 Result += "#pragma data_seg(push, \".objc_module_info$B\")\n";
Steve Naroff4f943c22008-03-10 20:43:59 +00003135 Result += "static struct _objc_module *_POINTER_OBJC_MODULES = ";
3136 Result += "&_OBJC_MODULES;\n";
3137 Result += "#pragma data_seg(pop)\n\n";
3138 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00003139}
Chris Lattner311ff022007-10-16 22:36:42 +00003140
Argyrios Kyrtzidisef177822008-04-17 14:40:12 +00003141
Argyrios Kyrtzidis39ba4ae2008-06-09 23:19:58 +00003142
3143