blob: d2af2bd2e01a5470c40de745626d5b25e5989b67 [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);
149 void RewriteProperties(int 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";
324 S += " struct objc_object *isa;\n";
325 S += " int flags;\n";
326 S += " char *str;\n";
327 S += " long length;\n";
328 S += " __NSConstantStringImpl(char *s, long l) :\n";
329 S += " flags(0), str(s), length(l)\n";
Steve Naroff3652c2d2008-03-15 01:36:04 +0000330 S += " { extern int __CFConstantStringClassReference[];\n";
331 S += " isa = (struct objc_object *)__CFConstantStringClassReference;}\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +0000332 S += "};\n";
333 S += "#define __NSCONSTANTSTRINGIMPL\n";
334 S += "#endif\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000335#if 0
336 if (LangOpts.Microsoft)
Steve Naroff4f943c22008-03-10 20:43:59 +0000337 S += "#define __attribute__(X)\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000338#endif
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000339 if (IsHeader) {
340 // insert the whole string when rewriting a header file
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000341 InsertText(SourceLocation::getFileLoc(MainFileID, 0), S.c_str(), S.size());
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000342 }
343 else {
344 // Not rewriting header, exclude the #pragma once pragma
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000345 const char *p = S.c_str() + strlen("#pragma once\n");
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000346 InsertText(SourceLocation::getFileLoc(MainFileID, 0), p, strlen(p));
Chris Lattner9e13c2e2008-01-31 19:38:44 +0000347 }
348}
349
350
Chris Lattnerf04da132007-10-24 17:06:59 +0000351//===----------------------------------------------------------------------===//
352// Top Level Driver Code
353//===----------------------------------------------------------------------===//
354
Chris Lattner8a12c272007-10-11 18:38:32 +0000355void RewriteTest::HandleTopLevelDecl(Decl *D) {
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000356 // Two cases: either the decl could be in the main file, or it could be in a
357 // #included file. If the former, rewrite it now. If the later, check to see
358 // if we rewrote the #include/#import.
359 SourceLocation Loc = D->getLocation();
360 Loc = SM->getLogicalLoc(Loc);
361
362 // If this is for a builtin, ignore it.
363 if (Loc.isInvalid()) return;
364
Steve Naroffebf2b562007-10-23 23:50:29 +0000365 // Look for built-in declarations that we need to refer during the rewrite.
366 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Steve Naroff09b266e2007-10-30 23:14:51 +0000367 RewriteFunctionDecl(FD);
Steve Naroffbeaf2992007-11-03 11:27:19 +0000368 } else if (FileVarDecl *FVD = dyn_cast<FileVarDecl>(D)) {
369 // declared in <Foundation/NSString.h>
370 if (strcmp(FVD->getName(), "_NSConstantStringClassReference") == 0) {
371 ConstantStringClassReference = FVD;
372 return;
373 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000374 } else if (ObjCInterfaceDecl *MD = dyn_cast<ObjCInterfaceDecl>(D)) {
Steve Naroffbef11852007-10-26 20:53:56 +0000375 RewriteInterfaceDecl(MD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000376 } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) {
Steve Naroff423cb562007-10-30 13:30:57 +0000377 RewriteCategoryDecl(CD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000378 } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
Steve Naroff752d6ef2007-10-30 16:42:30 +0000379 RewriteProtocolDecl(PD);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000380 } else if (ObjCForwardProtocolDecl *FP =
381 dyn_cast<ObjCForwardProtocolDecl>(D)){
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000382 RewriteForwardProtocolDecl(FP);
Steve Naroffebf2b562007-10-23 23:50:29 +0000383 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000384 // If we have a decl in the main file, see if we should rewrite it.
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000385 if (SM->getDecomposedFileLoc(Loc).first == MainFileID)
386 return HandleDeclInMainFile(D);
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000387}
388
Chris Lattnerf04da132007-10-24 17:06:59 +0000389/// HandleDeclInMainFile - This is called for each top-level decl defined in the
390/// main file of the input.
391void RewriteTest::HandleDeclInMainFile(Decl *D) {
392 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
393 if (Stmt *Body = FD->getBody())
Steve Narofff3473a72007-11-09 15:20:18 +0000394 FD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
Steve Narofff69cc5d2008-01-30 19:17:43 +0000395
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000396 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Steve Naroff874e2322007-11-15 10:28:18 +0000397 if (Stmt *Body = MD->getBody()) {
398 //Body->dump();
399 CurMethodDecl = MD;
Steve Naroff71c0a952007-11-13 23:01:27 +0000400 MD->setBody(RewriteFunctionBodyOrGlobalInitializer(Body));
Steve Naroff874e2322007-11-15 10:28:18 +0000401 CurMethodDecl = 0;
402 }
Steve Naroff71c0a952007-11-13 23:01:27 +0000403 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000404 if (ObjCImplementationDecl *CI = dyn_cast<ObjCImplementationDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000405 ClassImplementation.push_back(CI);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000406 else if (ObjCCategoryImplDecl *CI = dyn_cast<ObjCCategoryImplDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000407 CategoryImplementation.push_back(CI);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000408 else if (ObjCClassDecl *CD = dyn_cast<ObjCClassDecl>(D))
Chris Lattnerf04da132007-10-24 17:06:59 +0000409 RewriteForwardClassDecl(CD);
Steve Narofff3473a72007-11-09 15:20:18 +0000410 else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000411 RewriteObjCQualifiedInterfaceTypes(VD);
Steve Narofff3473a72007-11-09 15:20:18 +0000412 if (VD->getInit())
413 RewriteFunctionBodyOrGlobalInitializer(VD->getInit());
414 }
Chris Lattnerf04da132007-10-24 17:06:59 +0000415 // Nothing yet.
416}
417
418RewriteTest::~RewriteTest() {
419 // Get the top-level buffer that this corresponds to.
Chris Lattner74a0c772007-11-08 04:27:23 +0000420
421 // Rewrite tabs if we care.
422 //RewriteTabs();
Chris Lattnerf04da132007-10-24 17:06:59 +0000423
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000424 RewriteInclude();
425
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000426 // Rewrite Objective-c meta data*
427 std::string ResultStr;
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +0000428 RewriteImplementations(ResultStr);
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000429
Chris Lattnerf04da132007-10-24 17:06:59 +0000430 // Get the buffer corresponding to MainFileID. If we haven't changed it, then
431 // we are done.
432 if (const RewriteBuffer *RewriteBuf =
433 Rewrite.getRewriteBufferFor(MainFileID)) {
Steve Naroffbeaf2992007-11-03 11:27:19 +0000434 //printf("Changed:\n");
Chris Lattnerf04da132007-10-24 17:06:59 +0000435 std::string S(RewriteBuf->begin(), RewriteBuf->end());
436 printf("%s\n", S.c_str());
437 } else {
438 printf("No changes\n");
439 }
Fariborz Jahanian4402d812007-11-07 18:40:28 +0000440 // Emit metadata.
441 printf("%s", ResultStr.c_str());
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +0000442}
443
Chris Lattnerf04da132007-10-24 17:06:59 +0000444//===----------------------------------------------------------------------===//
445// Syntactic (non-AST) Rewriting Code
446//===----------------------------------------------------------------------===//
447
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000448void RewriteTest::RewriteInclude() {
449 SourceLocation LocStart = SourceLocation::getFileLoc(MainFileID, 0);
450 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
451 const char *MainBufStart = MainBuf.first;
452 const char *MainBufEnd = MainBuf.second;
453 size_t ImportLen = strlen("import");
454 size_t IncludeLen = strlen("include");
455
Fariborz Jahanianaf57b462008-01-19 01:03:17 +0000456 // Loop over the whole file, looking for includes.
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000457 for (const char *BufPtr = MainBufStart; BufPtr < MainBufEnd; ++BufPtr) {
458 if (*BufPtr == '#') {
459 if (++BufPtr == MainBufEnd)
460 return;
461 while (*BufPtr == ' ' || *BufPtr == '\t')
462 if (++BufPtr == MainBufEnd)
463 return;
464 if (!strncmp(BufPtr, "import", ImportLen)) {
465 // replace import with include
466 SourceLocation ImportLoc =
467 LocStart.getFileLocWithOffset(BufPtr-MainBufStart);
Chris Lattneraadaf782008-01-31 19:51:04 +0000468 ReplaceText(ImportLoc, ImportLen, "include", IncludeLen);
Fariborz Jahanian452b8992008-01-19 00:30:35 +0000469 BufPtr += ImportLen;
470 }
471 }
472 }
Chris Lattner2c64b7b2007-10-16 21:07:07 +0000473}
474
Chris Lattnerf04da132007-10-24 17:06:59 +0000475void RewriteTest::RewriteTabs() {
476 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
477 const char *MainBufStart = MainBuf.first;
478 const char *MainBufEnd = MainBuf.second;
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +0000479
Chris Lattnerf04da132007-10-24 17:06:59 +0000480 // Loop over the whole file, looking for tabs.
481 for (const char *BufPtr = MainBufStart; BufPtr != MainBufEnd; ++BufPtr) {
482 if (*BufPtr != '\t')
483 continue;
484
485 // Okay, we found a tab. This tab will turn into at least one character,
486 // but it depends on which 'virtual column' it is in. Compute that now.
487 unsigned VCol = 0;
488 while (BufPtr-VCol != MainBufStart && BufPtr[-VCol-1] != '\t' &&
489 BufPtr[-VCol-1] != '\n' && BufPtr[-VCol-1] != '\r')
490 ++VCol;
491
492 // Okay, now that we know the virtual column, we know how many spaces to
493 // insert. We assume 8-character tab-stops.
494 unsigned Spaces = 8-(VCol & 7);
495
496 // Get the location of the tab.
497 SourceLocation TabLoc =
498 SourceLocation::getFileLoc(MainFileID, BufPtr-MainBufStart);
499
500 // Rewrite the single tab character into a sequence of spaces.
Chris Lattneraadaf782008-01-31 19:51:04 +0000501 ReplaceText(TabLoc, 1, " ", Spaces);
Chris Lattnerf04da132007-10-24 17:06:59 +0000502 }
Chris Lattner8a12c272007-10-11 18:38:32 +0000503}
504
505
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000506void RewriteTest::RewriteForwardClassDecl(ObjCClassDecl *ClassDecl) {
Chris Lattnerf04da132007-10-24 17:06:59 +0000507 int numDecls = ClassDecl->getNumForwardDecls();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000508 ObjCInterfaceDecl **ForwardDecls = ClassDecl->getForwardDecls();
Chris Lattnerf04da132007-10-24 17:06:59 +0000509
510 // Get the start location and compute the semi location.
511 SourceLocation startLoc = ClassDecl->getLocation();
512 const char *startBuf = SM->getCharacterData(startLoc);
513 const char *semiPtr = strchr(startBuf, ';');
514
515 // Translate to typedef's that forward reference structs with the same name
516 // as the class. As a convenience, we include the original declaration
517 // as a comment.
518 std::string typedefString;
519 typedefString += "// ";
Steve Naroff934f2762007-10-24 22:48:43 +0000520 typedefString.append(startBuf, semiPtr-startBuf+1);
521 typedefString += "\n";
522 for (int i = 0; i < numDecls; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000523 ObjCInterfaceDecl *ForwardDecl = ForwardDecls[i];
Steve Naroff32174822007-11-09 12:50:28 +0000524 typedefString += "#ifndef _REWRITER_typedef_";
525 typedefString += ForwardDecl->getName();
526 typedefString += "\n";
527 typedefString += "#define _REWRITER_typedef_";
528 typedefString += ForwardDecl->getName();
529 typedefString += "\n";
Steve Naroff352336b2007-11-05 14:36:37 +0000530 typedefString += "typedef struct objc_object ";
Steve Naroff934f2762007-10-24 22:48:43 +0000531 typedefString += ForwardDecl->getName();
Steve Naroff32174822007-11-09 12:50:28 +0000532 typedefString += ";\n#endif\n";
Steve Naroff934f2762007-10-24 22:48:43 +0000533 }
534
535 // Replace the @class with typedefs corresponding to the classes.
Chris Lattneraadaf782008-01-31 19:51:04 +0000536 ReplaceText(startLoc, semiPtr-startBuf+1,
537 typedefString.c_str(), typedefString.size());
Chris Lattnerf04da132007-10-24 17:06:59 +0000538}
539
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000540void RewriteTest::RewriteMethodDeclaration(ObjCMethodDecl *Method) {
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000541 SourceLocation LocStart = Method->getLocStart();
542 SourceLocation LocEnd = Method->getLocEnd();
Steve Naroff423cb562007-10-30 13:30:57 +0000543
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000544 if (SM->getLineNumber(LocEnd) > SM->getLineNumber(LocStart)) {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000545 InsertText(LocStart, "/* ", 3);
Chris Lattneraadaf782008-01-31 19:51:04 +0000546 ReplaceText(LocEnd, 1, ";*/ ", 4);
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000547 } else {
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000548 InsertText(LocStart, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000549 }
550}
551
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000552void RewriteTest::RewriteProperties(int nProperties, ObjCPropertyDecl **Properties)
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000553{
554 for (int i = 0; i < nProperties; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000555 ObjCPropertyDecl *Property = Properties[i];
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000556 SourceLocation Loc = Property->getLocation();
557
Chris Lattneraadaf782008-01-31 19:51:04 +0000558 ReplaceText(Loc, 0, "// ", 3);
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000559
560 // FIXME: handle properties that are declared across multiple lines.
561 }
562}
563
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000564void RewriteTest::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) {
Steve Naroff423cb562007-10-30 13:30:57 +0000565 SourceLocation LocStart = CatDecl->getLocStart();
566
567 // FIXME: handle category headers that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000568 ReplaceText(LocStart, 0, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000569
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000570 for (ObjCCategoryDecl::instmeth_iterator I = CatDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000571 E = CatDecl->instmeth_end(); I != E; ++I)
572 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000573 for (ObjCCategoryDecl::classmeth_iterator I = CatDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000574 E = CatDecl->classmeth_end(); I != E; ++I)
575 RewriteMethodDeclaration(*I);
576
Steve Naroff423cb562007-10-30 13:30:57 +0000577 // Lastly, comment out the @end.
Chris Lattneraadaf782008-01-31 19:51:04 +0000578 ReplaceText(CatDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroff423cb562007-10-30 13:30:57 +0000579}
580
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000581void RewriteTest::RewriteProtocolDecl(ObjCProtocolDecl *PDecl) {
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000582 std::pair<const char*, const char*> MainBuf = SM->getBufferData(MainFileID);
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000583
Steve Naroff752d6ef2007-10-30 16:42:30 +0000584 SourceLocation LocStart = PDecl->getLocStart();
585
586 // FIXME: handle protocol headers that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000587 ReplaceText(LocStart, 0, "// ", 3);
Steve Naroff752d6ef2007-10-30 16:42:30 +0000588
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000589 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000590 E = PDecl->instmeth_end(); I != E; ++I)
591 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000592 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000593 E = PDecl->classmeth_end(); I != E; ++I)
594 RewriteMethodDeclaration(*I);
595
Steve Naroff752d6ef2007-10-30 16:42:30 +0000596 // Lastly, comment out the @end.
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000597 SourceLocation LocEnd = PDecl->getAtEndLoc();
Chris Lattneraadaf782008-01-31 19:51:04 +0000598 ReplaceText(LocEnd, 0, "// ", 3);
Steve Naroff8cc764c2007-11-14 15:03:57 +0000599
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000600 // Must comment out @optional/@required
601 const char *startBuf = SM->getCharacterData(LocStart);
602 const char *endBuf = SM->getCharacterData(LocEnd);
603 for (const char *p = startBuf; p < endBuf; p++) {
604 if (*p == '@' && !strncmp(p+1, "optional", strlen("optional"))) {
605 std::string CommentedOptional = "/* @optional */";
Steve Naroff8cc764c2007-11-14 15:03:57 +0000606 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattneraadaf782008-01-31 19:51:04 +0000607 ReplaceText(OptionalLoc, strlen("@optional"),
608 CommentedOptional.c_str(), CommentedOptional.size());
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000609
610 }
611 else if (*p == '@' && !strncmp(p+1, "required", strlen("required"))) {
612 std::string CommentedRequired = "/* @required */";
Steve Naroff8cc764c2007-11-14 15:03:57 +0000613 SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf);
Chris Lattneraadaf782008-01-31 19:51:04 +0000614 ReplaceText(OptionalLoc, strlen("@required"),
615 CommentedRequired.c_str(), CommentedRequired.size());
Fariborz Jahanianb82b3ea2007-11-14 01:37:46 +0000616
617 }
618 }
Steve Naroff752d6ef2007-10-30 16:42:30 +0000619}
620
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000621void RewriteTest::RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *PDecl) {
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000622 SourceLocation LocStart = PDecl->getLocation();
Steve Naroffb7fa9922007-11-14 03:37:28 +0000623 if (LocStart.isInvalid())
624 assert(false && "Invalid SourceLocation");
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000625 // FIXME: handle forward protocol that are declared across multiple lines.
Chris Lattneraadaf782008-01-31 19:51:04 +0000626 ReplaceText(LocStart, 0, "// ", 3);
Fariborz Jahaniand175ddf2007-11-14 00:42:16 +0000627}
628
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000629void RewriteTest::RewriteObjCMethodDecl(ObjCMethodDecl *OMD,
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000630 std::string &ResultStr) {
631 ResultStr += "\nstatic ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000632 if (OMD->getResultType()->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000633 ResultStr += "id";
634 else
635 ResultStr += OMD->getResultType().getAsString();
Fariborz Jahanian531a1ea2008-01-10 01:39:52 +0000636 ResultStr += " ";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000637
638 // Unique method name
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000639 std::string NameStr;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000640
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000641 if (OMD->isInstance())
642 NameStr += "_I_";
643 else
644 NameStr += "_C_";
645
646 NameStr += OMD->getClassInterface()->getName();
647 NameStr += "_";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000648
649 NamedDecl *MethodContext = OMD->getMethodContext();
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000650 if (ObjCCategoryImplDecl *CID =
651 dyn_cast<ObjCCategoryImplDecl>(MethodContext)) {
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000652 NameStr += CID->getName();
653 NameStr += "_";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000654 }
655 // Append selector names, replacing ':' with '_'
656 const char *selName = OMD->getSelector().getName().c_str();
657 if (!strchr(selName, ':'))
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000658 NameStr += OMD->getSelector().getName();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000659 else {
660 std::string selString = OMD->getSelector().getName();
661 int len = selString.size();
662 for (int i = 0; i < len; i++)
663 if (selString[i] == ':')
664 selString[i] = '_';
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000665 NameStr += selString;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000666 }
Fariborz Jahanianb7908b52007-11-13 21:02:00 +0000667 // Remember this name for metadata emission
668 MethodInternalNames[OMD] = NameStr;
669 ResultStr += NameStr;
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000670
671 // Rewrite arguments
672 ResultStr += "(";
673
674 // invisible arguments
675 if (OMD->isInstance()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000676 QualType selfTy = Context->getObjCInterfaceType(OMD->getClassInterface());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000677 selfTy = Context->getPointerType(selfTy);
Steve Naroff05b8c782008-03-12 00:25:36 +0000678 if (!LangOpts.Microsoft) {
679 if (ObjCSynthesizedStructs.count(OMD->getClassInterface()))
680 ResultStr += "struct ";
681 }
682 // When rewriting for Microsoft, explicitly omit the structure name.
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000683 ResultStr += OMD->getClassInterface()->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000684 ResultStr += " *";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000685 }
686 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000687 ResultStr += Context->getObjCIdType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000688
689 ResultStr += " self, ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000690 ResultStr += Context->getObjCSelType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000691 ResultStr += " _cmd";
692
693 // Method arguments.
694 for (int i = 0; i < OMD->getNumParams(); i++) {
695 ParmVarDecl *PDecl = OMD->getParamDecl(i);
696 ResultStr += ", ";
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000697 if (PDecl->getType()->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +0000698 ResultStr += "id";
699 else
700 ResultStr += PDecl->getType().getAsString();
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000701 ResultStr += " ";
702 ResultStr += PDecl->getName();
703 }
Fariborz Jahanian7c39ff72008-01-21 20:14:23 +0000704 if (OMD->isVariadic())
705 ResultStr += ", ...";
Fariborz Jahanian531a1ea2008-01-10 01:39:52 +0000706 ResultStr += ") ";
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000707
708}
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000709void RewriteTest::RewriteImplementationDecl(NamedDecl *OID) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000710 ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID);
711 ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000712
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000713 if (IMD)
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000714 InsertText(IMD->getLocStart(), "// ", 3);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000715 else
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000716 InsertText(CID->getLocStart(), "// ", 3);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000717
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000718 for (ObjCCategoryImplDecl::instmeth_iterator
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000719 I = IMD ? IMD->instmeth_begin() : CID->instmeth_begin(),
720 E = IMD ? IMD->instmeth_end() : CID->instmeth_end(); I != E; ++I) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000721 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000722 ObjCMethodDecl *OMD = *I;
723 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000724 SourceLocation LocStart = OMD->getLocStart();
725 SourceLocation LocEnd = OMD->getBody()->getLocStart();
726
727 const char *startBuf = SM->getCharacterData(LocStart);
728 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattneraadaf782008-01-31 19:51:04 +0000729 ReplaceText(LocStart, endBuf-startBuf,
730 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000731 }
732
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000733 for (ObjCCategoryImplDecl::classmeth_iterator
Chris Lattnerab4c4d52007-12-12 07:46:12 +0000734 I = IMD ? IMD->classmeth_begin() : CID->classmeth_begin(),
735 E = IMD ? IMD->classmeth_end() : CID->classmeth_end(); I != E; ++I) {
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000736 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000737 ObjCMethodDecl *OMD = *I;
738 RewriteObjCMethodDecl(OMD, ResultStr);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000739 SourceLocation LocStart = OMD->getLocStart();
740 SourceLocation LocEnd = OMD->getBody()->getLocStart();
741
742 const char *startBuf = SM->getCharacterData(LocStart);
743 const char *endBuf = SM->getCharacterData(LocEnd);
Chris Lattneraadaf782008-01-31 19:51:04 +0000744 ReplaceText(LocStart, endBuf-startBuf,
745 ResultStr.c_str(), ResultStr.size());
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000746 }
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000747 if (IMD)
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000748 InsertText(IMD->getLocEnd(), "// ", 3);
Fariborz Jahanian66d6b292007-11-13 20:04:28 +0000749 else
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000750 InsertText(CID->getLocEnd(), "// ", 3);
Fariborz Jahanian48a0b6a2007-11-13 18:44:14 +0000751}
752
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000753void RewriteTest::RewriteInterfaceDecl(ObjCInterfaceDecl *ClassDecl) {
Steve Narofff908a872007-10-30 02:23:23 +0000754 std::string ResultStr;
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000755 if (!ObjCForwardDecls.count(ClassDecl)) {
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000756 // we haven't seen a forward decl - generate a typedef.
Steve Naroff5086a8d2007-11-14 23:02:56 +0000757 ResultStr = "#ifndef _REWRITER_typedef_";
Steve Naroff32174822007-11-09 12:50:28 +0000758 ResultStr += ClassDecl->getName();
759 ResultStr += "\n";
760 ResultStr += "#define _REWRITER_typedef_";
761 ResultStr += ClassDecl->getName();
762 ResultStr += "\n";
Steve Naroff61ed9ca2008-03-10 23:16:54 +0000763 ResultStr += "typedef struct objc_object ";
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000764 ResultStr += ClassDecl->getName();
Steve Naroff32174822007-11-09 12:50:28 +0000765 ResultStr += ";\n#endif\n";
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000766 // Mark this typedef as having been generated.
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000767 ObjCForwardDecls.insert(ClassDecl);
Steve Naroff6c6a2db2007-11-01 03:35:41 +0000768 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000769 SynthesizeObjCInternalStruct(ClassDecl, ResultStr);
Steve Narofff908a872007-10-30 02:23:23 +0000770
Fariborz Jahanian957cf652007-11-07 00:09:37 +0000771 RewriteProperties(ClassDecl->getNumPropertyDecl(),
772 ClassDecl->getPropertyDecl());
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000773 for (ObjCInterfaceDecl::instmeth_iterator I = ClassDecl->instmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000774 E = ClassDecl->instmeth_end(); I != E; ++I)
775 RewriteMethodDeclaration(*I);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000776 for (ObjCInterfaceDecl::classmeth_iterator I = ClassDecl->classmeth_begin(),
Steve Naroff58dbdeb2007-12-14 23:37:57 +0000777 E = ClassDecl->classmeth_end(); I != E; ++I)
778 RewriteMethodDeclaration(*I);
779
Steve Naroff2feac5e2007-10-30 03:43:13 +0000780 // Lastly, comment out the @end.
Chris Lattneraadaf782008-01-31 19:51:04 +0000781 ReplaceText(ClassDecl->getAtEndLoc(), 0, "// ", 3);
Steve Naroffbef11852007-10-26 20:53:56 +0000782}
783
Steve Naroff7e3411b2007-11-15 02:58:25 +0000784Stmt *RewriteTest::RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000785 ObjCIvarDecl *D = IV->getDecl();
Steve Naroff05b8c782008-03-12 00:25:36 +0000786 if (CurMethodDecl) {
787 if (const PointerType *pType = IV->getBase()->getType()->getAsPointerType()) {
788 ObjCInterfaceType *intT = dyn_cast<ObjCInterfaceType>(pType->getPointeeType());
789 if (CurMethodDecl->getClassInterface() == intT->getDecl()) {
Steve Naroff39bbd9f2008-03-12 21:09:20 +0000790 // lookup which class implements the instance variable.
791 ObjCInterfaceDecl *clsDeclared = 0;
792 intT->getDecl()->lookupInstanceVariable(D->getIdentifier(), clsDeclared);
793 assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class");
Steve Naroff5518e7c2008-03-12 23:15:19 +0000794
795 // Synthesize an explicit cast to gain access to the ivar.
Steve Naroff39bbd9f2008-03-12 21:09:20 +0000796 std::string RecName = clsDeclared->getIdentifier()->getName();
Steve Naroff05b8c782008-03-12 00:25:36 +0000797 RecName += "_IMPL";
798 IdentifierInfo *II = &Context->Idents.get(RecName.c_str());
Chris Lattner6c2b6eb2008-03-15 06:12:44 +0000799 RecordDecl *RD = RecordDecl::Create(Decl::Struct, SourceLocation(), II, 0, *Context);
Steve Naroff05b8c782008-03-12 00:25:36 +0000800 assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl");
801 QualType castT = Context->getPointerType(Context->getTagDeclType(RD));
802 CastExpr *castExpr = new CastExpr(castT, IV->getBase(), SourceLocation());
803 // Don't forget the parens to enforce the proper binding.
804 ParenExpr *PE = new ParenExpr(SourceLocation(), SourceLocation(), castExpr);
805 if (IV->isFreeIvar()) {
806 MemberExpr *ME = new MemberExpr(PE, true, D, IV->getLocation(), D->getType());
807 ReplaceStmt(IV, ME);
808 delete IV;
809 return ME;
810 } else {
Chris Lattnerdcbc5b02008-01-31 19:37:57 +0000811 ReplaceStmt(IV->getBase(), PE);
Steve Naroff5518e7c2008-03-12 23:15:19 +0000812 // Cannot delete IV->getBase(), since PE points to it.
813 // Replace the old base with the cast. This is important when doing
814 // embedded rewrites. For example, [newInv->_container addObject:0].
815 IV->setBase(PE);
816 return IV;
Steve Naroffc2a689b2007-11-15 11:33:00 +0000817 }
818 }
819 }
Steve Naroffc2a689b2007-11-15 11:33:00 +0000820 }
Steve Naroff5518e7c2008-03-12 23:15:19 +0000821 // FIXME: Implement public ivar access from a function.
Steve Naroff05b8c782008-03-12 00:25:36 +0000822 Expr *Replacement = new MemberExpr(IV->getBase(), true, D,
823 IV->getLocation(), D->getType());
824 ReplaceStmt(IV, Replacement);
825 delete IV;
826 return Replacement;
Steve Naroff7e3411b2007-11-15 02:58:25 +0000827}
828
Chris Lattnerf04da132007-10-24 17:06:59 +0000829//===----------------------------------------------------------------------===//
830// Function Body / Expression rewriting
831//===----------------------------------------------------------------------===//
832
Steve Narofff3473a72007-11-09 15:20:18 +0000833Stmt *RewriteTest::RewriteFunctionBodyOrGlobalInitializer(Stmt *S) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000834 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
835 isa<DoStmt>(S) || isa<ForStmt>(S))
836 Stmts.push_back(S);
837 else if (isa<ObjCForCollectionStmt>(S)) {
838 Stmts.push_back(S);
839 ObjCBcLabelNo.push_back(++BcLabelCount);
840 }
841
Chris Lattner338d1e22008-01-31 05:10:40 +0000842 SourceLocation OrigStmtEnd = S->getLocEnd();
843
844 // Start by rewriting all children.
Chris Lattner311ff022007-10-16 22:36:42 +0000845 for (Stmt::child_iterator CI = S->child_begin(), E = S->child_end();
846 CI != E; ++CI)
Steve Naroff75730982007-11-07 04:08:17 +0000847 if (*CI) {
Steve Narofff3473a72007-11-09 15:20:18 +0000848 Stmt *newStmt = RewriteFunctionBodyOrGlobalInitializer(*CI);
Steve Naroff75730982007-11-07 04:08:17 +0000849 if (newStmt)
850 *CI = newStmt;
851 }
Steve Naroffebf2b562007-10-23 23:50:29 +0000852
853 // Handle specific things.
854 if (ObjCEncodeExpr *AtEncode = dyn_cast<ObjCEncodeExpr>(S))
855 return RewriteAtEncode(AtEncode);
Steve Naroff7e3411b2007-11-15 02:58:25 +0000856
857 if (ObjCIvarRefExpr *IvarRefExpr = dyn_cast<ObjCIvarRefExpr>(S))
858 return RewriteObjCIvarRefExpr(IvarRefExpr);
Steve Naroffb42f8412007-11-05 14:50:49 +0000859
860 if (ObjCSelectorExpr *AtSelector = dyn_cast<ObjCSelectorExpr>(S))
861 return RewriteAtSelector(AtSelector);
Steve Narofff69cc5d2008-01-30 19:17:43 +0000862
Steve Naroffbeaf2992007-11-03 11:27:19 +0000863 if (ObjCStringLiteral *AtString = dyn_cast<ObjCStringLiteral>(S))
864 return RewriteObjCStringLiteral(AtString);
Steve Naroffebf2b562007-10-23 23:50:29 +0000865
Steve Naroff934f2762007-10-24 22:48:43 +0000866 if (ObjCMessageExpr *MessExpr = dyn_cast<ObjCMessageExpr>(S)) {
867 // Before we rewrite it, put the original message expression in a comment.
868 SourceLocation startLoc = MessExpr->getLocStart();
869 SourceLocation endLoc = MessExpr->getLocEnd();
870
871 const char *startBuf = SM->getCharacterData(startLoc);
872 const char *endBuf = SM->getCharacterData(endLoc);
873
874 std::string messString;
875 messString += "// ";
876 messString.append(startBuf, endBuf-startBuf+1);
877 messString += "\n";
Steve Naroffbef11852007-10-26 20:53:56 +0000878
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000879 // FIXME: Missing definition of
880 // InsertText(clang::SourceLocation, char const*, unsigned int).
881 // InsertText(startLoc, messString.c_str(), messString.size());
Steve Naroff934f2762007-10-24 22:48:43 +0000882 // Tried this, but it didn't work either...
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000883 // ReplaceText(startLoc, 0, messString.c_str(), messString.size());
Steve Naroffebf2b562007-10-23 23:50:29 +0000884 return RewriteMessageExpr(MessExpr);
Steve Naroff934f2762007-10-24 22:48:43 +0000885 }
Fariborz Jahanian909f02a2007-11-05 17:47:33 +0000886
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000887 if (ObjCAtTryStmt *StmtTry = dyn_cast<ObjCAtTryStmt>(S))
888 return RewriteObjCTryStmt(StmtTry);
Steve Naroff2bd03922007-11-07 15:32:26 +0000889
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000890 if (ObjCAtSynchronizedStmt *StmtTry = dyn_cast<ObjCAtSynchronizedStmt>(S))
891 return RewriteObjCSynchronizedStmt(StmtTry);
892
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000893 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S))
894 return RewriteObjCThrowStmt(StmtThrow);
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +0000895
896 if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S))
897 return RewriteObjCProtocolExpr(ProtocolExp);
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000898
899 if (ObjCForCollectionStmt *StmtForCollection =
900 dyn_cast<ObjCForCollectionStmt>(S))
Chris Lattner338d1e22008-01-31 05:10:40 +0000901 return RewriteObjCForCollectionStmt(StmtForCollection, OrigStmtEnd);
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000902 if (BreakStmt *StmtBreakStmt =
903 dyn_cast<BreakStmt>(S))
904 return RewriteBreakStmt(StmtBreakStmt);
905 if (ContinueStmt *StmtContinueStmt =
906 dyn_cast<ContinueStmt>(S))
907 return RewriteContinueStmt(StmtContinueStmt);
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000908
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000909 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) ||
910 isa<DoStmt>(S) || isa<ForStmt>(S)) {
911 assert(!Stmts.empty() && "Statement stack is empty");
912 assert ((isa<SwitchStmt>(Stmts.back()) || isa<WhileStmt>(Stmts.back()) ||
913 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
914 && "Statement stack mismatch");
915 Stmts.pop_back();
916 }
Steve Naroff874e2322007-11-15 10:28:18 +0000917#if 0
918 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(S)) {
919 CastExpr *Replacement = new CastExpr(ICE->getType(), ICE->getSubExpr(), SourceLocation());
920 // Get the new text.
921 std::ostringstream Buf;
922 Replacement->printPretty(Buf);
923 const std::string &Str = Buf.str();
924
925 printf("CAST = %s\n", &Str[0]);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +0000926 InsertText(ICE->getSubExpr()->getLocStart(), &Str[0], Str.size());
Steve Naroff874e2322007-11-15 10:28:18 +0000927 delete S;
928 return Replacement;
929 }
930#endif
Chris Lattnere64b7772007-10-24 16:57:36 +0000931 // Return this stmt unmodified.
932 return S;
Chris Lattner311ff022007-10-16 22:36:42 +0000933}
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000934
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000935/// SynthCountByEnumWithState - To print:
936/// ((unsigned int (*)
937/// (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
938/// (void *)objc_msgSend)((id)l_collection,
939/// sel_registerName(
940/// "countByEnumeratingWithState:objects:count:"),
941/// &enumState,
942/// (id *)items, (unsigned int)16)
943///
944void RewriteTest::SynthCountByEnumWithState(std::string &buf) {
945 buf += "((unsigned int (*) (id, SEL, struct __objcFastEnumerationState *, "
946 "id *, unsigned int))(void *)objc_msgSend)";
947 buf += "\n\t\t";
948 buf += "((id)l_collection,\n\t\t";
949 buf += "sel_registerName(\"countByEnumeratingWithState:objects:count:\"),";
950 buf += "\n\t\t";
951 buf += "&enumState, "
952 "(id *)items, (unsigned int)16)";
953}
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000954
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000955/// RewriteBreakStmt - Rewrite for a break-stmt inside an ObjC2's foreach
956/// statement to exit to its outer synthesized loop.
957///
958Stmt *RewriteTest::RewriteBreakStmt(BreakStmt *S) {
959 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
960 return S;
961 // replace break with goto __break_label
962 std::string buf;
963
964 SourceLocation startLoc = S->getLocStart();
965 buf = "goto __break_label_";
966 buf += utostr(ObjCBcLabelNo.back());
Chris Lattneraadaf782008-01-31 19:51:04 +0000967 ReplaceText(startLoc, strlen("break"), buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000968
969 return 0;
970}
971
972/// RewriteContinueStmt - Rewrite for a continue-stmt inside an ObjC2's foreach
973/// statement to continue with its inner synthesized loop.
974///
975Stmt *RewriteTest::RewriteContinueStmt(ContinueStmt *S) {
976 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back()))
977 return S;
978 // replace continue with goto __continue_label
979 std::string buf;
980
981 SourceLocation startLoc = S->getLocStart();
982 buf = "goto __continue_label_";
983 buf += utostr(ObjCBcLabelNo.back());
Chris Lattneraadaf782008-01-31 19:51:04 +0000984 ReplaceText(startLoc, strlen("continue"), buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +0000985
986 return 0;
987}
988
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000989/// RewriteObjCForCollectionStmt - Rewriter for ObjC2's foreach statement.
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000990/// It rewrites:
991/// for ( type elem in collection) { stmts; }
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +0000992
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000993/// Into:
994/// {
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000995/// type elem;
996/// struct __objcFastEnumerationState enumState = { 0 };
Fariborz Jahanian10d24f02008-01-07 21:40:22 +0000997/// id items[16];
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +0000998/// id l_collection = (id)collection;
999/// unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
1000/// objects:items count:16];
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001001/// if (limit) {
1002/// unsigned long startMutations = *enumState.mutationsPtr;
1003/// do {
1004/// unsigned long counter = 0;
1005/// do {
1006/// if (startMutations != *enumState.mutationsPtr)
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001007/// objc_enumerationMutation(l_collection);
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001008/// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001009/// stmts;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001010/// __continue_label: ;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001011/// } while (counter < limit);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001012/// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1013/// objects:items count:16]);
1014/// elem = nil;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001015/// __break_label: ;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001016/// }
1017/// else
1018/// elem = nil;
1019/// }
1020///
Chris Lattner338d1e22008-01-31 05:10:40 +00001021Stmt *RewriteTest::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
1022 SourceLocation OrigEnd) {
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001023 assert(!Stmts.empty() && "ObjCForCollectionStmt - Statement stack empty");
1024 assert(isa<ObjCForCollectionStmt>(Stmts.back()) &&
1025 "ObjCForCollectionStmt Statement stack mismatch");
1026 assert(!ObjCBcLabelNo.empty() &&
1027 "ObjCForCollectionStmt - Label No stack empty");
1028
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001029 SourceLocation startLoc = S->getLocStart();
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001030 const char *startBuf = SM->getCharacterData(startLoc);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001031 const char *elementName;
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001032 std::string elementTypeAsString;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001033 std::string buf;
1034 buf = "\n{\n\t";
1035 if (DeclStmt *DS = dyn_cast<DeclStmt>(S->getElement())) {
1036 // type elem;
1037 QualType ElementType = cast<ValueDecl>(DS->getDecl())->getType();
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001038 elementTypeAsString = ElementType.getAsString();
1039 buf += elementTypeAsString;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001040 buf += " ";
1041 elementName = DS->getDecl()->getName();
1042 buf += elementName;
1043 buf += ";\n\t";
1044 }
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001045 else if (DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S->getElement())) {
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001046 elementName = DR->getDecl()->getName();
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001047 elementTypeAsString = DR->getDecl()->getType().getAsString();
1048 }
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001049 else
1050 assert(false && "RewriteObjCForCollectionStmt - bad element kind");
1051
1052 // struct __objcFastEnumerationState enumState = { 0 };
1053 buf += "struct __objcFastEnumerationState enumState = { 0 };\n\t";
1054 // id items[16];
1055 buf += "id items[16];\n\t";
1056 // id l_collection = (id)
1057 buf += "id l_collection = (id)";
Fariborz Jahanian75712282008-01-10 00:24:29 +00001058 // Find start location of 'collection' the hard way!
1059 const char *startCollectionBuf = startBuf;
1060 startCollectionBuf += 3; // skip 'for'
1061 startCollectionBuf = strchr(startCollectionBuf, '(');
1062 startCollectionBuf++; // skip '('
1063 // find 'in' and skip it.
1064 while (*startCollectionBuf != ' ' ||
1065 *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' ||
1066 (*(startCollectionBuf+3) != ' ' &&
1067 *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '('))
1068 startCollectionBuf++;
1069 startCollectionBuf += 3;
1070
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001071 // Replace: "for (type element in" with string constructed thus far.
Chris Lattneraadaf782008-01-31 19:51:04 +00001072 ReplaceText(startLoc, startCollectionBuf - startBuf,
1073 buf.c_str(), buf.size());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001074 // Replace ')' in for '(' type elem in collection ')' with ';'
Fariborz Jahanian75712282008-01-10 00:24:29 +00001075 SourceLocation rightParenLoc = S->getRParenLoc();
1076 const char *rparenBuf = SM->getCharacterData(rightParenLoc);
1077 SourceLocation lparenLoc = startLoc.getFileLocWithOffset(rparenBuf-startBuf);
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001078 buf = ";\n\t";
1079
1080 // unsigned long limit = [l_collection countByEnumeratingWithState:&enumState
1081 // objects:items count:16];
1082 // which is synthesized into:
1083 // unsigned int limit =
1084 // ((unsigned int (*)
1085 // (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int))
1086 // (void *)objc_msgSend)((id)l_collection,
1087 // sel_registerName(
1088 // "countByEnumeratingWithState:objects:count:"),
1089 // (struct __objcFastEnumerationState *)&state,
1090 // (id *)items, (unsigned int)16);
1091 buf += "unsigned long limit =\n\t\t";
1092 SynthCountByEnumWithState(buf);
1093 buf += ";\n\t";
1094 /// if (limit) {
1095 /// unsigned long startMutations = *enumState.mutationsPtr;
1096 /// do {
1097 /// unsigned long counter = 0;
1098 /// do {
1099 /// if (startMutations != *enumState.mutationsPtr)
1100 /// objc_enumerationMutation(l_collection);
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001101 /// elem = (type)enumState.itemsPtr[counter++];
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001102 buf += "if (limit) {\n\t";
1103 buf += "unsigned long startMutations = *enumState.mutationsPtr;\n\t";
1104 buf += "do {\n\t\t";
1105 buf += "unsigned long counter = 0;\n\t\t";
1106 buf += "do {\n\t\t\t";
1107 buf += "if (startMutations != *enumState.mutationsPtr)\n\t\t\t\t";
1108 buf += "objc_enumerationMutation(l_collection);\n\t\t\t";
1109 buf += elementName;
Fariborz Jahanian88f50f32008-01-09 18:15:42 +00001110 buf += " = (";
1111 buf += elementTypeAsString;
1112 buf += ")enumState.itemsPtr[counter++];";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001113 // Replace ')' in for '(' type elem in collection ')' with all of these.
Chris Lattneraadaf782008-01-31 19:51:04 +00001114 ReplaceText(lparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001115
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001116 /// __continue_label: ;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001117 /// } while (counter < limit);
1118 /// } while (limit = [l_collection countByEnumeratingWithState:&enumState
1119 /// objects:items count:16]);
1120 /// elem = nil;
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001121 /// __break_label: ;
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001122 /// }
1123 /// else
1124 /// elem = nil;
1125 /// }
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001126 ///
1127 buf = ";\n\t";
1128 buf += "__continue_label_";
1129 buf += utostr(ObjCBcLabelNo.back());
1130 buf += ": ;";
1131 buf += "\n\t\t";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001132 buf += "} while (counter < limit);\n\t";
1133 buf += "} while (limit = ";
1134 SynthCountByEnumWithState(buf);
1135 buf += ");\n\t";
1136 buf += elementName;
1137 buf += " = nil;\n\t";
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001138 buf += "__break_label_";
1139 buf += utostr(ObjCBcLabelNo.back());
1140 buf += ": ;\n\t";
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001141 buf += "}\n\t";
1142 buf += "else\n\t\t";
1143 buf += elementName;
1144 buf += " = nil;\n";
1145 buf += "}\n";
1146 // Insert all these *after* the statement body.
Chris Lattner338d1e22008-01-31 05:10:40 +00001147 SourceLocation endBodyLoc = OrigEnd.getFileLocWithOffset(1);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001148 InsertText(endBodyLoc, buf.c_str(), buf.size());
Fariborz Jahaniane8d1c052008-01-15 23:58:23 +00001149 Stmts.pop_back();
1150 ObjCBcLabelNo.pop_back();
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001151 return 0;
Fariborz Jahanian10d24f02008-01-07 21:40:22 +00001152}
1153
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001154/// RewriteObjCSynchronizedStmt -
1155/// This routine rewrites @synchronized(expr) stmt;
1156/// into:
1157/// objc_sync_enter(expr);
1158/// @try stmt @finally { objc_sync_exit(expr); }
1159///
1160Stmt *RewriteTest::RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
1161 // Get the start location and compute the semi location.
1162 SourceLocation startLoc = S->getLocStart();
1163 const char *startBuf = SM->getCharacterData(startLoc);
1164
1165 assert((*startBuf == '@') && "bogus @synchronized location");
1166
1167 std::string buf;
1168 buf = "objc_sync_enter";
Chris Lattneraadaf782008-01-31 19:51:04 +00001169 ReplaceText(startLoc, 13, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001170 SourceLocation endLoc = S->getSynchExpr()->getLocEnd();
1171 const char *endBuf = SM->getCharacterData(endLoc);
1172 endBuf++;
1173 const char *rparenBuf = strchr(endBuf, ')');
1174 SourceLocation rparenLoc = startLoc.getFileLocWithOffset(rparenBuf-startBuf);
1175 buf = ");\n";
1176 // declare a new scope with two variables, _stack and _rethrow.
1177 buf += "/* @try scope begin */ \n{ struct _objc_exception_data {\n";
1178 buf += "int buf[18/*32-bit i386*/];\n";
1179 buf += "char *pointers[4];} _stack;\n";
1180 buf += "id volatile _rethrow = 0;\n";
1181 buf += "objc_exception_try_enter(&_stack);\n";
1182 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Chris Lattneraadaf782008-01-31 19:51:04 +00001183 ReplaceText(rparenLoc, 1, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001184 startLoc = S->getSynchBody()->getLocEnd();
1185 startBuf = SM->getCharacterData(startLoc);
1186
1187 assert((*startBuf == '}') && "bogus @try block");
1188 SourceLocation lastCurlyLoc = startLoc;
1189 buf = "}\nelse {\n";
1190 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1191 buf += " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
1192 // FIXME: This must be objc_sync_exit(syncExpr);
1193 buf += " objc_sync_exit();\n";
1194 buf += " if (_rethrow) objc_exception_throw(_rethrow);\n";
1195 buf += "}\n";
1196 buf += "}";
1197
Chris Lattneraadaf782008-01-31 19:51:04 +00001198 ReplaceText(lastCurlyLoc, 1, buf.c_str(), buf.size());
Fariborz Jahaniana0f55792008-01-29 22:59:37 +00001199 return 0;
1200}
1201
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001202Stmt *RewriteTest::RewriteObjCTryStmt(ObjCAtTryStmt *S) {
Steve Naroff75730982007-11-07 04:08:17 +00001203 // Get the start location and compute the semi location.
1204 SourceLocation startLoc = S->getLocStart();
1205 const char *startBuf = SM->getCharacterData(startLoc);
1206
1207 assert((*startBuf == '@') && "bogus @try location");
1208
1209 std::string buf;
1210 // declare a new scope with two variables, _stack and _rethrow.
1211 buf = "/* @try scope begin */ { struct _objc_exception_data {\n";
1212 buf += "int buf[18/*32-bit i386*/];\n";
1213 buf += "char *pointers[4];} _stack;\n";
1214 buf += "id volatile _rethrow = 0;\n";
1215 buf += "objc_exception_try_enter(&_stack);\n";
Steve Naroff21867b12007-11-07 18:43:40 +00001216 buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n";
Steve Naroff75730982007-11-07 04:08:17 +00001217
Chris Lattneraadaf782008-01-31 19:51:04 +00001218 ReplaceText(startLoc, 4, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001219
1220 startLoc = S->getTryBody()->getLocEnd();
1221 startBuf = SM->getCharacterData(startLoc);
1222
1223 assert((*startBuf == '}') && "bogus @try block");
1224
1225 SourceLocation lastCurlyLoc = startLoc;
1226
1227 startLoc = startLoc.getFileLocWithOffset(1);
1228 buf = " /* @catch begin */ else {\n";
1229 buf += " id _caught = objc_exception_extract(&_stack);\n";
1230 buf += " objc_exception_try_enter (&_stack);\n";
Steve Naroff21867b12007-11-07 18:43:40 +00001231 buf += " if (_setjmp(_stack.buf))\n";
Steve Naroff75730982007-11-07 04:08:17 +00001232 buf += " _rethrow = objc_exception_extract(&_stack);\n";
1233 buf += " else { /* @catch continue */";
1234
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001235 InsertText(startLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001236
1237 bool sawIdTypedCatch = false;
1238 Stmt *lastCatchBody = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001239 ObjCAtCatchStmt *catchList = S->getCatchStmts();
Steve Naroff75730982007-11-07 04:08:17 +00001240 while (catchList) {
1241 Stmt *catchStmt = catchList->getCatchParamStmt();
1242
1243 if (catchList == S->getCatchStmts())
1244 buf = "if ("; // we are generating code for the first catch clause
1245 else
1246 buf = "else if (";
1247 startLoc = catchList->getLocStart();
1248 startBuf = SM->getCharacterData(startLoc);
1249
1250 assert((*startBuf == '@') && "bogus @catch location");
1251
1252 const char *lParenLoc = strchr(startBuf, '(');
1253
Steve Naroffbe4b3332008-02-01 22:08:12 +00001254 if (catchList->hasEllipsis()) {
Steve Naroffe12e6922008-02-01 20:02:07 +00001255 // Now rewrite the body...
1256 lastCatchBody = catchList->getCatchBody();
1257 SourceLocation rParenLoc = catchList->getRParenLoc();
1258 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1259 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1260 const char *rParenBuf = SM->getCharacterData(rParenLoc);
1261 assert((*rParenBuf == ')') && "bogus @catch paren location");
1262 assert((*bodyBuf == '{') && "bogus @catch body location");
1263
1264 buf += "1) { id _tmp = _caught;";
1265 Rewrite.ReplaceText(startLoc, bodyBuf-startBuf+1,
1266 buf.c_str(), buf.size());
1267 } else if (DeclStmt *declStmt = dyn_cast<DeclStmt>(catchStmt)) {
Steve Naroff75730982007-11-07 04:08:17 +00001268 QualType t = dyn_cast<ValueDecl>(declStmt->getDecl())->getType();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001269 if (t == Context->getObjCIdType()) {
Steve Naroff75730982007-11-07 04:08:17 +00001270 buf += "1) { ";
Chris Lattneraadaf782008-01-31 19:51:04 +00001271 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001272 sawIdTypedCatch = true;
1273 } else if (const PointerType *pType = t->getAsPointerType()) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001274 ObjCInterfaceType *cls; // Should be a pointer to a class.
Steve Naroff75730982007-11-07 04:08:17 +00001275
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001276 cls = dyn_cast<ObjCInterfaceType>(pType->getPointeeType().getTypePtr());
Steve Naroff75730982007-11-07 04:08:17 +00001277 if (cls) {
Steve Naroff21867b12007-11-07 18:43:40 +00001278 buf += "objc_exception_match((struct objc_class *)objc_getClass(\"";
Steve Naroff75730982007-11-07 04:08:17 +00001279 buf += cls->getDecl()->getName();
Steve Naroff21867b12007-11-07 18:43:40 +00001280 buf += "\"), (struct objc_object *)_caught)) { ";
Chris Lattneraadaf782008-01-31 19:51:04 +00001281 ReplaceText(startLoc, lParenLoc-startBuf+1, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001282 }
1283 }
1284 // Now rewrite the body...
1285 lastCatchBody = catchList->getCatchBody();
1286 SourceLocation rParenLoc = catchList->getRParenLoc();
1287 SourceLocation bodyLoc = lastCatchBody->getLocStart();
1288 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1289 const char *rParenBuf = SM->getCharacterData(rParenLoc);
1290 assert((*rParenBuf == ')') && "bogus @catch paren location");
1291 assert((*bodyBuf == '{') && "bogus @catch body location");
1292
1293 buf = " = _caught;";
1294 // Here we replace ") {" with "= _caught;" (which initializes and
1295 // declares the @catch parameter).
Chris Lattneraadaf782008-01-31 19:51:04 +00001296 ReplaceText(rParenLoc, bodyBuf-rParenBuf+1, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001297 } else if (!isa<NullStmt>(catchStmt)) {
Steve Naroff75730982007-11-07 04:08:17 +00001298 assert(false && "@catch rewrite bug");
Steve Naroff2bd03922007-11-07 15:32:26 +00001299 }
Steve Naroffe12e6922008-02-01 20:02:07 +00001300 // make sure all the catch bodies get rewritten!
Steve Naroff75730982007-11-07 04:08:17 +00001301 catchList = catchList->getNextCatchStmt();
1302 }
1303 // Complete the catch list...
1304 if (lastCatchBody) {
1305 SourceLocation bodyLoc = lastCatchBody->getLocEnd();
1306 const char *bodyBuf = SM->getCharacterData(bodyLoc);
1307 assert((*bodyBuf == '}') && "bogus @catch body location");
1308 bodyLoc = bodyLoc.getFileLocWithOffset(1);
1309 buf = " } } /* @catch end */\n";
1310
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001311 InsertText(bodyLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001312
1313 // Set lastCurlyLoc
1314 lastCurlyLoc = lastCatchBody->getLocEnd();
1315 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001316 if (ObjCAtFinallyStmt *finalStmt = S->getFinallyStmt()) {
Steve Naroff75730982007-11-07 04:08:17 +00001317 startLoc = finalStmt->getLocStart();
1318 startBuf = SM->getCharacterData(startLoc);
1319 assert((*startBuf == '@') && "bogus @finally start");
1320
1321 buf = "/* @finally */";
Chris Lattneraadaf782008-01-31 19:51:04 +00001322 ReplaceText(startLoc, 8, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001323
1324 Stmt *body = finalStmt->getFinallyBody();
1325 SourceLocation startLoc = body->getLocStart();
1326 SourceLocation endLoc = body->getLocEnd();
1327 const char *startBuf = SM->getCharacterData(startLoc);
1328 const char *endBuf = SM->getCharacterData(endLoc);
1329 assert((*startBuf == '{') && "bogus @finally body location");
1330 assert((*endBuf == '}') && "bogus @finally body location");
1331
1332 startLoc = startLoc.getFileLocWithOffset(1);
1333 buf = " if (!_rethrow) objc_exception_try_exit(&_stack);\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001334 InsertText(startLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001335 endLoc = endLoc.getFileLocWithOffset(-1);
1336 buf = " if (_rethrow) objc_exception_throw(_rethrow);\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001337 InsertText(endLoc, buf.c_str(), buf.size());
Steve Naroff75730982007-11-07 04:08:17 +00001338
1339 // Set lastCurlyLoc
1340 lastCurlyLoc = body->getLocEnd();
1341 }
1342 // Now emit the final closing curly brace...
1343 lastCurlyLoc = lastCurlyLoc.getFileLocWithOffset(1);
1344 buf = " } /* @try scope end */\n";
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001345 InsertText(lastCurlyLoc, buf.c_str(), buf.size());
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001346 return 0;
1347}
1348
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001349Stmt *RewriteTest::RewriteObjCCatchStmt(ObjCAtCatchStmt *S) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001350 return 0;
1351}
1352
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001353Stmt *RewriteTest::RewriteObjCFinallyStmt(ObjCAtFinallyStmt *S) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001354 return 0;
1355}
1356
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001357// This can't be done with ReplaceStmt(S, ThrowExpr), since
Steve Naroff2bd03922007-11-07 15:32:26 +00001358// the throw expression is typically a message expression that's already
1359// been rewritten! (which implies the SourceLocation's are invalid).
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001360Stmt *RewriteTest::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) {
Steve Naroff2bd03922007-11-07 15:32:26 +00001361 // Get the start location and compute the semi location.
1362 SourceLocation startLoc = S->getLocStart();
1363 const char *startBuf = SM->getCharacterData(startLoc);
1364
1365 assert((*startBuf == '@') && "bogus @throw location");
1366
1367 std::string buf;
1368 /* void objc_exception_throw(id) __attribute__((noreturn)); */
Steve Naroff20ebf8f2008-01-19 00:42:38 +00001369 if (S->getThrowExpr())
1370 buf = "objc_exception_throw(";
1371 else // add an implicit argument
1372 buf = "objc_exception_throw(_caught";
Chris Lattneraadaf782008-01-31 19:51:04 +00001373 ReplaceText(startLoc, 6, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001374 const char *semiBuf = strchr(startBuf, ';');
1375 assert((*semiBuf == ';') && "@throw: can't find ';'");
1376 SourceLocation semiLoc = startLoc.getFileLocWithOffset(semiBuf-startBuf);
1377 buf = ");";
Chris Lattneraadaf782008-01-31 19:51:04 +00001378 ReplaceText(semiLoc, 1, buf.c_str(), buf.size());
Steve Naroff2bd03922007-11-07 15:32:26 +00001379 return 0;
1380}
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00001381
Chris Lattnere64b7772007-10-24 16:57:36 +00001382Stmt *RewriteTest::RewriteAtEncode(ObjCEncodeExpr *Exp) {
Chris Lattner01c57482007-10-17 22:35:30 +00001383 // Create a new string expression.
1384 QualType StrType = Context->getPointerType(Context->CharTy);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001385 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00001386 Context->getObjCEncodingForType(Exp->getEncodedType(), StrEncoding,
1387 EncodingRecordTypes);
Anders Carlsson85f9bce2007-10-29 05:01:08 +00001388 Expr *Replacement = new StringLiteral(StrEncoding.c_str(),
1389 StrEncoding.length(), false, StrType,
Chris Lattner01c57482007-10-17 22:35:30 +00001390 SourceLocation(), SourceLocation());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001391 ReplaceStmt(Exp, Replacement);
Chris Lattnere365c502007-11-30 22:25:36 +00001392
Chris Lattner07506182007-11-30 22:53:43 +00001393 // Replace this subexpr in the parent.
Chris Lattnere64b7772007-10-24 16:57:36 +00001394 delete Exp;
1395 return Replacement;
Chris Lattner311ff022007-10-16 22:36:42 +00001396}
1397
Steve Naroffb42f8412007-11-05 14:50:49 +00001398Stmt *RewriteTest::RewriteAtSelector(ObjCSelectorExpr *Exp) {
1399 assert(SelGetUidFunctionDecl && "Can't find sel_registerName() decl");
1400 // Create a call to sel_registerName("selName").
1401 llvm::SmallVector<Expr*, 8> SelExprs;
1402 QualType argType = Context->getPointerType(Context->CharTy);
1403 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
1404 Exp->getSelector().getName().size(),
1405 false, argType, SourceLocation(),
1406 SourceLocation()));
1407 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
1408 &SelExprs[0], SelExprs.size());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001409 ReplaceStmt(Exp, SelExp);
Steve Naroffb42f8412007-11-05 14:50:49 +00001410 delete Exp;
1411 return SelExp;
1412}
1413
Steve Naroff934f2762007-10-24 22:48:43 +00001414CallExpr *RewriteTest::SynthesizeCallToFunctionDecl(
1415 FunctionDecl *FD, Expr **args, unsigned nargs) {
Steve Naroffebf2b562007-10-23 23:50:29 +00001416 // Get the type, we will need to reference it in a couple spots.
Steve Naroff934f2762007-10-24 22:48:43 +00001417 QualType msgSendType = FD->getType();
Steve Naroffebf2b562007-10-23 23:50:29 +00001418
1419 // Create a reference to the objc_msgSend() declaration.
Steve Naroff934f2762007-10-24 22:48:43 +00001420 DeclRefExpr *DRE = new DeclRefExpr(FD, msgSendType, SourceLocation());
Steve Naroffebf2b562007-10-23 23:50:29 +00001421
1422 // Now, we cast the reference to a pointer to the objc_msgSend type.
Chris Lattnerf04da132007-10-24 17:06:59 +00001423 QualType pToFunc = Context->getPointerType(msgSendType);
Steve Naroffebf2b562007-10-23 23:50:29 +00001424 ImplicitCastExpr *ICE = new ImplicitCastExpr(pToFunc, DRE);
1425
1426 const FunctionType *FT = msgSendType->getAsFunctionType();
Chris Lattnere64b7772007-10-24 16:57:36 +00001427
Steve Naroff934f2762007-10-24 22:48:43 +00001428 return new CallExpr(ICE, args, nargs, FT->getResultType(), SourceLocation());
1429}
1430
Steve Naroffd5255f52007-11-01 13:24:47 +00001431static bool scanForProtocolRefs(const char *startBuf, const char *endBuf,
1432 const char *&startRef, const char *&endRef) {
1433 while (startBuf < endBuf) {
1434 if (*startBuf == '<')
1435 startRef = startBuf; // mark the start.
1436 if (*startBuf == '>') {
Steve Naroff32174822007-11-09 12:50:28 +00001437 if (startRef && *startRef == '<') {
1438 endRef = startBuf; // mark the end.
1439 return true;
1440 }
1441 return false;
Steve Naroffd5255f52007-11-01 13:24:47 +00001442 }
1443 startBuf++;
1444 }
1445 return false;
1446}
1447
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001448static void scanToNextArgument(const char *&argRef) {
1449 int angle = 0;
1450 while (*argRef != ')' && (*argRef != ',' || angle > 0)) {
1451 if (*argRef == '<')
1452 angle++;
1453 else if (*argRef == '>')
1454 angle--;
1455 argRef++;
1456 }
1457 assert(angle == 0 && "scanToNextArgument - bad protocol type syntax");
1458}
Fariborz Jahanian291e04b2007-12-11 23:04:08 +00001459
Steve Naroffd5255f52007-11-01 13:24:47 +00001460bool RewriteTest::needToScanForQualifiers(QualType T) {
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001461
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001462 if (T == Context->getObjCIdType())
Steve Naroffd5255f52007-11-01 13:24:47 +00001463 return true;
1464
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001465 if (T->isObjCQualifiedIdType())
Fariborz Jahanianc5692492007-12-17 21:03:50 +00001466 return true;
1467
Steve Naroffd5255f52007-11-01 13:24:47 +00001468 if (const PointerType *pType = T->getAsPointerType()) {
Steve Naroff9165ad32007-10-31 04:38:33 +00001469 Type *pointeeType = pType->getPointeeType().getTypePtr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001470 if (isa<ObjCQualifiedInterfaceType>(pointeeType))
Steve Naroff9165ad32007-10-31 04:38:33 +00001471 return true; // we have "Class <Protocol> *".
1472 }
Steve Naroffd5255f52007-11-01 13:24:47 +00001473 return false;
1474}
1475
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001476void RewriteTest::RewriteObjCQualifiedInterfaceTypes(Decl *Dcl) {
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001477 SourceLocation Loc;
1478 QualType Type;
1479 const FunctionTypeProto *proto = 0;
1480 if (VarDecl *VD = dyn_cast<VarDecl>(Dcl)) {
1481 Loc = VD->getLocation();
1482 Type = VD->getType();
1483 }
1484 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Dcl)) {
1485 Loc = FD->getLocation();
1486 // Check for ObjC 'id' and class types that have been adorned with protocol
1487 // information (id<p>, C<p>*). The protocol references need to be rewritten!
1488 const FunctionType *funcType = FD->getType()->getAsFunctionType();
1489 assert(funcType && "missing function type");
1490 proto = dyn_cast<FunctionTypeProto>(funcType);
1491 if (!proto)
1492 return;
1493 Type = proto->getResultType();
1494 }
1495 else
1496 return;
Steve Naroffd5255f52007-11-01 13:24:47 +00001497
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001498 if (needToScanForQualifiers(Type)) {
Steve Naroffd5255f52007-11-01 13:24:47 +00001499 // Since types are unique, we need to scan the buffer.
Steve Naroffd5255f52007-11-01 13:24:47 +00001500
1501 const char *endBuf = SM->getCharacterData(Loc);
1502 const char *startBuf = endBuf;
Chris Lattner26de4652007-12-02 01:13:47 +00001503 while (*startBuf != ';' && startBuf != MainFileStart)
Steve Naroffd5255f52007-11-01 13:24:47 +00001504 startBuf--; // scan backward (from the decl location) for return type.
1505 const char *startRef = 0, *endRef = 0;
1506 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1507 // Get the locations of the startRef, endRef.
1508 SourceLocation LessLoc = Loc.getFileLocWithOffset(startRef-endBuf);
1509 SourceLocation GreaterLoc = Loc.getFileLocWithOffset(endRef-endBuf+1);
1510 // Comment out the protocol references.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001511 InsertText(LessLoc, "/*", 2);
1512 InsertText(GreaterLoc, "*/", 2);
Steve Naroff9165ad32007-10-31 04:38:33 +00001513 }
1514 }
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001515 if (!proto)
1516 return; // most likely, was a variable
Steve Naroffd5255f52007-11-01 13:24:47 +00001517 // Now check arguments.
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001518 const char *startBuf = SM->getCharacterData(Loc);
1519 const char *startFuncBuf = startBuf;
Steve Naroffd5255f52007-11-01 13:24:47 +00001520 for (unsigned i = 0; i < proto->getNumArgs(); i++) {
1521 if (needToScanForQualifiers(proto->getArgType(i))) {
1522 // Since types are unique, we need to scan the buffer.
Steve Naroffd5255f52007-11-01 13:24:47 +00001523
Steve Naroffd5255f52007-11-01 13:24:47 +00001524 const char *endBuf = startBuf;
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001525 // scan forward (from the decl location) for argument types.
1526 scanToNextArgument(endBuf);
Steve Naroffd5255f52007-11-01 13:24:47 +00001527 const char *startRef = 0, *endRef = 0;
1528 if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) {
1529 // Get the locations of the startRef, endRef.
Fariborz Jahanian291e04b2007-12-11 23:04:08 +00001530 SourceLocation LessLoc =
1531 Loc.getFileLocWithOffset(startRef-startFuncBuf);
1532 SourceLocation GreaterLoc =
1533 Loc.getFileLocWithOffset(endRef-startFuncBuf+1);
Steve Naroffd5255f52007-11-01 13:24:47 +00001534 // Comment out the protocol references.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00001535 InsertText(LessLoc, "/*", 2);
1536 InsertText(GreaterLoc, "*/", 2);
Steve Naroffd5255f52007-11-01 13:24:47 +00001537 }
Fariborz Jahanian61477f72007-12-11 22:50:14 +00001538 startBuf = ++endBuf;
1539 }
1540 else {
1541 while (*startBuf != ')' && *startBuf != ',')
1542 startBuf++; // scan forward (from the decl location) for argument types.
1543 startBuf++;
1544 }
Steve Naroffd5255f52007-11-01 13:24:47 +00001545 }
Steve Naroff9165ad32007-10-31 04:38:33 +00001546}
1547
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001548// SynthSelGetUidFunctionDecl - SEL sel_registerName(const char *str);
1549void RewriteTest::SynthSelGetUidFunctionDecl() {
1550 IdentifierInfo *SelGetUidIdent = &Context->Idents.get("sel_registerName");
1551 llvm::SmallVector<QualType, 16> ArgTys;
1552 ArgTys.push_back(Context->getPointerType(
1553 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001554 QualType getFuncType = Context->getFunctionType(Context->getObjCSelType(),
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001555 &ArgTys[0], ArgTys.size(),
1556 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001557 SelGetUidFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001558 SelGetUidIdent, getFuncType,
1559 FunctionDecl::Extern, false, 0);
1560}
1561
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001562// SynthGetProtocolFunctionDecl - Protocol objc_getProtocol(const char *proto);
1563void RewriteTest::SynthGetProtocolFunctionDecl() {
1564 IdentifierInfo *SelGetProtoIdent = &Context->Idents.get("objc_getProtocol");
1565 llvm::SmallVector<QualType, 16> ArgTys;
1566 ArgTys.push_back(Context->getPointerType(
1567 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001568 QualType getFuncType = Context->getFunctionType(Context->getObjCProtoType(),
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001569 &ArgTys[0], ArgTys.size(),
1570 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001571 GetProtocolFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahanian36ee2cb2007-12-07 18:47:10 +00001572 SelGetProtoIdent, getFuncType,
1573 FunctionDecl::Extern, false, 0);
1574}
1575
Steve Naroff09b266e2007-10-30 23:14:51 +00001576void RewriteTest::RewriteFunctionDecl(FunctionDecl *FD) {
1577 // declared in <objc/objc.h>
Steve Naroffbeaf2992007-11-03 11:27:19 +00001578 if (strcmp(FD->getName(), "sel_registerName") == 0) {
Steve Naroff09b266e2007-10-30 23:14:51 +00001579 SelGetUidFunctionDecl = FD;
Steve Naroff9165ad32007-10-31 04:38:33 +00001580 return;
1581 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001582 RewriteObjCQualifiedInterfaceTypes(FD);
Steve Naroff09b266e2007-10-30 23:14:51 +00001583}
1584
Steve Naroffc0a123c2008-03-11 17:37:02 +00001585// SynthSuperContructorFunctionDecl - id objc_super(id obj, id super);
1586void RewriteTest::SynthSuperContructorFunctionDecl() {
1587 if (SuperContructorFunctionDecl)
1588 return;
1589 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_super");
1590 llvm::SmallVector<QualType, 16> ArgTys;
1591 QualType argT = Context->getObjCIdType();
1592 assert(!argT.isNull() && "Can't find 'id' type");
1593 ArgTys.push_back(argT);
1594 ArgTys.push_back(argT);
1595 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
1596 &ArgTys[0], ArgTys.size(),
1597 false);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001598 SuperContructorFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroffc0a123c2008-03-11 17:37:02 +00001599 msgSendIdent, msgSendType,
1600 FunctionDecl::Extern, false, 0);
1601}
1602
Steve Naroff09b266e2007-10-30 23:14:51 +00001603// SynthMsgSendFunctionDecl - id objc_msgSend(id self, SEL op, ...);
1604void RewriteTest::SynthMsgSendFunctionDecl() {
1605 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend");
1606 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001607 QualType argT = Context->getObjCIdType();
Steve Naroff09b266e2007-10-30 23:14:51 +00001608 assert(!argT.isNull() && "Can't find 'id' type");
1609 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001610 argT = Context->getObjCSelType();
Steve Naroff09b266e2007-10-30 23:14:51 +00001611 assert(!argT.isNull() && "Can't find 'SEL' type");
1612 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001613 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001614 &ArgTys[0], ArgTys.size(),
1615 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001616 MsgSendFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001617 msgSendIdent, msgSendType,
1618 FunctionDecl::Extern, false, 0);
1619}
1620
Steve Naroff874e2322007-11-15 10:28:18 +00001621// SynthMsgSendSuperFunctionDecl - id objc_msgSendSuper(struct objc_super *, SEL op, ...);
1622void RewriteTest::SynthMsgSendSuperFunctionDecl() {
1623 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSendSuper");
1624 llvm::SmallVector<QualType, 16> ArgTys;
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001625 RecordDecl *RD = RecordDecl::Create(Decl::Struct, SourceLocation(),
1626 &Context->Idents.get("objc_super"), 0,
1627 *Context);
Steve Naroff874e2322007-11-15 10:28:18 +00001628 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1629 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1630 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001631 argT = Context->getObjCSelType();
Steve Naroff874e2322007-11-15 10:28:18 +00001632 assert(!argT.isNull() && "Can't find 'SEL' type");
1633 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001634 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff874e2322007-11-15 10:28:18 +00001635 &ArgTys[0], ArgTys.size(),
1636 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001637 MsgSendSuperFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff874e2322007-11-15 10:28:18 +00001638 msgSendIdent, msgSendType,
1639 FunctionDecl::Extern, false, 0);
1640}
1641
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001642// SynthMsgSendStretFunctionDecl - id objc_msgSend_stret(id self, SEL op, ...);
1643void RewriteTest::SynthMsgSendStretFunctionDecl() {
1644 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_stret");
1645 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001646 QualType argT = Context->getObjCIdType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001647 assert(!argT.isNull() && "Can't find 'id' type");
1648 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001649 argT = Context->getObjCSelType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001650 assert(!argT.isNull() && "Can't find 'SEL' type");
1651 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001652 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001653 &ArgTys[0], ArgTys.size(),
1654 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001655 MsgSendStretFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001656 msgSendIdent, msgSendType,
1657 FunctionDecl::Extern, false, 0);
1658}
1659
1660// SynthMsgSendSuperStretFunctionDecl -
1661// id objc_msgSendSuper_stret(struct objc_super *, SEL op, ...);
1662void RewriteTest::SynthMsgSendSuperStretFunctionDecl() {
1663 IdentifierInfo *msgSendIdent =
1664 &Context->Idents.get("objc_msgSendSuper_stret");
1665 llvm::SmallVector<QualType, 16> ArgTys;
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001666 RecordDecl *RD = RecordDecl::Create(Decl::Struct, SourceLocation(),
1667 &Context->Idents.get("objc_super"), 0,
1668 *Context);
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001669 QualType argT = Context->getPointerType(Context->getTagDeclType(RD));
1670 assert(!argT.isNull() && "Can't build 'struct objc_super *' type");
1671 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001672 argT = Context->getObjCSelType();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001673 assert(!argT.isNull() && "Can't find 'SEL' type");
1674 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001675 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001676 &ArgTys[0], ArgTys.size(),
1677 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001678 MsgSendSuperStretFunctionDecl = FunctionDecl::Create(*Context,
1679 SourceLocation(),
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001680 msgSendIdent, msgSendType,
1681 FunctionDecl::Extern, false, 0);
1682}
1683
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001684// SynthMsgSendFpretFunctionDecl - id objc_msgSend_fpret(id self, SEL op, ...);
1685void RewriteTest::SynthMsgSendFpretFunctionDecl() {
1686 IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_fpret");
1687 llvm::SmallVector<QualType, 16> ArgTys;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001688 QualType argT = Context->getObjCIdType();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001689 assert(!argT.isNull() && "Can't find 'id' type");
1690 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001691 argT = Context->getObjCSelType();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001692 assert(!argT.isNull() && "Can't find 'SEL' type");
1693 ArgTys.push_back(argT);
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001694 QualType msgSendType = Context->getFunctionType(Context->getObjCIdType(),
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001695 &ArgTys[0], ArgTys.size(),
1696 true /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001697 MsgSendFpretFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001698 msgSendIdent, msgSendType,
1699 FunctionDecl::Extern, false, 0);
1700}
1701
Steve Naroff09b266e2007-10-30 23:14:51 +00001702// SynthGetClassFunctionDecl - id objc_getClass(const char *name);
1703void RewriteTest::SynthGetClassFunctionDecl() {
1704 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getClass");
1705 llvm::SmallVector<QualType, 16> ArgTys;
1706 ArgTys.push_back(Context->getPointerType(
1707 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001708 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001709 &ArgTys[0], ArgTys.size(),
1710 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001711 GetClassFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff09b266e2007-10-30 23:14:51 +00001712 getClassIdent, getClassType,
1713 FunctionDecl::Extern, false, 0);
1714}
1715
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001716// SynthGetMetaClassFunctionDecl - id objc_getClass(const char *name);
1717void RewriteTest::SynthGetMetaClassFunctionDecl() {
1718 IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getMetaClass");
1719 llvm::SmallVector<QualType, 16> ArgTys;
1720 ArgTys.push_back(Context->getPointerType(
1721 Context->CharTy.getQualifiedType(QualType::Const)));
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001722 QualType getClassType = Context->getFunctionType(Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001723 &ArgTys[0], ArgTys.size(),
1724 false /*isVariadic*/);
Chris Lattnera98e58d2008-03-15 21:24:04 +00001725 GetMetaClassFunctionDecl = FunctionDecl::Create(*Context, SourceLocation(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001726 getClassIdent, getClassType,
1727 FunctionDecl::Extern, false, 0);
1728}
1729
Steve Naroffbeaf2992007-11-03 11:27:19 +00001730Stmt *RewriteTest::RewriteObjCStringLiteral(ObjCStringLiteral *Exp) {
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001731 QualType strType = getConstantStringStructType();
1732
1733 std::string S = "__NSConstantStringImpl_";
1734 S += utostr(NumObjCStringLiterals++);
1735
1736 std::string StrObjDecl = "static __NSConstantStringImpl " + S;
1737 StrObjDecl += " = __NSConstantStringImpl(";
1738 // The pretty printer for StringLiteral handles escape characters properly.
1739 std::ostringstream prettyBuf;
1740 Exp->getString()->printPretty(prettyBuf);
1741 StrObjDecl += prettyBuf.str();
1742 StrObjDecl += ",";
Steve Naroff3652c2d2008-03-15 01:36:04 +00001743 // The minus 2 removes the begin/end double quotes.
1744 StrObjDecl += utostr(prettyBuf.str().size()-2) + ");\n";
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001745 InsertText(SourceLocation::getFileLoc(MainFileID, 0),
1746 StrObjDecl.c_str(), StrObjDecl.size());
1747
Chris Lattner9e151e12008-03-15 21:10:16 +00001748 FileVarDecl *NewVD = FileVarDecl::Create(SourceLocation(),
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001749 &Context->Idents.get(S.c_str()), strType,
Chris Lattner9e151e12008-03-15 21:10:16 +00001750 VarDecl::Static, NULL, *Context);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001751 DeclRefExpr *DRE = new DeclRefExpr(NewVD, strType, SourceLocation());
1752 Expr *Unop = new UnaryOperator(DRE, UnaryOperator::AddrOf,
1753 Context->getPointerType(DRE->getType()),
1754 SourceLocation());
Steve Naroff96984642007-11-08 14:30:50 +00001755 // cast to NSConstantString *
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001756 CastExpr *cast = new CastExpr(Exp->getType(), Unop, SourceLocation());
Chris Lattnerdcbc5b02008-01-31 19:37:57 +00001757 ReplaceStmt(Exp, cast);
Steve Naroff96984642007-11-08 14:30:50 +00001758 delete Exp;
1759 return cast;
Steve Naroffbeaf2992007-11-03 11:27:19 +00001760}
1761
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001762ObjCInterfaceDecl *RewriteTest::isSuperReceiver(Expr *recExpr) {
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001763 // check if we are sending a message to 'super'
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001764 if (!CurMethodDecl || !CurMethodDecl->isInstance()) return 0;
1765
1766 CastExpr *CE = dyn_cast<CastExpr>(recExpr);
1767 if (!CE) return 0;
1768
1769 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CE->getSubExpr());
1770 if (!DRE) return 0;
1771
1772 ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl());
1773 if (!PVD) return 0;
1774
1775 if (strcmp(PVD->getName(), "self") != 0)
1776 return 0;
1777
1778 // is this id<P1..> type?
1779 if (CE->getType()->isObjCQualifiedIdType())
1780 return 0;
1781 const PointerType *PT = CE->getType()->getAsPointerType();
1782 if (!PT) return 0;
1783
1784 ObjCInterfaceType *IT = dyn_cast<ObjCInterfaceType>(PT->getPointeeType());
1785 if (!IT) return 0;
1786
1787 if (IT->getDecl() != CurMethodDecl->getClassInterface()->getSuperClass())
1788 return 0;
1789
1790 return IT->getDecl();
Steve Naroff874e2322007-11-15 10:28:18 +00001791}
1792
1793// struct objc_super { struct objc_object *receiver; struct objc_class *super; };
1794QualType RewriteTest::getSuperStructType() {
1795 if (!SuperStructDecl) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001796 SuperStructDecl = RecordDecl::Create(Decl::Struct, SourceLocation(),
1797 &Context->Idents.get("objc_super"), 0,
1798 *Context);
Steve Naroff874e2322007-11-15 10:28:18 +00001799 QualType FieldTypes[2];
1800
1801 // struct objc_object *receiver;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001802 FieldTypes[0] = Context->getObjCIdType();
Steve Naroff874e2322007-11-15 10:28:18 +00001803 // struct objc_class *super;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001804 FieldTypes[1] = Context->getObjCClassType();
Steve Naroff874e2322007-11-15 10:28:18 +00001805 // Create fields
1806 FieldDecl *FieldDecls[2];
1807
1808 for (unsigned i = 0; i < 2; ++i)
1809 FieldDecls[i] = new FieldDecl(SourceLocation(), 0, FieldTypes[i]);
1810
1811 SuperStructDecl->defineBody(FieldDecls, 4);
1812 }
1813 return Context->getTagDeclType(SuperStructDecl);
1814}
1815
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001816QualType RewriteTest::getConstantStringStructType() {
1817 if (!ConstantStringDecl) {
Chris Lattner6c2b6eb2008-03-15 06:12:44 +00001818 ConstantStringDecl = RecordDecl::Create(Decl::Struct, SourceLocation(),
1819 &Context->Idents.get("__NSConstantStringImpl"), 0,
1820 *Context);
Steve Naroffd82a9ab2008-03-15 00:55:56 +00001821 QualType FieldTypes[4];
1822
1823 // struct objc_object *receiver;
1824 FieldTypes[0] = Context->getObjCIdType();
1825 // int flags;
1826 FieldTypes[1] = Context->IntTy;
1827 // char *str;
1828 FieldTypes[2] = Context->getPointerType(Context->CharTy);
1829 // long length;
1830 FieldTypes[3] = Context->LongTy;
1831 // Create fields
1832 FieldDecl *FieldDecls[2];
1833
1834 for (unsigned i = 0; i < 4; ++i)
1835 FieldDecls[i] = new FieldDecl(SourceLocation(), 0, FieldTypes[i]);
1836
1837 ConstantStringDecl->defineBody(FieldDecls, 4);
1838 }
1839 return Context->getTagDeclType(ConstantStringDecl);
1840}
1841
Fariborz Jahanian33b9c4e2008-01-08 22:06:28 +00001842Stmt *RewriteTest::SynthMessageExpr(ObjCMessageExpr *Exp) {
Fariborz Jahaniana70711b2007-12-04 21:47:40 +00001843 if (!SelGetUidFunctionDecl)
1844 SynthSelGetUidFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +00001845 if (!MsgSendFunctionDecl)
1846 SynthMsgSendFunctionDecl();
Steve Naroff874e2322007-11-15 10:28:18 +00001847 if (!MsgSendSuperFunctionDecl)
1848 SynthMsgSendSuperFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001849 if (!MsgSendStretFunctionDecl)
1850 SynthMsgSendStretFunctionDecl();
1851 if (!MsgSendSuperStretFunctionDecl)
1852 SynthMsgSendSuperStretFunctionDecl();
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001853 if (!MsgSendFpretFunctionDecl)
1854 SynthMsgSendFpretFunctionDecl();
Steve Naroff09b266e2007-10-30 23:14:51 +00001855 if (!GetClassFunctionDecl)
1856 SynthGetClassFunctionDecl();
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001857 if (!GetMetaClassFunctionDecl)
1858 SynthGetMetaClassFunctionDecl();
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001859
Steve Naroff874e2322007-11-15 10:28:18 +00001860 // default to objc_msgSend().
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001861 FunctionDecl *MsgSendFlavor = MsgSendFunctionDecl;
1862 // May need to use objc_msgSend_stret() as well.
1863 FunctionDecl *MsgSendStretFlavor = 0;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001864 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001865 QualType resultType = mDecl->getResultType();
1866 if (resultType.getCanonicalType()->isStructureType()
1867 || resultType.getCanonicalType()->isUnionType())
1868 MsgSendStretFlavor = MsgSendStretFunctionDecl;
Fariborz Jahanianacb49772007-12-03 21:26:48 +00001869 else if (resultType.getCanonicalType()->isRealFloatingType())
1870 MsgSendFlavor = MsgSendFpretFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001871 }
Steve Naroff874e2322007-11-15 10:28:18 +00001872
Steve Naroff934f2762007-10-24 22:48:43 +00001873 // Synthesize a call to objc_msgSend().
1874 llvm::SmallVector<Expr*, 8> MsgExprs;
1875 IdentifierInfo *clsName = Exp->getClassName();
1876
1877 // Derive/push the receiver/selector, 2 implicit arguments to objc_msgSend().
1878 if (clsName) { // class message.
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001879 if (!strcmp(clsName->getName(), "super")) {
1880 MsgSendFlavor = MsgSendSuperFunctionDecl;
1881 if (MsgSendStretFlavor)
1882 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
1883 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
1884
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001885 ObjCInterfaceDecl *SuperDecl =
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001886 CurMethodDecl->getClassInterface()->getSuperClass();
1887
1888 llvm::SmallVector<Expr*, 4> InitExprs;
1889
1890 // set the receiver to self, the first argument to all methods.
1891 InitExprs.push_back(new DeclRefExpr(CurMethodDecl->getSelfDecl(),
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001892 Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001893 SourceLocation()));
1894 llvm::SmallVector<Expr*, 8> ClsExprs;
1895 QualType argType = Context->getPointerType(Context->CharTy);
1896 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
1897 SuperDecl->getIdentifier()->getLength(),
1898 false, argType, SourceLocation(),
1899 SourceLocation()));
1900 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetMetaClassFunctionDecl,
1901 &ClsExprs[0],
1902 ClsExprs.size());
1903 // To turn off a warning, type-cast to 'id'
1904 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001905 new CastExpr(Context->getObjCIdType(),
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001906 Cls, SourceLocation())); // set 'super class', using objc_getClass().
1907 // struct objc_super
1908 QualType superType = getSuperStructType();
Steve Naroff23f41272008-03-11 18:14:26 +00001909 Expr *SuperRep;
Steve Naroffc0a123c2008-03-11 17:37:02 +00001910
Steve Naroff23f41272008-03-11 18:14:26 +00001911 if (LangOpts.Microsoft) {
1912 SynthSuperContructorFunctionDecl();
1913 // Simulate a contructor call...
1914 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
1915 superType, SourceLocation());
1916 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
1917 superType, SourceLocation());
1918 } else {
1919 // (struct objc_super) { <exprs from above> }
1920 InitListExpr *ILE = new InitListExpr(SourceLocation(),
1921 &InitExprs[0], InitExprs.size(),
1922 SourceLocation());
1923 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE, false);
1924 }
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001925 // struct objc_super *
1926 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
1927 Context->getPointerType(SuperRep->getType()),
1928 SourceLocation());
1929 MsgExprs.push_back(Unop);
1930 } else {
1931 llvm::SmallVector<Expr*, 8> ClsExprs;
1932 QualType argType = Context->getPointerType(Context->CharTy);
1933 ClsExprs.push_back(new StringLiteral(clsName->getName(),
1934 clsName->getLength(),
1935 false, argType, SourceLocation(),
1936 SourceLocation()));
1937 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
1938 &ClsExprs[0],
1939 ClsExprs.size());
1940 MsgExprs.push_back(Cls);
1941 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00001942 } else { // instance message.
1943 Expr *recExpr = Exp->getReceiver();
Steve Naroff874e2322007-11-15 10:28:18 +00001944
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001945 if (ObjCInterfaceDecl *SuperDecl = isSuperReceiver(recExpr)) {
Steve Naroff874e2322007-11-15 10:28:18 +00001946 MsgSendFlavor = MsgSendSuperFunctionDecl;
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00001947 if (MsgSendStretFlavor)
1948 MsgSendStretFlavor = MsgSendSuperStretFunctionDecl;
Steve Naroff874e2322007-11-15 10:28:18 +00001949 assert(MsgSendFlavor && "MsgSendFlavor is NULL!");
1950
1951 llvm::SmallVector<Expr*, 4> InitExprs;
1952
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001953 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001954 new CastExpr(Context->getObjCIdType(),
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001955 recExpr, SourceLocation())); // set the 'receiver'.
Steve Naroff874e2322007-11-15 10:28:18 +00001956
1957 llvm::SmallVector<Expr*, 8> ClsExprs;
1958 QualType argType = Context->getPointerType(Context->CharTy);
Steve Naroff9bcb5fc2007-12-07 03:50:46 +00001959 ClsExprs.push_back(new StringLiteral(SuperDecl->getIdentifier()->getName(),
1960 SuperDecl->getIdentifier()->getLength(),
Steve Naroff874e2322007-11-15 10:28:18 +00001961 false, argType, SourceLocation(),
1962 SourceLocation()));
1963 CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl,
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001964 &ClsExprs[0],
1965 ClsExprs.size());
Fariborz Jahanian71274312007-12-05 17:29:46 +00001966 // To turn off a warning, type-cast to 'id'
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001967 InitExprs.push_back(
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001968 new CastExpr(Context->getObjCIdType(),
Fariborz Jahanianceee3e82007-12-04 22:32:58 +00001969 Cls, SourceLocation())); // set 'super class', using objc_getClass().
Steve Naroff874e2322007-11-15 10:28:18 +00001970 // struct objc_super
1971 QualType superType = getSuperStructType();
Steve Naroffc0a123c2008-03-11 17:37:02 +00001972 Expr *SuperRep;
1973
1974 if (LangOpts.Microsoft) {
1975 SynthSuperContructorFunctionDecl();
1976 // Simulate a contructor call...
1977 DeclRefExpr *DRE = new DeclRefExpr(SuperContructorFunctionDecl,
1978 superType, SourceLocation());
1979 SuperRep = new CallExpr(DRE, &InitExprs[0], InitExprs.size(),
1980 superType, SourceLocation());
1981 } else {
1982 // (struct objc_super) { <exprs from above> }
1983 InitListExpr *ILE = new InitListExpr(SourceLocation(),
1984 &InitExprs[0], InitExprs.size(),
1985 SourceLocation());
1986 SuperRep = new CompoundLiteralExpr(SourceLocation(), superType, ILE, false);
1987 }
Steve Naroff874e2322007-11-15 10:28:18 +00001988 // struct objc_super *
1989 Expr *Unop = new UnaryOperator(SuperRep, UnaryOperator::AddrOf,
1990 Context->getPointerType(SuperRep->getType()),
1991 SourceLocation());
1992 MsgExprs.push_back(Unop);
1993 } else {
Fariborz Jahanian7dd82832007-12-07 21:21:21 +00001994 // Remove all type-casts because it may contain objc-style types; e.g.
1995 // Foo<Proto> *.
1996 while (CastExpr *CE = dyn_cast<CastExpr>(recExpr))
1997 recExpr = CE->getSubExpr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00001998 recExpr = new CastExpr(Context->getObjCIdType(), recExpr, SourceLocation());
Steve Naroff874e2322007-11-15 10:28:18 +00001999 MsgExprs.push_back(recExpr);
2000 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00002001 }
Steve Naroffbeaf2992007-11-03 11:27:19 +00002002 // Create a call to sel_registerName("selName"), it will be the 2nd argument.
Steve Naroff934f2762007-10-24 22:48:43 +00002003 llvm::SmallVector<Expr*, 8> SelExprs;
2004 QualType argType = Context->getPointerType(Context->CharTy);
2005 SelExprs.push_back(new StringLiteral(Exp->getSelector().getName().c_str(),
2006 Exp->getSelector().getName().size(),
2007 false, argType, SourceLocation(),
2008 SourceLocation()));
2009 CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl,
2010 &SelExprs[0], SelExprs.size());
2011 MsgExprs.push_back(SelExp);
2012
2013 // Now push any user supplied arguments.
2014 for (unsigned i = 0; i < Exp->getNumArgs(); i++) {
Steve Naroff6568d4d2007-11-14 23:54:14 +00002015 Expr *userExpr = Exp->getArg(i);
Steve Naroff7e3411b2007-11-15 02:58:25 +00002016 // Make all implicit casts explicit...ICE comes in handy:-)
2017 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(userExpr)) {
2018 // Reuse the ICE type, it is exactly what the doctor ordered.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002019 userExpr = new CastExpr(ICE->getType()->isObjCQualifiedIdType()
2020 ? Context->getObjCIdType()
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002021 : ICE->getType(), userExpr, SourceLocation());
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002022 }
2023 // Make id<P...> cast into an 'id' cast.
2024 else if (CastExpr *CE = dyn_cast<CastExpr>(userExpr)) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002025 if (CE->getType()->isObjCQualifiedIdType()) {
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002026 while ((CE = dyn_cast<CastExpr>(userExpr)))
2027 userExpr = CE->getSubExpr();
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002028 userExpr = new CastExpr(Context->getObjCIdType(),
Fariborz Jahaniand58fabf2007-12-18 21:33:44 +00002029 userExpr, SourceLocation());
2030 }
Steve Naroff7e3411b2007-11-15 02:58:25 +00002031 }
Steve Naroff6568d4d2007-11-14 23:54:14 +00002032 MsgExprs.push_back(userExpr);
Steve Naroff934f2762007-10-24 22:48:43 +00002033 // We've transferred the ownership to MsgExprs. Null out the argument in
2034 // the original expression, since we will delete it below.
2035 Exp->setArg(i, 0);
2036 }
Steve Naroffab972d32007-11-04 22:37:50 +00002037 // Generate the funky cast.
2038 CastExpr *cast;
2039 llvm::SmallVector<QualType, 8> ArgTypes;
2040 QualType returnType;
2041
2042 // Push 'id' and 'SEL', the 2 implicit arguments.
Steve Naroffc3a438c2007-11-15 10:43:57 +00002043 if (MsgSendFlavor == MsgSendSuperFunctionDecl)
2044 ArgTypes.push_back(Context->getPointerType(getSuperStructType()));
2045 else
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002046 ArgTypes.push_back(Context->getObjCIdType());
2047 ArgTypes.push_back(Context->getObjCSelType());
2048 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) {
Steve Naroffab972d32007-11-04 22:37:50 +00002049 // Push any user argument types.
Steve Naroff352336b2007-11-05 14:36:37 +00002050 for (int i = 0; i < mDecl->getNumParams(); i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002051 QualType t = mDecl->getParamDecl(i)->getType()->isObjCQualifiedIdType()
2052 ? Context->getObjCIdType()
Fariborz Jahanianc5692492007-12-17 21:03:50 +00002053 : mDecl->getParamDecl(i)->getType();
Steve Naroff352336b2007-11-05 14:36:37 +00002054 ArgTypes.push_back(t);
2055 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002056 returnType = mDecl->getResultType()->isObjCQualifiedIdType()
2057 ? Context->getObjCIdType() : mDecl->getResultType();
Steve Naroffab972d32007-11-04 22:37:50 +00002058 } else {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002059 returnType = Context->getObjCIdType();
Steve Naroffab972d32007-11-04 22:37:50 +00002060 }
2061 // Get the type, we will need to reference it in a couple spots.
Steve Naroff874e2322007-11-15 10:28:18 +00002062 QualType msgSendType = MsgSendFlavor->getType();
Steve Naroffab972d32007-11-04 22:37:50 +00002063
2064 // Create a reference to the objc_msgSend() declaration.
Fariborz Jahanian80a6a5a2007-12-03 19:17:29 +00002065 DeclRefExpr *DRE = new DeclRefExpr(MsgSendFlavor, msgSendType,
2066 SourceLocation());
Steve Naroffab972d32007-11-04 22:37:50 +00002067
2068 // Need to cast objc_msgSend to "void *" (to workaround a GCC bandaid).
2069 // If we don't do this cast, we get the following bizarre warning/note:
2070 // xx.m:13: warning: function called through a non-compatible type
2071 // xx.m:13: note: if this code is reached, the program will abort
2072 cast = new CastExpr(Context->getPointerType(Context->VoidTy), DRE,
2073 SourceLocation());
Steve Naroff335eafa2007-11-15 12:35:21 +00002074
Steve Naroffab972d32007-11-04 22:37:50 +00002075 // Now do the "normal" pointer to function cast.
2076 QualType castType = Context->getFunctionType(returnType,
Fariborz Jahaniand0ee6f92007-12-06 19:49:56 +00002077 &ArgTypes[0], ArgTypes.size(),
2078 Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : false);
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();
Steve Naroff03300712007-11-12 13:56:41 +00002180 int NumIvars = CDecl->getNumInstanceVariables();
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.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002188 if (NumIvars <= 0 && (!RCDecl || !ObjCSynthesizedStructs.count(RCDecl))) {
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002189 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
Chris Lattneraadaf782008-01-31 19:51:04 +00002190 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002191 return;
2192 }
2193
2194 // FIXME: This has potential of causing problem. If
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002195 // SynthesizeObjCInternalStruct is ever called recursively.
Fariborz Jahanian2c7038b2007-11-26 19:52:57 +00002196 Result += "\nstruct ";
2197 Result += CDecl->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +00002198 if (LangOpts.Microsoft)
2199 Result += "_IMPL";
Steve Naroff05b8c782008-03-12 00:25:36 +00002200
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002201 if (NumIvars > 0) {
Steve Narofffea763e82007-11-14 19:25:57 +00002202 const char *cursor = strchr(startBuf, '{');
2203 assert((cursor && endBuf)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002204 && "SynthesizeObjCInternalStruct - malformed @interface");
Steve Narofffea763e82007-11-14 19:25:57 +00002205
2206 // rewrite the original header *without* disturbing the '{'
Chris Lattneraadaf782008-01-31 19:51:04 +00002207 ReplaceText(LocStart, cursor-startBuf-1, Result.c_str(), Result.size());
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002208 if (RCDecl && ObjCSynthesizedStructs.count(RCDecl)) {
Steve Narofffea763e82007-11-14 19:25:57 +00002209 Result = "\n struct ";
2210 Result += RCDecl->getName();
Steve Naroff39bbd9f2008-03-12 21:09:20 +00002211 Result += "_IMPL ";
2212 Result += RCDecl->getName();
Steve Naroff819173c2008-03-12 21:22:52 +00002213 Result += "_IVARS;\n";
Steve Narofffea763e82007-11-14 19:25:57 +00002214
2215 // insert the super class structure definition.
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002216 SourceLocation OnePastCurly =
2217 LocStart.getFileLocWithOffset(cursor-startBuf+1);
2218 InsertText(OnePastCurly, Result.c_str(), Result.size());
Steve Narofffea763e82007-11-14 19:25:57 +00002219 }
2220 cursor++; // past '{'
2221
2222 // Now comment out any visibility specifiers.
2223 while (cursor < endBuf) {
2224 if (*cursor == '@') {
2225 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerdf6a51b2007-11-14 22:57:51 +00002226 // Skip whitespace.
2227 for (++cursor; cursor[0] == ' ' || cursor[0] == '\t'; ++cursor)
2228 /*scan*/;
2229
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002230 // FIXME: presence of @public, etc. inside comment results in
2231 // this transformation as well, which is still correct c-code.
Steve Narofffea763e82007-11-14 19:25:57 +00002232 if (!strncmp(cursor, "public", strlen("public")) ||
2233 !strncmp(cursor, "private", strlen("private")) ||
Fariborz Jahanian95673922007-11-14 22:26:25 +00002234 !strncmp(cursor, "protected", strlen("protected")))
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002235 InsertText(atLoc, "// ", 3);
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002236 }
Fariborz Jahanian95673922007-11-14 22:26:25 +00002237 // FIXME: If there are cases where '<' is used in ivar declaration part
2238 // of user code, then scan the ivar list and use needToScanForQualifiers
2239 // for type checking.
2240 else if (*cursor == '<') {
2241 SourceLocation atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002242 InsertText(atLoc, "/* ", 3);
Fariborz Jahanian95673922007-11-14 22:26:25 +00002243 cursor = strchr(cursor, '>');
2244 cursor++;
2245 atLoc = LocStart.getFileLocWithOffset(cursor-startBuf);
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002246 InsertText(atLoc, " */", 3);
Fariborz Jahanian95673922007-11-14 22:26:25 +00002247 }
Steve Narofffea763e82007-11-14 19:25:57 +00002248 cursor++;
Fariborz Jahanianfdc08a02007-10-31 17:29:28 +00002249 }
Steve Narofffea763e82007-11-14 19:25:57 +00002250 // Don't forget to add a ';'!!
Chris Lattnerf3dd57e2008-01-31 19:42:41 +00002251 InsertText(LocEnd.getFileLocWithOffset(1), ";", 1);
Steve Narofffea763e82007-11-14 19:25:57 +00002252 } else { // we don't have any instance variables - insert super struct.
2253 endBuf += Lexer::MeasureTokenLength(LocEnd, *SM);
2254 Result += " {\n struct ";
2255 Result += RCDecl->getName();
Steve Naroff39bbd9f2008-03-12 21:09:20 +00002256 Result += "_IMPL ";
2257 Result += RCDecl->getName();
Steve Naroff819173c2008-03-12 21:22:52 +00002258 Result += "_IVARS;\n};\n";
Chris Lattneraadaf782008-01-31 19:51:04 +00002259 ReplaceText(LocStart, endBuf-startBuf, Result.c_str(), Result.size());
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002260 }
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002261 // Mark this struct as having been generated.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002262 if (!ObjCSynthesizedStructs.insert(CDecl))
2263 assert(false && "struct already synthesize- SynthesizeObjCInternalStruct");
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002264}
2265
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002266// RewriteObjCMethodsMetaData - Rewrite methods metadata for instance or
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002267/// class methods.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002268void RewriteTest::RewriteObjCMethodsMetaData(instmeth_iterator MethodBegin,
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002269 instmeth_iterator MethodEnd,
Fariborz Jahanian8e991ba2007-10-25 00:14:44 +00002270 bool IsInstanceMethod,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002271 const char *prefix,
Chris Lattner158ecb92007-10-25 17:07:24 +00002272 const char *ClassName,
2273 std::string &Result) {
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002274 if (MethodBegin == MethodEnd) return;
2275
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002276 static bool objc_impl_method = false;
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002277 if (!objc_impl_method) {
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002278 /* struct _objc_method {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002279 SEL _cmd;
2280 char *method_types;
2281 void *_imp;
2282 }
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002283 */
Chris Lattner158ecb92007-10-25 17:07:24 +00002284 Result += "\nstruct _objc_method {\n";
2285 Result += "\tSEL _cmd;\n";
2286 Result += "\tchar *method_types;\n";
2287 Result += "\tvoid *_imp;\n";
2288 Result += "};\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002289
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002290 objc_impl_method = true;
Fariborz Jahanian776d6ff2007-10-19 00:36:46 +00002291 }
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002292
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002293 // Build _objc_method_list for class's methods if needed
Steve Naroff946a6932008-03-11 00:12:29 +00002294
2295 /* struct {
2296 struct _objc_method_list *next_method;
2297 int method_count;
2298 struct _objc_method method_list[];
2299 }
2300 */
2301 Result += "\nstatic struct {\n";
2302 Result += "\tstruct _objc_method_list *next_method;\n";
2303 Result += "\tint method_count;\n";
2304 Result += "\tstruct _objc_method method_list[";
2305 Result += utostr(MethodEnd-MethodBegin);
2306 Result += "];\n} _OBJC_";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002307 Result += prefix;
2308 Result += IsInstanceMethod ? "INSTANCE" : "CLASS";
2309 Result += "_METHODS_";
2310 Result += ClassName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002311 Result += " __attribute__ ((used, section (\"__OBJC, __";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002312 Result += IsInstanceMethod ? "inst" : "cls";
2313 Result += "_meth\")))= ";
2314 Result += "{\n\t0, " + utostr(MethodEnd-MethodBegin) + "\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002315
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002316 Result += "\t,{{(SEL)\"";
2317 Result += (*MethodBegin)->getSelector().getName().c_str();
2318 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002319 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002320 Result += "\", \"";
2321 Result += MethodTypeString;
Steve Naroff946a6932008-03-11 00:12:29 +00002322 Result += "\", (void *)";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002323 Result += MethodInternalNames[*MethodBegin];
2324 Result += "}\n";
2325 for (++MethodBegin; MethodBegin != MethodEnd; ++MethodBegin) {
2326 Result += "\t ,{(SEL)\"";
2327 Result += (*MethodBegin)->getSelector().getName().c_str();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002328 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002329 Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002330 Result += "\", \"";
2331 Result += MethodTypeString;
Steve Naroff946a6932008-03-11 00:12:29 +00002332 Result += "\", (void *)";
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002333 Result += MethodInternalNames[*MethodBegin];
Fariborz Jahanianb7908b52007-11-13 21:02:00 +00002334 Result += "}\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002335 }
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002336 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002337}
2338
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002339/// RewriteObjCProtocolsMetaData - Rewrite protocols meta-data.
2340void RewriteTest::RewriteObjCProtocolsMetaData(ObjCProtocolDecl **Protocols,
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002341 int NumProtocols,
2342 const char *prefix,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002343 const char *ClassName,
2344 std::string &Result) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002345 static bool objc_protocol_methods = false;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002346 if (NumProtocols > 0) {
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002347 for (int i = 0; i < NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002348 ObjCProtocolDecl *PDecl = Protocols[i];
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002349 // Output struct protocol_methods holder of method selector and type.
2350 if (!objc_protocol_methods &&
2351 (PDecl->getNumInstanceMethods() > 0
2352 || PDecl->getNumClassMethods() > 0)) {
2353 /* struct protocol_methods {
2354 SEL _cmd;
2355 char *method_types;
2356 }
2357 */
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002358 Result += "\nstruct protocol_methods {\n";
2359 Result += "\tSEL _cmd;\n";
2360 Result += "\tchar *method_types;\n";
2361 Result += "};\n";
2362
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002363 objc_protocol_methods = true;
2364 }
2365 int NumMethods = PDecl->getNumInstanceMethods();
2366 if(NumMethods > 0) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002367 /* struct _objc_protocol_method_list {
2368 int protocol_method_count;
2369 struct protocol_methods protocols[];
2370 }
2371 */
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002372 Result += "\nstatic struct {\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002373 Result += "\tint protocol_method_count;\n";
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002374 Result += "\tstruct protocol_methods protocols[";
2375 Result += utostr(NumMethods);
2376 Result += "];\n} _OBJC_PROTOCOL_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002377 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002378 Result += " __attribute__ ((used, section (\"__OBJC, __cat_inst_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002379 "{\n\t" + utostr(NumMethods) + "\n";
2380
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002381 // Output instance methods declared in this protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002382 for (ObjCProtocolDecl::instmeth_iterator I = PDecl->instmeth_begin(),
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002383 E = PDecl->instmeth_end(); I != E; ++I) {
2384 if (I == PDecl->instmeth_begin())
2385 Result += "\t ,{{(SEL)\"";
2386 else
2387 Result += "\t ,{(SEL)\"";
2388 Result += (*I)->getSelector().getName().c_str();
2389 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002390 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
Fariborz Jahanianfc591ac2007-12-17 17:56:10 +00002391 Result += "\", \"";
2392 Result += MethodTypeString;
2393 Result += "\"}\n";
2394 }
2395 Result += "\t }\n};\n";
2396 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002397
2398 // Output class methods declared in this protocol.
2399 NumMethods = PDecl->getNumClassMethods();
2400 if (NumMethods > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002401 /* struct _objc_protocol_method_list {
2402 int protocol_method_count;
2403 struct protocol_methods protocols[];
2404 }
2405 */
2406 Result += "\nstatic struct {\n";
2407 Result += "\tint protocol_method_count;\n";
2408 Result += "\tstruct protocol_methods protocols[";
2409 Result += utostr(NumMethods);
2410 Result += "];\n} _OBJC_PROTOCOL_CLASS_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002411 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002412 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002413 "{\n\t";
2414 Result += utostr(NumMethods);
2415 Result += "\n";
2416
Fariborz Jahanianc6e2c2a2007-12-17 18:07:01 +00002417 // Output instance methods declared in this protocol.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002418 for (ObjCProtocolDecl::classmeth_iterator I = PDecl->classmeth_begin(),
Fariborz Jahanianc6e2c2a2007-12-17 18:07:01 +00002419 E = PDecl->classmeth_end(); I != E; ++I) {
2420 if (I == PDecl->classmeth_begin())
2421 Result += "\t ,{{(SEL)\"";
2422 else
2423 Result += "\t ,{(SEL)\"";
Steve Naroff58dbdeb2007-12-14 23:37:57 +00002424 Result += (*I)->getSelector().getName().c_str();
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002425 std::string MethodTypeString;
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002426 Context->getObjCEncodingForMethodDecl((*I), MethodTypeString);
Fariborz Jahanian33e1d642007-10-29 22:57:28 +00002427 Result += "\", \"";
2428 Result += MethodTypeString;
2429 Result += "\"}\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002430 }
2431 Result += "\t }\n};\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002432 }
2433 // Output:
2434 /* struct _objc_protocol {
2435 // Objective-C 1.0 extensions
2436 struct _objc_protocol_extension *isa;
2437 char *protocol_name;
2438 struct _objc_protocol **protocol_list;
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002439 struct _objc_protocol_method_list *instance_methods;
2440 struct _objc_protocol_method_list *class_methods;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002441 };
2442 */
2443 static bool objc_protocol = false;
2444 if (!objc_protocol) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002445 Result += "\nstruct _objc_protocol {\n";
2446 Result += "\tstruct _objc_protocol_extension *isa;\n";
2447 Result += "\tchar *protocol_name;\n";
2448 Result += "\tstruct _objc_protocol **protocol_list;\n";
2449 Result += "\tstruct _objc_protocol_method_list *instance_methods;\n";
2450 Result += "\tstruct _objc_protocol_method_list *class_methods;\n";
2451 Result += "};\n";
2452
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002453 objc_protocol = true;
2454 }
2455
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002456 Result += "\nstatic struct _objc_protocol _OBJC_PROTOCOL_";
2457 Result += PDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002458 Result += " __attribute__ ((used, section (\"__OBJC, __protocol\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002459 "{\n\t0, \"";
2460 Result += PDecl->getName();
2461 Result += "\", 0, ";
Steve Naroff58dbdeb2007-12-14 23:37:57 +00002462 if (PDecl->getNumInstanceMethods() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002463 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002464 Result += PDecl->getName();
2465 Result += ", ";
2466 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002467 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002468 Result += "0, ";
Steve Naroff58dbdeb2007-12-14 23:37:57 +00002469 if (PDecl->getNumClassMethods() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002470 Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_CLASS_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002471 Result += PDecl->getName();
2472 Result += "\n";
2473 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002474 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002475 Result += "0\n";
2476 Result += "};\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002477 }
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002478 // Output the top lovel protocol meta-data for the class.
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002479 /* struct _objc_protocol_list {
2480 struct _objc_protocol_list *next;
2481 int protocol_count;
2482 struct _objc_protocol *class_protocols[];
2483 }
2484 */
2485 Result += "\nstatic struct {\n";
2486 Result += "\tstruct _objc_protocol_list *next;\n";
2487 Result += "\tint protocol_count;\n";
2488 Result += "\tstruct _objc_protocol *class_protocols[";
2489 Result += utostr(NumProtocols);
2490 Result += "];\n} _OBJC_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002491 Result += prefix;
2492 Result += "_PROTOCOLS_";
2493 Result += ClassName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002494 Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002495 "{\n\t0, ";
2496 Result += utostr(NumProtocols);
2497 Result += "\n";
2498
2499 Result += "\t,{&_OBJC_PROTOCOL_";
2500 Result += Protocols[0]->getName();
2501 Result += " \n";
2502
2503 for (int i = 1; i < NumProtocols; i++) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002504 ObjCProtocolDecl *PDecl = Protocols[i];
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002505 Result += "\t ,(struct _objc_protocol_list*)&_OBJC_PROTOCOL_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002506 Result += PDecl->getName();
2507 Result += "\n";
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002508 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002509 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002510 }
2511}
2512
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002513/// RewriteObjCCategoryImplDecl - Rewrite metadata for each category
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002514/// implementation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002515void RewriteTest::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002516 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002517 ObjCInterfaceDecl *ClassDecl = IDecl->getClassInterface();
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002518 // Find category declaration for this implementation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002519 ObjCCategoryDecl *CDecl;
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002520 for (CDecl = ClassDecl->getCategoryList(); CDecl;
2521 CDecl = CDecl->getNextClassCategory())
2522 if (CDecl->getIdentifier() == IDecl->getIdentifier())
2523 break;
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002524
Chris Lattnereb44eee2007-12-23 01:40:15 +00002525 std::string FullCategoryName = ClassDecl->getName();
2526 FullCategoryName += '_';
2527 FullCategoryName += IDecl->getName();
2528
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002529 // Build _objc_method_list for class's instance methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002530 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Chris Lattnereb44eee2007-12-23 01:40:15 +00002531 true, "CATEGORY_", FullCategoryName.c_str(),
2532 Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002533
2534 // Build _objc_method_list for class's class methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002535 RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(),
Chris Lattnereb44eee2007-12-23 01:40:15 +00002536 false, "CATEGORY_", FullCategoryName.c_str(),
2537 Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002538
2539 // Protocols referenced in class declaration?
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002540 // Null CDecl is case of a category implementation with no category interface
2541 if (CDecl)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002542 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(),
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002543 CDecl->getNumReferencedProtocols(),
2544 "CATEGORY",
Chris Lattnereb44eee2007-12-23 01:40:15 +00002545 FullCategoryName.c_str(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002546
2547 /* struct _objc_category {
2548 char *category_name;
2549 char *class_name;
2550 struct _objc_method_list *instance_methods;
2551 struct _objc_method_list *class_methods;
2552 struct _objc_protocol_list *protocols;
2553 // Objective-C 1.0 extensions
2554 uint32_t size; // sizeof (struct _objc_category)
2555 struct _objc_property_list *instance_properties; // category's own
2556 // @property decl.
2557 };
2558 */
2559
2560 static bool objc_category = false;
2561 if (!objc_category) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002562 Result += "\nstruct _objc_category {\n";
2563 Result += "\tchar *category_name;\n";
2564 Result += "\tchar *class_name;\n";
2565 Result += "\tstruct _objc_method_list *instance_methods;\n";
2566 Result += "\tstruct _objc_method_list *class_methods;\n";
2567 Result += "\tstruct _objc_protocol_list *protocols;\n";
2568 Result += "\tunsigned int size;\n";
2569 Result += "\tstruct _objc_property_list *instance_properties;\n";
2570 Result += "};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002571 objc_category = true;
Fariborz Jahaniane887c092007-10-22 21:41:37 +00002572 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002573 Result += "\nstatic struct _objc_category _OBJC_CATEGORY_";
2574 Result += FullCategoryName;
Steve Naroffdbb65432008-03-12 17:18:30 +00002575 Result += " __attribute__ ((used, section (\"__OBJC, __category\")))= {\n\t\"";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002576 Result += IDecl->getName();
2577 Result += "\"\n\t, \"";
2578 Result += ClassDecl->getName();
2579 Result += "\"\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002580
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002581 if (IDecl->getNumInstanceMethods() > 0) {
2582 Result += "\t, (struct _objc_method_list *)"
2583 "&_OBJC_CATEGORY_INSTANCE_METHODS_";
2584 Result += FullCategoryName;
2585 Result += "\n";
2586 }
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002587 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002588 Result += "\t, 0\n";
2589 if (IDecl->getNumClassMethods() > 0) {
2590 Result += "\t, (struct _objc_method_list *)"
2591 "&_OBJC_CATEGORY_CLASS_METHODS_";
2592 Result += FullCategoryName;
2593 Result += "\n";
2594 }
2595 else
2596 Result += "\t, 0\n";
2597
Fariborz Jahanianbac97d42007-11-13 22:09:49 +00002598 if (CDecl && CDecl->getNumReferencedProtocols() > 0) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002599 Result += "\t, (struct _objc_protocol_list *)&_OBJC_CATEGORY_PROTOCOLS_";
2600 Result += FullCategoryName;
2601 Result += "\n";
2602 }
2603 else
2604 Result += "\t, 0\n";
2605 Result += "\t, sizeof(struct _objc_category), 0\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002606}
2607
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002608/// SynthesizeIvarOffsetComputation - This rutine synthesizes computation of
2609/// ivar offset.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002610void RewriteTest::SynthesizeIvarOffsetComputation(ObjCImplementationDecl *IDecl,
2611 ObjCIvarDecl *ivar,
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002612 std::string &Result) {
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00002613 Result += "offsetof(struct ";
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002614 Result += IDecl->getName();
Steve Naroff61ed9ca2008-03-10 23:16:54 +00002615 if (LangOpts.Microsoft)
2616 Result += "_IMPL";
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002617 Result += ", ";
2618 Result += ivar->getName();
2619 Result += ")";
2620}
2621
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002622//===----------------------------------------------------------------------===//
2623// Meta Data Emission
2624//===----------------------------------------------------------------------===//
2625
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002626void RewriteTest::RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl,
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002627 std::string &Result) {
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002628 ObjCInterfaceDecl *CDecl = IDecl->getClassInterface();
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002629
Fariborz Jahanianebe668f2007-11-26 20:59:57 +00002630 // Explictly declared @interface's are already synthesized.
2631 if (CDecl->ImplicitInterfaceDecl()) {
2632 // FIXME: Implementation of a class with no @interface (legacy) doese not
2633 // produce correct synthesis as yet.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002634 SynthesizeObjCInternalStruct(CDecl, Result);
Fariborz Jahanianebe668f2007-11-26 20:59:57 +00002635 }
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002636
Chris Lattnerbe6df082007-12-12 07:56:42 +00002637 // Build _objc_ivar_list metadata for classes ivars if needed
2638 int NumIvars = IDecl->getImplDeclNumIvars() > 0
2639 ? IDecl->getImplDeclNumIvars()
2640 : (CDecl ? CDecl->getNumInstanceVariables() : 0);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002641 if (NumIvars > 0) {
2642 static bool objc_ivar = false;
2643 if (!objc_ivar) {
2644 /* struct _objc_ivar {
2645 char *ivar_name;
2646 char *ivar_type;
2647 int ivar_offset;
2648 };
2649 */
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002650 Result += "\nstruct _objc_ivar {\n";
2651 Result += "\tchar *ivar_name;\n";
2652 Result += "\tchar *ivar_type;\n";
2653 Result += "\tint ivar_offset;\n";
2654 Result += "};\n";
2655
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002656 objc_ivar = true;
2657 }
2658
Steve Naroff946a6932008-03-11 00:12:29 +00002659 /* struct {
2660 int ivar_count;
2661 struct _objc_ivar ivar_list[nIvars];
2662 };
2663 */
2664 Result += "\nstatic struct {\n";
2665 Result += "\tint ivar_count;\n";
2666 Result += "\tstruct _objc_ivar ivar_list[";
2667 Result += utostr(NumIvars);
2668 Result += "];\n} _OBJC_INSTANCE_VARIABLES_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002669 Result += IDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002670 Result += " __attribute__ ((used, section (\"__OBJC, __instance_vars\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002671 "{\n\t";
2672 Result += utostr(NumIvars);
2673 Result += "\n";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002674
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002675 ObjCInterfaceDecl::ivar_iterator IVI, IVE;
Chris Lattnerbe6df082007-12-12 07:56:42 +00002676 if (IDecl->getImplDeclNumIvars() > 0) {
2677 IVI = IDecl->ivar_begin();
2678 IVE = IDecl->ivar_end();
2679 } else {
2680 IVI = CDecl->ivar_begin();
2681 IVE = CDecl->ivar_end();
2682 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002683 Result += "\t,{{\"";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002684 Result += (*IVI)->getName();
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002685 Result += "\", \"";
2686 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002687 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding,
2688 EncodingRecordTypes);
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002689 Result += StrEncoding;
2690 Result += "\", ";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002691 SynthesizeIvarOffsetComputation(IDecl, *IVI, Result);
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002692 Result += "}\n";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002693 for (++IVI; IVI != IVE; ++IVI) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002694 Result += "\t ,{\"";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002695 Result += (*IVI)->getName();
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002696 Result += "\", \"";
2697 std::string StrEncoding;
Fariborz Jahanian7d6b46d2008-01-22 22:44:46 +00002698 Context->getObjCEncodingForType((*IVI)->getType(), StrEncoding,
2699 EncodingRecordTypes);
Fariborz Jahanian160eb652007-10-29 17:16:25 +00002700 Result += StrEncoding;
2701 Result += "\", ";
Chris Lattnerbe6df082007-12-12 07:56:42 +00002702 SynthesizeIvarOffsetComputation(IDecl, (*IVI), Result);
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002703 Result += "}\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002704 }
2705
2706 Result += "\t }\n};\n";
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002707 }
2708
2709 // Build _objc_method_list for class's instance methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002710 RewriteObjCMethodsMetaData(IDecl->instmeth_begin(), IDecl->instmeth_end(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002711 true, "", IDecl->getName(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002712
2713 // Build _objc_method_list for class's class methods if needed
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002714 RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002715 false, "", IDecl->getName(), Result);
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002716
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002717 // Protocols referenced in class declaration?
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002718 RewriteObjCProtocolsMetaData(CDecl->getReferencedProtocols(),
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002719 CDecl->getNumIntfRefProtocols(),
Chris Lattnerab4c4d52007-12-12 07:46:12 +00002720 "CLASS", CDecl->getName(), Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002721
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002722
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002723 // Declaration of class/meta-class metadata
2724 /* struct _objc_class {
2725 struct _objc_class *isa; // or const char *root_class_name when metadata
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002726 const char *super_class_name;
2727 char *name;
2728 long version;
2729 long info;
2730 long instance_size;
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002731 struct _objc_ivar_list *ivars;
2732 struct _objc_method_list *methods;
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002733 struct objc_cache *cache;
2734 struct objc_protocol_list *protocols;
2735 const char *ivar_layout;
2736 struct _objc_class_ext *ext;
2737 };
2738 */
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002739 static bool objc_class = false;
2740 if (!objc_class) {
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002741 Result += "\nstruct _objc_class {\n";
2742 Result += "\tstruct _objc_class *isa;\n";
2743 Result += "\tconst char *super_class_name;\n";
2744 Result += "\tchar *name;\n";
2745 Result += "\tlong version;\n";
2746 Result += "\tlong info;\n";
2747 Result += "\tlong instance_size;\n";
2748 Result += "\tstruct _objc_ivar_list *ivars;\n";
2749 Result += "\tstruct _objc_method_list *methods;\n";
2750 Result += "\tstruct objc_cache *cache;\n";
2751 Result += "\tstruct _objc_protocol_list *protocols;\n";
2752 Result += "\tconst char *ivar_layout;\n";
2753 Result += "\tstruct _objc_class_ext *ext;\n";
2754 Result += "};\n";
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002755 objc_class = true;
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002756 }
2757
2758 // Meta-class metadata generation.
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002759 ObjCInterfaceDecl *RootClass = 0;
2760 ObjCInterfaceDecl *SuperClass = CDecl->getSuperClass();
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002761 while (SuperClass) {
2762 RootClass = SuperClass;
2763 SuperClass = SuperClass->getSuperClass();
2764 }
2765 SuperClass = CDecl->getSuperClass();
2766
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002767 Result += "\nstatic struct _objc_class _OBJC_METACLASS_";
2768 Result += CDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002769 Result += " __attribute__ ((used, section (\"__OBJC, __meta_class\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002770 "{\n\t(struct _objc_class *)\"";
2771 Result += (RootClass ? RootClass->getName() : CDecl->getName());
2772 Result += "\"";
2773
2774 if (SuperClass) {
2775 Result += ", \"";
2776 Result += SuperClass->getName();
2777 Result += "\", \"";
2778 Result += CDecl->getName();
2779 Result += "\"";
2780 }
2781 else {
2782 Result += ", 0, \"";
2783 Result += CDecl->getName();
2784 Result += "\"";
2785 }
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002786 // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it.
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002787 // 'info' field is initialized to CLS_META(2) for metaclass
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002788 Result += ", 0,2, sizeof(struct _objc_class), 0";
Steve Naroffb26d7132007-12-05 21:49:40 +00002789 if (IDecl->getNumClassMethods() > 0) {
Steve Naroff23f41272008-03-11 18:14:26 +00002790 Result += "\n\t, (struct _objc_method_list *)&_OBJC_CLASS_METHODS_";
Steve Naroffb26d7132007-12-05 21:49:40 +00002791 Result += IDecl->getName();
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002792 Result += "\n";
2793 }
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002794 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002795 Result += ", 0\n";
2796 if (CDecl->getNumIntfRefProtocols() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002797 Result += "\t,0, (struct _objc_protocol_list *)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002798 Result += CDecl->getName();
2799 Result += ",0,0\n";
2800 }
Fariborz Jahanian454cb012007-10-24 20:54:23 +00002801 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002802 Result += "\t,0,0,0,0\n";
2803 Result += "};\n";
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002804
2805 // class metadata generation.
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002806 Result += "\nstatic struct _objc_class _OBJC_CLASS_";
2807 Result += CDecl->getName();
Steve Naroffdbb65432008-03-12 17:18:30 +00002808 Result += " __attribute__ ((used, section (\"__OBJC, __class\")))= "
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002809 "{\n\t&_OBJC_METACLASS_";
2810 Result += CDecl->getName();
2811 if (SuperClass) {
2812 Result += ", \"";
2813 Result += SuperClass->getName();
2814 Result += "\", \"";
2815 Result += CDecl->getName();
2816 Result += "\"";
2817 }
2818 else {
2819 Result += ", 0, \"";
2820 Result += CDecl->getName();
2821 Result += "\"";
2822 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002823 // 'info' field is initialized to CLS_CLASS(1) for class
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002824 Result += ", 0,1";
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002825 if (!ObjCSynthesizedStructs.count(CDecl))
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002826 Result += ",0";
2827 else {
2828 // class has size. Must synthesize its size.
Fariborz Jahanian909f02a2007-11-05 17:47:33 +00002829 Result += ",sizeof(struct ";
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002830 Result += CDecl->getName();
Steve Naroffba9ac4e2008-03-10 23:33:22 +00002831 if (LangOpts.Microsoft)
2832 Result += "_IMPL";
Fariborz Jahanian4d733d32007-10-26 23:09:28 +00002833 Result += ")";
2834 }
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002835 if (NumIvars > 0) {
Steve Naroffc0a123c2008-03-11 17:37:02 +00002836 Result += ", (struct _objc_ivar_list *)&_OBJC_INSTANCE_VARIABLES_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002837 Result += CDecl->getName();
2838 Result += "\n\t";
2839 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002840 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002841 Result += ",0";
2842 if (IDecl->getNumInstanceMethods() > 0) {
Steve Naroff946a6932008-03-11 00:12:29 +00002843 Result += ", (struct _objc_method_list *)&_OBJC_INSTANCE_METHODS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002844 Result += CDecl->getName();
2845 Result += ", 0\n\t";
2846 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002847 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002848 Result += ",0,0";
2849 if (CDecl->getNumIntfRefProtocols() > 0) {
Steve Naroff8eb4a5e2008-03-12 01:06:30 +00002850 Result += ", (struct _objc_protocol_list*)&_OBJC_CLASS_PROTOCOLS_";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002851 Result += CDecl->getName();
2852 Result += ", 0,0\n";
2853 }
Fariborz Jahaniandeef5182007-10-23 18:53:48 +00002854 else
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002855 Result += ",0,0,0\n";
2856 Result += "};\n";
Fariborz Jahanian9f0a1cb2007-10-23 00:02:02 +00002857}
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002858
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002859/// RewriteImplementations - This routine rewrites all method implementations
2860/// and emits meta-data.
2861
2862void RewriteTest::RewriteImplementations(std::string &Result) {
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002863 int ClsDefCount = ClassImplementation.size();
2864 int CatDefCount = CategoryImplementation.size();
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002865
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002866 if (ClsDefCount == 0 && CatDefCount == 0)
2867 return;
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002868 // Rewrite implemented methods
2869 for (int i = 0; i < ClsDefCount; i++)
2870 RewriteImplementationDecl(ClassImplementation[i]);
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002871
Fariborz Jahanian66d6b292007-11-13 20:04:28 +00002872 for (int i = 0; i < CatDefCount; i++)
2873 RewriteImplementationDecl(CategoryImplementation[i]);
2874
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002875 // This is needed for use of offsetof
2876 Result += "#include <stddef.h>\n";
Fariborz Jahanian7a3279d2007-11-13 19:21:13 +00002877
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002878 // For each implemented class, write out all its meta data.
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002879 for (int i = 0; i < ClsDefCount; i++)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002880 RewriteObjCClassMetaData(ClassImplementation[i], Result);
Fariborz Jahanian2e6d9352007-10-24 19:23:36 +00002881
2882 // For each implemented category, write out all its meta data.
2883 for (int i = 0; i < CatDefCount; i++)
Ted Kremeneka526c5c2008-01-07 19:49:32 +00002884 RewriteObjCCategoryImplDecl(CategoryImplementation[i], Result);
Fariborz Jahanianf4d331d2007-10-18 22:09:03 +00002885
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002886 // Write objc_symtab metadata
2887 /*
2888 struct _objc_symtab
2889 {
2890 long sel_ref_cnt;
2891 SEL *refs;
2892 short cls_def_cnt;
2893 short cat_def_cnt;
2894 void *defs[cls_def_cnt + cat_def_cnt];
2895 };
2896 */
2897
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002898 Result += "\nstruct _objc_symtab {\n";
2899 Result += "\tlong sel_ref_cnt;\n";
2900 Result += "\tSEL *refs;\n";
2901 Result += "\tshort cls_def_cnt;\n";
2902 Result += "\tshort cat_def_cnt;\n";
2903 Result += "\tvoid *defs[" + utostr(ClsDefCount + CatDefCount)+ "];\n";
2904 Result += "};\n\n";
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002905
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002906 Result += "static struct _objc_symtab "
Steve Naroffdbb65432008-03-12 17:18:30 +00002907 "_OBJC_SYMBOLS __attribute__((used, section (\"__OBJC, __symbols\")))= {\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002908 Result += "\t0, 0, " + utostr(ClsDefCount)
2909 + ", " + utostr(CatDefCount) + "\n";
2910 for (int i = 0; i < ClsDefCount; i++) {
2911 Result += "\t,&_OBJC_CLASS_";
2912 Result += ClassImplementation[i]->getName();
2913 Result += "\n";
2914 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002915
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002916 for (int i = 0; i < CatDefCount; i++) {
2917 Result += "\t,&_OBJC_CATEGORY_";
2918 Result += CategoryImplementation[i]->getClassInterface()->getName();
2919 Result += "_";
2920 Result += CategoryImplementation[i]->getName();
2921 Result += "\n";
2922 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002923
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002924 Result += "};\n\n";
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002925
2926 // Write objc_module metadata
2927
2928 /*
2929 struct _objc_module {
2930 long version;
2931 long size;
2932 const char *name;
2933 struct _objc_symtab *symtab;
2934 }
2935 */
2936
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002937 Result += "\nstruct _objc_module {\n";
2938 Result += "\tlong version;\n";
2939 Result += "\tlong size;\n";
2940 Result += "\tconst char *name;\n";
2941 Result += "\tstruct _objc_symtab *symtab;\n";
2942 Result += "};\n\n";
2943 Result += "static struct _objc_module "
Steve Naroffdbb65432008-03-12 17:18:30 +00002944 "_OBJC_MODULES __attribute__ ((used, section (\"__OBJC, __module_info\")))= {\n";
Fariborz Jahanian26e4cd32007-10-26 19:46:17 +00002945 Result += "\t" + utostr(OBJC_ABI_VERSION) +
2946 ", sizeof(struct _objc_module), \"\", &_OBJC_SYMBOLS\n";
Fariborz Jahanianccd87b02007-10-25 20:55:25 +00002947 Result += "};\n\n";
Steve Naroff4f943c22008-03-10 20:43:59 +00002948
2949 if (LangOpts.Microsoft) {
2950 Result += "#pragma section(\".objc_module_info$B\",long,read,write)\n";
2951 Result += "#pragma data_seq(push, \".objc_module_info$B\")\n";
2952 Result += "static struct _objc_module *_POINTER_OBJC_MODULES = ";
2953 Result += "&_OBJC_MODULES;\n";
2954 Result += "#pragma data_seg(pop)\n\n";
2955 }
Fariborz Jahanian545b9ae2007-10-18 19:23:00 +00002956}
Chris Lattner311ff022007-10-16 22:36:42 +00002957