blob: 239fa2d0266da16c9f8799593336829759e32966 [file] [log] [blame]
Chris Lattner77cd2a02007-10-11 00:43:27 +00001//===--- RewriteTest.cpp - Playground for the code rewriter ---------------===//
2//
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"
Chris Lattner8a12c272007-10-11 18:38:32 +000018#include "clang/Basic/SourceManager.h"
Steve Naroffebf2b562007-10-23 23:50:29 +000019#include "clang/Basic/IdentifierTable.h"
Chris Lattner07506182007-11-30 22:53:43 +000020#include "clang/Basic/Diagnostic.h"
Chris Lattner26de4652007-12-02 01:13:47 +000021#include "clang/Lex/Lexer.h"
Chris Lattner158ecb92007-10-25 17:07:24 +000022#include "llvm/ADT/StringExtras.h"
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +000023#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner26de4652007-12-02 01:13:47 +000024#include "llvm/Support/MemoryBuffer.h"
Steve Naroff0113c9d2008-01-28 21:34:52 +000025#include "llvm/Support/CommandLine.h"
Steve Naroff874e2322007-11-15 10:28:18 +000026#include <sstream>
Chris Lattner77cd2a02007-10-11 00:43:27 +000027using namespace clang;
Chris Lattner158ecb92007-10-25 17:07:24 +000028using llvm::utostr;
Chris Lattner77cd2a02007-10-11 00:43:27 +000029
Steve Naroff0113c9d2008-01-28 21:34:52 +000030static llvm::cl::opt<bool>
31SilenceRewriteMacroWarning("Wno-rewrite-macros", llvm::cl::init(false),
32 llvm::cl::desc("Silence ObjC rewriting warnings"));
33
Chris Lattner77cd2a02007-10-11 00:43:27 +000034namespace {
Chris Lattner8a12c272007-10-11 18:38:32 +000035 class RewriteTest : public ASTConsumer {
Chris Lattner2c64b7b2007-10-16 21:07:07 +000036 Rewriter Rewrite;
Chris Lattnere365c502007-11-30 22:25:36 +000037 Diagnostic &Diags;
Steve Naroff4f943c22008-03-10 20:43:59 +000038 const LangOptions &LangOpts;
Steve Narofff69cc5d2008-01-30 19:17:43 +000039 unsigned RewriteFailedDiag;
40
Chris Lattner01c57482007-10-17 22:35:30 +000041 ASTContext *Context;
Chris Lattner77cd2a02007-10-11 00:43:27 +000042 SourceManager *SM;
Chris Lattner8a12c272007-10-11 18:38:32 +000043 unsigned MainFileID;
Chris Lattner26de4652007-12-02 01:13:47 +000044 const char *MainFileStart, *MainFileEnd;
Chris Lattner2c64b7b2007-10-16 21:07:07 +000045 SourceLocation LastIncLoc;
Ted Kremeneka526c5c2008-01-07 19:49:32 +000046 llvm::SmallVector<ObjCImplementationDecl *, 8> ClassImplementation;
47 llvm::SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation;
48 llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCSynthesizedStructs;
49 llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCForwardDecls;
50 llvm::DenseMap<ObjCMethodDecl*, std::string> MethodInternalNames;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +000051 llvm::SmallVector<Stmt *, 32> Stmts;
52 llvm::SmallVector<int, 8> ObjCBcLabelNo;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +000053 llvm::SmallVector<const RecordType *, 8> EncodingRecordTypes;
Steve Naroffebf2b562007-10-23 23:50:29 +000054
Steve Naroffd82a9ab2008-03-15 00:55:56 +000055 unsigned NumObjCStringLiterals;
56
Steve Naroffebf2b562007-10-23 23:50:29 +000057 FunctionDecl *MsgSendFunctionDecl;
Steve Naroff874e2322007-11-15 10:28:18 +000058 FunctionDecl *MsgSendSuperFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +000059 FunctionDecl *MsgSendStretFunctionDecl;
60 FunctionDecl *MsgSendSuperStretFunctionDecl;
Fariborz Jahanianacb49772007-12-03 21:26:48 +000061 FunctionDecl *MsgSendFpretFunctionDecl;
Steve Naroffebf2b562007-10-23 23:50:29 +000062 FunctionDecl *GetClassFunctionDecl;
Steve Naroff9bcb5fc2007-12-07 03:50:46 +000063 FunctionDecl *GetMetaClassFunctionDecl;
Steve Naroff934f2762007-10-24 22:48:43 +000064 FunctionDecl *SelGetUidFunctionDecl;
Steve Naroff96984642007-11-08 14:30:50 +000065 FunctionDecl *CFStringFunctionDecl;
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +000066 FunctionDecl *GetProtocolFunctionDecl;
Steve Naroffc0a123c2008-03-11 17:37:02 +000067 FunctionDecl *SuperContructorFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +000068
Steve Naroffbeaf2992007-11-03 11:27:19 +000069 // ObjC string constant support.
70 FileVarDecl *ConstantStringClassReference;
71 RecordDecl *NSStringRecord;
Steve Naroffab972d32007-11-04 22:37:50 +000072
Fariborz Jahanianb586cce2008-01-16 00:09:11 +000073 // ObjC foreach break/continue generation support.
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +000074 int BcLabelCount;
75
Steve Naroff874e2322007-11-15 10:28:18 +000076 // Needed for super.
Ted Kremeneka526c5c2008-01-07 19:49:32 +000077 ObjCMethodDecl *CurMethodDecl;
Steve Naroff874e2322007-11-15 10:28:18 +000078 RecordDecl *SuperStructDecl;
Steve Naroffd82a9ab2008-03-15 00:55:56 +000079 RecordDecl *ConstantStringDecl;
Steve Naroff874e2322007-11-15 10:28:18 +000080
Fariborz Jahanianb4b2f0c2008-01-18 01:15:54 +000081 // Needed for header files being rewritten
82 bool IsHeader;
83
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +000084 static const int OBJC_ABI_VERSION =7 ;
Chris Lattner77cd2a02007-10-11 00:43:27 +000085 public:
Chris Lattner9e13c2e2008-01-31 19:38:44 +000086 void Initialize(ASTContext &context);
87
Chris Lattner8a12c272007-10-11 18:38:32 +000088
Chris Lattnerf04da132007-10-24 17:06:59 +000089 // Top Level Driver code.
90 virtual void HandleTopLevelDecl(Decl *D);
Chris Lattner2c64b7b2007-10-16 21:07:07 +000091 void HandleDeclInMainFile(Decl *D);
Steve Naroff4f943c22008-03-10 20:43:59 +000092 RewriteTest(bool isHeader, Diagnostic &D, const LangOptions &LOpts) :
93 Diags(D), LangOpts(LOpts) {
Steve Narofff69cc5d2008-01-30 19:17:43 +000094 IsHeader = isHeader;
Steve Naroff0113c9d2008-01-28 21:34:52 +000095 RewriteFailedDiag = Diags.getCustomDiagID(Diagnostic::Warning,
96 "rewriting sub-expression within a macro (may not be correct)");
Steve Narofff69cc5d2008-01-30 19:17:43 +000097 }
Chris Lattnerf04da132007-10-24 17:06:59 +000098 ~RewriteTest();
Chris Lattnerdcbc5b02008-01-31 19:37:57 +000099
100 void ReplaceStmt(Stmt *Old, Stmt *New) {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000101 // If replacement succeeded or warning disabled return with no warning.
102 if (!Rewrite.ReplaceStmt(Old, New) || SilenceRewriteMacroWarning)
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000103 return;
104
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000105 SourceRange Range = Old->getSourceRange();
106 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag,
107 0, 0, &Range, 1);
108 }
109
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000110 void InsertText(SourceLocation Loc, const char *StrData, unsigned StrLen) {
Chris Lattneraadaf782008-01-31 19:51:04 +0000111 // If insertion succeeded or warning disabled return with no warning.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000112 if (!Rewrite.InsertText(Loc, StrData, StrLen) ||
113 SilenceRewriteMacroWarning)
114 return;
115
116 Diags.Report(Context->getFullLoc(Loc), RewriteFailedDiag);
117 }
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000118
Chris Lattneraadaf782008-01-31 19:51:04 +0000119 void RemoveText(SourceLocation Loc, unsigned StrLen) {
120 // If removal succeeded or warning disabled return with no warning.
121 if (!Rewrite.RemoveText(Loc, StrLen) || SilenceRewriteMacroWarning)
122 return;
123
124 Diags.Report(Context->getFullLoc(Loc), RewriteFailedDiag);
125 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000126
Chris Lattneraadaf782008-01-31 19:51:04 +0000127 void ReplaceText(SourceLocation Start, unsigned OrigLength,
128 const char *NewStr, unsigned NewLength) {
129 // If removal succeeded or warning disabled return with no warning.
130 if (!Rewrite.ReplaceText(Start, OrigLength, NewStr, NewLength) ||
131 SilenceRewriteMacroWarning)
132 return;
133
134 Diags.Report(Context->getFullLoc(Start), RewriteFailedDiag);
135 }
136
Chris Lattnerf04da132007-10-24 17:06:59 +0000137 // Syntactic Rewriting.
Steve Naroffab972d32007-11-04 22:37:50 +0000138 void RewritePrologue(SourceLocation Loc);
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000139 void RewriteInclude();
Chris Lattnerf04da132007-10-24 17:06:59 +0000140 void RewriteTabs();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000141 void RewriteForwardClassDecl(ObjCClassDecl *Dcl);
142 void RewriteInterfaceDecl(ObjCInterfaceDecl *Dcl);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000143 void RewriteImplementationDecl(NamedDecl *Dcl);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000144 void RewriteObjCMethodDecl(ObjCMethodDecl *MDecl, std::string &ResultStr);
145 void RewriteCategoryDecl(ObjCCategoryDecl *Dcl);
146 void RewriteProtocolDecl(ObjCProtocolDecl *Dcl);
147 void RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *Dcl);
148 void RewriteMethodDeclaration(ObjCMethodDecl *Method);
Chris Lattner55d13b42008-03-16 21:23:50 +0000149 void RewriteProperties(unsigned nProperties, ObjCPropertyDecl **Properties);
Steve Naroff09b266e2007-10-30 23:14:51 +0000150 void RewriteFunctionDecl(FunctionDecl *FD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000151 void RewriteObjCQualifiedInterfaceTypes(Decl *Dcl);
Steve Naroffd5255f52007-11-01 13:24:47 +0000152 bool needToScanForQualifiers(QualType T);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000153 ObjCInterfaceDecl *isSuperReceiver(Expr *recExpr);
Steve Naroff874e2322007-11-15 10:28:18 +0000154 QualType getSuperStructType();
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000155 QualType getConstantStringStructType();
Chris Lattner311ff022007-10-16 22:36:42 +0000156
Chris Lattnerf04da132007-10-24 17:06:59 +0000157 // Expression Rewriting.
Steve Narofff3473a72007-11-09 15:20:18 +0000158 Stmt *RewriteFunctionBodyOrGlobalInitializer(Stmt *S);
Chris Lattnere64b7772007-10-24 16:57:36 +0000159 Stmt *RewriteAtEncode(ObjCEncodeExpr *Exp);
Steve Naroff7e3411b2007-11-15 02:58:25 +0000160 Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV);
Steve Naroffb42f8412007-11-05 14:50:49 +0000161 Stmt *RewriteAtSelector(ObjCSelectorExpr *Exp);
Chris Lattnere64b7772007-10-24 16:57:36 +0000162 Stmt *RewriteMessageExpr(ObjCMessageExpr *Exp);
Steve Naroffbeaf2992007-11-03 11:27:19 +0000163 Stmt *RewriteObjCStringLiteral(ObjCStringLiteral *Exp);
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +0000164 Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000165 Stmt *RewriteObjCTryStmt(ObjCAtTryStmt *S);
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000166 Stmt *RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000167 Stmt *RewriteObjCCatchStmt(ObjCAtCatchStmt *S);
168 Stmt *RewriteObjCFinallyStmt(ObjCAtFinallyStmt *S);
169 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
Chris Lattner338d1e22008-01-31 05:10:40 +0000170 Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
171 SourceLocation OrigEnd);
Steve Naroff934f2762007-10-24 22:48:43 +0000172 CallExpr *SynthesizeCallToFunctionDecl(FunctionDecl *FD,
173 Expr **args, unsigned nargs);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000174 Stmt *SynthMessageExpr(ObjCMessageExpr *Exp);
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000175 Stmt *RewriteBreakStmt(BreakStmt *S);
176 Stmt *RewriteContinueStmt(ContinueStmt *S);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000177 void SynthCountByEnumWithState(std::string &buf);
178
Steve Naroff09b266e2007-10-30 23:14:51 +0000179 void SynthMsgSendFunctionDecl();
Steve Naroff874e2322007-11-15 10:28:18 +0000180 void SynthMsgSendSuperFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +0000181 void SynthMsgSendStretFunctionDecl();
Fariborz Jahanianacb49772007-12-03 21:26:48 +0000182 void SynthMsgSendFpretFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +0000183 void SynthMsgSendSuperStretFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +0000184 void SynthGetClassFunctionDecl();
Steve Naroff9bcb5fc2007-12-07 03:50:46 +0000185 void SynthGetMetaClassFunctionDecl();
Fariborz Jahaniana70711b2007-12-04 21:47:40 +0000186 void SynthSelGetUidFunctionDecl();
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +0000187 void SynthGetProtocolFunctionDecl();
Steve Naroffc0a123c2008-03-11 17:37:02 +0000188 void SynthSuperContructorFunctionDecl();
Steve Naroff96984642007-11-08 14:30:50 +0000189
Chris Lattnerf04da132007-10-24 17:06:59 +0000190 // Metadata emission.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000191 void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +0000192 std::string &Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000193
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000194 void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +0000195 std::string &Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000196
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000197 typedef ObjCCategoryImplDecl::instmeth_iterator instmeth_iterator;
198 void RewriteObjCMethodsMetaData(instmeth_iterator MethodBegin,
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000199 instmeth_iterator MethodEnd,
Fariborz Jahanian8e991ba2007-10-25 00:14:44 +0000200 bool IsInstanceMethod,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000201 const char *prefix,
Chris Lattner158ecb92007-10-25 17:07:24 +0000202 const char *ClassName,
203 std::string &Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000204
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000205 void RewriteObjCProtocolsMetaData(ObjCProtocolDecl **Protocols,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +0000206 int NumProtocols,
207 const char *prefix,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +0000208 const char *ClassName,
209 std::string &Result);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000210 void SynthesizeObjCInternalStruct(ObjCInterfaceDecl *CDecl,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +0000211 std::string &Result);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000212 void SynthesizeIvarOffsetComputation(ObjCImplementationDecl *IDecl,
213 ObjCIvarDecl *ivar,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +0000214 std::string &Result);
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +0000215 void RewriteImplementations(std::string &Result);
Chris Lattner77cd2a02007-10-11 00:43:27 +0000216 };
217}
218
Fariborz Jahanianb4b2f0c2008-01-18 01:15:54 +0000219static bool IsHeaderFile(const std::string &Filename) {
220 std::string::size_type DotPos = Filename.rfind('.');
221
222 if (DotPos == std::string::npos) {
223 // no file extension
224 return false;
225 }
226
227 std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end());
228 // C header: .h
229 // C++ header: .hh or .H;
230 return Ext == "h" || Ext == "hh" || Ext == "H";
231}
232
233ASTConsumer *clang::CreateCodeRewriterTest(const std::string& InFile,
Steve Naroff4f943c22008-03-10 20:43:59 +0000234 Diagnostic &Diags,
235 const LangOptions &LOpts) {
236 return new RewriteTest(IsHeaderFile(InFile), Diags, LOpts);
Chris Lattnere365c502007-11-30 22:25:36 +0000237}
Chris Lattner77cd2a02007-10-11 00:43:27 +0000238
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000239void RewriteTest::Initialize(ASTContext &context) {
240 Context = &context;
241 SM = &Context->getSourceManager();
242 MsgSendFunctionDecl = 0;
243 MsgSendSuperFunctionDecl = 0;
244 MsgSendStretFunctionDecl = 0;
245 MsgSendSuperStretFunctionDecl = 0;
246 MsgSendFpretFunctionDecl = 0;
247 GetClassFunctionDecl = 0;
248 GetMetaClassFunctionDecl = 0;
249 SelGetUidFunctionDecl = 0;
250 CFStringFunctionDecl = 0;
251 GetProtocolFunctionDecl = 0;
252 ConstantStringClassReference = 0;
253 NSStringRecord = 0;
254 CurMethodDecl = 0;
255 SuperStructDecl = 0;
256 BcLabelCount = 0;
Steve Naroffc0a123c2008-03-11 17:37:02 +0000257 SuperContructorFunctionDecl = 0;
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000258 NumObjCStringLiterals = 0;
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000259
260 // Get the ID and start/end of the main file.
261 MainFileID = SM->getMainFileID();
262 const llvm::MemoryBuffer *MainBuf = SM->getBuffer(MainFileID);
263 MainFileStart = MainBuf->getBufferStart();
264 MainFileEnd = MainBuf->getBufferEnd();
265
266
267 Rewrite.setSourceMgr(Context->getSourceManager());
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000268
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000269 // declaring objc_selector outside the parameter list removes a silly
270 // scope related warning...
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000271 std::string S = "#pragma once\n";
272 S += "struct objc_selector; struct objc_class;\n";
273 S += "#ifndef OBJC_SUPER\n";
Steve Naroffc0a123c2008-03-11 17:37:02 +0000274 S += "struct objc_super { struct objc_object *object; ";
275 S += "struct objc_object *superClass; ";
276 if (LangOpts.Microsoft) {
277 // Add a constructor for creating temporary objects.
278 S += "objc_super(struct objc_object *o, struct objc_object *s) : ";
279 S += "object(o), superClass(s) {} ";
280 }
281 S += "};\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000282 S += "#define OBJC_SUPER\n";
283 S += "#endif\n";
284 S += "#ifndef _REWRITER_typedef_Protocol\n";
285 S += "typedef struct objc_object Protocol;\n";
286 S += "#define _REWRITER_typedef_Protocol\n";
287 S += "#endif\n";
Steve Naroff3c64d9e2008-03-12 13:19:12 +0000288 if (LangOpts.Microsoft)
289 S += "extern \"C\" {\n";
290 S += "struct objc_object *objc_msgSend";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000291 S += "(struct objc_object *, struct objc_selector *, ...);\n";
292 S += "extern struct objc_object *objc_msgSendSuper";
293 S += "(struct objc_super *, struct objc_selector *, ...);\n";
294 S += "extern struct objc_object *objc_msgSend_stret";
295 S += "(struct objc_object *, struct objc_selector *, ...);\n";
296 S += "extern struct objc_object *objc_msgSendSuper_stret";
297 S += "(struct objc_super *, struct objc_selector *, ...);\n";
298 S += "extern struct objc_object *objc_msgSend_fpret";
299 S += "(struct objc_object *, struct objc_selector *, ...);\n";
Steve Naroff3c64d9e2008-03-12 13:19:12 +0000300 S += "struct objc_object *objc_getClass";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000301 S += "(const char *);\n";
302 S += "extern struct objc_object *objc_getMetaClass";
303 S += "(const char *);\n";
304 S += "extern void objc_exception_throw(struct objc_object *);\n";
305 S += "extern void objc_exception_try_enter(void *);\n";
306 S += "extern void objc_exception_try_exit(void *);\n";
307 S += "extern struct objc_object *objc_exception_extract(void *);\n";
308 S += "extern int objc_exception_match";
309 S += "(struct objc_class *, struct objc_object *, ...);\n";
310 S += "extern Protocol *objc_getProtocol(const char *);\n";
Steve Naroff3c64d9e2008-03-12 13:19:12 +0000311 if (LangOpts.Microsoft)
312 S += "} // end extern \"C\"\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000313 S += "#include <objc/objc.h>\n";
314 S += "#ifndef __FASTENUMERATIONSTATE\n";
315 S += "struct __objcFastEnumerationState {\n\t";
316 S += "unsigned long state;\n\t";
317 S += "id *itemsPtr;\n\t";
318 S += "unsigned long *mutationsPtr;\n\t";
319 S += "unsigned long extra[5];\n};\n";
320 S += "#define __FASTENUMERATIONSTATE\n";
321 S += "#endif\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000322 S += "#ifndef __NSCONSTANTSTRINGIMPL\n";
323 S += "struct __NSConstantStringImpl {\n";
Steve Naroff2a228162008-03-18 01:47:18 +0000324 S += " int *isa;\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000325 S += " int flags;\n";
326 S += " char *str;\n";
327 S += " long length;\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000328 S += "};\n";
Steve Naroff2a228162008-03-18 01:47:18 +0000329 S += "extern int __CFConstantStringClassReference[];\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000330 S += "#define __NSCONSTANTSTRINGIMPL\n";
331 S += "#endif\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000332#if 0
333 if (LangOpts.Microsoft)
Steve Naroff4f943c22008-03-10 20:43:59 +0000334 S += "#define __attribute__(X)\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000335#endif
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000336 if (IsHeader) {
337 // insert the whole string when rewriting a header file
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000338 InsertText(SourceLocation::getFileLoc(MainFileID, 0), S.c_str(), S.size());
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000339 }
340 else {
341 // Not rewriting header, exclude the #pragma once pragma
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000342 const char *p = S.c_str() + strlen("#pragma once\n");
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000343 InsertText(SourceLocation::getFileLoc(MainFileID, 0), p, strlen(p));
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000344 }
345}
346
347
Chris Lattnerf04da132007-10-24 17:06:59 +0000348//===----------------------------------------------------------------------===//
349// Top Level Driver Code
350//===----------------------------------------------------------------------===//
351
Chris Lattner8a12c272007-10-11 18:38:32 +0000352void RewriteTest::HandleTopLevelDecl(Decl *D) {
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000353 // Two cases: either the decl could be in the main file, or it could be in a
354 // #included file. If the former, rewrite it now. If the later, check to see
355 // if we rewrote the #include/#import.
356 SourceLocation Loc = D->getLocation();
357 Loc = SM->getLogicalLoc(Loc);
358
359 // If this is for a builtin, ignore it.
360 if (Loc.isInvalid()) return;
361
Steve Naroffebf2b562007-10-23 23:50:29 +0000362 // Look for built-in declarations that we need to refer during the rewrite.
363 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Steve Naroff09b266e2007-10-30 23:14:51 +0000364 RewriteFunctionDecl(FD);
Steve Naroffbeaf2992007-11-03 11:27:19 +0000365 } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(D)) {
366 // declared in <Foundation/NSString.h>
367 if (strcmp(FVD->getName(), "_NSConstantStringClassReference") == 0) {
368 ConstantStringClassReference = FVD;
369 return;
370 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000371 } else if (ObjCInterfaceDecl *MD = dyn_cast<ObjCInterfaceDecl>(D)) {
Steve Naroffbef11852007-10-26 20:53:56 +0000372 RewriteInterfaceDecl(MD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000373 } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) {
Steve Naroff423cb562007-10-30 13:30:57 +0000374 RewriteCategoryDecl(CD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000375 } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
Steve Naroff752d6ef2007-10-30 16:42:30 +0000376 RewriteProtocolDecl(PD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000377 } else if (ObjCForwardProtocolDecl *FP =
378 dyn_cast<ObjCForwardProtocolDecl>(D)){
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000379 RewriteForwardProtocolDecl(FP);
Steve Naroffebf2b562007-10-23 23:50:29 +0000380 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000381 // If we have a decl in the main file, see if we should rewrite it.
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000382 if (SM->getDecomposedFileLoc(Loc).first == MainFileID)
383 return HandleDeclInMainFile(D);
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000384}
385
Chris Lattnerf04da132007-10-24 17:06:59 +0000386/// HandleDeclInMainFile - This is called for each top-level decl defined in the
387/// main file of the input.
388void RewriteTest::HandleDeclInMainFile(Decl *D) {
389 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
390 if (Stmt *Body = FD->getBody())
Steve Narofff3473a72007-11-09 15:20:18 +0000391 FD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
Steve Narofff69cc5d2008-01-30 19:17:43 +0000392
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000393 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Steve Naroff874e2322007-11-15 10:28:18 +0000394 if (Stmt *Body = MD->getBody()) {
395 //Body->dump();
396 CurMethodDecl = MD;
Steve Naroff71c0a952007-11-13 23:01:27 +0000397 MD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
Steve Naroff874e2322007-11-15 10:28:18 +0000398 CurMethodDecl = 0;
399 }
Steve Naroff71c0a952007-11-13 23:01:27 +0000400 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000401 if (ObjCImplementationDecl *CI = dyn_cast<ObjCImplementationDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000402 ClassImplementation.push_back(CI);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000403 else if (ObjCCategoryImplDecl *CI = dyn_cast<ObjCCategoryImplDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000404 CategoryImplementation.push_back(CI);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000405 else if (ObjCClassDecl *CD = dyn_cast<ObjCClassDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000406 RewriteForwardClassDecl(CD);
Steve Narofff3473a72007-11-09 15:20:18 +0000407 else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000408 RewriteObjCQualifiedInterfaceTypes(VD);
Steve Narofff3473a72007-11-09 15:20:18 +0000409 if (VD->getInit())
410 RewriteFunctionBodyOrGlobalInitializer(VD->getInit());
411 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000412 // Nothing yet.
413}
414
415RewriteTest::~RewriteTest() {
416 // Get the top-level buffer that this corresponds to.
Chris Lattner74a0c772007-11-08 04:27:23 +0000417
418 // Rewrite tabs if we care.
419 //RewriteTabs();
Chris Lattnerf04da132007-10-24 17:06:59 +0000420
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000421 RewriteInclude();
422
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000423 // Rewrite Objective-c meta data*
424 std::string ResultStr;
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +0000425 RewriteImplementations(ResultStr);
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000426
Chris Lattnerf04da132007-10-24 17:06:59 +0000427 // Get the buffer corresponding to MainFileID. If we haven't changed it, then
428 // we are done.
429 if (const RewriteBuffer *RewriteBuf =
430 Rewrite.getRewriteBufferFor(MainFileID)) {
Steve Naroffbeaf2992007-11-03 11:27:19 +0000431 //printf("Changed:\n");
Chris Lattnerf04da132007-10-24 17:06:59 +0000432 std::string S(RewriteBuf->begin(), RewriteBuf->end());
433 printf("%s\n", S.c_str());
434 } else {
435 printf("No changes\n");
436 }
Fariborz Jahanian4402d812007-11-07 18:40:28 +0000437 // Emit metadata.
438 printf("%s", ResultStr.c_str());
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +0000439}
440
Chris Lattnerf04da132007-10-24 17:06:59 +0000441//===----------------------------------------------------------------------===//
442// Syntactic (non-AST) Rewriting Code
443//===----------------------------------------------------------------------===//
444
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000445void RewriteTest::RewriteInclude() {
446 SourceLocation LocStart = SourceLocation::getFileLoc(MainFileID, 0);
447 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
448 const char *MainBufStart = MainBuf.first;
449 const char *MainBufEnd = MainBuf.second;
450 size_t ImportLen = strlen("import");
451 size_t IncludeLen = strlen("include");
452
Fariborz Jahanianaf57b462008-01-19 01:03:17 +0000453 // Loop over the whole file, looking for includes.
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000454 for (const char *BufPtr = MainBufStart; BufPtr < MainBufEnd; ++BufPtr) {
455 if (*BufPtr == '#') {
456 if (++BufPtr == MainBufEnd)
457 return;
458 while (*BufPtr == ' ' || *BufPtr == '\t')
459 if (++BufPtr == MainBufEnd)
460 return;
461 if (!strncmp(BufPtr, "import", ImportLen)) {
462 // replace import with include
463 SourceLocation ImportLoc =
464 LocStart.getFileLocWithOffset(BufPtr-MainBufStart);
Chris Lattneraadaf782008-01-31 19:51:04 +0000465 ReplaceText(ImportLoc, ImportLen, "include", IncludeLen);
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000466 BufPtr += ImportLen;
467 }
468 }
469 }
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000470}
471
Chris Lattnerf04da132007-10-24 17:06:59 +0000472void RewriteTest::RewriteTabs() {
473 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
474 const char *MainBufStart = MainBuf.first;
475 const char *MainBufEnd = MainBuf.second;
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +0000476
Chris Lattnerf04da132007-10-24 17:06:59 +0000477 // Loop over the whole file, looking for tabs.
478 for (const char *BufPtr = MainBufStart; BufPtr != MainBufEnd; ++BufPtr) {
479 if (*BufPtr != '\t')
480 continue;
481
482 // Okay, we found a tab. This tab will turn into at least one character,
483 // but it depends on which 'virtual column' it is in. Compute that now.
484 unsigned VCol = 0;
485 while (BufPtr-VCol != MainBufStart && BufPtr[-VCol-1] != '\t' &&
486 BufPtr[-VCol-1] != '\n' && BufPtr[-VCol-1] != '\r')
487 ++VCol;
488
489 // Okay, now that we know the virtual column, we know how many spaces to
490 // insert. We assume 8-character tab-stops.
491 unsigned Spaces = 8-(VCol & 7);
492
493 // Get the location of the tab.
494 SourceLocation TabLoc =
495 SourceLocation::getFileLoc(MainFileID, BufPtr-MainBufStart);
496
497 // Rewrite the single tab character into a sequence of spaces.
Chris Lattneraadaf782008-01-31 19:51:04 +0000498 ReplaceText(TabLoc, 1, " ", Spaces);
Chris Lattnerf04da132007-10-24 17:06:59 +0000499 }
Chris Lattner8a12c272007-10-11 18:38:32 +0000500}
501
502
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000503void RewriteTest::RewriteForwardClassDecl(ObjCClassDecl *ClassDecl) {
Chris Lattnerf04da132007-10-24 17:06:59 +0000504 int numDecls = ClassDecl->getNumForwardDecls();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000505 ObjCInterfaceDecl **ForwardDecls = ClassDecl->getForwardDecls();
Chris Lattnerf04da132007-10-24 17:06:59 +0000506
507 // Get the start location and compute the semi location.
508 SourceLocation startLoc = ClassDecl->getLocation();
509 const char *startBuf = SM->getCharacterData(startLoc);
510 const char *semiPtr = strchr(startBuf, ';');
511
512 // Translate to typedef's that forward reference structs with the same name
513 // as the class. As a convenience, we include the original declaration
514 // as a comment.
515 std::string typedefString;
516 typedefString += "// ";
Steve Naroff934f2762007-10-24 22:48:43 +0000517 typedefString.append(startBuf, semiPtr-startBuf+1);
518 typedefString += "\n";
519 for (int i = 0; i < numDecls; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000520 ObjCInterfaceDecl *ForwardDecl = ForwardDecls[i];
Steve Naroff32174822007-11-09 12:50:28 +0000521 typedefString += "#ifndef _REWRITER_typedef_";
522 typedefString += ForwardDecl->getName();
523 typedefString += "\n";
524 typedefString += "#define _REWRITER_typedef_";
525 typedefString += ForwardDecl->getName();
526 typedefString += "\n";
Steve Naroff352336b2007-11-05 14:36:37 +0000527 typedefString += "typedef struct objc_object ";
Steve Naroff934f2762007-10-24 22:48:43 +0000528 typedefString += ForwardDecl->getName();
Steve Naroff32174822007-11-09 12:50:28 +0000529 typedefString += ";\n#endif\n";
Steve Naroff934f2762007-10-24 22:48:43 +0000530 }
531
532 // Replace the @class with typedefs corresponding to the classes.
Chris Lattneraadaf782008-01-31 19:51:04 +0000533 ReplaceText(startLoc, semiPtr-startBuf+1,
534 typedefString.c_str(), typedefString.size());
Chris Lattnerf04da132007-10-24 17:06:59 +0000535}
536
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000537void RewriteTest::RewriteMethodDeclaration(ObjCMethodDecl *Method) {
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000538 SourceLocation LocStart = Method->getLocStart();
539 SourceLocation LocEnd = Method->getLocEnd();
Steve Naroff423cb562007-10-30 13:30:57 +0000540
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000541 if (SM->getLineNumber(LocEnd) > SM->getLineNumber(LocStart)) {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000542 InsertText(LocStart, "/* ", 3);
Chris Lattneraadaf782008-01-31 19:51:04 +0000543 ReplaceText(LocEnd, 1, ";*/ ", 4);
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000544 } else {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000545 InsertText(LocStart, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000546 }
547}
548
Chris Lattner55d13b42008-03-16 21:23:50 +0000549void RewriteTest::RewriteProperties(unsigned nProperties, ObjCPropertyDecl **Properties)
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000550{
Chris Lattner55d13b42008-03-16 21:23:50 +0000551 for (unsigned i = 0; i < nProperties; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000552 ObjCPropertyDecl *Property = Properties[i];
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000553 SourceLocation Loc = Property->getLocation();
554
Chris Lattneraadaf782008-01-31 19:51:04 +0000555 ReplaceText(Loc, 0, "// ", 3);
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000556
557 // FIXME: handle properties that are declared across multiple lines.
558 }
559}
560
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000561void RewriteTest::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) {
Steve Naroff423cb562007-10-30 13:30:57 +0000562 SourceLocation LocStart = CatDecl->getLocStart();
563
564 // FIXME: handle category headers that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000565 ReplaceText(LocStart, 0, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000566
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000567 for (ObjCCategoryDecl::instmeth_iterator I = CatDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000568 E = CatDecl->instmeth_end(); I != E; ++I)
569 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000570 for (ObjCCategoryDecl::classmeth_iterator I = CatDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000571 E = CatDecl->classmeth_end(); I != E; ++I)
572 RewriteMethodDeclaration(*I);
573
Steve Naroff423cb562007-10-30 13:30:57 +0000574 // Lastly, comment out the @end.
Chris Lattneraadaf782008-01-31 19:51:04 +0000575 ReplaceText(CatDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000576}
577
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000578void RewriteTest::RewriteProtocolDecl(ObjCProtocolDecl *PDecl) {
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000579 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000580
Steve Naroff752d6ef2007-10-30 16:42:30 +0000581 SourceLocation LocStart = PDecl->getLocStart();
582
583 // FIXME: handle protocol headers that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000584 ReplaceText(LocStart, 0, "// ", 3);
Steve Naroff752d6ef2007-10-30 16:42:30 +0000585
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000586 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000587 E = PDecl->instmeth_end(); I != E; ++I)
588 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000589 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000590 E = PDecl->classmeth_end(); I != E; ++I)
591 RewriteMethodDeclaration(*I);
592
Steve Naroff752d6ef2007-10-30 16:42:30 +0000593 // Lastly, comment out the @end.
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000594 SourceLocation LocEnd = PDecl->getAtEndLoc();
Chris Lattneraadaf782008-01-31 19:51:04 +0000595 ReplaceText(LocEnd, 0, "// ", 3);
Steve Naroff8cc764c2007-11-14 15:03:57 +0000596
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000597 // Must comment out @optional/@required
598 const char *startBuf = SM->getCharacterData(LocStart);
599 const char *endBuf = SM->getCharacterData(LocEnd);
600 for (const char *p = startBuf; p < endBuf; p++) {
601 if (*p == '@' && !strncmp(p+1, "optional", strlen("optional"))) {
602 std::string CommentedOptional = "/* @optional */";
Steve Naroff8cc764c2007-11-14 15:03:57 +0000603 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattneraadaf782008-01-31 19:51:04 +0000604 ReplaceText(OptionalLoc, strlen("@optional"),
605 CommentedOptional.c_str(), CommentedOptional.size());
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000606
607 }
608 else if (*p == '@' && !strncmp(p+1, "required", strlen("required"))) {
609 std::string CommentedRequired = "/* @required */";
Steve Naroff8cc764c2007-11-14 15:03:57 +0000610 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattneraadaf782008-01-31 19:51:04 +0000611 ReplaceText(OptionalLoc, strlen("@required"),
612 CommentedRequired.c_str(), CommentedRequired.size());
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000613
614 }
615 }
Steve Naroff752d6ef2007-10-30 16:42:30 +0000616}
617
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000618void RewriteTest::RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *PDecl) {
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000619 SourceLocation LocStart = PDecl->getLocation();
Steve Naroffb7fa9922007-11-14 03:37:28 +0000620 if (LocStart.isInvalid())
621 assert(false && "Invalid SourceLocation");
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000622 // FIXME: handle forward protocol that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000623 ReplaceText(LocStart, 0, "// ", 3);
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000624}
625
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000626void RewriteTest::RewriteObjCMethodDecl(ObjCMethodDecl *OMD,
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000627 std::string &ResultStr) {
628 ResultStr += "\nstatic ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000629 if (OMD->getResultType()->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000630 ResultStr += "id";
631 else
632 ResultStr += OMD->getResultType().getAsString();
Fariborz Jahanian531a1ea2008-01-10 01:39:52 +0000633 ResultStr += " ";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000634
635 // Unique method name
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000636 std::string NameStr;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000637
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000638 if (OMD->isInstance())
639 NameStr += "_I_";
640 else
641 NameStr += "_C_";
642
643 NameStr += OMD->getClassInterface()->getName();
644 NameStr += "_";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000645
646 NamedDecl *MethodContext = OMD->getMethodContext();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000647 if (ObjCCategoryImplDecl *CID =
648 dyn_cast<ObjCCategoryImplDecl>(MethodContext)) {
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000649 NameStr += CID->getName();
650 NameStr += "_";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000651 }
652 // Append selector names, replacing ':' with '_'
653 const char *selName = OMD->getSelector().getName().c_str();
654 if (!strchr(selName, ':'))
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000655 NameStr += OMD->getSelector().getName();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000656 else {
657 std::string selString = OMD->getSelector().getName();
658 int len = selString.size();
659 for (int i = 0; i < len; i++)
660 if (selString[i] == ':')
661 selString[i] = '_';
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000662 NameStr += selString;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000663 }
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000664 // Remember this name for metadata emission
665 MethodInternalNames[OMD] = NameStr;
666 ResultStr += NameStr;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000667
668 // Rewrite arguments
669 ResultStr += "(";
670
671 // invisible arguments
672 if (OMD->isInstance()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000673 QualType selfTy = Context->getObjCInterfaceType(OMD->getClassInterface());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000674 selfTy = Context->getPointerType(selfTy);
Steve Naroff05b8c782008-03-12 00:25:36 +0000675 if (!LangOpts.Microsoft) {
676 if (ObjCSynthesizedStructs.count(OMD->getClassInterface()))
677 ResultStr += "struct ";
678 }
679 // When rewriting for Microsoft, explicitly omit the structure name.
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000680 ResultStr += OMD->getClassInterface()->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000681 ResultStr += " *";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000682 }
683 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000684 ResultStr += Context->getObjCIdType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000685
686 ResultStr += " self, ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000687 ResultStr += Context->getObjCSelType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000688 ResultStr += " _cmd";
689
690 // Method arguments.
Chris Lattner58cce3b2008-03-16 01:07:14 +0000691 for (unsigned i = 0; i < OMD->getNumParams(); i++) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000692 ParmVarDecl *PDecl = OMD->getParamDecl(i);
693 ResultStr += ", ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000694 if (PDecl->getType()->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000695 ResultStr += "id";
696 else
697 ResultStr += PDecl->getType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000698 ResultStr += " ";
699 ResultStr += PDecl->getName();
700 }
Fariborz Jahanian7c39ff72008-01-21 20:14:23 +0000701 if (OMD->isVariadic())
702 ResultStr += ", ...";
Fariborz Jahanian531a1ea2008-01-10 01:39:52 +0000703 ResultStr += ") ";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000704
705}
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000706void RewriteTest::RewriteImplementationDecl(NamedDecl *OID) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000707 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
708 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000709
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000710 if (IMD)
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000711 InsertText(IMD->getLocStart(), "// ", 3);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000712 else
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000713 InsertText(CID->getLocStart(), "// ", 3);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000714
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000715 for (ObjCCategoryImplDecl::instmeth_iterator
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000716 I = IMD ? IMD->instmeth_begin() : CID->instmeth_begin(),
717 E = IMD ? IMD->instmeth_end() : CID->instmeth_end(); I != E; ++I) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000718 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000719 ObjCMethodDecl *OMD = *I;
720 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000721 SourceLocation LocStart = OMD->getLocStart();
722 SourceLocation LocEnd = OMD->getBody()->getLocStart();
723
724 const char *startBuf = SM->getCharacterData(LocStart);
725 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattneraadaf782008-01-31 19:51:04 +0000726 ReplaceText(LocStart, endBuf-startBuf,
727 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000728 }
729
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000730 for (ObjCCategoryImplDecl::classmeth_iterator
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000731 I = IMD ? IMD->classmeth_begin() : CID->classmeth_begin(),
732 E = IMD ? IMD->classmeth_end() : CID->classmeth_end(); I != E; ++I) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000733 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000734 ObjCMethodDecl *OMD = *I;
735 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000736 SourceLocation LocStart = OMD->getLocStart();
737 SourceLocation LocEnd = OMD->getBody()->getLocStart();
738
739 const char *startBuf = SM->getCharacterData(LocStart);
740 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattneraadaf782008-01-31 19:51:04 +0000741 ReplaceText(LocStart, endBuf-startBuf,
742 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000743 }
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000744 if (IMD)
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000745 InsertText(IMD->getLocEnd(), "// ", 3);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000746 else
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000747 InsertText(CID->getLocEnd(), "// ", 3);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000748}
749
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000750void RewriteTest::RewriteInterfaceDecl(ObjCInterfaceDecl *ClassDecl) {
Steve Narofff908a872007-10-30 02:23:23 +0000751 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000752 if (!ObjCForwardDecls.count(ClassDecl)) {
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000753 // we haven't seen a forward decl - generate a typedef.
Steve Naroff5086a8d2007-11-14 23:02:56 +0000754 ResultStr = "#ifndef _REWRITER_typedef_";
Steve Naroff32174822007-11-09 12:50:28 +0000755 ResultStr += ClassDecl->getName();
756 ResultStr += "\n";
757 ResultStr += "#define _REWRITER_typedef_";
758 ResultStr += ClassDecl->getName();
759 ResultStr += "\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000760 ResultStr += "typedef struct objc_object ";
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000761 ResultStr += ClassDecl->getName();
Steve Naroff32174822007-11-09 12:50:28 +0000762 ResultStr += ";\n#endif\n";
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000763 // Mark this typedef as having been generated.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000764 ObjCForwardDecls.insert(ClassDecl);
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000765 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000766 SynthesizeObjCInternalStruct(ClassDecl, ResultStr);
Steve Narofff908a872007-10-30 02:23:23 +0000767
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000768 RewriteProperties(ClassDecl->getNumPropertyDecl(),
769 ClassDecl->getPropertyDecl());
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000770 for (ObjCInterfaceDecl::instmeth_iterator I = ClassDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000771 E = ClassDecl->instmeth_end(); I != E; ++I)
772 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000773 for (ObjCInterfaceDecl::classmeth_iterator I = ClassDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000774 E = ClassDecl->classmeth_end(); I != E; ++I)
775 RewriteMethodDeclaration(*I);
776
Steve Naroff2feac5e2007-10-30 03:43:13 +0000777 // Lastly, comment out the @end.
Chris Lattneraadaf782008-01-31 19:51:04 +0000778 ReplaceText(ClassDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroffbef11852007-10-26 20:53:56 +0000779}
780
Steve Naroff7e3411b2007-11-15 02:58:25 +0000781Stmt *RewriteTest::RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000782 ObjCIvarDecl *D = IV->getDecl();
Steve Naroff05b8c782008-03-12 00:25:36 +0000783 if (CurMethodDecl) {
784 if (const PointerType *pType = IV->getBase()->getType()->getAsPointerType()) {
785 ObjCInterfaceType *intT = dyn_cast<ObjCInterfaceType>(pType->getPointeeType());
786 if (CurMethodDecl->getClassInterface() == intT->getDecl()) {
Steve Naroff39bbd9f2008-03-12 21:09:20 +0000787 // lookup which class implements the instance variable.
788 ObjCInterfaceDecl *clsDeclared = 0;
789 intT->getDecl()->lookupInstanceVariable(D->getIdentifier(), clsDeclared);
790 assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class");
Steve Naroff5518e7c2008-03-12 23:15:19 +0000791
792 // Synthesize an explicit cast to gain access to the ivar.
Steve Naroff39bbd9f2008-03-12 21:09:20 +0000793 std::string RecName = clsDeclared->getIdentifier()->getName();
Steve Naroff05b8c782008-03-12 00:25:36 +0000794 RecName += "_IMPL";
795 IdentifierInfo *II = &Context->Idents.get(RecName.c_str());
Chris Lattnerc63e6602008-03-15 21:32:50 +0000796 RecordDecl *RD = RecordDecl::Create(*Context, Decl::Struct,
797 SourceLocation(), II, 0);
Steve Naroff05b8c782008-03-12 00:25:36 +0000798 assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl");
799 QualType castT = Context->getPointerType(Context->getTagDeclType(RD));
800 CastExpr *castExpr = new CastExpr(castT, IV->getBase(), SourceLocation());
801 // Don't forget the parens to enforce the proper binding.
802 ParenExpr *PE = new ParenExpr(SourceLocation(), SourceLocation(), castExpr);
803 if (IV->isFreeIvar()) {
804 MemberExpr *ME = new MemberExpr(PE, true, D, IV->getLocation(), D->getType());
805 ReplaceStmt(IV, ME);
806 delete IV;
807 return ME;
808 } else {
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000809 ReplaceStmt(IV->getBase(), PE);
Steve Naroff5518e7c2008-03-12 23:15:19 +0000810 // Cannot delete IV->getBase(), since PE points to it.
811 // Replace the old base with the cast. This is important when doing
812 // embedded rewrites. For example, [newInv->_container addObject:0].
813 IV->setBase(PE);
814 return IV;
Steve Naroffc2a689b2007-11-15 11:33:00 +0000815 }
816 }
817 }
Steve Naroffc2a689b2007-11-15 11:33:00 +0000818 }
Steve Naroff5518e7c2008-03-12 23:15:19 +0000819 // FIXME: Implement public ivar access from a function.
Steve Naroff05b8c782008-03-12 00:25:36 +0000820 Expr *Replacement = new MemberExpr(IV->getBase(), true, D,
821 IV->getLocation(), D->getType());
822 ReplaceStmt(IV, Replacement);
823 delete IV;
824 return Replacement;
Steve Naroff7e3411b2007-11-15 02:58:25 +0000825}
826
Chris Lattnerf04da132007-10-24 17:06:59 +0000827//===----------------------------------------------------------------------===//
828// Function Body / Expression rewriting
829//===----------------------------------------------------------------------===//
830
Steve Narofff3473a72007-11-09 15:20:18 +0000831Stmt *RewriteTest::RewriteFunctionBodyOrGlobalInitializer(Stmt *S) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000832 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
833 isa<DoStmt>(S) || isa<ForStmt>(S))
834 Stmts.push_back(S);
835 else if (isa<ObjCForCollectionStmt>(S)) {
836 Stmts.push_back(S);
837 ObjCBcLabelNo.push_back(++BcLabelCount);
838 }
839
Chris Lattner338d1e22008-01-31 05:10:40 +0000840 SourceLocation OrigStmtEnd = S->getLocEnd();
841
842 // Start by rewriting all children.
Chris Lattner311ff022007-10-16 22:36:42 +0000843 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end();
844 CI != E; ++CI)
Steve Naroff75730982007-11-07 04:08:17 +0000845 if (*CI) {
Steve Narofff3473a72007-11-09 15:20:18 +0000846 Stmt *newStmt = RewriteFunctionBodyOrGlobalInitializer(*CI);
Steve Naroff75730982007-11-07 04:08:17 +0000847 if (newStmt)
848 *CI = newStmt;
849 }
Steve Naroffebf2b562007-10-23 23:50:29 +0000850
851 // Handle specific things.
852 if (ObjCEncodeExpr *AtEncode = dyn_cast<ObjCEncodeExpr>(S))
853 return RewriteAtEncode(AtEncode);
Steve Naroff7e3411b2007-11-15 02:58:25 +0000854
855 if (ObjCIvarRefExpr *IvarRefExpr = dyn_cast<ObjCIvarRefExpr>(S))
856 return RewriteObjCIvarRefExpr(IvarRefExpr);
Steve Naroffb42f8412007-11-05 14:50:49 +0000857
858 if (ObjCSelectorExpr *AtSelector = dyn_cast<ObjCSelectorExpr>(S))
859 return RewriteAtSelector(AtSelector);
Steve Narofff69cc5d2008-01-30 19:17:43 +0000860
Steve Naroffbeaf2992007-11-03 11:27:19 +0000861 if (ObjCStringLiteral *AtString = dyn_cast<ObjCStringLiteral>(S))
862 return RewriteObjCStringLiteral(AtString);
Steve Naroffebf2b562007-10-23 23:50:29 +0000863
Steve Naroff934f2762007-10-24 22:48:43 +0000864 if (ObjCMessageExpr *MessExpr = dyn_cast<ObjCMessageExpr>(S)) {
865 // Before we rewrite it, put the original message expression in a comment.
866 SourceLocation startLoc = MessExpr->getLocStart();
867 SourceLocation endLoc = MessExpr->getLocEnd();
868
869 const char *startBuf = SM->getCharacterData(startLoc);
870 const char *endBuf = SM->getCharacterData(endLoc);
871
872 std::string messString;
873 messString += "// ";
874 messString.append(startBuf, endBuf-startBuf+1);
875 messString += "\n";
Steve Naroffbef11852007-10-26 20:53:56 +0000876
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000877 // FIXME: Missing definition of
878 // InsertText(clang::SourceLocation, char const*, unsigned int).
879 // InsertText(startLoc, messString.c_str(), messString.size());
Steve Naroff934f2762007-10-24 22:48:43 +0000880 // Tried this, but it didn't work either...
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000881 // ReplaceText(startLoc, 0, messString.c_str(), messString.size());
Steve Naroffebf2b562007-10-23 23:50:29 +0000882 return RewriteMessageExpr(MessExpr);
Steve Naroff934f2762007-10-24 22:48:43 +0000883 }
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000884
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000885 if (ObjCAtTryStmt *StmtTry = dyn_cast<ObjCAtTryStmt>(S))
886 return RewriteObjCTryStmt(StmtTry);
Steve Naroff2bd03922007-11-07 15:32:26 +0000887
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000888 if (ObjCAtSynchronizedStmt *StmtTry = dyn_cast<ObjCAtSynchronizedStmt>(S))
889 return RewriteObjCSynchronizedStmt(StmtTry);
890
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000891 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S))
892 return RewriteObjCThrowStmt(StmtThrow);
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +0000893
894 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S))
895 return RewriteObjCProtocolExpr(ProtocolExp);
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000896
897 if (ObjCForCollectionStmt *StmtForCollection =
898 dyn_cast<ObjCForCollectionStmt>(S))
Chris Lattner338d1e22008-01-31 05:10:40 +0000899 return RewriteObjCForCollectionStmt(StmtForCollection, OrigStmtEnd);
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000900 if (BreakStmt *StmtBreakStmt =
901 dyn_cast<BreakStmt>(S))
902 return RewriteBreakStmt(StmtBreakStmt);
903 if (ContinueStmt *StmtContinueStmt =
904 dyn_cast<ContinueStmt>(S))
905 return RewriteContinueStmt(StmtContinueStmt);
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000906
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000907 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
908 isa<DoStmt>(S) || isa<ForStmt>(S)) {
909 assert(!Stmts.empty() && "Statement stack is empty");
910 assert ((isa<SwitchStmt>(Stmts.back()) || isa<WhileStmt>(Stmts.back()) ||
911 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
912 && "Statement stack mismatch");
913 Stmts.pop_back();
914 }
Steve Naroff874e2322007-11-15 10:28:18 +0000915#if 0
916 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(S)) {
917 CastExpr *Replacement = new CastExpr(ICE->getType(), ICE->getSubExpr(), SourceLocation());
918 // Get the new text.
919 std::ostringstream Buf;
920 Replacement->printPretty(Buf);
921 const std::string &Str = Buf.str();
922
923 printf("CAST = %s\n", &Str[0]);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000924 InsertText(ICE->getSubExpr()->getLocStart(), &Str[0], Str.size());
Steve Naroff874e2322007-11-15 10:28:18 +0000925 delete S;
926 return Replacement;
927 }
928#endif
Chris Lattnere64b7772007-10-24 16:57:36 +0000929 // Return this stmt unmodified.
930 return S;
Chris Lattner311ff022007-10-16 22:36:42 +0000931}
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000932
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000933/// SynthCountByEnumWithState - To print:
934/// ((unsigned int (*)
935/// (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
936/// (void *)objc_msgSend)((id)l_collection,
937/// sel_registerName(
938/// "countByEnumeratingWithState:objects:count:"),
939/// &enumState,
940/// (id *)items, (unsigned int)16)
941///
942void RewriteTest::SynthCountByEnumWithState(std::string &buf) {
943 buf += "((unsigned int (*) (id, SEL, struct __objcFastEnumerationState *, "
944 "id *, unsigned int))(void *)objc_msgSend)";
945 buf += "\n\t\t";
946 buf += "((id)l_collection,\n\t\t";
947 buf += "sel_registerName(\"countByEnumeratingWithState:objects:count:\"),";
948 buf += "\n\t\t";
949 buf += "&enumState, "
950 "(id *)items, (unsigned int)16)";
951}
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000952
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000953/// RewriteBreakStmt - Rewrite for a break-stmt inside an ObjC2's foreach
954/// statement to exit to its outer synthesized loop.
955///
956Stmt *RewriteTest::RewriteBreakStmt(BreakStmt *S) {
957 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
958 return S;
959 // replace break with goto __break_label
960 std::string buf;
961
962 SourceLocation startLoc = S->getLocStart();
963 buf = "goto __break_label_";
964 buf += utostr(ObjCBcLabelNo.back());
Chris Lattneraadaf782008-01-31 19:51:04 +0000965 ReplaceText(startLoc, strlen("break"), buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000966
967 return 0;
968}
969
970/// RewriteContinueStmt - Rewrite for a continue-stmt inside an ObjC2's foreach
971/// statement to continue with its inner synthesized loop.
972///
973Stmt *RewriteTest::RewriteContinueStmt(ContinueStmt *S) {
974 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
975 return S;
976 // replace continue with goto __continue_label
977 std::string buf;
978
979 SourceLocation startLoc = S->getLocStart();
980 buf = "goto __continue_label_";
981 buf += utostr(ObjCBcLabelNo.back());
Chris Lattneraadaf782008-01-31 19:51:04 +0000982 ReplaceText(startLoc, strlen("continue"), buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000983
984 return 0;
985}
986
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000987/// RewriteObjCForCollectionStmt - Rewriter for ObjC2's foreach statement.
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000988/// It rewrites:
989/// for ( type elem in collection) { stmts; }
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +0000990
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000991/// Into:
992/// {
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000993/// type elem;
994/// struct __objcFastEnumerationState enumState = { 0 };
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000995/// id items[16];
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000996/// id l_collection = (id)collection;
997/// unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
998/// objects:items count:16];
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000999/// if (limit) {
1000/// unsigned long startMutations = *enumState.mutationsPtr;
1001/// do {
1002/// unsigned long counter = 0;
1003/// do {
1004/// if (startMutations != *enumState.mutationsPtr)
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001005/// objc_enumerationMutation(l_collection);
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001006/// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001007/// stmts;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001008/// __continue_label: ;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001009/// } while (counter < limit);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001010/// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1011/// objects:items count:16]);
1012/// elem = nil;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001013/// __break_label: ;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001014/// }
1015/// else
1016/// elem = nil;
1017/// }
1018///
Chris Lattner338d1e22008-01-31 05:10:40 +00001019Stmt *RewriteTest::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
1020 SourceLocation OrigEnd) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001021 assert(!Stmts.empty() && "ObjCForCollectionStmt - Statement stack empty");
1022 assert(isa<ObjCForCollectionStmt>(Stmts.back()) &&
1023 "ObjCForCollectionStmt Statement stack mismatch");
1024 assert(!ObjCBcLabelNo.empty() &&
1025 "ObjCForCollectionStmt - Label No stack empty");
1026
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001027 SourceLocation startLoc = S->getLocStart();
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001028 const char *startBuf = SM->getCharacterData(startLoc);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001029 const char *elementName;
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001030 std::string elementTypeAsString;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001031 std::string buf;
1032 buf = "\n{\n\t";
1033 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->getElement())) {
1034 // type elem;
1035 QualType ElementType = cast<ValueDecl>(DS->getDecl())->getType();
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001036 elementTypeAsString = ElementType.getAsString();
1037 buf += elementTypeAsString;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001038 buf += " ";
1039 elementName = DS->getDecl()->getName();
1040 buf += elementName;
1041 buf += ";\n\t";
1042 }
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001043 else if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S->getElement())) {
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001044 elementName = DR->getDecl()->getName();
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001045 elementTypeAsString = DR->getDecl()->getType().getAsString();
1046 }
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001047 else
1048 assert(false && "RewriteObjCForCollectionStmt - bad element kind");
1049
1050 // struct __objcFastEnumerationState enumState = { 0 };
1051 buf += "struct __objcFastEnumerationState enumState = { 0 };\n\t";
1052 // id items[16];
1053 buf += "id items[16];\n\t";
1054 // id l_collection = (id)
1055 buf += "id l_collection = (id)";
Fariborz Jahanian75712282008-01-10 00:24:29 +00001056 // Find start location of 'collection' the hard way!
1057 const char *startCollectionBuf = startBuf;
1058 startCollectionBuf += 3; // skip 'for'
1059 startCollectionBuf = strchr(startCollectionBuf, '(');
1060 startCollectionBuf++; // skip '('
1061 // find 'in' and skip it.
1062 while (*startCollectionBuf != ' ' ||
1063 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' ||
1064 (*(startCollectionBuf+3) != ' ' &&
1065 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '('))
1066 startCollectionBuf++;
1067 startCollectionBuf += 3;
1068
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001069 // Replace: "for (type element in" with string constructed thus far.
Chris Lattneraadaf782008-01-31 19:51:04 +00001070 ReplaceText(startLoc, startCollectionBuf - startBuf,
1071 buf.c_str(), buf.size());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001072 // Replace ')' in for '(' type elem in collection ')' with ';'
Fariborz Jahanian75712282008-01-10 00:24:29 +00001073 SourceLocation rightParenLoc = S->getRParenLoc();
1074 const char *rparenBuf = SM->getCharacterData(rightParenLoc);
1075 SourceLocation lparenLoc = startLoc.getFileLocWithOffset(rparenBuf-startBuf);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001076 buf = ";\n\t";
1077
1078 // unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
1079 // objects:items count:16];
1080 // which is synthesized into:
1081 // unsigned int limit =
1082 // ((unsigned int (*)
1083 // (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
1084 // (void *)objc_msgSend)((id)l_collection,
1085 // sel_registerName(
1086 // "countByEnumeratingWithState:objects:count:"),
1087 // (struct __objcFastEnumerationState *)&state,
1088 // (id *)items, (unsigned int)16);
1089 buf += "unsigned long limit =\n\t\t";
1090 SynthCountByEnumWithState(buf);
1091 buf += ";\n\t";
1092 /// if (limit) {
1093 /// unsigned long startMutations = *enumState.mutationsPtr;
1094 /// do {
1095 /// unsigned long counter = 0;
1096 /// do {
1097 /// if (startMutations != *enumState.mutationsPtr)
1098 /// objc_enumerationMutation(l_collection);
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001099 /// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001100 buf += "if (limit) {\n\t";
1101 buf += "unsigned long startMutations = *enumState.mutationsPtr;\n\t";
1102 buf += "do {\n\t\t";
1103 buf += "unsigned long counter = 0;\n\t\t";
1104 buf += "do {\n\t\t\t";
1105 buf += "if (startMutations != *enumState.mutationsPtr)\n\t\t\t\t";
1106 buf += "objc_enumerationMutation(l_collection);\n\t\t\t";
1107 buf += elementName;
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001108 buf += " = (";
1109 buf += elementTypeAsString;
1110 buf += ")enumState.itemsPtr[counter++];";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001111 // Replace ')' in for '(' type elem in collection ')' with all of these.
Chris Lattneraadaf782008-01-31 19:51:04 +00001112 ReplaceText(lparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001113
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001114 /// __continue_label: ;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001115 /// } while (counter < limit);
1116 /// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1117 /// objects:items count:16]);
1118 /// elem = nil;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001119 /// __break_label: ;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001120 /// }
1121 /// else
1122 /// elem = nil;
1123 /// }
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001124 ///
1125 buf = ";\n\t";
1126 buf += "__continue_label_";
1127 buf += utostr(ObjCBcLabelNo.back());
1128 buf += ": ;";
1129 buf += "\n\t\t";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001130 buf += "} while (counter < limit);\n\t";
1131 buf += "} while (limit = ";
1132 SynthCountByEnumWithState(buf);
1133 buf += ");\n\t";
1134 buf += elementName;
1135 buf += " = nil;\n\t";
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001136 buf += "__break_label_";
1137 buf += utostr(ObjCBcLabelNo.back());
1138 buf += ": ;\n\t";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001139 buf += "}\n\t";
1140 buf += "else\n\t\t";
1141 buf += elementName;
1142 buf += " = nil;\n";
1143 buf += "}\n";
1144 // Insert all these *after* the statement body.
Chris Lattner338d1e22008-01-31 05:10:40 +00001145 SourceLocation endBodyLoc = OrigEnd.getFileLocWithOffset(1);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001146 InsertText(endBodyLoc, buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001147 Stmts.pop_back();
1148 ObjCBcLabelNo.pop_back();
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001149 return 0;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001150}
1151
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001152/// RewriteObjCSynchronizedStmt -
1153/// This routine rewrites @synchronized(expr) stmt;
1154/// into:
1155/// objc_sync_enter(expr);
1156/// @try stmt @finally { objc_sync_exit(expr); }
1157///
1158Stmt *RewriteTest::RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
1159 // Get the start location and compute the semi location.
1160 SourceLocation startLoc = S->getLocStart();
1161 const char *startBuf = SM->getCharacterData(startLoc);
1162
1163 assert((*startBuf == '@') && "bogus @synchronized location");
1164
1165 std::string buf;
1166 buf = "objc_sync_enter";
Chris Lattneraadaf782008-01-31 19:51:04 +00001167 ReplaceText(startLoc, 13, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001168 SourceLocation endLoc = S->getSynchExpr()->getLocEnd();
1169 const char *endBuf = SM->getCharacterData(endLoc);
1170 endBuf++;
1171 const char *rparenBuf = strchr(endBuf, ')');
1172 SourceLocation rparenLoc = startLoc.getFileLocWithOffset(rparenBuf-startBuf);
1173 buf = ");\n";
1174 // declare a new scope with two variables, _stack and _rethrow.
1175 buf += "/* @try scope begin */ \n{ struct _objc_exception_data {\n";
1176 buf += "int buf[18/*32-bit i386*/];\n";
1177 buf += "char *pointers[4];} _stack;\n";
1178 buf += "id volatile _rethrow = 0;\n";
1179 buf += "objc_exception_try_enter(&_stack);\n";
1180 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Chris Lattneraadaf782008-01-31 19:51:04 +00001181 ReplaceText(rparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001182 startLoc = S->getSynchBody()->getLocEnd();
1183 startBuf = SM->getCharacterData(startLoc);
1184
1185 assert((*startBuf == '}') && "bogus @try block");
1186 SourceLocation lastCurlyLoc = startLoc;
1187 buf = "}\nelse {\n";
1188 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1189 buf += " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
1190 // FIXME: This must be objc_sync_exit(syncExpr);
1191 buf += " objc_sync_exit();\n";
1192 buf += " if (_rethrow) objc_exception_throw(_rethrow);\n";
1193 buf += "}\n";
1194 buf += "}";
1195
Chris Lattneraadaf782008-01-31 19:51:04 +00001196 ReplaceText(lastCurlyLoc, 1, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001197 return 0;
1198}
1199
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001200Stmt *RewriteTest::RewriteObjCTryStmt(ObjCAtTryStmt *S) {
Steve Naroff75730982007-11-07 04:08:17 +00001201 // Get the start location and compute the semi location.
1202 SourceLocation startLoc = S->getLocStart();
1203 const char *startBuf = SM->getCharacterData(startLoc);
1204
1205 assert((*startBuf == '@') && "bogus @try location");
1206
1207 std::string buf;
1208 // declare a new scope with two variables, _stack and _rethrow.
1209 buf = "/* @try scope begin */ { struct _objc_exception_data {\n";
1210 buf += "int buf[18/*32-bit i386*/];\n";
1211 buf += "char *pointers[4];} _stack;\n";
1212 buf += "id volatile _rethrow = 0;\n";
1213 buf += "objc_exception_try_enter(&_stack);\n";
Steve Naroff21867b12007-11-07 18:43:40 +00001214 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Steve Naroff75730982007-11-07 04:08:17 +00001215
Chris Lattneraadaf782008-01-31 19:51:04 +00001216 ReplaceText(startLoc, 4, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001217
1218 startLoc = S->getTryBody()->getLocEnd();
1219 startBuf = SM->getCharacterData(startLoc);
1220
1221 assert((*startBuf == '}') && "bogus @try block");
1222
1223 SourceLocation lastCurlyLoc = startLoc;
1224
1225 startLoc = startLoc.getFileLocWithOffset(1);
1226 buf = " /* @catch begin */ else {\n";
1227 buf += " id _caught = objc_exception_extract(&_stack);\n";
1228 buf += " objc_exception_try_enter (&_stack);\n";
Steve Naroff21867b12007-11-07 18:43:40 +00001229 buf += " if (_setjmp(_stack.buf))\n";
Steve Naroff75730982007-11-07 04:08:17 +00001230 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1231 buf += " else { /* @catch continue */";
1232
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001233 InsertText(startLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001234
1235 bool sawIdTypedCatch = false;
1236 Stmt *lastCatchBody = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001237 ObjCAtCatchStmt *catchList = S->getCatchStmts();
Steve Naroff75730982007-11-07 04:08:17 +00001238 while (catchList) {
1239 Stmt *catchStmt = catchList->getCatchParamStmt();
1240
1241 if (catchList == S->getCatchStmts())
1242 buf = "if ("; // we are generating code for the first catch clause
1243 else
1244 buf = "else if (";
1245 startLoc = catchList->getLocStart();
1246 startBuf = SM->getCharacterData(startLoc);
1247
1248 assert((*startBuf == '@') && "bogus @catch location");
1249
1250 const char *lParenLoc = strchr(startBuf, '(');
1251
Steve Naroffbe4b3332008-02-01 22:08:12 +00001252 if (catchList->hasEllipsis()) {
Steve Naroffe12e6922008-02-01 20:02:07 +00001253 // Now rewrite the body...
1254 lastCatchBody = catchList->getCatchBody();
1255 SourceLocation rParenLoc = catchList->getRParenLoc();
1256 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1257 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1258 const char *rParenBuf = SM->getCharacterData(rParenLoc);
1259 assert((*rParenBuf == ')') && "bogus @catch paren location");
1260 assert((*bodyBuf == '{') && "bogus @catch body location");
1261
1262 buf += "1) { id _tmp = _caught;";
1263 Rewrite.ReplaceText(startLoc, bodyBuf-startBuf+1,
1264 buf.c_str(), buf.size());
1265 } else if (DeclStmt *declStmt = dyn_cast<DeclStmt>(catchStmt)) {
Steve Naroff75730982007-11-07 04:08:17 +00001266 QualType t = dyn_cast<ValueDecl>(declStmt->getDecl())->getType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001267 if (t == Context->getObjCIdType()) {
Steve Naroff75730982007-11-07 04:08:17 +00001268 buf += "1) { ";
Chris Lattneraadaf782008-01-31 19:51:04 +00001269 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001270 sawIdTypedCatch = true;
1271 } else if (const PointerType *pType = t->getAsPointerType()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001272 ObjCInterfaceType *cls; // Should be a pointer to a class.
Steve Naroff75730982007-11-07 04:08:17 +00001273
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001274 cls = dyn_cast<ObjCInterfaceType>(pType->getPointeeType().getTypePtr());
Steve Naroff75730982007-11-07 04:08:17 +00001275 if (cls) {
Steve Naroff21867b12007-11-07 18:43:40 +00001276 buf += "objc_exception_match((struct objc_class *)objc_getClass(\"";
Steve Naroff75730982007-11-07 04:08:17 +00001277 buf += cls->getDecl()->getName();
Steve Naroff21867b12007-11-07 18:43:40 +00001278 buf += "\"), (struct objc_object *)_caught)) { ";
Chris Lattneraadaf782008-01-31 19:51:04 +00001279 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001280 }
1281 }
1282 // Now rewrite the body...
1283 lastCatchBody = catchList->getCatchBody();
1284 SourceLocation rParenLoc = catchList->getRParenLoc();
1285 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1286 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1287 const char *rParenBuf = SM->getCharacterData(rParenLoc);
1288 assert((*rParenBuf == ')') && "bogus @catch paren location");
1289 assert((*bodyBuf == '{') && "bogus @catch body location");
1290
1291 buf = " = _caught;";
1292 // Here we replace ") {" with "= _caught;" (which initializes and
1293 // declares the @catch parameter).
Chris Lattneraadaf782008-01-31 19:51:04 +00001294 ReplaceText(rParenLoc, bodyBuf-rParenBuf+1, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001295 } else if (!isa<NullStmt>(catchStmt)) {
Steve Naroff75730982007-11-07 04:08:17 +00001296 assert(false && "@catch rewrite bug");
Steve Naroff2bd03922007-11-07 15:32:26 +00001297 }
Steve Naroffe12e6922008-02-01 20:02:07 +00001298 // make sure all the catch bodies get rewritten!
Steve Naroff75730982007-11-07 04:08:17 +00001299 catchList = catchList->getNextCatchStmt();
1300 }
1301 // Complete the catch list...
1302 if (lastCatchBody) {
1303 SourceLocation bodyLoc = lastCatchBody->getLocEnd();
1304 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1305 assert((*bodyBuf == '}') && "bogus @catch body location");
1306 bodyLoc = bodyLoc.getFileLocWithOffset(1);
1307 buf = " } } /* @catch end */\n";
1308
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001309 InsertText(bodyLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001310
1311 // Set lastCurlyLoc
1312 lastCurlyLoc = lastCatchBody->getLocEnd();
1313 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001314 if (ObjCAtFinallyStmt *finalStmt = S->getFinallyStmt()) {
Steve Naroff75730982007-11-07 04:08:17 +00001315 startLoc = finalStmt->getLocStart();
1316 startBuf = SM->getCharacterData(startLoc);
1317 assert((*startBuf == '@') && "bogus @finally start");
1318
1319 buf = "/* @finally */";
Chris Lattneraadaf782008-01-31 19:51:04 +00001320 ReplaceText(startLoc, 8, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001321
1322 Stmt *body = finalStmt->getFinallyBody();
1323 SourceLocation startLoc = body->getLocStart();
1324 SourceLocation endLoc = body->getLocEnd();
1325 const char *startBuf = SM->getCharacterData(startLoc);
1326 const char *endBuf = SM->getCharacterData(endLoc);
1327 assert((*startBuf == '{') && "bogus @finally body location");
1328 assert((*endBuf == '}') && "bogus @finally body location");
1329
1330 startLoc = startLoc.getFileLocWithOffset(1);
1331 buf = " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001332 InsertText(startLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001333 endLoc = endLoc.getFileLocWithOffset(-1);
1334 buf = " if (_rethrow) objc_exception_throw(_rethrow);\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001335 InsertText(endLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001336
1337 // Set lastCurlyLoc
1338 lastCurlyLoc = body->getLocEnd();
1339 }
1340 // Now emit the final closing curly brace...
1341 lastCurlyLoc = lastCurlyLoc.getFileLocWithOffset(1);
1342 buf = " } /* @try scope end */\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001343 InsertText(lastCurlyLoc, buf.c_str(), buf.size());
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001344 return 0;
1345}
1346
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001347Stmt *RewriteTest::RewriteObjCCatchStmt(ObjCAtCatchStmt *S) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001348 return 0;
1349}
1350
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001351Stmt *RewriteTest::RewriteObjCFinallyStmt(ObjCAtFinallyStmt *S) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001352 return 0;
1353}
1354
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001355// This can't be done with ReplaceStmt(S, ThrowExpr), since
Steve Naroff2bd03922007-11-07 15:32:26 +00001356// the throw expression is typically a message expression that's already
1357// been rewritten! (which implies the SourceLocation's are invalid).
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001358Stmt *RewriteTest::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) {
Steve Naroff2bd03922007-11-07 15:32:26 +00001359 // Get the start location and compute the semi location.
1360 SourceLocation startLoc = S->getLocStart();
1361 const char *startBuf = SM->getCharacterData(startLoc);
1362
1363 assert((*startBuf == '@') && "bogus @throw location");
1364
1365 std::string buf;
1366 /* void objc_exception_throw(id) __attribute__((noreturn)); */
Steve Naroff20ebf8f2008-01-19 00:42:38 +00001367 if (S->getThrowExpr())
1368 buf = "objc_exception_throw(";
1369 else // add an implicit argument
1370 buf = "objc_exception_throw(_caught";
Chris Lattneraadaf782008-01-31 19:51:04 +00001371 ReplaceText(startLoc, 6, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001372 const char *semiBuf = strchr(startBuf, ';');
1373 assert((*semiBuf == ';') && "@throw: can't find ';'");
1374 SourceLocation semiLoc = startLoc.getFileLocWithOffset(semiBuf-startBuf);
1375 buf = ");";
Chris Lattneraadaf782008-01-31 19:51:04 +00001376 ReplaceText(semiLoc, 1, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001377 return 0;
1378}
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001379
Chris Lattnere64b7772007-10-24 16:57:36 +00001380Stmt *RewriteTest::RewriteAtEncode(ObjCEncodeExpr *Exp) {
Chris Lattner01c57482007-10-17 22:35:30 +00001381 // Create a new string expression.
1382 QualType StrType = Context->getPointerType(Context->CharTy);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001383 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001384 Context->getObjCEncodingForType(Exp->getEncodedType(), StrEncoding,
1385 EncodingRecordTypes);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001386 Expr *Replacement = new StringLiteral(StrEncoding.c_str(),
1387 StrEncoding.length(), false, StrType,
Chris Lattner01c57482007-10-17 22:35:30 +00001388 SourceLocation(), SourceLocation());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001389 ReplaceStmt(Exp, Replacement);
Chris Lattnere365c502007-11-30 22:25:36 +00001390
Chris Lattner07506182007-11-30 22:53:43 +00001391 // Replace this subexpr in the parent.
Chris Lattnere64b7772007-10-24 16:57:36 +00001392 delete Exp;
1393 return Replacement;
Chris Lattner311ff022007-10-16 22:36:42 +00001394}
1395
Steve Naroffb42f8412007-11-05 14:50:49 +00001396Stmt *RewriteTest::RewriteAtSelector(ObjCSelectorExpr *Exp) {
1397 assert(SelGetUidFunctionDecl && "Can't find sel_registerName() decl");
1398 // Create a call to sel_registerName("selName").
1399 llvm::SmallVector<Expr*, 8> SelExprs;
1400 QualType argType = Context->getPointerType(Context->CharTy);
1401 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
1402 Exp->getSelector().getName().size(),
1403 false, argType, SourceLocation(),
1404 SourceLocation()));
1405 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
1406 &SelExprs[0], SelExprs.size());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001407 ReplaceStmt(Exp, SelExp);
Steve Naroffb42f8412007-11-05 14:50:49 +00001408 delete Exp;
1409 return SelExp;
1410}
1411
Steve Naroff934f2762007-10-24 22:48:43 +00001412CallExpr *RewriteTest::SynthesizeCallToFunctionDecl(
1413 FunctionDecl *FD, Expr **args, unsigned nargs) {
Steve Naroffebf2b562007-10-23 23:50:29 +00001414 // Get the type, we will need to reference it in a couple spots.
Steve Naroff934f2762007-10-24 22:48:43 +00001415 QualType msgSendType = FD->getType();
Steve Naroffebf2b562007-10-23 23:50:29 +00001416
1417 // Create a reference to the objc_msgSend() declaration.
Steve Naroff934f2762007-10-24 22:48:43 +00001418 DeclRefExpr *DRE = new DeclRefExpr(FD, msgSendType, SourceLocation());
Steve Naroffebf2b562007-10-23 23:50:29 +00001419
1420 // Now, we cast the reference to a pointer to the objc_msgSend type.
Chris Lattnerf04da132007-10-24 17:06:59 +00001421 QualType pToFunc = Context->getPointerType(msgSendType);
Steve Naroffebf2b562007-10-23 23:50:29 +00001422 ImplicitCastExpr *ICE = new ImplicitCastExpr(pToFunc, DRE);
1423
1424 const FunctionType *FT = msgSendType->getAsFunctionType();
Chris Lattnere64b7772007-10-24 16:57:36 +00001425
Steve Naroff934f2762007-10-24 22:48:43 +00001426 return new CallExpr(ICE, args, nargs, FT->getResultType(), SourceLocation());
1427}
1428
Steve Naroffd5255f52007-11-01 13:24:47 +00001429static bool scanForProtocolRefs(const char *startBuf, const char *endBuf,
1430 const char *&startRef, const char *&endRef) {
1431 while (startBuf < endBuf) {
1432 if (*startBuf == '<')
1433 startRef = startBuf; // mark the start.
1434 if (*startBuf == '>') {
Steve Naroff32174822007-11-09 12:50:28 +00001435 if (startRef && *startRef == '<') {
1436 endRef = startBuf; // mark the end.
1437 return true;
1438 }
1439 return false;
Steve Naroffd5255f52007-11-01 13:24:47 +00001440 }
1441 startBuf++;
1442 }
1443 return false;
1444}
1445
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001446static void scanToNextArgument(const char *&argRef) {
1447 int angle = 0;
1448 while (*argRef != ')' && (*argRef != ',' || angle > 0)) {
1449 if (*argRef == '<')
1450 angle++;
1451 else if (*argRef == '>')
1452 angle--;
1453 argRef++;
1454 }
1455 assert(angle == 0 && "scanToNextArgument - bad protocol type syntax");
1456}
Fariborz Jahanian291e04b2007-12-11 23:04:08 +00001457
Steve Naroffd5255f52007-11-01 13:24:47 +00001458bool RewriteTest::needToScanForQualifiers(QualType T) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001459
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001460 if (T == Context->getObjCIdType())
Steve Naroffd5255f52007-11-01 13:24:47 +00001461 return true;
1462
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001463 if (T->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001464 return true;
1465
Steve Naroffd5255f52007-11-01 13:24:47 +00001466 if (const PointerType *pType = T->getAsPointerType()) {
Steve Naroff9165ad32007-10-31 04:38:33 +00001467 Type *pointeeType = pType->getPointeeType().getTypePtr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001468 if (isa<ObjCQualifiedInterfaceType>(pointeeType))
Steve Naroff9165ad32007-10-31 04:38:33 +00001469 return true; // we have "Class <Protocol> *".
1470 }
Steve Naroffd5255f52007-11-01 13:24:47 +00001471 return false;
1472}
1473
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001474void RewriteTest::RewriteObjCQualifiedInterfaceTypes(Decl *Dcl) {
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001475 SourceLocation Loc;
1476 QualType Type;
1477 const FunctionTypeProto *proto = 0;
1478 if (VarDecl *VD = dyn_cast<VarDecl>(Dcl)) {
1479 Loc = VD->getLocation();
1480 Type = VD->getType();
1481 }
1482 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Dcl)) {
1483 Loc = FD->getLocation();
1484 // Check for ObjC 'id' and class types that have been adorned with protocol
1485 // information (id<p>, C<p>*). The protocol references need to be rewritten!
1486 const FunctionType *funcType = FD->getType()->getAsFunctionType();
1487 assert(funcType && "missing function type");
1488 proto = dyn_cast<FunctionTypeProto>(funcType);
1489 if (!proto)
1490 return;
1491 Type = proto->getResultType();
1492 }
1493 else
1494 return;
Steve Naroffd5255f52007-11-01 13:24:47 +00001495
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001496 if (needToScanForQualifiers(Type)) {
Steve Naroffd5255f52007-11-01 13:24:47 +00001497 // Since types are unique, we need to scan the buffer.
Steve Naroffd5255f52007-11-01 13:24:47 +00001498
1499 const char *endBuf = SM->getCharacterData(Loc);
1500 const char *startBuf = endBuf;
Chris Lattner26de4652007-12-02 01:13:47 +00001501 while (*startBuf != ';' && startBuf != MainFileStart)
Steve Naroffd5255f52007-11-01 13:24:47 +00001502 startBuf--; // scan backward (from the decl location) for return type.
1503 const char *startRef = 0, *endRef = 0;
1504 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1505 // Get the locations of the startRef, endRef.
1506 SourceLocation LessLoc = Loc.getFileLocWithOffset(startRef-endBuf);
1507 SourceLocation GreaterLoc = Loc.getFileLocWithOffset(endRef-endBuf+1);
1508 // Comment out the protocol references.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001509 InsertText(LessLoc, "/*", 2);
1510 InsertText(GreaterLoc, "*/", 2);
Steve Naroff9165ad32007-10-31 04:38:33 +00001511 }
1512 }
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001513 if (!proto)
1514 return; // most likely, was a variable
Steve Naroffd5255f52007-11-01 13:24:47 +00001515 // Now check arguments.
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001516 const char *startBuf = SM->getCharacterData(Loc);
1517 const char *startFuncBuf = startBuf;
Steve Naroffd5255f52007-11-01 13:24:47 +00001518 for (unsigned i = 0; i < proto->getNumArgs(); i++) {
1519 if (needToScanForQualifiers(proto->getArgType(i))) {
1520 // Since types are unique, we need to scan the buffer.
Steve Naroffd5255f52007-11-01 13:24:47 +00001521
Steve Naroffd5255f52007-11-01 13:24:47 +00001522 const char *endBuf = startBuf;
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001523 // scan forward (from the decl location) for argument types.
1524 scanToNextArgument(endBuf);
Steve Naroffd5255f52007-11-01 13:24:47 +00001525 const char *startRef = 0, *endRef = 0;
1526 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1527 // Get the locations of the startRef, endRef.
Fariborz Jahanian291e04b2007-12-11 23:04:08 +00001528 SourceLocation LessLoc =
1529 Loc.getFileLocWithOffset(startRef-startFuncBuf);
1530 SourceLocation GreaterLoc =
1531 Loc.getFileLocWithOffset(endRef-startFuncBuf+1);
Steve Naroffd5255f52007-11-01 13:24:47 +00001532 // Comment out the protocol references.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001533 InsertText(LessLoc, "/*", 2);
1534 InsertText(GreaterLoc, "*/", 2);
Steve Naroffd5255f52007-11-01 13:24:47 +00001535 }
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001536 startBuf = ++endBuf;
1537 }
1538 else {
1539 while (*startBuf != ')' && *startBuf != ',')
1540 startBuf++; // scan forward (from the decl location) for argument types.
1541 startBuf++;
1542 }
Steve Naroffd5255f52007-11-01 13:24:47 +00001543 }
Steve Naroff9165ad32007-10-31 04:38:33 +00001544}
1545
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001546// SynthSelGetUidFunctionDecl - SEL sel_registerName(const char *str);
1547void RewriteTest::SynthSelGetUidFunctionDecl() {
1548 IdentifierInfo *SelGetUidIdent = &Context->Idents.get("sel_registerName");
1549 llvm::SmallVector<QualType, 16> ArgTys;
1550 ArgTys.push_back(Context->getPointerType(
1551 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001552 QualType getFuncType = Context->getFunctionType(Context->getObjCSelType(),
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001553 &ArgTys[0], ArgTys.size(),
1554 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001555 SelGetUidFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001556 SelGetUidIdent, getFuncType,
1557 FunctionDecl::Extern, false, 0);
1558}
1559
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001560// SynthGetProtocolFunctionDecl - Protocol objc_getProtocol(const char *proto);
1561void RewriteTest::SynthGetProtocolFunctionDecl() {
1562 IdentifierInfo *SelGetProtoIdent = &Context->Idents.get("objc_getProtocol");
1563 llvm::SmallVector<QualType, 16> ArgTys;
1564 ArgTys.push_back(Context->getPointerType(
1565 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001566 QualType getFuncType = Context->getFunctionType(Context->getObjCProtoType(),
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001567 &ArgTys[0], ArgTys.size(),
1568 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001569 GetProtocolFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001570 SelGetProtoIdent, getFuncType,
1571 FunctionDecl::Extern, false, 0);
1572}
1573
Steve Naroff09b266e2007-10-30 23:14:51 +00001574void RewriteTest::RewriteFunctionDecl(FunctionDecl *FD) {
1575 // declared in <objc/objc.h>
Steve Naroffbeaf2992007-11-03 11:27:19 +00001576 if (strcmp(FD->getName(), "sel_registerName") == 0) {
Steve Naroff09b266e2007-10-30 23:14:51 +00001577 SelGetUidFunctionDecl = FD;
Steve Naroff9165ad32007-10-31 04:38:33 +00001578 return;
1579 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001580 RewriteObjCQualifiedInterfaceTypes(FD);
Steve Naroff09b266e2007-10-30 23:14:51 +00001581}
1582
Steve Naroffc0a123c2008-03-11 17:37:02 +00001583// SynthSuperContructorFunctionDecl - id objc_super(id obj, id super);
1584void RewriteTest::SynthSuperContructorFunctionDecl() {
1585 if (SuperContructorFunctionDecl)
1586 return;
1587 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_super");
1588 llvm::SmallVector<QualType, 16> ArgTys;
1589 QualType argT = Context->getObjCIdType();
1590 assert(!argT.isNull() && "Can't find 'id' type");
1591 ArgTys.push_back(argT);
1592 ArgTys.push_back(argT);
1593 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
1594 &ArgTys[0], ArgTys.size(),
1595 false);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001596 SuperContructorFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroffc0a123c2008-03-11 17:37:02 +00001597 msgSendIdent, msgSendType,
1598 FunctionDecl::Extern, false, 0);
1599}
1600
Steve Naroff09b266e2007-10-30 23:14:51 +00001601// SynthMsgSendFunctionDecl - id objc_msgSend(id self, SEL op, ...);
1602void RewriteTest::SynthMsgSendFunctionDecl() {
1603 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend");
1604 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001605 QualType argT = Context->getObjCIdType();
Steve Naroff09b266e2007-10-30 23:14:51 +00001606 assert(!argT.isNull() && "Can't find 'id' type");
1607 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001608 argT = Context->getObjCSelType();
Steve Naroff09b266e2007-10-30 23:14:51 +00001609 assert(!argT.isNull() && "Can't find 'SEL' type");
1610 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001611 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001612 &ArgTys[0], ArgTys.size(),
1613 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001614 MsgSendFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001615 msgSendIdent, msgSendType,
1616 FunctionDecl::Extern, false, 0);
1617}
1618
Steve Naroff874e2322007-11-15 10:28:18 +00001619// SynthMsgSendSuperFunctionDecl - id objc_msgSendSuper(struct objc_super *, SEL op, ...);
1620void RewriteTest::SynthMsgSendSuperFunctionDecl() {
1621 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSendSuper");
1622 llvm::SmallVector<QualType, 16> ArgTys;
Chris Lattnerc63e6602008-03-15 21:32:50 +00001623 RecordDecl *RD = RecordDecl::Create(*Context, Decl::Struct, SourceLocation(),
1624 &Context->Idents.get("objc_super"), 0);
Steve Naroff874e2322007-11-15 10:28:18 +00001625 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1626 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1627 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001628 argT = Context->getObjCSelType();
Steve Naroff874e2322007-11-15 10:28:18 +00001629 assert(!argT.isNull() && "Can't find 'SEL' type");
1630 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001631 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff874e2322007-11-15 10:28:18 +00001632 &ArgTys[0], ArgTys.size(),
1633 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001634 MsgSendSuperFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff874e2322007-11-15 10:28:18 +00001635 msgSendIdent, msgSendType,
1636 FunctionDecl::Extern, false, 0);
1637}
1638
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001639// SynthMsgSendStretFunctionDecl - id objc_msgSend_stret(id self, SEL op, ...);
1640void RewriteTest::SynthMsgSendStretFunctionDecl() {
1641 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_stret");
1642 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001643 QualType argT = Context->getObjCIdType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001644 assert(!argT.isNull() && "Can't find 'id' type");
1645 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001646 argT = Context->getObjCSelType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001647 assert(!argT.isNull() && "Can't find 'SEL' type");
1648 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001649 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001650 &ArgTys[0], ArgTys.size(),
1651 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001652 MsgSendStretFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001653 msgSendIdent, msgSendType,
1654 FunctionDecl::Extern, false, 0);
1655}
1656
1657// SynthMsgSendSuperStretFunctionDecl -
1658// id objc_msgSendSuper_stret(struct objc_super *, SEL op, ...);
1659void RewriteTest::SynthMsgSendSuperStretFunctionDecl() {
1660 IdentifierInfo *msgSendIdent =
1661 &Context->Idents.get("objc_msgSendSuper_stret");
1662 llvm::SmallVector<QualType, 16> ArgTys;
Chris Lattnerc63e6602008-03-15 21:32:50 +00001663 RecordDecl *RD = RecordDecl::Create(*Context, Decl::Struct, SourceLocation(),
1664 &Context->Idents.get("objc_super"), 0);
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001665 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1666 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1667 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001668 argT = Context->getObjCSelType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001669 assert(!argT.isNull() && "Can't find 'SEL' type");
1670 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001671 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001672 &ArgTys[0], ArgTys.size(),
1673 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001674 MsgSendSuperStretFunctionDecl = FunctionDecl::Create(*Context,
1675 SourceLocation(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001676 msgSendIdent, msgSendType,
1677 FunctionDecl::Extern, false, 0);
1678}
1679
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001680// SynthMsgSendFpretFunctionDecl - id objc_msgSend_fpret(id self, SEL op, ...);
1681void RewriteTest::SynthMsgSendFpretFunctionDecl() {
1682 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_fpret");
1683 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001684 QualType argT = Context->getObjCIdType();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001685 assert(!argT.isNull() && "Can't find 'id' type");
1686 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001687 argT = Context->getObjCSelType();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001688 assert(!argT.isNull() && "Can't find 'SEL' type");
1689 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001690 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001691 &ArgTys[0], ArgTys.size(),
1692 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001693 MsgSendFpretFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001694 msgSendIdent, msgSendType,
1695 FunctionDecl::Extern, false, 0);
1696}
1697
Steve Naroff09b266e2007-10-30 23:14:51 +00001698// SynthGetClassFunctionDecl - id objc_getClass(const char *name);
1699void RewriteTest::SynthGetClassFunctionDecl() {
1700 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getClass");
1701 llvm::SmallVector<QualType, 16> ArgTys;
1702 ArgTys.push_back(Context->getPointerType(
1703 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001704 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001705 &ArgTys[0], ArgTys.size(),
1706 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001707 GetClassFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001708 getClassIdent, getClassType,
1709 FunctionDecl::Extern, false, 0);
1710}
1711
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001712// SynthGetMetaClassFunctionDecl - id objc_getClass(const char *name);
1713void RewriteTest::SynthGetMetaClassFunctionDecl() {
1714 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getMetaClass");
1715 llvm::SmallVector<QualType, 16> ArgTys;
1716 ArgTys.push_back(Context->getPointerType(
1717 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001718 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001719 &ArgTys[0], ArgTys.size(),
1720 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001721 GetMetaClassFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001722 getClassIdent, getClassType,
1723 FunctionDecl::Extern, false, 0);
1724}
1725
Steve Naroffbeaf2992007-11-03 11:27:19 +00001726Stmt *RewriteTest::RewriteObjCStringLiteral(ObjCStringLiteral *Exp) {
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001727 QualType strType = getConstantStringStructType();
1728
1729 std::string S = "__NSConstantStringImpl_";
1730 S += utostr(NumObjCStringLiterals++);
1731
1732 std::string StrObjDecl = "static __NSConstantStringImpl " + S;
Steve Naroff2a228162008-03-18 01:47:18 +00001733 StrObjDecl += " __attribute__ ((section (\"__DATA, __cfstring\"))) = {__CFConstantStringClassReference,";
1734 StrObjDecl += "0x000007c8,"; // utf8_str
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001735 // The pretty printer for StringLiteral handles escape characters properly.
1736 std::ostringstream prettyBuf;
1737 Exp->getString()->printPretty(prettyBuf);
1738 StrObjDecl += prettyBuf.str();
1739 StrObjDecl += ",";
Steve Naroff3652c2d2008-03-15 01:36:04 +00001740 // The minus 2 removes the begin/end double quotes.
Steve Naroff2a228162008-03-18 01:47:18 +00001741 StrObjDecl += utostr(prettyBuf.str().size()-2) + "};\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001742 InsertText(SourceLocation::getFileLoc(MainFileID, 0),
1743 StrObjDecl.c_str(), StrObjDecl.size());
1744
Chris Lattnerc63e6602008-03-15 21:32:50 +00001745 FileVarDecl *NewVD = FileVarDecl::Create(*Context, SourceLocation(),
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001746 &Context->Idents.get(S.c_str()), strType,
Chris Lattnerc63e6602008-03-15 21:32:50 +00001747 VarDecl::Static, NULL);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001748 DeclRefExpr *DRE = new DeclRefExpr(NewVD, strType, SourceLocation());
1749 Expr *Unop = new UnaryOperator(DRE, UnaryOperator::AddrOf,
1750 Context->getPointerType(DRE->getType()),
1751 SourceLocation());
Steve Naroff96984642007-11-08 14:30:50 +00001752 // cast to NSConstantString *
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001753 CastExpr *cast = new CastExpr(Exp->getType(), Unop, SourceLocation());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001754 ReplaceStmt(Exp, cast);
Steve Naroff96984642007-11-08 14:30:50 +00001755 delete Exp;
1756 return cast;
Steve Naroffbeaf2992007-11-03 11:27:19 +00001757}
1758
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001759ObjCInterfaceDecl *RewriteTest::isSuperReceiver(Expr *recExpr) {
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001760 // check if we are sending a message to 'super'
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001761 if (!CurMethodDecl || !CurMethodDecl->isInstance()) return 0;
1762
1763 CastExpr *CE = dyn_cast<CastExpr>(recExpr);
1764 if (!CE) return 0;
1765
1766 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr());
1767 if (!DRE) return 0;
1768
1769 ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl());
1770 if (!PVD) return 0;
1771
1772 if (strcmp(PVD->getName(), "self") != 0)
1773 return 0;
1774
1775 // is this id<P1..> type?
1776 if (CE->getType()->isObjCQualifiedIdType())
1777 return 0;
1778 const PointerType *PT = CE->getType()->getAsPointerType();
1779 if (!PT) return 0;
1780
1781 ObjCInterfaceType *IT = dyn_cast<ObjCInterfaceType>(PT->getPointeeType());
1782 if (!IT) return 0;
1783
1784 if (IT->getDecl() != CurMethodDecl->getClassInterface()->getSuperClass())
1785 return 0;
1786
1787 return IT->getDecl();
Steve Naroff874e2322007-11-15 10:28:18 +00001788}
1789
1790// struct objc_super { struct objc_object *receiver; struct objc_class *super; };
1791QualType RewriteTest::getSuperStructType() {
1792 if (!SuperStructDecl) {
Chris Lattnerc63e6602008-03-15 21:32:50 +00001793 SuperStructDecl = RecordDecl::Create(*Context, Decl::Struct,
1794 SourceLocation(),
1795 &Context->Idents.get("objc_super"), 0);
Steve Naroff874e2322007-11-15 10:28:18 +00001796 QualType FieldTypes[2];
1797
1798 // struct objc_object *receiver;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001799 FieldTypes[0] = Context->getObjCIdType();
Steve Naroff874e2322007-11-15 10:28:18 +00001800 // struct objc_class *super;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001801 FieldTypes[1] = Context->getObjCClassType();
Steve Naroff874e2322007-11-15 10:28:18 +00001802 // Create fields
1803 FieldDecl *FieldDecls[2];
1804
1805 for (unsigned i = 0; i < 2; ++i)
Chris Lattner8e25d862008-03-16 00:16:02 +00001806 FieldDecls[i] = FieldDecl::Create(*Context, SourceLocation(), 0,
1807 FieldTypes[i]);
Steve Naroff874e2322007-11-15 10:28:18 +00001808
1809 SuperStructDecl->defineBody(FieldDecls, 4);
1810 }
1811 return Context->getTagDeclType(SuperStructDecl);
1812}
1813
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001814QualType RewriteTest::getConstantStringStructType() {
1815 if (!ConstantStringDecl) {
Chris Lattnerc63e6602008-03-15 21:32:50 +00001816 ConstantStringDecl = RecordDecl::Create(*Context, Decl::Struct,
1817 SourceLocation(),
1818 &Context->Idents.get("__NSConstantStringImpl"), 0);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001819 QualType FieldTypes[4];
1820
1821 // struct objc_object *receiver;
1822 FieldTypes[0] = Context->getObjCIdType();
1823 // int flags;
1824 FieldTypes[1] = Context->IntTy;
1825 // char *str;
1826 FieldTypes[2] = Context->getPointerType(Context->CharTy);
1827 // long length;
1828 FieldTypes[3] = Context->LongTy;
1829 // Create fields
1830 FieldDecl *FieldDecls[2];
1831
1832 for (unsigned i = 0; i < 4; ++i)
Chris Lattner8e25d862008-03-16 00:16:02 +00001833 FieldDecls[i] = FieldDecl::Create(*Context, SourceLocation(), 0,
1834 FieldTypes[i]);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001835
1836 ConstantStringDecl->defineBody(FieldDecls, 4);
1837 }
1838 return Context->getTagDeclType(ConstantStringDecl);
1839}
1840
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001841Stmt *RewriteTest::SynthMessageExpr(ObjCMessageExpr *Exp) {
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001842 if (!SelGetUidFunctionDecl)
1843 SynthSelGetUidFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +00001844 if (!MsgSendFunctionDecl)
1845 SynthMsgSendFunctionDecl();
Steve Naroff874e2322007-11-15 10:28:18 +00001846 if (!MsgSendSuperFunctionDecl)
1847 SynthMsgSendSuperFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001848 if (!MsgSendStretFunctionDecl)
1849 SynthMsgSendStretFunctionDecl();
1850 if (!MsgSendSuperStretFunctionDecl)
1851 SynthMsgSendSuperStretFunctionDecl();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001852 if (!MsgSendFpretFunctionDecl)
1853 SynthMsgSendFpretFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +00001854 if (!GetClassFunctionDecl)
1855 SynthGetClassFunctionDecl();
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001856 if (!GetMetaClassFunctionDecl)
1857 SynthGetMetaClassFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001858
Steve Naroff874e2322007-11-15 10:28:18 +00001859 // default to objc_msgSend().
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001860 FunctionDecl *MsgSendFlavor = MsgSendFunctionDecl;
1861 // May need to use objc_msgSend_stret() as well.
1862 FunctionDecl *MsgSendStretFlavor = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001863 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001864 QualType resultType = mDecl->getResultType();
1865 if (resultType.getCanonicalType()->isStructureType()
1866 || resultType.getCanonicalType()->isUnionType())
1867 MsgSendStretFlavor = MsgSendStretFunctionDecl;
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001868 else if (resultType.getCanonicalType()->isRealFloatingType())
1869 MsgSendFlavor = MsgSendFpretFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001870 }
Steve Naroff874e2322007-11-15 10:28:18 +00001871
Steve Naroff934f2762007-10-24 22:48:43 +00001872 // Synthesize a call to objc_msgSend().
1873 llvm::SmallVector<Expr*, 8> MsgExprs;
1874 IdentifierInfo *clsName = Exp->getClassName();
1875
1876 // Derive/push the receiver/selector, 2 implicit arguments to objc_msgSend().
1877 if (clsName) { // class message.
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001878 if (!strcmp(clsName->getName(), "super")) {
1879 MsgSendFlavor = MsgSendSuperFunctionDecl;
1880 if (MsgSendStretFlavor)
1881 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
1882 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
1883
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001884 ObjCInterfaceDecl *SuperDecl =
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001885 CurMethodDecl->getClassInterface()->getSuperClass();
1886
1887 llvm::SmallVector<Expr*, 4> InitExprs;
1888
1889 // set the receiver to self, the first argument to all methods.
1890 InitExprs.push_back(new DeclRefExpr(CurMethodDecl->getSelfDecl(),
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001891 Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001892 SourceLocation()));
1893 llvm::SmallVector<Expr*, 8> ClsExprs;
1894 QualType argType = Context->getPointerType(Context->CharTy);
1895 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
1896 SuperDecl->getIdentifier()->getLength(),
1897 false, argType, SourceLocation(),
1898 SourceLocation()));
1899 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetMetaClassFunctionDecl,
1900 &ClsExprs[0],
1901 ClsExprs.size());
1902 // To turn off a warning, type-cast to 'id'
1903 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001904 new CastExpr(Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001905 Cls, SourceLocation())); // set 'super class', using objc_getClass().
1906 // struct objc_super
1907 QualType superType = getSuperStructType();
Steve Naroff23f41272008-03-11 18:14:26 +00001908 Expr *SuperRep;
Steve Naroffc0a123c2008-03-11 17:37:02 +00001909
Steve Naroff23f41272008-03-11 18:14:26 +00001910 if (LangOpts.Microsoft) {
1911 SynthSuperContructorFunctionDecl();
1912 // Simulate a contructor call...
1913 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
1914 superType, SourceLocation());
1915 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
1916 superType, SourceLocation());
1917 } else {
1918 // (struct objc_super) { <exprs from above> }
1919 InitListExpr *ILE = new InitListExpr(SourceLocation(),
1920 &InitExprs[0], InitExprs.size(),
1921 SourceLocation());
1922 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE, false);
1923 }
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001924 // struct objc_super *
1925 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
1926 Context->getPointerType(SuperRep->getType()),
1927 SourceLocation());
1928 MsgExprs.push_back(Unop);
1929 } else {
1930 llvm::SmallVector<Expr*, 8> ClsExprs;
1931 QualType argType = Context->getPointerType(Context->CharTy);
1932 ClsExprs.push_back(new StringLiteral(clsName->getName(),
1933 clsName->getLength(),
1934 false, argType, SourceLocation(),
1935 SourceLocation()));
1936 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
1937 &ClsExprs[0],
1938 ClsExprs.size());
1939 MsgExprs.push_back(Cls);
1940 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00001941 } else { // instance message.
1942 Expr *recExpr = Exp->getReceiver();
Steve Naroff874e2322007-11-15 10:28:18 +00001943
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001944 if (ObjCInterfaceDecl *SuperDecl = isSuperReceiver(recExpr)) {
Steve Naroff874e2322007-11-15 10:28:18 +00001945 MsgSendFlavor = MsgSendSuperFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001946 if (MsgSendStretFlavor)
1947 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
Steve Naroff874e2322007-11-15 10:28:18 +00001948 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
1949
1950 llvm::SmallVector<Expr*, 4> InitExprs;
1951
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001952 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001953 new CastExpr(Context->getObjCIdType(),
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001954 recExpr, SourceLocation())); // set the 'receiver'.
Steve Naroff874e2322007-11-15 10:28:18 +00001955
1956 llvm::SmallVector<Expr*, 8> ClsExprs;
1957 QualType argType = Context->getPointerType(Context->CharTy);
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001958 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
1959 SuperDecl->getIdentifier()->getLength(),
Steve Naroff874e2322007-11-15 10:28:18 +00001960 false, argType, SourceLocation(),
1961 SourceLocation()));
1962 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001963 &ClsExprs[0],
1964 ClsExprs.size());
Fariborz Jahanian71274312007-12-05 17:29:46 +00001965 // To turn off a warning, type-cast to 'id'
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001966 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001967 new CastExpr(Context->getObjCIdType(),
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001968 Cls, SourceLocation())); // set 'super class', using objc_getClass().
Steve Naroff874e2322007-11-15 10:28:18 +00001969 // struct objc_super
1970 QualType superType = getSuperStructType();
Steve Naroffc0a123c2008-03-11 17:37:02 +00001971 Expr *SuperRep;
1972
1973 if (LangOpts.Microsoft) {
1974 SynthSuperContructorFunctionDecl();
1975 // Simulate a contructor call...
1976 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
1977 superType, SourceLocation());
1978 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
1979 superType, SourceLocation());
1980 } else {
1981 // (struct objc_super) { <exprs from above> }
1982 InitListExpr *ILE = new InitListExpr(SourceLocation(),
1983 &InitExprs[0], InitExprs.size(),
1984 SourceLocation());
1985 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE, false);
1986 }
Steve Naroff874e2322007-11-15 10:28:18 +00001987 // struct objc_super *
1988 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
1989 Context->getPointerType(SuperRep->getType()),
1990 SourceLocation());
1991 MsgExprs.push_back(Unop);
1992 } else {
Fariborz Jahanian7dd82832007-12-07 21:21:21 +00001993 // Remove all type-casts because it may contain objc-style types; e.g.
1994 // Foo<Proto> *.
1995 while (CastExpr *CE = dyn_cast<CastExpr>(recExpr))
1996 recExpr = CE->getSubExpr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001997 recExpr = new CastExpr(Context->getObjCIdType(), recExpr, SourceLocation());
Steve Naroff874e2322007-11-15 10:28:18 +00001998 MsgExprs.push_back(recExpr);
1999 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00002000 }
Steve Naroffbeaf2992007-11-03 11:27:19 +00002001 // Create a call to sel_registerName("selName"), it will be the 2nd argument.
Steve Naroff934f2762007-10-24 22:48:43 +00002002 llvm::SmallVector<Expr*, 8> SelExprs;
2003 QualType argType = Context->getPointerType(Context->CharTy);
2004 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
2005 Exp->getSelector().getName().size(),
2006 false, argType, SourceLocation(),
2007 SourceLocation()));
2008 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
2009 &SelExprs[0], SelExprs.size());
2010 MsgExprs.push_back(SelExp);
2011
2012 // Now push any user supplied arguments.
2013 for (unsigned i = 0; i < Exp->getNumArgs(); i++) {
Steve Naroff6568d4d2007-11-14 23:54:14 +00002014 Expr *userExpr = Exp->getArg(i);
Steve Naroff7e3411b2007-11-15 02:58:25 +00002015 // Make all implicit casts explicit...ICE comes in handy:-)
2016 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(userExpr)) {
2017 // Reuse the ICE type, it is exactly what the doctor ordered.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002018 userExpr = new CastExpr(ICE->getType()->isObjCQualifiedIdType()
2019 ? Context->getObjCIdType()
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002020 : ICE->getType(), userExpr, SourceLocation());
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002021 }
2022 // Make id<P...> cast into an 'id' cast.
2023 else if (CastExpr *CE = dyn_cast<CastExpr>(userExpr)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002024 if (CE->getType()->isObjCQualifiedIdType()) {
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002025 while ((CE = dyn_cast<CastExpr>(userExpr)))
2026 userExpr = CE->getSubExpr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002027 userExpr = new CastExpr(Context->getObjCIdType(),
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002028 userExpr, SourceLocation());
2029 }
Steve Naroff7e3411b2007-11-15 02:58:25 +00002030 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00002031 MsgExprs.push_back(userExpr);
Steve Naroff934f2762007-10-24 22:48:43 +00002032 // We've transferred the ownership to MsgExprs. Null out the argument in
2033 // the original expression, since we will delete it below.
2034 Exp->setArg(i, 0);
2035 }
Steve Naroffab972d32007-11-04 22:37:50 +00002036 // Generate the funky cast.
2037 CastExpr *cast;
2038 llvm::SmallVector<QualType, 8> ArgTypes;
2039 QualType returnType;
2040
2041 // Push 'id' and 'SEL', the 2 implicit arguments.
Steve Naroffc3a438c2007-11-15 10:43:57 +00002042 if (MsgSendFlavor == MsgSendSuperFunctionDecl)
2043 ArgTypes.push_back(Context->getPointerType(getSuperStructType()));
2044 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002045 ArgTypes.push_back(Context->getObjCIdType());
2046 ArgTypes.push_back(Context->getObjCSelType());
2047 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Steve Naroffab972d32007-11-04 22:37:50 +00002048 // Push any user argument types.
Chris Lattner58cce3b2008-03-16 01:07:14 +00002049 for (unsigned i = 0; i < mDecl->getNumParams(); i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002050 QualType t = mDecl->getParamDecl(i)->getType()->isObjCQualifiedIdType()
2051 ? Context->getObjCIdType()
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002052 : mDecl->getParamDecl(i)->getType();
Steve Naroff352336b2007-11-05 14:36:37 +00002053 ArgTypes.push_back(t);
2054 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002055 returnType = mDecl->getResultType()->isObjCQualifiedIdType()
2056 ? Context->getObjCIdType() : mDecl->getResultType();
Steve Naroffab972d32007-11-04 22:37:50 +00002057 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002058 returnType = Context->getObjCIdType();
Steve Naroffab972d32007-11-04 22:37:50 +00002059 }
2060 // Get the type, we will need to reference it in a couple spots.
Steve Naroff874e2322007-11-15 10:28:18 +00002061 QualType msgSendType = MsgSendFlavor->getType();
Steve Naroffab972d32007-11-04 22:37:50 +00002062
2063 // Create a reference to the objc_msgSend() declaration.
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002064 DeclRefExpr *DRE = new DeclRefExpr(MsgSendFlavor, msgSendType,
2065 SourceLocation());
Steve Naroffab972d32007-11-04 22:37:50 +00002066
2067 // Need to cast objc_msgSend to "void *" (to workaround a GCC bandaid).
2068 // If we don't do this cast, we get the following bizarre warning/note:
2069 // xx.m:13: warning: function called through a non-compatible type
2070 // xx.m:13: note: if this code is reached, the program will abort
2071 cast = new CastExpr(Context->getPointerType(Context->VoidTy), DRE,
2072 SourceLocation());
Steve Naroff335eafa2007-11-15 12:35:21 +00002073
Steve Naroffab972d32007-11-04 22:37:50 +00002074 // Now do the "normal" pointer to function cast.
2075 QualType castType = Context->getFunctionType(returnType,
Fariborz Jahaniand0ee6f92007-12-06 19:49:56 +00002076 &ArgTypes[0], ArgTypes.size(),
Steve Naroff2679e482008-03-18 02:02:04 +00002077 // If we don't have a method decl, force a variadic cast.
2078 Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : true);
Steve Naroffab972d32007-11-04 22:37:50 +00002079 castType = Context->getPointerType(castType);
2080 cast = new CastExpr(castType, cast, SourceLocation());
2081
2082 // Don't forget the parens to enforce the proper binding.
2083 ParenExpr *PE = new ParenExpr(SourceLocation(), SourceLocation(), cast);
2084
2085 const FunctionType *FT = msgSendType->getAsFunctionType();
2086 CallExpr *CE = new CallExpr(PE, &MsgExprs[0], MsgExprs.size(),
2087 FT->getResultType(), SourceLocation());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002088 Stmt *ReplacingStmt = CE;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002089 if (MsgSendStretFlavor) {
2090 // We have the method which returns a struct/union. Must also generate
2091 // call to objc_msgSend_stret and hang both varieties on a conditional
2092 // expression which dictate which one to envoke depending on size of
2093 // method's return type.
2094
2095 // Create a reference to the objc_msgSend_stret() declaration.
2096 DeclRefExpr *STDRE = new DeclRefExpr(MsgSendStretFlavor, msgSendType,
2097 SourceLocation());
2098 // Need to cast objc_msgSend_stret to "void *" (see above comment).
2099 cast = new CastExpr(Context->getPointerType(Context->VoidTy), STDRE,
2100 SourceLocation());
2101 // Now do the "normal" pointer to function cast.
2102 castType = Context->getFunctionType(returnType,
Fariborz Jahaniand0ee6f92007-12-06 19:49:56 +00002103 &ArgTypes[0], ArgTypes.size(),
2104 Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : false);
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002105 castType = Context->getPointerType(castType);
2106 cast = new CastExpr(castType, cast, SourceLocation());
2107
2108 // Don't forget the parens to enforce the proper binding.
2109 PE = new ParenExpr(SourceLocation(), SourceLocation(), cast);
2110
2111 FT = msgSendType->getAsFunctionType();
2112 CallExpr *STCE = new CallExpr(PE, &MsgExprs[0], MsgExprs.size(),
2113 FT->getResultType(), SourceLocation());
2114
2115 // Build sizeof(returnType)
2116 SizeOfAlignOfTypeExpr *sizeofExpr = new SizeOfAlignOfTypeExpr(true,
2117 returnType, Context->getSizeType(),
2118 SourceLocation(), SourceLocation());
2119 // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...))
2120 // FIXME: Value of 8 is base on ppc32/x86 ABI for the most common cases.
2121 // For X86 it is more complicated and some kind of target specific routine
2122 // is needed to decide what to do.
Chris Lattner98be4942008-03-05 18:54:05 +00002123 unsigned IntSize =
2124 static_cast<unsigned>(Context->getTypeSize(Context->IntTy));
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002125 IntegerLiteral *limit = new IntegerLiteral(llvm::APInt(IntSize, 8),
2126 Context->IntTy,
2127 SourceLocation());
2128 BinaryOperator *lessThanExpr = new BinaryOperator(sizeofExpr, limit,
2129 BinaryOperator::LE,
2130 Context->IntTy,
2131 SourceLocation());
2132 // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...))
2133 ConditionalOperator *CondExpr =
2134 new ConditionalOperator(lessThanExpr, CE, STCE, returnType);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002135 ReplacingStmt = new ParenExpr(SourceLocation(), SourceLocation(), CondExpr);
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002136 }
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002137 return ReplacingStmt;
2138}
2139
2140Stmt *RewriteTest::RewriteMessageExpr(ObjCMessageExpr *Exp) {
2141 Stmt *ReplacingStmt = SynthMessageExpr(Exp);
Steve Naroff934f2762007-10-24 22:48:43 +00002142 // Now do the actual rewrite.
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00002143 ReplaceStmt(Exp, ReplacingStmt);
Steve Naroff934f2762007-10-24 22:48:43 +00002144
Chris Lattnere64b7772007-10-24 16:57:36 +00002145 delete Exp;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00002146 return ReplacingStmt;
Steve Naroffebf2b562007-10-23 23:50:29 +00002147}
2148
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00002149/// RewriteObjCProtocolExpr - Rewrite a protocol expression into
2150/// call to objc_getProtocol("proto-name").
2151Stmt *RewriteTest::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) {
2152 if (!GetProtocolFunctionDecl)
2153 SynthGetProtocolFunctionDecl();
2154 // Create a call to objc_getProtocol("ProtocolName").
2155 llvm::SmallVector<Expr*, 8> ProtoExprs;
2156 QualType argType = Context->getPointerType(Context->CharTy);
2157 ProtoExprs.push_back(new StringLiteral(Exp->getProtocol()->getName(),
2158 strlen(Exp->getProtocol()->getName()),
2159 false, argType, SourceLocation(),
2160 SourceLocation()));
2161 CallExpr *ProtoExp = SynthesizeCallToFunctionDecl(GetProtocolFunctionDecl,
2162 &ProtoExprs[0],
2163 ProtoExprs.size());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00002164 ReplaceStmt(Exp, ProtoExp);
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00002165 delete Exp;
2166 return ProtoExp;
2167
2168}
2169
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002170/// SynthesizeObjCInternalStruct - Rewrite one internal struct corresponding to
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002171/// an objective-c class with ivars.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002172void RewriteTest::SynthesizeObjCInternalStruct(ObjCInterfaceDecl *CDecl,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002173 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002174 assert(CDecl && "Class missing in SynthesizeObjCInternalStruct");
2175 assert(CDecl->getName() && "Name missing in SynthesizeObjCInternalStruct");
Fariborz Jahanian212b7682007-10-31 23:08:24 +00002176 // Do not synthesize more than once.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002177 if (ObjCSynthesizedStructs.count(CDecl))
Fariborz Jahanian212b7682007-10-31 23:08:24 +00002178 return;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002179 ObjCInterfaceDecl *RCDecl = CDecl->getSuperClass();
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002180 int NumIvars = CDecl->ivar_size();
Steve Narofffea763e82007-11-14 19:25:57 +00002181 SourceLocation LocStart = CDecl->getLocStart();
2182 SourceLocation LocEnd = CDecl->getLocEnd();
2183
2184 const char *startBuf = SM->getCharacterData(LocStart);
2185 const char *endBuf = SM->getCharacterData(LocEnd);
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002186 // If no ivars and no root or if its root, directly or indirectly,
2187 // have no ivars (thus not synthesized) then no need to synthesize this class.
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002188 if ((CDecl->isForwardDecl() || NumIvars == 0) &&
2189 (!RCDecl || !ObjCSynthesizedStructs.count(RCDecl))) {
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002190 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
Chris Lattneraadaf782008-01-31 19:51:04 +00002191 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002192 return;
2193 }
2194
2195 // FIXME: This has potential of causing problem. If
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002196 // SynthesizeObjCInternalStruct is ever called recursively.
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002197 Result += "\nstruct ";
2198 Result += CDecl->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +00002199 if (LangOpts.Microsoft)
2200 Result += "_IMPL";
Steve Naroff05b8c782008-03-12 00:25:36 +00002201
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002202 if (NumIvars > 0) {
Steve Narofffea763e82007-11-14 19:25:57 +00002203 const char *cursor = strchr(startBuf, '{');
2204 assert((cursor && endBuf)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002205 && "SynthesizeObjCInternalStruct - malformed @interface");
Steve Narofffea763e82007-11-14 19:25:57 +00002206
2207 // rewrite the original header *without* disturbing the '{'
Chris Lattneraadaf782008-01-31 19:51:04 +00002208 ReplaceText(LocStart, cursor-startBuf-1, Result.c_str(), Result.size());
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002209 if (RCDecl && ObjCSynthesizedStructs.count(RCDecl)) {
Steve Narofffea763e82007-11-14 19:25:57 +00002210 Result = "\n struct ";
2211 Result += RCDecl->getName();
Steve Naroff39bbd9f2008-03-12 21:09:20 +00002212 Result += "_IMPL ";
2213 Result += RCDecl->getName();
Steve Naroff819173c2008-03-12 21:22:52 +00002214 Result += "_IVARS;\n";
Steve Narofffea763e82007-11-14 19:25:57 +00002215
2216 // insert the super class structure definition.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002217 SourceLocation OnePastCurly =
2218 LocStart.getFileLocWithOffset(cursor-startBuf+1);
2219 InsertText(OnePastCurly, Result.c_str(), Result.size());
Steve Narofffea763e82007-11-14 19:25:57 +00002220 }
2221 cursor++; // past '{'
2222
2223 // Now comment out any visibility specifiers.
2224 while (cursor < endBuf) {
2225 if (*cursor == '@') {
2226 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerdf6a51b2007-11-14 22:57:51 +00002227 // Skip whitespace.
2228 for (++cursor; cursor[0] == ' ' || cursor[0] == '\t'; ++cursor)
2229 /*scan*/;
2230
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002231 // FIXME: presence of @public, etc. inside comment results in
2232 // this transformation as well, which is still correct c-code.
Steve Narofffea763e82007-11-14 19:25:57 +00002233 if (!strncmp(cursor, "public", strlen("public")) ||
2234 !strncmp(cursor, "private", strlen("private")) ||
Fariborz Jahanian95673922007-11-14 22:26:25 +00002235 !strncmp(cursor, "protected", strlen("protected")))
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002236 InsertText(atLoc, "// ", 3);
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002237 }
Fariborz Jahanian95673922007-11-14 22:26:25 +00002238 // FIXME: If there are cases where '<' is used in ivar declaration part
2239 // of user code, then scan the ivar list and use needToScanForQualifiers
2240 // for type checking.
2241 else if (*cursor == '<') {
2242 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002243 InsertText(atLoc, "/* ", 3);
Fariborz Jahanian95673922007-11-14 22:26:25 +00002244 cursor = strchr(cursor, '>');
2245 cursor++;
2246 atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002247 InsertText(atLoc, " */", 3);
Fariborz Jahanian95673922007-11-14 22:26:25 +00002248 }
Steve Narofffea763e82007-11-14 19:25:57 +00002249 cursor++;
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002250 }
Steve Narofffea763e82007-11-14 19:25:57 +00002251 // Don't forget to add a ';'!!
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002252 InsertText(LocEnd.getFileLocWithOffset(1), ";", 1);
Steve Narofffea763e82007-11-14 19:25:57 +00002253 } else { // we don't have any instance variables - insert super struct.
2254 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
2255 Result += " {\n struct ";
2256 Result += RCDecl->getName();
Steve Naroff39bbd9f2008-03-12 21:09:20 +00002257 Result += "_IMPL ";
2258 Result += RCDecl->getName();
Steve Naroff819173c2008-03-12 21:22:52 +00002259 Result += "_IVARS;\n};\n";
Chris Lattneraadaf782008-01-31 19:51:04 +00002260 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002261 }
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002262 // Mark this struct as having been generated.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002263 if (!ObjCSynthesizedStructs.insert(CDecl))
2264 assert(false && "struct already synthesize- SynthesizeObjCInternalStruct");
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002265}
2266
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002267// RewriteObjCMethodsMetaData - Rewrite methods metadata for instance or
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002268/// class methods.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002269void RewriteTest::RewriteObjCMethodsMetaData(instmeth_iterator MethodBegin,
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002270 instmeth_iterator MethodEnd,
Fariborz Jahanian8e991ba2007-10-25 00:14:44 +00002271 bool IsInstanceMethod,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002272 const char *prefix,
Chris Lattner158ecb92007-10-25 17:07:24 +00002273 const char *ClassName,
2274 std::string &Result) {
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002275 if (MethodBegin == MethodEnd) return;
2276
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002277 static bool objc_impl_method = false;
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002278 if (!objc_impl_method) {
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002279 /* struct _objc_method {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002280 SEL _cmd;
2281 char *method_types;
2282 void *_imp;
2283 }
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002284 */
Chris Lattner158ecb92007-10-25 17:07:24 +00002285 Result += "\nstruct _objc_method {\n";
2286 Result += "\tSEL _cmd;\n";
2287 Result += "\tchar *method_types;\n";
2288 Result += "\tvoid *_imp;\n";
2289 Result += "};\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002290
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002291 objc_impl_method = true;
Fariborz Jahanian776d6ff2007-10-19 00:36:46 +00002292 }
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002293
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002294 // Build _objc_method_list for class's methods if needed
Steve Naroff946a6932008-03-11 00:12:29 +00002295
2296 /* struct {
2297 struct _objc_method_list *next_method;
2298 int method_count;
2299 struct _objc_method method_list[];
2300 }
2301 */
2302 Result += "\nstatic struct {\n";
2303 Result += "\tstruct _objc_method_list *next_method;\n";
2304 Result += "\tint method_count;\n";
2305 Result += "\tstruct _objc_method method_list[";
2306 Result += utostr(MethodEnd-MethodBegin);
2307 Result += "];\n} _OBJC_";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002308 Result += prefix;
2309 Result += IsInstanceMethod ? "INSTANCE" : "CLASS";
2310 Result += "_METHODS_";
2311 Result += ClassName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002312 Result += " __attribute__ ((used, section (\"__OBJC, __";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002313 Result += IsInstanceMethod ? "inst" : "cls";
2314 Result += "_meth\")))= ";
2315 Result += "{\n\t0, " + utostr(MethodEnd-MethodBegin) + "\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002316
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002317 Result += "\t,{{(SEL)\"";
2318 Result += (*MethodBegin)->getSelector().getName().c_str();
2319 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002320 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002321 Result += "\", \"";
2322 Result += MethodTypeString;
Steve Naroff946a6932008-03-11 00:12:29 +00002323 Result += "\", (void *)";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002324 Result += MethodInternalNames[*MethodBegin];
2325 Result += "}\n";
2326 for (++MethodBegin; MethodBegin != MethodEnd; ++MethodBegin) {
2327 Result += "\t ,{(SEL)\"";
2328 Result += (*MethodBegin)->getSelector().getName().c_str();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002329 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002330 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002331 Result += "\", \"";
2332 Result += MethodTypeString;
Steve Naroff946a6932008-03-11 00:12:29 +00002333 Result += "\", (void *)";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002334 Result += MethodInternalNames[*MethodBegin];
Fariborz Jahanianb7908b52007-11-13 21:02:00 +00002335 Result += "}\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002336 }
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002337 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002338}
2339
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002340/// RewriteObjCProtocolsMetaData - Rewrite protocols meta-data.
2341void RewriteTest::RewriteObjCProtocolsMetaData(ObjCProtocolDecl **Protocols,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002342 int NumProtocols,
2343 const char *prefix,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002344 const char *ClassName,
2345 std::string &Result) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002346 static bool objc_protocol_methods = false;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002347 if (NumProtocols > 0) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002348 for (int i = 0; i < NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002349 ObjCProtocolDecl *PDecl = Protocols[i];
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002350 // Output struct protocol_methods holder of method selector and type.
Chris Lattnerc8581052008-03-16 20:19:15 +00002351 if (!objc_protocol_methods && !PDecl->isForwardDecl()) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002352 /* struct protocol_methods {
2353 SEL _cmd;
2354 char *method_types;
2355 }
2356 */
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002357 Result += "\nstruct protocol_methods {\n";
2358 Result += "\tSEL _cmd;\n";
2359 Result += "\tchar *method_types;\n";
2360 Result += "};\n";
2361
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002362 objc_protocol_methods = true;
2363 }
Chris Lattnerc8581052008-03-16 20:19:15 +00002364 if (PDecl->instmeth_begin() != PDecl->instmeth_end()) {
2365 unsigned NumMethods = PDecl->getNumInstanceMethods();
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002366 /* struct _objc_protocol_method_list {
2367 int protocol_method_count;
2368 struct protocol_methods protocols[];
2369 }
2370 */
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002371 Result += "\nstatic struct {\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002372 Result += "\tint protocol_method_count;\n";
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002373 Result += "\tstruct protocol_methods protocols[";
2374 Result += utostr(NumMethods);
2375 Result += "];\n} _OBJC_PROTOCOL_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002376 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002377 Result += " __attribute__ ((used, section (\"__OBJC, __cat_inst_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002378 "{\n\t" + utostr(NumMethods) + "\n";
2379
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002380 // Output instance methods declared in this protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002381 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002382 E = PDecl->instmeth_end(); I != E; ++I) {
2383 if (I == PDecl->instmeth_begin())
2384 Result += "\t ,{{(SEL)\"";
2385 else
2386 Result += "\t ,{(SEL)\"";
2387 Result += (*I)->getSelector().getName().c_str();
2388 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002389 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002390 Result += "\", \"";
2391 Result += MethodTypeString;
2392 Result += "\"}\n";
2393 }
2394 Result += "\t }\n};\n";
2395 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002396
2397 // Output class methods declared in this protocol.
Chris Lattnerc8581052008-03-16 20:19:15 +00002398 int NumMethods = PDecl->getNumClassMethods();
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002399 if (NumMethods > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002400 /* struct _objc_protocol_method_list {
2401 int protocol_method_count;
2402 struct protocol_methods protocols[];
2403 }
2404 */
2405 Result += "\nstatic struct {\n";
2406 Result += "\tint protocol_method_count;\n";
2407 Result += "\tstruct protocol_methods protocols[";
2408 Result += utostr(NumMethods);
2409 Result += "];\n} _OBJC_PROTOCOL_CLASS_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002410 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002411 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002412 "{\n\t";
2413 Result += utostr(NumMethods);
2414 Result += "\n";
2415
Fariborz Jahanianc6e2c2a2007-12-17 18:07:01 +00002416 // Output instance methods declared in this protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002417 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Fariborz Jahanianc6e2c2a2007-12-17 18:07:01 +00002418 E = PDecl->classmeth_end(); I != E; ++I) {
2419 if (I == PDecl->classmeth_begin())
2420 Result += "\t ,{{(SEL)\"";
2421 else
2422 Result += "\t ,{(SEL)\"";
Steve Naroff58dbdeb2007-12-14 23:37:57 +00002423 Result += (*I)->getSelector().getName().c_str();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002424 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002425 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002426 Result += "\", \"";
2427 Result += MethodTypeString;
2428 Result += "\"}\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002429 }
2430 Result += "\t }\n};\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002431 }
2432 // Output:
2433 /* struct _objc_protocol {
2434 // Objective-C 1.0 extensions
2435 struct _objc_protocol_extension *isa;
2436 char *protocol_name;
2437 struct _objc_protocol **protocol_list;
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002438 struct _objc_protocol_method_list *instance_methods;
2439 struct _objc_protocol_method_list *class_methods;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002440 };
2441 */
2442 static bool objc_protocol = false;
2443 if (!objc_protocol) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002444 Result += "\nstruct _objc_protocol {\n";
2445 Result += "\tstruct _objc_protocol_extension *isa;\n";
2446 Result += "\tchar *protocol_name;\n";
2447 Result += "\tstruct _objc_protocol **protocol_list;\n";
2448 Result += "\tstruct _objc_protocol_method_list *instance_methods;\n";
2449 Result += "\tstruct _objc_protocol_method_list *class_methods;\n";
2450 Result += "};\n";
2451
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002452 objc_protocol = true;
2453 }
2454
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002455 Result += "\nstatic struct _objc_protocol _OBJC_PROTOCOL_";
2456 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002457 Result += " __attribute__ ((used, section (\"__OBJC, __protocol\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002458 "{\n\t0, \"";
2459 Result += PDecl->getName();
2460 Result += "\", 0, ";
Chris Lattnerc8581052008-03-16 20:19:15 +00002461 if (PDecl->instmeth_begin() != PDecl->instmeth_end()) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002462 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002463 Result += PDecl->getName();
2464 Result += ", ";
2465 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002466 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002467 Result += "0, ";
Steve Naroff58dbdeb2007-12-14 23:37:57 +00002468 if (PDecl->getNumClassMethods() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002469 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_CLASS_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002470 Result += PDecl->getName();
2471 Result += "\n";
2472 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002473 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002474 Result += "0\n";
2475 Result += "};\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002476 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002477 // Output the top lovel protocol meta-data for the class.
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002478 /* struct _objc_protocol_list {
2479 struct _objc_protocol_list *next;
2480 int protocol_count;
2481 struct _objc_protocol *class_protocols[];
2482 }
2483 */
2484 Result += "\nstatic struct {\n";
2485 Result += "\tstruct _objc_protocol_list *next;\n";
2486 Result += "\tint protocol_count;\n";
2487 Result += "\tstruct _objc_protocol *class_protocols[";
2488 Result += utostr(NumProtocols);
2489 Result += "];\n} _OBJC_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002490 Result += prefix;
2491 Result += "_PROTOCOLS_";
2492 Result += ClassName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002493 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002494 "{\n\t0, ";
2495 Result += utostr(NumProtocols);
2496 Result += "\n";
2497
2498 Result += "\t,{&_OBJC_PROTOCOL_";
2499 Result += Protocols[0]->getName();
2500 Result += " \n";
2501
2502 for (int i = 1; i < NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002503 ObjCProtocolDecl *PDecl = Protocols[i];
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002504 Result += "\t ,(struct _objc_protocol_list*)&_OBJC_PROTOCOL_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002505 Result += PDecl->getName();
2506 Result += "\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002507 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002508 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002509 }
2510}
2511
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002512/// RewriteObjCCategoryImplDecl - Rewrite metadata for each category
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002513/// implementation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002514void RewriteTest::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002515 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002516 ObjCInterfaceDecl *ClassDecl = IDecl->getClassInterface();
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002517 // Find category declaration for this implementation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002518 ObjCCategoryDecl *CDecl;
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002519 for (CDecl = ClassDecl->getCategoryList(); CDecl;
2520 CDecl = CDecl->getNextClassCategory())
2521 if (CDecl->getIdentifier() == IDecl->getIdentifier())
2522 break;
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002523
Chris Lattnereb44eee2007-12-23 01:40:15 +00002524 std::string FullCategoryName = ClassDecl->getName();
2525 FullCategoryName += '_';
2526 FullCategoryName += IDecl->getName();
2527
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002528 // Build _objc_method_list for class's instance methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002529 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Chris Lattnereb44eee2007-12-23 01:40:15 +00002530 true, "CATEGORY_", FullCategoryName.c_str(),
2531 Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002532
2533 // Build _objc_method_list for class's class methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002534 RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(),
Chris Lattnereb44eee2007-12-23 01:40:15 +00002535 false, "CATEGORY_", FullCategoryName.c_str(),
2536 Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002537
2538 // Protocols referenced in class declaration?
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002539 // Null CDecl is case of a category implementation with no category interface
2540 if (CDecl)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002541 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(),
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002542 CDecl->getNumReferencedProtocols(),
2543 "CATEGORY",
Chris Lattnereb44eee2007-12-23 01:40:15 +00002544 FullCategoryName.c_str(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002545
2546 /* struct _objc_category {
2547 char *category_name;
2548 char *class_name;
2549 struct _objc_method_list *instance_methods;
2550 struct _objc_method_list *class_methods;
2551 struct _objc_protocol_list *protocols;
2552 // Objective-C 1.0 extensions
2553 uint32_t size; // sizeof (struct _objc_category)
2554 struct _objc_property_list *instance_properties; // category's own
2555 // @property decl.
2556 };
2557 */
2558
2559 static bool objc_category = false;
2560 if (!objc_category) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002561 Result += "\nstruct _objc_category {\n";
2562 Result += "\tchar *category_name;\n";
2563 Result += "\tchar *class_name;\n";
2564 Result += "\tstruct _objc_method_list *instance_methods;\n";
2565 Result += "\tstruct _objc_method_list *class_methods;\n";
2566 Result += "\tstruct _objc_protocol_list *protocols;\n";
2567 Result += "\tunsigned int size;\n";
2568 Result += "\tstruct _objc_property_list *instance_properties;\n";
2569 Result += "};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002570 objc_category = true;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002571 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002572 Result += "\nstatic struct _objc_category _OBJC_CATEGORY_";
2573 Result += FullCategoryName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002574 Result += " __attribute__ ((used, section (\"__OBJC, __category\")))= {\n\t\"";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002575 Result += IDecl->getName();
2576 Result += "\"\n\t, \"";
2577 Result += ClassDecl->getName();
2578 Result += "\"\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002579
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002580 if (IDecl->getNumInstanceMethods() > 0) {
2581 Result += "\t, (struct _objc_method_list *)"
2582 "&_OBJC_CATEGORY_INSTANCE_METHODS_";
2583 Result += FullCategoryName;
2584 Result += "\n";
2585 }
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002586 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002587 Result += "\t, 0\n";
2588 if (IDecl->getNumClassMethods() > 0) {
2589 Result += "\t, (struct _objc_method_list *)"
2590 "&_OBJC_CATEGORY_CLASS_METHODS_";
2591 Result += FullCategoryName;
2592 Result += "\n";
2593 }
2594 else
2595 Result += "\t, 0\n";
2596
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002597 if (CDecl && CDecl->getNumReferencedProtocols() > 0) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002598 Result += "\t, (struct _objc_protocol_list *)&_OBJC_CATEGORY_PROTOCOLS_";
2599 Result += FullCategoryName;
2600 Result += "\n";
2601 }
2602 else
2603 Result += "\t, 0\n";
2604 Result += "\t, sizeof(struct _objc_category), 0\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002605}
2606
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002607/// SynthesizeIvarOffsetComputation - This rutine synthesizes computation of
2608/// ivar offset.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002609void RewriteTest::SynthesizeIvarOffsetComputation(ObjCImplementationDecl *IDecl,
2610 ObjCIvarDecl *ivar,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002611 std::string &Result) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00002612 Result += "offsetof(struct ";
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002613 Result += IDecl->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +00002614 if (LangOpts.Microsoft)
2615 Result += "_IMPL";
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002616 Result += ", ";
2617 Result += ivar->getName();
2618 Result += ")";
2619}
2620
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002621//===----------------------------------------------------------------------===//
2622// Meta Data Emission
2623//===----------------------------------------------------------------------===//
2624
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002625void RewriteTest::RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002626 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002627 ObjCInterfaceDecl *CDecl = IDecl->getClassInterface();
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002628
Fariborz Jahanianebe668f2007-11-26 20:59:57 +00002629 // Explictly declared @interface's are already synthesized.
2630 if (CDecl->ImplicitInterfaceDecl()) {
2631 // FIXME: Implementation of a class with no @interface (legacy) doese not
2632 // produce correct synthesis as yet.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002633 SynthesizeObjCInternalStruct(CDecl, Result);
Fariborz Jahanianebe668f2007-11-26 20:59:57 +00002634 }
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002635
Chris Lattnerbe6df082007-12-12 07:56:42 +00002636 // Build _objc_ivar_list metadata for classes ivars if needed
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002637 unsigned NumIvars = !IDecl->ivar_empty()
2638 ? IDecl->ivar_size()
2639 : (CDecl ? CDecl->ivar_size() : 0);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002640 if (NumIvars > 0) {
2641 static bool objc_ivar = false;
2642 if (!objc_ivar) {
2643 /* struct _objc_ivar {
2644 char *ivar_name;
2645 char *ivar_type;
2646 int ivar_offset;
2647 };
2648 */
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002649 Result += "\nstruct _objc_ivar {\n";
2650 Result += "\tchar *ivar_name;\n";
2651 Result += "\tchar *ivar_type;\n";
2652 Result += "\tint ivar_offset;\n";
2653 Result += "};\n";
2654
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002655 objc_ivar = true;
2656 }
2657
Steve Naroff946a6932008-03-11 00:12:29 +00002658 /* struct {
2659 int ivar_count;
2660 struct _objc_ivar ivar_list[nIvars];
2661 };
2662 */
2663 Result += "\nstatic struct {\n";
2664 Result += "\tint ivar_count;\n";
2665 Result += "\tstruct _objc_ivar ivar_list[";
2666 Result += utostr(NumIvars);
2667 Result += "];\n} _OBJC_INSTANCE_VARIABLES_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002668 Result += IDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002669 Result += " __attribute__ ((used, section (\"__OBJC, __instance_vars\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002670 "{\n\t";
2671 Result += utostr(NumIvars);
2672 Result += "\n";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002673
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002674 ObjCInterfaceDecl::ivar_iterator IVI, IVE;
Chris Lattnerf3a7af92008-03-16 21:08:55 +00002675 if (!IDecl->ivar_empty()) {
Chris Lattnerbe6df082007-12-12 07:56:42 +00002676 IVI = IDecl->ivar_begin();
2677 IVE = IDecl->ivar_end();
2678 } else {
2679 IVI = CDecl->ivar_begin();
2680 IVE = CDecl->ivar_end();
2681 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002682 Result += "\t,{{\"";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002683 Result += (*IVI)->getName();
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002684 Result += "\", \"";
2685 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002686 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding,
2687 EncodingRecordTypes);
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002688 Result += StrEncoding;
2689 Result += "\", ";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002690 SynthesizeIvarOffsetComputation(IDecl, *IVI, Result);
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002691 Result += "}\n";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002692 for (++IVI; IVI != IVE; ++IVI) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002693 Result += "\t ,{\"";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002694 Result += (*IVI)->getName();
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002695 Result += "\", \"";
2696 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002697 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding,
2698 EncodingRecordTypes);
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002699 Result += StrEncoding;
2700 Result += "\", ";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002701 SynthesizeIvarOffsetComputation(IDecl, (*IVI), Result);
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002702 Result += "}\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002703 }
2704
2705 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002706 }
2707
2708 // Build _objc_method_list for class's instance methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002709 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002710 true, "", IDecl->getName(), 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 Lattnerab4c4d52007-12-12 07:46:12 +00002714 false, "", IDecl->getName(), Result);
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002715
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002716 // Protocols referenced in class declaration?
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002717 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(),
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002718 CDecl->getNumIntfRefProtocols(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002719 "CLASS", CDecl->getName(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002720
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002721
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002722 // Declaration of class/meta-class metadata
2723 /* struct _objc_class {
2724 struct _objc_class *isa; // or const char *root_class_name when metadata
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002725 const char *super_class_name;
2726 char *name;
2727 long version;
2728 long info;
2729 long instance_size;
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002730 struct _objc_ivar_list *ivars;
2731 struct _objc_method_list *methods;
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002732 struct objc_cache *cache;
2733 struct objc_protocol_list *protocols;
2734 const char *ivar_layout;
2735 struct _objc_class_ext *ext;
2736 };
2737 */
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002738 static bool objc_class = false;
2739 if (!objc_class) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002740 Result += "\nstruct _objc_class {\n";
2741 Result += "\tstruct _objc_class *isa;\n";
2742 Result += "\tconst char *super_class_name;\n";
2743 Result += "\tchar *name;\n";
2744 Result += "\tlong version;\n";
2745 Result += "\tlong info;\n";
2746 Result += "\tlong instance_size;\n";
2747 Result += "\tstruct _objc_ivar_list *ivars;\n";
2748 Result += "\tstruct _objc_method_list *methods;\n";
2749 Result += "\tstruct objc_cache *cache;\n";
2750 Result += "\tstruct _objc_protocol_list *protocols;\n";
2751 Result += "\tconst char *ivar_layout;\n";
2752 Result += "\tstruct _objc_class_ext *ext;\n";
2753 Result += "};\n";
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002754 objc_class = true;
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002755 }
2756
2757 // Meta-class metadata generation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002758 ObjCInterfaceDecl *RootClass = 0;
2759 ObjCInterfaceDecl *SuperClass = CDecl->getSuperClass();
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002760 while (SuperClass) {
2761 RootClass = SuperClass;
2762 SuperClass = SuperClass->getSuperClass();
2763 }
2764 SuperClass = CDecl->getSuperClass();
2765
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002766 Result += "\nstatic struct _objc_class _OBJC_METACLASS_";
2767 Result += CDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002768 Result += " __attribute__ ((used, section (\"__OBJC, __meta_class\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002769 "{\n\t(struct _objc_class *)\"";
2770 Result += (RootClass ? RootClass->getName() : CDecl->getName());
2771 Result += "\"";
2772
2773 if (SuperClass) {
2774 Result += ", \"";
2775 Result += SuperClass->getName();
2776 Result += "\", \"";
2777 Result += CDecl->getName();
2778 Result += "\"";
2779 }
2780 else {
2781 Result += ", 0, \"";
2782 Result += CDecl->getName();
2783 Result += "\"";
2784 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002785 // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it.
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002786 // 'info' field is initialized to CLS_META(2) for metaclass
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002787 Result += ", 0,2, sizeof(struct _objc_class), 0";
Steve Naroffb26d7132007-12-05 21:49:40 +00002788 if (IDecl->getNumClassMethods() > 0) {
Steve Naroff23f41272008-03-11 18:14:26 +00002789 Result += "\n\t, (struct _objc_method_list *)&_OBJC_CLASS_METHODS_";
Steve Naroffb26d7132007-12-05 21:49:40 +00002790 Result += IDecl->getName();
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002791 Result += "\n";
2792 }
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002793 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002794 Result += ", 0\n";
2795 if (CDecl->getNumIntfRefProtocols() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002796 Result += "\t,0, (struct _objc_protocol_list *)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002797 Result += CDecl->getName();
2798 Result += ",0,0\n";
2799 }
Fariborz Jahanian454cb012007-10-24 20:54:23 +00002800 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002801 Result += "\t,0,0,0,0\n";
2802 Result += "};\n";
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002803
2804 // class metadata generation.
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002805 Result += "\nstatic struct _objc_class _OBJC_CLASS_";
2806 Result += CDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002807 Result += " __attribute__ ((used, section (\"__OBJC, __class\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002808 "{\n\t&_OBJC_METACLASS_";
2809 Result += CDecl->getName();
2810 if (SuperClass) {
2811 Result += ", \"";
2812 Result += SuperClass->getName();
2813 Result += "\", \"";
2814 Result += CDecl->getName();
2815 Result += "\"";
2816 }
2817 else {
2818 Result += ", 0, \"";
2819 Result += CDecl->getName();
2820 Result += "\"";
2821 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002822 // 'info' field is initialized to CLS_CLASS(1) for class
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002823 Result += ", 0,1";
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002824 if (!ObjCSynthesizedStructs.count(CDecl))
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002825 Result += ",0";
2826 else {
2827 // class has size. Must synthesize its size.
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00002828 Result += ",sizeof(struct ";
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002829 Result += CDecl->getName();
Steve Naroffba9ac4e2008-03-10 23:33:22 +00002830 if (LangOpts.Microsoft)
2831 Result += "_IMPL";
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002832 Result += ")";
2833 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002834 if (NumIvars > 0) {
Steve Naroffc0a123c2008-03-11 17:37:02 +00002835 Result += ", (struct _objc_ivar_list *)&_OBJC_INSTANCE_VARIABLES_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002836 Result += CDecl->getName();
2837 Result += "\n\t";
2838 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002839 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002840 Result += ",0";
2841 if (IDecl->getNumInstanceMethods() > 0) {
Steve Naroff946a6932008-03-11 00:12:29 +00002842 Result += ", (struct _objc_method_list *)&_OBJC_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002843 Result += CDecl->getName();
2844 Result += ", 0\n\t";
2845 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002846 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002847 Result += ",0,0";
2848 if (CDecl->getNumIntfRefProtocols() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002849 Result += ", (struct _objc_protocol_list*)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002850 Result += CDecl->getName();
2851 Result += ", 0,0\n";
2852 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002853 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002854 Result += ",0,0,0\n";
2855 Result += "};\n";
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002856}
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002857
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002858/// RewriteImplementations - This routine rewrites all method implementations
2859/// and emits meta-data.
2860
2861void RewriteTest::RewriteImplementations(std::string &Result) {
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002862 int ClsDefCount = ClassImplementation.size();
2863 int CatDefCount = CategoryImplementation.size();
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002864
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002865 if (ClsDefCount == 0 && CatDefCount == 0)
2866 return;
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002867 // Rewrite implemented methods
2868 for (int i = 0; i < ClsDefCount; i++)
2869 RewriteImplementationDecl(ClassImplementation[i]);
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002870
Fariborz Jahanian66d6b292007-11-13 20:04:28 +00002871 for (int i = 0; i < CatDefCount; i++)
2872 RewriteImplementationDecl(CategoryImplementation[i]);
2873
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002874 // This is needed for use of offsetof
2875 Result += "#include <stddef.h>\n";
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002876
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002877 // For each implemented class, write out all its meta data.
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002878 for (int i = 0; i < ClsDefCount; i++)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002879 RewriteObjCClassMetaData(ClassImplementation[i], Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002880
2881 // For each implemented category, write out all its meta data.
2882 for (int i = 0; i < CatDefCount; i++)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002883 RewriteObjCCategoryImplDecl(CategoryImplementation[i], Result);
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002884
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002885 // Write objc_symtab metadata
2886 /*
2887 struct _objc_symtab
2888 {
2889 long sel_ref_cnt;
2890 SEL *refs;
2891 short cls_def_cnt;
2892 short cat_def_cnt;
2893 void *defs[cls_def_cnt + cat_def_cnt];
2894 };
2895 */
2896
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002897 Result += "\nstruct _objc_symtab {\n";
2898 Result += "\tlong sel_ref_cnt;\n";
2899 Result += "\tSEL *refs;\n";
2900 Result += "\tshort cls_def_cnt;\n";
2901 Result += "\tshort cat_def_cnt;\n";
2902 Result += "\tvoid *defs[" + utostr(ClsDefCount + CatDefCount)+ "];\n";
2903 Result += "};\n\n";
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002904
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002905 Result += "static struct _objc_symtab "
Steve Naroffdbb65432008-03-12 17:18:30 +00002906 "_OBJC_SYMBOLS __attribute__((used, section (\"__OBJC, __symbols\")))= {\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002907 Result += "\t0, 0, " + utostr(ClsDefCount)
2908 + ", " + utostr(CatDefCount) + "\n";
2909 for (int i = 0; i < ClsDefCount; i++) {
2910 Result += "\t,&_OBJC_CLASS_";
2911 Result += ClassImplementation[i]->getName();
2912 Result += "\n";
2913 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002914
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002915 for (int i = 0; i < CatDefCount; i++) {
2916 Result += "\t,&_OBJC_CATEGORY_";
2917 Result += CategoryImplementation[i]->getClassInterface()->getName();
2918 Result += "_";
2919 Result += CategoryImplementation[i]->getName();
2920 Result += "\n";
2921 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002922
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002923 Result += "};\n\n";
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002924
2925 // Write objc_module metadata
2926
2927 /*
2928 struct _objc_module {
2929 long version;
2930 long size;
2931 const char *name;
2932 struct _objc_symtab *symtab;
2933 }
2934 */
2935
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002936 Result += "\nstruct _objc_module {\n";
2937 Result += "\tlong version;\n";
2938 Result += "\tlong size;\n";
2939 Result += "\tconst char *name;\n";
2940 Result += "\tstruct _objc_symtab *symtab;\n";
2941 Result += "};\n\n";
2942 Result += "static struct _objc_module "
Steve Naroffdbb65432008-03-12 17:18:30 +00002943 "_OBJC_MODULES __attribute__ ((used, section (\"__OBJC, __module_info\")))= {\n";
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002944 Result += "\t" + utostr(OBJC_ABI_VERSION) +
2945 ", sizeof(struct _objc_module), \"\", &_OBJC_SYMBOLS\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002946 Result += "};\n\n";
Steve Naroff4f943c22008-03-10 20:43:59 +00002947
2948 if (LangOpts.Microsoft) {
2949 Result += "#pragma section(\".objc_module_info$B\",long,read,write)\n";
2950 Result += "#pragma data_seq(push, \".objc_module_info$B\")\n";
2951 Result += "static struct _objc_module *_POINTER_OBJC_MODULES = ";
2952 Result += "&_OBJC_MODULES;\n";
2953 Result += "#pragma data_seg(pop)\n\n";
2954 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002955}
Chris Lattner311ff022007-10-16 22:36:42 +00002956