Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1 | //===--- RewriteObjC.cpp - Playground for the code rewriter ---------------===// |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Hacks and fun related to the code rewriter. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Daniel Dunbar | 9b414d3 | 2010-06-15 17:48:49 +0000 | [diff] [blame] | 14 | #include "clang/Rewrite/ASTConsumers.h" |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 15 | #include "clang/Rewrite/Rewriter.h" |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 16 | #include "clang/AST/AST.h" |
| 17 | #include "clang/AST/ASTConsumer.h" |
Steve Naroff | 8599e7a | 2008-12-08 16:43:47 +0000 | [diff] [blame] | 18 | #include "clang/AST/ParentMap.h" |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 19 | #include "clang/Basic/SourceManager.h" |
Steve Naroff | ebf2b56 | 2007-10-23 23:50:29 +0000 | [diff] [blame] | 20 | #include "clang/Basic/IdentifierTable.h" |
Chris Lattner | 0750618 | 2007-11-30 22:53:43 +0000 | [diff] [blame] | 21 | #include "clang/Basic/Diagnostic.h" |
Chris Lattner | 26de465 | 2007-12-02 01:13:47 +0000 | [diff] [blame] | 22 | #include "clang/Lex/Lexer.h" |
Benjamin Kramer | 6cb7c1a | 2009-08-23 12:08:50 +0000 | [diff] [blame] | 23 | #include "llvm/Support/MemoryBuffer.h" |
| 24 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | 158ecb9 | 2007-10-25 17:07:24 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/StringExtras.h" |
Fariborz Jahanian | 26e4cd3 | 2007-10-26 19:46:17 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/SmallPtrSet.h" |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/OwningPtr.h" |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/DenseSet.h" |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 29 | |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 30 | using namespace clang; |
Chris Lattner | 158ecb9 | 2007-10-25 17:07:24 +0000 | [diff] [blame] | 31 | using llvm::utostr; |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 32 | |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 33 | namespace { |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 34 | class RewriteObjC : public ASTConsumer { |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 35 | protected: |
| 36 | |
Fariborz Jahanian | 73e437b | 2009-12-23 21:18:41 +0000 | [diff] [blame] | 37 | enum { |
Nico Weber | 59b173d | 2010-11-22 10:26:41 +0000 | [diff] [blame] | 38 | BLOCK_FIELD_IS_OBJECT = 3, /* id, NSObject, __attribute__((NSObject)), |
Fariborz Jahanian | 73e437b | 2009-12-23 21:18:41 +0000 | [diff] [blame] | 39 | block, ... */ |
| 40 | BLOCK_FIELD_IS_BLOCK = 7, /* a block variable */ |
| 41 | BLOCK_FIELD_IS_BYREF = 8, /* the on stack structure holding the |
| 42 | __block variable */ |
Nico Weber | 59b173d | 2010-11-22 10:26:41 +0000 | [diff] [blame] | 43 | BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy |
Fariborz Jahanian | 73e437b | 2009-12-23 21:18:41 +0000 | [diff] [blame] | 44 | helpers */ |
Nico Weber | 59b173d | 2010-11-22 10:26:41 +0000 | [diff] [blame] | 45 | BLOCK_BYREF_CALLER = 128, /* called from __block (byref) copy/dispose |
Fariborz Jahanian | 73e437b | 2009-12-23 21:18:41 +0000 | [diff] [blame] | 46 | support routines */ |
| 47 | BLOCK_BYREF_CURRENT_MAX = 256 |
| 48 | }; |
| 49 | |
| 50 | enum { |
| 51 | BLOCK_NEEDS_FREE = (1 << 24), |
| 52 | BLOCK_HAS_COPY_DISPOSE = (1 << 25), |
| 53 | BLOCK_HAS_CXX_OBJ = (1 << 26), |
| 54 | BLOCK_IS_GC = (1 << 27), |
| 55 | BLOCK_IS_GLOBAL = (1 << 28), |
| 56 | BLOCK_HAS_DESCRIPTOR = (1 << 29) |
| 57 | }; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 58 | static const int OBJC_ABI_VERSION = 7; |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 59 | |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 60 | Rewriter Rewrite; |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 61 | DiagnosticsEngine &Diags; |
Steve Naroff | 4f943c2 | 2008-03-10 20:43:59 +0000 | [diff] [blame] | 62 | const LangOptions &LangOpts; |
Chris Lattner | 01c5748 | 2007-10-17 22:35:30 +0000 | [diff] [blame] | 63 | ASTContext *Context; |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 64 | SourceManager *SM; |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 65 | TranslationUnitDecl *TUDecl; |
Chris Lattner | 2b2453a | 2009-01-17 06:22:33 +0000 | [diff] [blame] | 66 | FileID MainFileID; |
Chris Lattner | 26de465 | 2007-12-02 01:13:47 +0000 | [diff] [blame] | 67 | const char *MainFileStart, *MainFileEnd; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 68 | Stmt *CurrentBody; |
| 69 | ParentMap *PropParentMap; // created lazily. |
Fariborz Jahanian | dd8079c | 2011-12-05 19:50:04 +0000 | [diff] [blame] | 70 | std::string InFileName; |
| 71 | raw_ostream* OutFile; |
| 72 | std::string Preamble; |
| 73 | |
| 74 | TypeDecl *ProtocolTypeDecl; |
| 75 | VarDecl *GlobalVarDecl; |
| 76 | unsigned RewriteFailedDiag; |
Fariborz Jahanian | dd8079c | 2011-12-05 19:50:04 +0000 | [diff] [blame] | 77 | // ObjC string constant support. |
| 78 | unsigned NumObjCStringLiterals; |
| 79 | VarDecl *ConstantStringClassReference; |
| 80 | RecordDecl *NSStringRecord; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 81 | |
Fariborz Jahanian | dd8079c | 2011-12-05 19:50:04 +0000 | [diff] [blame] | 82 | // ObjC foreach break/continue generation support. |
| 83 | int BcLabelCount; |
| 84 | |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 85 | unsigned TryFinallyContainsReturnDiag; |
Fariborz Jahanian | dd8079c | 2011-12-05 19:50:04 +0000 | [diff] [blame] | 86 | // Needed for super. |
| 87 | ObjCMethodDecl *CurMethodDef; |
| 88 | RecordDecl *SuperStructDecl; |
| 89 | RecordDecl *ConstantStringDecl; |
| 90 | |
| 91 | FunctionDecl *MsgSendFunctionDecl; |
| 92 | FunctionDecl *MsgSendSuperFunctionDecl; |
| 93 | FunctionDecl *MsgSendStretFunctionDecl; |
| 94 | FunctionDecl *MsgSendSuperStretFunctionDecl; |
| 95 | FunctionDecl *MsgSendFpretFunctionDecl; |
| 96 | FunctionDecl *GetClassFunctionDecl; |
| 97 | FunctionDecl *GetMetaClassFunctionDecl; |
| 98 | FunctionDecl *GetSuperClassFunctionDecl; |
| 99 | FunctionDecl *SelGetUidFunctionDecl; |
| 100 | FunctionDecl *CFStringFunctionDecl; |
| 101 | FunctionDecl *SuperContructorFunctionDecl; |
| 102 | FunctionDecl *CurFunctionDef; |
| 103 | FunctionDecl *CurFunctionDeclToDeclareForBlock; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 104 | |
Fariborz Jahanian | dd8079c | 2011-12-05 19:50:04 +0000 | [diff] [blame] | 105 | /* Misc. containers needed for meta-data rewrite. */ |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 106 | SmallVector<ObjCImplementationDecl *, 8> ClassImplementation; |
| 107 | SmallVector<ObjCCategoryImplDecl *, 8> CategoryImplementation; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 108 | llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCSynthesizedStructs; |
Steve Naroff | fbfe825 | 2008-05-06 18:26:51 +0000 | [diff] [blame] | 109 | llvm::SmallPtrSet<ObjCProtocolDecl*, 8> ObjCSynthesizedProtocols; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 110 | llvm::SmallPtrSet<ObjCInterfaceDecl*, 8> ObjCForwardDecls; |
| 111 | llvm::DenseMap<ObjCMethodDecl*, std::string> MethodInternalNames; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 112 | SmallVector<Stmt *, 32> Stmts; |
| 113 | SmallVector<int, 8> ObjCBcLabelNo; |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 114 | // Remember all the @protocol(<expr>) expressions. |
| 115 | llvm::SmallPtrSet<ObjCProtocolDecl *, 32> ProtocolExprDecls; |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 116 | |
| 117 | llvm::DenseSet<uint64_t> CopyDestroyCache; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 118 | |
| 119 | // Block expressions. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 120 | SmallVector<BlockExpr *, 32> Blocks; |
| 121 | SmallVector<int, 32> InnerDeclRefsCount; |
| 122 | SmallVector<BlockDeclRefExpr *, 32> InnerDeclRefs; |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 123 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 124 | SmallVector<BlockDeclRefExpr *, 32> BlockDeclRefs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 125 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 126 | // Block related declarations. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 127 | SmallVector<ValueDecl *, 8> BlockByCopyDecls; |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 128 | llvm::SmallPtrSet<ValueDecl *, 8> BlockByCopyDeclsPtrSet; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 129 | SmallVector<ValueDecl *, 8> BlockByRefDecls; |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 130 | llvm::SmallPtrSet<ValueDecl *, 8> BlockByRefDeclsPtrSet; |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 131 | llvm::DenseMap<ValueDecl *, unsigned> BlockByRefDeclNo; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 132 | llvm::SmallPtrSet<ValueDecl *, 8> ImportedBlockDecls; |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 133 | llvm::SmallPtrSet<VarDecl *, 8> ImportedLocalExternalDecls; |
| 134 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 135 | llvm::DenseMap<BlockExpr *, std::string> RewrittenBlockExprs; |
| 136 | |
Steve Naroff | 4c3580e | 2008-12-04 23:50:32 +0000 | [diff] [blame] | 137 | // This maps an original source AST to it's rewritten form. This allows |
| 138 | // us to avoid rewriting the same node twice (which is very uncommon). |
| 139 | // This is needed to support some of the exotic property rewriting. |
| 140 | llvm::DenseMap<Stmt *, Stmt *> ReplacedNodes; |
Steve Naroff | 15f081d | 2008-12-03 00:56:33 +0000 | [diff] [blame] | 141 | |
Fariborz Jahanian | dd8079c | 2011-12-05 19:50:04 +0000 | [diff] [blame] | 142 | // Needed for header files being rewritten |
| 143 | bool IsHeader; |
| 144 | bool SilenceRewriteMacroWarning; |
| 145 | bool objc_impl_method; |
| 146 | |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 147 | bool DisableReplaceStmt; |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 148 | class DisableReplaceStmtScope { |
| 149 | RewriteObjC &R; |
| 150 | bool SavedValue; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 151 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 152 | public: |
| 153 | DisableReplaceStmtScope(RewriteObjC &R) |
| 154 | : R(R), SavedValue(R.DisableReplaceStmt) { |
| 155 | R.DisableReplaceStmt = true; |
| 156 | } |
| 157 | ~DisableReplaceStmtScope() { |
| 158 | R.DisableReplaceStmt = SavedValue; |
| 159 | } |
| 160 | }; |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 161 | void InitializeCommon(ASTContext &context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 162 | |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 163 | public: |
Ted Kremenek | e3a6198 | 2008-05-31 20:11:04 +0000 | [diff] [blame] | 164 | |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 165 | // Top Level Driver code. |
Argyrios Kyrtzidis | 88c2596 | 2011-11-18 00:26:59 +0000 | [diff] [blame] | 166 | virtual bool HandleTopLevelDecl(DeclGroupRef D) { |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 167 | for (DeclGroupRef::iterator I = D.begin(), E = D.end(); I != E; ++I) { |
| 168 | if (isa<ObjCClassDecl>((*I))) { |
| 169 | RewriteForwardClassDecl(D); |
| 170 | break; |
| 171 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 172 | HandleTopLevelSingleDecl(*I); |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 173 | } |
Argyrios Kyrtzidis | 88c2596 | 2011-11-18 00:26:59 +0000 | [diff] [blame] | 174 | return true; |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 175 | } |
| 176 | void HandleTopLevelSingleDecl(Decl *D); |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 177 | void HandleDeclInMainFile(Decl *D); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 178 | RewriteObjC(std::string inFile, raw_ostream *OS, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 179 | DiagnosticsEngine &D, const LangOptions &LOpts, |
Eli Friedman | c6d656e | 2009-05-18 22:39:16 +0000 | [diff] [blame] | 180 | bool silenceMacroWarn); |
Ted Kremenek | e452e0f | 2008-08-08 04:15:52 +0000 | [diff] [blame] | 181 | |
| 182 | ~RewriteObjC() {} |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 183 | |
Chris Lattner | dacbc5d | 2009-03-28 04:11:33 +0000 | [diff] [blame] | 184 | virtual void HandleTranslationUnit(ASTContext &C); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 185 | |
Fariborz Jahanian | 88906cd | 2010-02-05 16:43:40 +0000 | [diff] [blame] | 186 | void ReplaceStmt(Stmt *Old, Stmt *New) { |
Steve Naroff | 4c3580e | 2008-12-04 23:50:32 +0000 | [diff] [blame] | 187 | Stmt *ReplacingStmt = ReplacedNodes[Old]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 188 | |
Steve Naroff | 4c3580e | 2008-12-04 23:50:32 +0000 | [diff] [blame] | 189 | if (ReplacingStmt) |
| 190 | return; // We can't rewrite the same node twice. |
Chris Lattner | dcbc5b0 | 2008-01-31 19:37:57 +0000 | [diff] [blame] | 191 | |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 192 | if (DisableReplaceStmt) |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 193 | return; |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 194 | |
Steve Naroff | 4c3580e | 2008-12-04 23:50:32 +0000 | [diff] [blame] | 195 | // If replacement succeeded or warning disabled return with no warning. |
Fariborz Jahanian | 88906cd | 2010-02-05 16:43:40 +0000 | [diff] [blame] | 196 | if (!Rewrite.ReplaceStmt(Old, New)) { |
Steve Naroff | 4c3580e | 2008-12-04 23:50:32 +0000 | [diff] [blame] | 197 | ReplacedNodes[Old] = New; |
| 198 | return; |
| 199 | } |
| 200 | if (SilenceRewriteMacroWarning) |
| 201 | return; |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 202 | Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag) |
| 203 | << Old->getSourceRange(); |
Chris Lattner | dcbc5b0 | 2008-01-31 19:37:57 +0000 | [diff] [blame] | 204 | } |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 205 | |
| 206 | void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) { |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 207 | if (DisableReplaceStmt) |
| 208 | return; |
| 209 | |
Nick Lewycky | 7e74924 | 2010-10-31 21:07:24 +0000 | [diff] [blame] | 210 | // Measure the old text. |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 211 | int Size = Rewrite.getRangeSize(SrcRange); |
| 212 | if (Size == -1) { |
| 213 | Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag) |
| 214 | << Old->getSourceRange(); |
| 215 | return; |
| 216 | } |
| 217 | // Get the new text. |
| 218 | std::string SStr; |
| 219 | llvm::raw_string_ostream S(SStr); |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 220 | New->printPretty(S, *Context, 0, PrintingPolicy(LangOpts)); |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 221 | const std::string &Str = S.str(); |
| 222 | |
| 223 | // If replacement succeeded or warning disabled return with no warning. |
Daniel Dunbar | d7407dc | 2009-08-19 19:10:30 +0000 | [diff] [blame] | 224 | if (!Rewrite.ReplaceText(SrcRange.getBegin(), Size, Str)) { |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 225 | ReplacedNodes[Old] = New; |
| 226 | return; |
| 227 | } |
| 228 | if (SilenceRewriteMacroWarning) |
| 229 | return; |
| 230 | Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag) |
| 231 | << Old->getSourceRange(); |
| 232 | } |
| 233 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 234 | void InsertText(SourceLocation Loc, StringRef Str, |
Steve Naroff | ba92b2e | 2008-03-27 22:29:16 +0000 | [diff] [blame] | 235 | bool InsertAfter = true) { |
Chris Lattner | aadaf78 | 2008-01-31 19:51:04 +0000 | [diff] [blame] | 236 | // If insertion succeeded or warning disabled return with no warning. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 237 | if (!Rewrite.InsertText(Loc, Str, InsertAfter) || |
Chris Lattner | f3dd57e | 2008-01-31 19:42:41 +0000 | [diff] [blame] | 238 | SilenceRewriteMacroWarning) |
| 239 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 240 | |
Chris Lattner | f3dd57e | 2008-01-31 19:42:41 +0000 | [diff] [blame] | 241 | Diags.Report(Context->getFullLoc(Loc), RewriteFailedDiag); |
| 242 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 243 | |
Chris Lattner | aadaf78 | 2008-01-31 19:51:04 +0000 | [diff] [blame] | 244 | void ReplaceText(SourceLocation Start, unsigned OrigLength, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 245 | StringRef Str) { |
Chris Lattner | aadaf78 | 2008-01-31 19:51:04 +0000 | [diff] [blame] | 246 | // If removal succeeded or warning disabled return with no warning. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 247 | if (!Rewrite.ReplaceText(Start, OrigLength, Str) || |
Chris Lattner | aadaf78 | 2008-01-31 19:51:04 +0000 | [diff] [blame] | 248 | SilenceRewriteMacroWarning) |
| 249 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 250 | |
Chris Lattner | aadaf78 | 2008-01-31 19:51:04 +0000 | [diff] [blame] | 251 | Diags.Report(Context->getFullLoc(Start), RewriteFailedDiag); |
| 252 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 253 | |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 254 | // Syntactic Rewriting. |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 255 | void RewriteRecordBody(RecordDecl *RD); |
Fariborz Jahanian | 452b899 | 2008-01-19 00:30:35 +0000 | [diff] [blame] | 256 | void RewriteInclude(); |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 257 | void RewriteForwardClassDecl(DeclGroupRef D); |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 258 | void RewriteForwardClassDecl(const llvm::SmallVector<Decl*, 8> &DG); |
| 259 | void RewriteForwardClassEpilogue(ObjCClassDecl *ClassDecl, |
| 260 | const std::string &typedefString); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 261 | void RewriteImplementations(); |
Steve Naroff | a0876e8 | 2008-12-02 17:36:43 +0000 | [diff] [blame] | 262 | void RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, |
| 263 | ObjCImplementationDecl *IMD, |
| 264 | ObjCCategoryImplDecl *CID); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 265 | void RewriteInterfaceDecl(ObjCInterfaceDecl *Dcl); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 266 | void RewriteImplementationDecl(Decl *Dcl); |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 267 | void RewriteObjCMethodDecl(const ObjCInterfaceDecl *IDecl, |
| 268 | ObjCMethodDecl *MDecl, std::string &ResultStr); |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 269 | void RewriteTypeIntoString(QualType T, std::string &ResultStr, |
| 270 | const FunctionType *&FPRetType); |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 271 | void RewriteByRefString(std::string &ResultStr, const std::string &Name, |
Fariborz Jahanian | 1e8011e | 2011-01-27 23:18:15 +0000 | [diff] [blame] | 272 | ValueDecl *VD, bool def=false); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 273 | void RewriteCategoryDecl(ObjCCategoryDecl *Dcl); |
| 274 | void RewriteProtocolDecl(ObjCProtocolDecl *Dcl); |
| 275 | void RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *Dcl); |
| 276 | void RewriteMethodDeclaration(ObjCMethodDecl *Method); |
Steve Naroff | 6327e0d | 2009-01-11 01:06:09 +0000 | [diff] [blame] | 277 | void RewriteProperty(ObjCPropertyDecl *prop); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 278 | void RewriteFunctionDecl(FunctionDecl *FD); |
Daniel Dunbar | fa297fb | 2010-06-30 19:16:53 +0000 | [diff] [blame] | 279 | void RewriteBlockPointerType(std::string& Str, QualType Type); |
| 280 | void RewriteBlockPointerTypeVariable(std::string& Str, ValueDecl *VD); |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 281 | void RewriteBlockLiteralFunctionDecl(FunctionDecl *FD); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 282 | void RewriteObjCQualifiedInterfaceTypes(Decl *Dcl); |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 283 | void RewriteTypeOfDecl(VarDecl *VD); |
Steve Naroff | 4f95b75 | 2008-07-29 18:15:38 +0000 | [diff] [blame] | 284 | void RewriteObjCQualifiedInterfaceTypes(Expr *E); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 285 | |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 286 | // Expression Rewriting. |
Steve Naroff | f3473a7 | 2007-11-09 15:20:18 +0000 | [diff] [blame] | 287 | Stmt *RewriteFunctionBodyOrGlobalInitializer(Stmt *S); |
Chris Lattner | e64b777 | 2007-10-24 16:57:36 +0000 | [diff] [blame] | 288 | Stmt *RewriteAtEncode(ObjCEncodeExpr *Exp); |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 289 | Stmt *RewritePropertyOrImplicitGetter(PseudoObjectExpr *Pseudo); |
| 290 | Stmt *RewritePropertyOrImplicitSetter(PseudoObjectExpr *Pseudo); |
Steve Naroff | b42f841 | 2007-11-05 14:50:49 +0000 | [diff] [blame] | 291 | Stmt *RewriteAtSelector(ObjCSelectorExpr *Exp); |
Chris Lattner | e64b777 | 2007-10-24 16:57:36 +0000 | [diff] [blame] | 292 | Stmt *RewriteMessageExpr(ObjCMessageExpr *Exp); |
Steve Naroff | beaf299 | 2007-11-03 11:27:19 +0000 | [diff] [blame] | 293 | Stmt *RewriteObjCStringLiteral(ObjCStringLiteral *Exp); |
Fariborz Jahanian | 36ee2cb | 2007-12-07 18:47:10 +0000 | [diff] [blame] | 294 | Stmt *RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 295 | void RewriteTryReturnStmts(Stmt *S); |
| 296 | void RewriteSyncReturnStmts(Stmt *S, std::string buf); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 297 | Stmt *RewriteObjCTryStmt(ObjCAtTryStmt *S); |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 298 | Stmt *RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 299 | Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S); |
Chris Lattner | 338d1e2 | 2008-01-31 05:10:40 +0000 | [diff] [blame] | 300 | Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S, |
| 301 | SourceLocation OrigEnd); |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 302 | Stmt *RewriteBreakStmt(BreakStmt *S); |
| 303 | Stmt *RewriteContinueStmt(ContinueStmt *S); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 304 | void RewriteCastExpr(CStyleCastExpr *CE); |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 305 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 306 | // Block rewriting. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 307 | void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 308 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 309 | // Block specific rewrite rules. |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 310 | void RewriteBlockPointerDecl(NamedDecl *VD); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 311 | void RewriteByRefVar(VarDecl *VD); |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 312 | Stmt *RewriteBlockDeclRefExpr(Expr *VD); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 313 | Stmt *RewriteLocalVariableExternalStorage(DeclRefExpr *DRE); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 314 | void RewriteBlockPointerFunctionArgs(FunctionDecl *FD); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 315 | |
| 316 | void RewriteObjCInternalStruct(ObjCInterfaceDecl *CDecl, |
| 317 | std::string &Result); |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 318 | |
| 319 | virtual void Initialize(ASTContext &context) = 0; |
| 320 | |
| 321 | // Metadata Rewriting. |
| 322 | virtual void RewriteMetaDataIntoBuffer(std::string &Result) = 0; |
| 323 | virtual void RewriteObjCProtocolListMetaData(const ObjCList<ObjCProtocolDecl> &Prots, |
| 324 | StringRef prefix, |
| 325 | StringRef ClassName, |
| 326 | std::string &Result) = 0; |
| 327 | virtual void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, |
| 328 | std::string &Result) = 0; |
| 329 | virtual void RewriteObjCProtocolMetaData(ObjCProtocolDecl *Protocol, |
| 330 | StringRef prefix, |
| 331 | StringRef ClassName, |
| 332 | std::string &Result) = 0; |
| 333 | virtual void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl, |
| 334 | std::string &Result) = 0; |
| 335 | |
| 336 | // Rewriting ivar access |
| 337 | virtual Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) = 0; |
| 338 | virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, |
| 339 | std::string &Result) = 0; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 340 | |
| 341 | // Misc. AST transformation routines. Somtimes they end up calling |
| 342 | // rewriting routines on the new ASTs. |
| 343 | CallExpr *SynthesizeCallToFunctionDecl(FunctionDecl *FD, |
| 344 | Expr **args, unsigned nargs, |
| 345 | SourceLocation StartLoc=SourceLocation(), |
| 346 | SourceLocation EndLoc=SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 347 | |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 348 | Stmt *SynthMessageExpr(ObjCMessageExpr *Exp, |
| 349 | SourceLocation StartLoc=SourceLocation(), |
| 350 | SourceLocation EndLoc=SourceLocation()); |
| 351 | |
| 352 | void SynthCountByEnumWithState(std::string &buf); |
| 353 | void SynthMsgSendFunctionDecl(); |
| 354 | void SynthMsgSendSuperFunctionDecl(); |
| 355 | void SynthMsgSendStretFunctionDecl(); |
| 356 | void SynthMsgSendFpretFunctionDecl(); |
| 357 | void SynthMsgSendSuperStretFunctionDecl(); |
| 358 | void SynthGetClassFunctionDecl(); |
| 359 | void SynthGetMetaClassFunctionDecl(); |
| 360 | void SynthGetSuperClassFunctionDecl(); |
| 361 | void SynthSelGetUidFunctionDecl(); |
| 362 | void SynthSuperContructorFunctionDecl(); |
| 363 | |
| 364 | std::string SynthesizeByrefCopyDestroyHelper(VarDecl *VD, int flag); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 365 | std::string SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 366 | StringRef funcName, std::string Tag); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 367 | std::string SynthesizeBlockFunc(BlockExpr *CE, int i, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 368 | StringRef funcName, std::string Tag); |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 369 | std::string SynthesizeBlockImpl(BlockExpr *CE, |
| 370 | std::string Tag, std::string Desc); |
| 371 | std::string SynthesizeBlockDescriptor(std::string DescTag, |
| 372 | std::string ImplTag, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 373 | int i, StringRef funcName, |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 374 | unsigned hasCopy); |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 375 | Stmt *SynthesizeBlockCall(CallExpr *Exp, const Expr* BlockExp); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 376 | void SynthesizeBlockLiterals(SourceLocation FunLocStart, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 377 | StringRef FunName); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 378 | FunctionDecl *SynthBlockInitFunctionDecl(StringRef name); |
| 379 | Stmt *SynthBlockInitExpr(BlockExpr *Exp, |
| 380 | const SmallVector<BlockDeclRefExpr *, 8> &InnerBlockDeclRefs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 381 | |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 382 | // Misc. helper routines. |
Fariborz Jahanian | dd8079c | 2011-12-05 19:50:04 +0000 | [diff] [blame] | 383 | QualType getProtocolType(); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 384 | void WarnAboutReturnGotoStmts(Stmt *S); |
| 385 | void HasReturnStmts(Stmt *S, bool &hasReturns); |
| 386 | void CheckFunctionPointerDecl(QualType dType, NamedDecl *ND); |
| 387 | void InsertBlockLiteralsWithinFunction(FunctionDecl *FD); |
| 388 | void InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD); |
| 389 | |
| 390 | bool IsDeclStmtInForeachHeader(DeclStmt *DS); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 391 | void CollectBlockDeclRefInfo(BlockExpr *Exp); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 392 | void GetBlockDeclRefExprs(Stmt *S); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 393 | void GetInnerBlockDeclRefExprs(Stmt *S, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 394 | SmallVector<BlockDeclRefExpr *, 8> &InnerBlockDeclRefs, |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 395 | llvm::SmallPtrSet<const DeclContext *, 8> &InnerContexts); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 396 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 397 | // We avoid calling Type::isBlockPointerType(), since it operates on the |
| 398 | // canonical type. We only care if the top-level type is a closure pointer. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 399 | bool isTopLevelBlockPointerType(QualType T) { |
| 400 | return isa<BlockPointerType>(T); |
| 401 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 402 | |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 403 | /// convertBlockPointerToFunctionPointer - Converts a block-pointer type |
| 404 | /// to a function pointer type and upon success, returns true; false |
| 405 | /// otherwise. |
| 406 | bool convertBlockPointerToFunctionPointer(QualType &T) { |
| 407 | if (isTopLevelBlockPointerType(T)) { |
| 408 | const BlockPointerType *BPT = T->getAs<BlockPointerType>(); |
| 409 | T = Context->getPointerType(BPT->getPointeeType()); |
| 410 | return true; |
| 411 | } |
| 412 | return false; |
| 413 | } |
| 414 | |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 415 | bool needToScanForQualifiers(QualType T); |
| 416 | QualType getSuperStructType(); |
| 417 | QualType getConstantStringStructType(); |
| 418 | QualType convertFunctionTypeOfBlocks(const FunctionType *FT); |
| 419 | bool BufferContainsPPDirectives(const char *startBuf, const char *endBuf); |
| 420 | |
Fariborz Jahanian | 8188e5f | 2010-11-05 18:34:46 +0000 | [diff] [blame] | 421 | void convertToUnqualifiedObjCType(QualType &T) { |
| 422 | if (T->isObjCQualifiedIdType()) |
| 423 | T = Context->getObjCIdType(); |
| 424 | else if (T->isObjCQualifiedClassType()) |
| 425 | T = Context->getObjCClassType(); |
| 426 | else if (T->isObjCObjectPointerType() && |
Fariborz Jahanian | 3a448fb | 2011-09-10 17:01:56 +0000 | [diff] [blame] | 427 | T->getPointeeType()->isObjCQualifiedInterfaceType()) { |
| 428 | if (const ObjCObjectPointerType * OBJPT = |
| 429 | T->getAsObjCInterfacePointerType()) { |
| 430 | const ObjCInterfaceType *IFaceT = OBJPT->getInterfaceType(); |
| 431 | T = QualType(IFaceT, 0); |
| 432 | T = Context->getPointerType(T); |
| 433 | } |
| 434 | } |
Fariborz Jahanian | 8188e5f | 2010-11-05 18:34:46 +0000 | [diff] [blame] | 435 | } |
| 436 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 437 | // FIXME: This predicate seems like it would be useful to add to ASTContext. |
| 438 | bool isObjCType(QualType T) { |
| 439 | if (!LangOpts.ObjC1 && !LangOpts.ObjC2) |
| 440 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 441 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 442 | QualType OCT = Context->getCanonicalType(T).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 443 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 444 | if (OCT == Context->getCanonicalType(Context->getObjCIdType()) || |
| 445 | OCT == Context->getCanonicalType(Context->getObjCClassType())) |
| 446 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 447 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 448 | if (const PointerType *PT = OCT->getAs<PointerType>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 449 | if (isa<ObjCInterfaceType>(PT->getPointeeType()) || |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 450 | PT->getPointeeType()->isObjCQualifiedIdType()) |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 451 | return true; |
| 452 | } |
| 453 | return false; |
| 454 | } |
| 455 | bool PointerTypeTakesAnyBlockArguments(QualType QT); |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 456 | bool PointerTypeTakesAnyObjCQualifiedType(QualType QT); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 457 | void GetExtentOfArgList(const char *Name, const char *&LParen, |
| 458 | const char *&RParen); |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 459 | |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 460 | void QuoteDoublequotes(std::string &From, std::string &To) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 461 | for (unsigned i = 0; i < From.length(); i++) { |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 462 | if (From[i] == '"') |
| 463 | To += "\\\""; |
| 464 | else |
| 465 | To += From[i]; |
| 466 | } |
| 467 | } |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 468 | |
| 469 | QualType getSimpleFunctionType(QualType result, |
| 470 | const QualType *args, |
| 471 | unsigned numArgs, |
| 472 | bool variadic = false) { |
Fariborz Jahanian | 8891480 | 2011-09-09 20:35:22 +0000 | [diff] [blame] | 473 | if (result == Context->getObjCInstanceType()) |
| 474 | result = Context->getObjCIdType(); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 475 | FunctionProtoType::ExtProtoInfo fpi; |
| 476 | fpi.Variadic = variadic; |
| 477 | return Context->getFunctionType(result, args, numArgs, fpi); |
| 478 | } |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 479 | |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 480 | // Helper function: create a CStyleCastExpr with trivial type source info. |
| 481 | CStyleCastExpr* NoTypeInfoCStyleCastExpr(ASTContext *Ctx, QualType Ty, |
| 482 | CastKind Kind, Expr *E) { |
| 483 | TypeSourceInfo *TInfo = Ctx->getTrivialTypeSourceInfo(Ty, SourceLocation()); |
| 484 | return CStyleCastExpr::Create(*Ctx, Ty, VK_RValue, Kind, E, 0, TInfo, |
| 485 | SourceLocation(), SourceLocation()); |
| 486 | } |
| 487 | }; |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 488 | |
| 489 | class RewriteObjCFragileABI : public RewriteObjC { |
| 490 | public: |
| 491 | |
| 492 | RewriteObjCFragileABI(std::string inFile, raw_ostream *OS, |
| 493 | DiagnosticsEngine &D, const LangOptions &LOpts, |
| 494 | bool silenceMacroWarn) : RewriteObjC(inFile, OS, |
| 495 | D, LOpts, |
| 496 | silenceMacroWarn) {} |
| 497 | |
| 498 | ~RewriteObjCFragileABI() {} |
| 499 | virtual void Initialize(ASTContext &context); |
| 500 | |
| 501 | // Rewriting metadata |
| 502 | template<typename MethodIterator> |
| 503 | void RewriteObjCMethodsMetaData(MethodIterator MethodBegin, |
| 504 | MethodIterator MethodEnd, |
| 505 | bool IsInstanceMethod, |
| 506 | StringRef prefix, |
| 507 | StringRef ClassName, |
| 508 | std::string &Result); |
| 509 | virtual void RewriteObjCProtocolMetaData(ObjCProtocolDecl *Protocol, |
| 510 | StringRef prefix, |
| 511 | StringRef ClassName, |
| 512 | std::string &Result); |
| 513 | virtual void RewriteObjCProtocolListMetaData( |
| 514 | const ObjCList<ObjCProtocolDecl> &Prots, |
| 515 | StringRef prefix, StringRef ClassName, std::string &Result); |
| 516 | virtual void RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl, |
| 517 | std::string &Result); |
| 518 | virtual void RewriteMetaDataIntoBuffer(std::string &Result); |
| 519 | virtual void RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *CDecl, |
| 520 | std::string &Result); |
| 521 | |
| 522 | // Rewriting ivar |
| 523 | virtual void RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, |
| 524 | std::string &Result); |
| 525 | virtual Stmt *RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV); |
| 526 | }; |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 527 | } |
| 528 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 529 | void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType, |
| 530 | NamedDecl *D) { |
John McCall | f4c7371 | 2011-01-19 06:33:43 +0000 | [diff] [blame] | 531 | if (const FunctionProtoType *fproto |
Abramo Bagnara | 723df24 | 2010-12-14 22:11:44 +0000 | [diff] [blame] | 532 | = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 533 | for (FunctionProtoType::arg_type_iterator I = fproto->arg_type_begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 534 | E = fproto->arg_type_end(); I && (I != E); ++I) |
Steve Naroff | 01f2ffa | 2008-12-11 21:05:33 +0000 | [diff] [blame] | 535 | if (isTopLevelBlockPointerType(*I)) { |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 536 | // All the args are checked/rewritten. Don't call twice! |
| 537 | RewriteBlockPointerDecl(D); |
| 538 | break; |
| 539 | } |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 544 | const PointerType *PT = funcType->getAs<PointerType>(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 545 | if (PT && PointerTypeTakesAnyBlockArguments(funcType)) |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 546 | RewriteBlocksInFunctionProtoType(PT->getPointeeType(), ND); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Fariborz Jahanian | b4b2f0c | 2008-01-18 01:15:54 +0000 | [diff] [blame] | 549 | static bool IsHeaderFile(const std::string &Filename) { |
| 550 | std::string::size_type DotPos = Filename.rfind('.'); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 551 | |
Fariborz Jahanian | b4b2f0c | 2008-01-18 01:15:54 +0000 | [diff] [blame] | 552 | if (DotPos == std::string::npos) { |
| 553 | // no file extension |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 554 | return false; |
Fariborz Jahanian | b4b2f0c | 2008-01-18 01:15:54 +0000 | [diff] [blame] | 555 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 556 | |
Fariborz Jahanian | b4b2f0c | 2008-01-18 01:15:54 +0000 | [diff] [blame] | 557 | std::string Ext = std::string(Filename.begin()+DotPos+1, Filename.end()); |
| 558 | // C header: .h |
| 559 | // C++ header: .hh or .H; |
| 560 | return Ext == "h" || Ext == "hh" || Ext == "H"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 561 | } |
Fariborz Jahanian | b4b2f0c | 2008-01-18 01:15:54 +0000 | [diff] [blame] | 562 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 563 | RewriteObjC::RewriteObjC(std::string inFile, raw_ostream* OS, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 564 | DiagnosticsEngine &D, const LangOptions &LOpts, |
Eli Friedman | c6d656e | 2009-05-18 22:39:16 +0000 | [diff] [blame] | 565 | bool silenceMacroWarn) |
| 566 | : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(OS), |
| 567 | SilenceRewriteMacroWarning(silenceMacroWarn) { |
Steve Naroff | a7b402d | 2008-03-28 22:26:09 +0000 | [diff] [blame] | 568 | IsHeader = IsHeaderFile(inFile); |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 569 | RewriteFailedDiag = Diags.getCustomDiagID(DiagnosticsEngine::Warning, |
Steve Naroff | a7b402d | 2008-03-28 22:26:09 +0000 | [diff] [blame] | 570 | "rewriting sub-expression within a macro (may not be correct)"); |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 571 | TryFinallyContainsReturnDiag = Diags.getCustomDiagID( |
| 572 | DiagnosticsEngine::Warning, |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 573 | "rewriter doesn't support user-specified control flow semantics " |
| 574 | "for @try/@finally (code may not execute properly)"); |
Steve Naroff | a7b402d | 2008-03-28 22:26:09 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Eli Friedman | bce831b | 2009-05-18 22:29:17 +0000 | [diff] [blame] | 577 | ASTConsumer *clang::CreateObjCRewriter(const std::string& InFile, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 578 | raw_ostream* OS, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 579 | DiagnosticsEngine &Diags, |
Eli Friedman | c6d656e | 2009-05-18 22:39:16 +0000 | [diff] [blame] | 580 | const LangOptions &LOpts, |
| 581 | bool SilenceRewriteMacroWarning) { |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 582 | if (true /*!LOpts.ObjCNonFragileABI*/) |
| 583 | return new RewriteObjCFragileABI(InFile, OS, Diags, LOpts, SilenceRewriteMacroWarning); |
| 584 | else { |
| 585 | assert(false && "objective-C rewriter for nonfragile ABI = NYI"); |
| 586 | return 0; |
| 587 | } |
Chris Lattner | e365c50 | 2007-11-30 22:25:36 +0000 | [diff] [blame] | 588 | } |
Chris Lattner | 77cd2a0 | 2007-10-11 00:43:27 +0000 | [diff] [blame] | 589 | |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 590 | void RewriteObjC::InitializeCommon(ASTContext &context) { |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 591 | Context = &context; |
| 592 | SM = &Context->getSourceManager(); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 593 | TUDecl = Context->getTranslationUnitDecl(); |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 594 | MsgSendFunctionDecl = 0; |
| 595 | MsgSendSuperFunctionDecl = 0; |
| 596 | MsgSendStretFunctionDecl = 0; |
| 597 | MsgSendSuperStretFunctionDecl = 0; |
| 598 | MsgSendFpretFunctionDecl = 0; |
| 599 | GetClassFunctionDecl = 0; |
| 600 | GetMetaClassFunctionDecl = 0; |
Fariborz Jahanian | d314e9e | 2010-03-10 21:17:41 +0000 | [diff] [blame] | 601 | GetSuperClassFunctionDecl = 0; |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 602 | SelGetUidFunctionDecl = 0; |
| 603 | CFStringFunctionDecl = 0; |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 604 | ConstantStringClassReference = 0; |
| 605 | NSStringRecord = 0; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 606 | CurMethodDef = 0; |
| 607 | CurFunctionDef = 0; |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 608 | CurFunctionDeclToDeclareForBlock = 0; |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 609 | GlobalVarDecl = 0; |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 610 | SuperStructDecl = 0; |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 611 | ProtocolTypeDecl = 0; |
Steve Naroff | 9630ec5 | 2008-03-27 22:59:54 +0000 | [diff] [blame] | 612 | ConstantStringDecl = 0; |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 613 | BcLabelCount = 0; |
Steve Naroff | c0a123c | 2008-03-11 17:37:02 +0000 | [diff] [blame] | 614 | SuperContructorFunctionDecl = 0; |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 615 | NumObjCStringLiterals = 0; |
Steve Naroff | 68272b8 | 2008-12-08 20:01:41 +0000 | [diff] [blame] | 616 | PropParentMap = 0; |
| 617 | CurrentBody = 0; |
Steve Naroff | b619d95 | 2008-12-09 12:56:34 +0000 | [diff] [blame] | 618 | DisableReplaceStmt = false; |
Fariborz Jahanian | f292fcf | 2010-01-07 22:51:18 +0000 | [diff] [blame] | 619 | objc_impl_method = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 620 | |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 621 | // Get the ID and start/end of the main file. |
| 622 | MainFileID = SM->getMainFileID(); |
| 623 | const llvm::MemoryBuffer *MainBuf = SM->getBuffer(MainFileID); |
| 624 | MainFileStart = MainBuf->getBufferStart(); |
| 625 | MainFileEnd = MainBuf->getBufferEnd(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 626 | |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 627 | Rewrite.setSourceMgr(Context->getSourceManager(), Context->getLangOptions()); |
Chris Lattner | 9e13c2e | 2008-01-31 19:38:44 +0000 | [diff] [blame] | 628 | } |
| 629 | |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 630 | //===----------------------------------------------------------------------===// |
| 631 | // Top Level Driver Code |
| 632 | //===----------------------------------------------------------------------===// |
| 633 | |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 634 | void RewriteObjC::HandleTopLevelSingleDecl(Decl *D) { |
Ted Kremenek | e50187a | 2010-02-05 21:28:51 +0000 | [diff] [blame] | 635 | if (Diags.hasErrorOccurred()) |
| 636 | return; |
| 637 | |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 638 | // Two cases: either the decl could be in the main file, or it could be in a |
| 639 | // #included file. If the former, rewrite it now. If the later, check to see |
| 640 | // if we rewrote the #include/#import. |
| 641 | SourceLocation Loc = D->getLocation(); |
Chandler Carruth | 4027853 | 2011-07-25 16:49:02 +0000 | [diff] [blame] | 642 | Loc = SM->getExpansionLoc(Loc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 643 | |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 644 | // If this is for a builtin, ignore it. |
| 645 | if (Loc.isInvalid()) return; |
| 646 | |
Steve Naroff | ebf2b56 | 2007-10-23 23:50:29 +0000 | [diff] [blame] | 647 | // Look for built-in declarations that we need to refer during the rewrite. |
| 648 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 649 | RewriteFunctionDecl(FD); |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 650 | } else if (VarDecl *FVD = dyn_cast<VarDecl>(D)) { |
Steve Naroff | beaf299 | 2007-11-03 11:27:19 +0000 | [diff] [blame] | 651 | // declared in <Foundation/NSString.h> |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 652 | if (FVD->getName() == "_NSConstantStringClassReference") { |
Steve Naroff | beaf299 | 2007-11-03 11:27:19 +0000 | [diff] [blame] | 653 | ConstantStringClassReference = FVD; |
| 654 | return; |
| 655 | } |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 656 | } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) { |
| 657 | if (ID->isThisDeclarationADefinition()) |
| 658 | RewriteInterfaceDecl(ID); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 659 | } else if (ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(D)) { |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 660 | RewriteCategoryDecl(CD); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 661 | } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) { |
Steve Naroff | 752d6ef | 2007-10-30 16:42:30 +0000 | [diff] [blame] | 662 | RewriteProtocolDecl(PD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 663 | } else if (ObjCForwardProtocolDecl *FP = |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 664 | dyn_cast<ObjCForwardProtocolDecl>(D)){ |
Fariborz Jahanian | d175ddf | 2007-11-14 00:42:16 +0000 | [diff] [blame] | 665 | RewriteForwardProtocolDecl(FP); |
Douglas Gregor | d043410 | 2009-01-09 00:49:46 +0000 | [diff] [blame] | 666 | } else if (LinkageSpecDecl *LSD = dyn_cast<LinkageSpecDecl>(D)) { |
| 667 | // Recurse into linkage specifications |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 668 | for (DeclContext::decl_iterator DI = LSD->decls_begin(), |
| 669 | DIEnd = LSD->decls_end(); |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 670 | DI != DIEnd; ) { |
| 671 | if (isa<ObjCClassDecl>((*DI))) { |
| 672 | SmallVector<Decl *, 8> DG; |
| 673 | Decl *D = (*DI); |
| 674 | SourceLocation Loc = D->getLocation(); |
| 675 | while (DI != DIEnd && |
| 676 | isa<ObjCClassDecl>(D) && D->getLocation() == Loc) { |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 677 | ObjCClassDecl *Class = cast<ObjCClassDecl>(D); |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 678 | DG.push_back(D); |
| 679 | ++DI; |
| 680 | D = (*DI); |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 681 | |
| 682 | // Following the ObjCClassDecl, we should have the corresponding |
| 683 | // ObjCInterfaceDecl. Skip over it. |
| 684 | if (DI != DIEnd && isa<ObjCInterfaceDecl>(D) && |
| 685 | Class->getForwardInterfaceDecl() == D) { |
| 686 | ++DI; |
| 687 | D = (*DI); |
| 688 | } |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 689 | } |
| 690 | RewriteForwardClassDecl(DG); |
| 691 | continue; |
| 692 | } |
Chris Lattner | 682bf92 | 2009-03-29 16:50:03 +0000 | [diff] [blame] | 693 | HandleTopLevelSingleDecl(*DI); |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 694 | ++DI; |
| 695 | } |
Steve Naroff | ebf2b56 | 2007-10-23 23:50:29 +0000 | [diff] [blame] | 696 | } |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 697 | // If we have a decl in the main file, see if we should rewrite it. |
Ted Kremenek | cf7e958 | 2008-04-14 21:24:13 +0000 | [diff] [blame] | 698 | if (SM->isFromMainFile(Loc)) |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 699 | return HandleDeclInMainFile(D); |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 700 | } |
| 701 | |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 702 | //===----------------------------------------------------------------------===// |
| 703 | // Syntactic (non-AST) Rewriting Code |
| 704 | //===----------------------------------------------------------------------===// |
| 705 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 706 | void RewriteObjC::RewriteInclude() { |
Chris Lattner | 2b2453a | 2009-01-17 06:22:33 +0000 | [diff] [blame] | 707 | SourceLocation LocStart = SM->getLocForStartOfFile(MainFileID); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 708 | StringRef MainBuf = SM->getBufferData(MainFileID); |
Benjamin Kramer | f6ac97b | 2010-03-16 14:14:31 +0000 | [diff] [blame] | 709 | const char *MainBufStart = MainBuf.begin(); |
| 710 | const char *MainBufEnd = MainBuf.end(); |
Fariborz Jahanian | 452b899 | 2008-01-19 00:30:35 +0000 | [diff] [blame] | 711 | size_t ImportLen = strlen("import"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 712 | |
Fariborz Jahanian | af57b46 | 2008-01-19 01:03:17 +0000 | [diff] [blame] | 713 | // Loop over the whole file, looking for includes. |
Fariborz Jahanian | 452b899 | 2008-01-19 00:30:35 +0000 | [diff] [blame] | 714 | for (const char *BufPtr = MainBufStart; BufPtr < MainBufEnd; ++BufPtr) { |
| 715 | if (*BufPtr == '#') { |
| 716 | if (++BufPtr == MainBufEnd) |
| 717 | return; |
| 718 | while (*BufPtr == ' ' || *BufPtr == '\t') |
| 719 | if (++BufPtr == MainBufEnd) |
| 720 | return; |
| 721 | if (!strncmp(BufPtr, "import", ImportLen)) { |
| 722 | // replace import with include |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 723 | SourceLocation ImportLoc = |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 724 | LocStart.getLocWithOffset(BufPtr-MainBufStart); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 725 | ReplaceText(ImportLoc, ImportLen, "include"); |
Fariborz Jahanian | 452b899 | 2008-01-19 00:30:35 +0000 | [diff] [blame] | 726 | BufPtr += ImportLen; |
| 727 | } |
| 728 | } |
| 729 | } |
Chris Lattner | 2c64b7b | 2007-10-16 21:07:07 +0000 | [diff] [blame] | 730 | } |
| 731 | |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 732 | static std::string getIvarAccessString(ObjCIvarDecl *OID) { |
| 733 | const ObjCInterfaceDecl *ClassDecl = OID->getContainingInterface(); |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 734 | std::string S; |
| 735 | S = "((struct "; |
| 736 | S += ClassDecl->getIdentifier()->getName(); |
| 737 | S += "_IMPL *)self)->"; |
Daniel Dunbar | 5ffe14c | 2009-10-18 20:26:27 +0000 | [diff] [blame] | 738 | S += OID->getName(); |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 739 | return S; |
| 740 | } |
| 741 | |
Steve Naroff | a0876e8 | 2008-12-02 17:36:43 +0000 | [diff] [blame] | 742 | void RewriteObjC::RewritePropertyImplDecl(ObjCPropertyImplDecl *PID, |
| 743 | ObjCImplementationDecl *IMD, |
| 744 | ObjCCategoryImplDecl *CID) { |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 745 | static bool objcGetPropertyDefined = false; |
| 746 | static bool objcSetPropertyDefined = false; |
Steve Naroff | d40910b | 2008-12-01 20:33:01 +0000 | [diff] [blame] | 747 | SourceLocation startLoc = PID->getLocStart(); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 748 | InsertText(startLoc, "// "); |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 749 | const char *startBuf = SM->getCharacterData(startLoc); |
| 750 | assert((*startBuf == '@') && "bogus @synthesize location"); |
| 751 | const char *semiBuf = strchr(startBuf, ';'); |
| 752 | assert((*semiBuf == ';') && "@synthesize: can't find ';'"); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 753 | SourceLocation onePastSemiLoc = |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 754 | startLoc.getLocWithOffset(semiBuf-startBuf+1); |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 755 | |
| 756 | if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) |
| 757 | return; // FIXME: is this correct? |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 758 | |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 759 | // Generate the 'getter' function. |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 760 | ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 761 | ObjCIvarDecl *OID = PID->getPropertyIvarDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 762 | |
Steve Naroff | dd2fdf1 | 2008-12-02 16:05:55 +0000 | [diff] [blame] | 763 | if (!OID) |
| 764 | return; |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 765 | unsigned Attributes = PD->getPropertyAttributes(); |
Fariborz Jahanian | ec3683b | 2010-10-19 23:47:54 +0000 | [diff] [blame] | 766 | if (!PD->getGetterMethodDecl()->isDefined()) { |
| 767 | bool GenGetProperty = !(Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) && |
| 768 | (Attributes & (ObjCPropertyDecl::OBJC_PR_retain | |
| 769 | ObjCPropertyDecl::OBJC_PR_copy)); |
| 770 | std::string Getr; |
| 771 | if (GenGetProperty && !objcGetPropertyDefined) { |
| 772 | objcGetPropertyDefined = true; |
| 773 | // FIXME. Is this attribute correct in all cases? |
| 774 | Getr = "\nextern \"C\" __declspec(dllimport) " |
| 775 | "id objc_getProperty(id, SEL, long, bool);\n"; |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 776 | } |
Fariborz Jahanian | ec3683b | 2010-10-19 23:47:54 +0000 | [diff] [blame] | 777 | RewriteObjCMethodDecl(OID->getContainingInterface(), |
| 778 | PD->getGetterMethodDecl(), Getr); |
| 779 | Getr += "{ "; |
| 780 | // Synthesize an explicit cast to gain access to the ivar. |
| 781 | // See objc-act.c:objc_synthesize_new_getter() for details. |
| 782 | if (GenGetProperty) { |
| 783 | // return objc_getProperty(self, _cmd, offsetof(ClassDecl, OID), 1) |
| 784 | Getr += "typedef "; |
| 785 | const FunctionType *FPRetType = 0; |
| 786 | RewriteTypeIntoString(PD->getGetterMethodDecl()->getResultType(), Getr, |
| 787 | FPRetType); |
| 788 | Getr += " _TYPE"; |
| 789 | if (FPRetType) { |
| 790 | Getr += ")"; // close the precedence "scope" for "*". |
| 791 | |
| 792 | // Now, emit the argument types (if any). |
| 793 | if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(FPRetType)){ |
| 794 | Getr += "("; |
| 795 | for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i) { |
| 796 | if (i) Getr += ", "; |
| 797 | std::string ParamStr = FT->getArgType(i).getAsString( |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 798 | Context->getPrintingPolicy()); |
Fariborz Jahanian | ec3683b | 2010-10-19 23:47:54 +0000 | [diff] [blame] | 799 | Getr += ParamStr; |
| 800 | } |
| 801 | if (FT->isVariadic()) { |
| 802 | if (FT->getNumArgs()) Getr += ", "; |
| 803 | Getr += "..."; |
| 804 | } |
| 805 | Getr += ")"; |
| 806 | } else |
| 807 | Getr += "()"; |
| 808 | } |
| 809 | Getr += ";\n"; |
| 810 | Getr += "return (_TYPE)"; |
| 811 | Getr += "objc_getProperty(self, _cmd, "; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 812 | RewriteIvarOffsetComputation(OID, Getr); |
Fariborz Jahanian | ec3683b | 2010-10-19 23:47:54 +0000 | [diff] [blame] | 813 | Getr += ", 1)"; |
| 814 | } |
| 815 | else |
| 816 | Getr += "return " + getIvarAccessString(OID); |
| 817 | Getr += "; }"; |
| 818 | InsertText(onePastSemiLoc, Getr); |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 819 | } |
Fariborz Jahanian | ec3683b | 2010-10-19 23:47:54 +0000 | [diff] [blame] | 820 | |
| 821 | if (PD->isReadOnly() || PD->getSetterMethodDecl()->isDefined()) |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 822 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 823 | |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 824 | // Generate the 'setter' function. |
| 825 | std::string Setr; |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 826 | bool GenSetProperty = Attributes & (ObjCPropertyDecl::OBJC_PR_retain | |
| 827 | ObjCPropertyDecl::OBJC_PR_copy); |
| 828 | if (GenSetProperty && !objcSetPropertyDefined) { |
| 829 | objcSetPropertyDefined = true; |
| 830 | // FIXME. Is this attribute correct in all cases? |
| 831 | Setr = "\nextern \"C\" __declspec(dllimport) " |
| 832 | "void objc_setProperty (id, SEL, long, id, bool, bool);\n"; |
| 833 | } |
| 834 | |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 835 | RewriteObjCMethodDecl(OID->getContainingInterface(), |
| 836 | PD->getSetterMethodDecl(), Setr); |
Steve Naroff | eb0646c | 2008-12-02 15:48:25 +0000 | [diff] [blame] | 837 | Setr += "{ "; |
Steve Naroff | dd2fdf1 | 2008-12-02 16:05:55 +0000 | [diff] [blame] | 838 | // Synthesize an explicit cast to initialize the ivar. |
Steve Naroff | 15f081d | 2008-12-03 00:56:33 +0000 | [diff] [blame] | 839 | // See objc-act.c:objc_synthesize_new_setter() for details. |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 840 | if (GenSetProperty) { |
| 841 | Setr += "objc_setProperty (self, _cmd, "; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 842 | RewriteIvarOffsetComputation(OID, Setr); |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 843 | Setr += ", (id)"; |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 844 | Setr += PD->getName(); |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 845 | Setr += ", "; |
| 846 | if (Attributes & ObjCPropertyDecl::OBJC_PR_nonatomic) |
| 847 | Setr += "0, "; |
| 848 | else |
| 849 | Setr += "1, "; |
| 850 | if (Attributes & ObjCPropertyDecl::OBJC_PR_copy) |
| 851 | Setr += "1)"; |
| 852 | else |
| 853 | Setr += "0)"; |
| 854 | } |
| 855 | else { |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 856 | Setr += getIvarAccessString(OID) + " = "; |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 857 | Setr += PD->getName(); |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 858 | } |
Steve Naroff | dd2fdf1 | 2008-12-02 16:05:55 +0000 | [diff] [blame] | 859 | Setr += "; }"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 860 | InsertText(onePastSemiLoc, Setr); |
Steve Naroff | d40910b | 2008-12-01 20:33:01 +0000 | [diff] [blame] | 861 | } |
Chris Lattner | 8a12c27 | 2007-10-11 18:38:32 +0000 | [diff] [blame] | 862 | |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 863 | static void RewriteOneForwardClassDecl(ObjCInterfaceDecl *ForwardDecl, |
| 864 | std::string &typedefString) { |
| 865 | typedefString += "#ifndef _REWRITER_typedef_"; |
| 866 | typedefString += ForwardDecl->getNameAsString(); |
| 867 | typedefString += "\n"; |
| 868 | typedefString += "#define _REWRITER_typedef_"; |
| 869 | typedefString += ForwardDecl->getNameAsString(); |
| 870 | typedefString += "\n"; |
| 871 | typedefString += "typedef struct objc_object "; |
| 872 | typedefString += ForwardDecl->getNameAsString(); |
| 873 | typedefString += ";\n#endif\n"; |
| 874 | } |
| 875 | |
| 876 | void RewriteObjC::RewriteForwardClassEpilogue(ObjCClassDecl *ClassDecl, |
| 877 | const std::string &typedefString) { |
| 878 | SourceLocation startLoc = ClassDecl->getLocation(); |
| 879 | const char *startBuf = SM->getCharacterData(startLoc); |
| 880 | const char *semiPtr = strchr(startBuf, ';'); |
| 881 | // Replace the @class with typedefs corresponding to the classes. |
| 882 | ReplaceText(startLoc, semiPtr-startBuf+1, typedefString); |
| 883 | } |
| 884 | |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 885 | void RewriteObjC::RewriteForwardClassDecl(DeclGroupRef D) { |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 886 | std::string typedefString; |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 887 | for (DeclGroupRef::iterator I = D.begin(), E = D.end(); I != E; ++I) { |
| 888 | ObjCClassDecl *ClassDecl = cast<ObjCClassDecl>(*I); |
| 889 | ObjCInterfaceDecl *ForwardDecl = ClassDecl->getForwardInterfaceDecl(); |
| 890 | if (I == D.begin()) { |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 891 | // Translate to typedef's that forward reference structs with the same name |
| 892 | // as the class. As a convenience, we include the original declaration |
| 893 | // as a comment. |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 894 | typedefString += "// @class "; |
| 895 | typedefString += ForwardDecl->getNameAsString(); |
Fariborz Jahanian | 91fbd12 | 2010-01-11 22:48:40 +0000 | [diff] [blame] | 896 | typedefString += ";\n"; |
Fariborz Jahanian | 95ed778 | 2011-08-27 20:50:59 +0000 | [diff] [blame] | 897 | } |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 898 | RewriteOneForwardClassDecl(ForwardDecl, typedefString); |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 899 | } |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 900 | DeclGroupRef::iterator I = D.begin(); |
| 901 | RewriteForwardClassEpilogue(cast<ObjCClassDecl>(*I), typedefString); |
| 902 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 903 | |
Fariborz Jahanian | a5e2b23 | 2011-08-29 22:21:46 +0000 | [diff] [blame] | 904 | void RewriteObjC::RewriteForwardClassDecl( |
| 905 | const llvm::SmallVector<Decl*, 8> &D) { |
| 906 | std::string typedefString; |
| 907 | for (unsigned i = 0; i < D.size(); i++) { |
| 908 | ObjCClassDecl *ClassDecl = cast<ObjCClassDecl>(D[i]); |
| 909 | ObjCInterfaceDecl *ForwardDecl = ClassDecl->getForwardInterfaceDecl(); |
| 910 | if (i == 0) { |
| 911 | typedefString += "// @class "; |
| 912 | typedefString += ForwardDecl->getNameAsString(); |
| 913 | typedefString += ";\n"; |
| 914 | } |
| 915 | RewriteOneForwardClassDecl(ForwardDecl, typedefString); |
| 916 | } |
| 917 | RewriteForwardClassEpilogue(cast<ObjCClassDecl>(D[0]), typedefString); |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 918 | } |
| 919 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 920 | void RewriteObjC::RewriteMethodDeclaration(ObjCMethodDecl *Method) { |
Fariborz Jahanian | d050240 | 2010-01-21 17:36:00 +0000 | [diff] [blame] | 921 | // When method is a synthesized one, such as a getter/setter there is |
| 922 | // nothing to rewrite. |
Fariborz Jahanian | 8891480 | 2011-09-09 20:35:22 +0000 | [diff] [blame] | 923 | if (Method->isImplicit()) |
Fariborz Jahanian | d050240 | 2010-01-21 17:36:00 +0000 | [diff] [blame] | 924 | return; |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 925 | SourceLocation LocStart = Method->getLocStart(); |
| 926 | SourceLocation LocEnd = Method->getLocEnd(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 927 | |
Chandler Carruth | 6421162 | 2011-07-25 21:09:52 +0000 | [diff] [blame] | 928 | if (SM->getExpansionLineNumber(LocEnd) > |
| 929 | SM->getExpansionLineNumber(LocStart)) { |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 930 | InsertText(LocStart, "#if 0\n"); |
| 931 | ReplaceText(LocEnd, 1, ";\n#endif\n"); |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 932 | } else { |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 933 | InsertText(LocStart, "// "); |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 934 | } |
| 935 | } |
| 936 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 937 | void RewriteObjC::RewriteProperty(ObjCPropertyDecl *prop) { |
Fariborz Jahanian | d050240 | 2010-01-21 17:36:00 +0000 | [diff] [blame] | 938 | SourceLocation Loc = prop->getAtLoc(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 939 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 940 | ReplaceText(Loc, 0, "// "); |
Steve Naroff | 6327e0d | 2009-01-11 01:06:09 +0000 | [diff] [blame] | 941 | // FIXME: handle properties that are declared across multiple lines. |
Fariborz Jahanian | 957cf65 | 2007-11-07 00:09:37 +0000 | [diff] [blame] | 942 | } |
| 943 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 944 | void RewriteObjC::RewriteCategoryDecl(ObjCCategoryDecl *CatDecl) { |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 945 | SourceLocation LocStart = CatDecl->getLocStart(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 946 | |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 947 | // FIXME: handle category headers that are declared across multiple lines. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 948 | ReplaceText(LocStart, 0, "// "); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 949 | |
Fariborz Jahanian | 13751e3 | 2010-02-10 01:15:09 +0000 | [diff] [blame] | 950 | for (ObjCCategoryDecl::prop_iterator I = CatDecl->prop_begin(), |
| 951 | E = CatDecl->prop_end(); I != E; ++I) |
| 952 | RewriteProperty(*I); |
| 953 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 954 | for (ObjCCategoryDecl::instmeth_iterator |
| 955 | I = CatDecl->instmeth_begin(), E = CatDecl->instmeth_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 956 | I != E; ++I) |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 957 | RewriteMethodDeclaration(*I); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 958 | for (ObjCCategoryDecl::classmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 959 | I = CatDecl->classmeth_begin(), E = CatDecl->classmeth_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 960 | I != E; ++I) |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 961 | RewriteMethodDeclaration(*I); |
| 962 | |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 963 | // Lastly, comment out the @end. |
Fariborz Jahanian | 73d1eb0 | 2010-05-24 17:22:38 +0000 | [diff] [blame] | 964 | ReplaceText(CatDecl->getAtEndRange().getBegin(), |
| 965 | strlen("@end"), "/* @end */"); |
Steve Naroff | 423cb56 | 2007-10-30 13:30:57 +0000 | [diff] [blame] | 966 | } |
| 967 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 968 | void RewriteObjC::RewriteProtocolDecl(ObjCProtocolDecl *PDecl) { |
Steve Naroff | 752d6ef | 2007-10-30 16:42:30 +0000 | [diff] [blame] | 969 | SourceLocation LocStart = PDecl->getLocStart(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 970 | |
Steve Naroff | 752d6ef | 2007-10-30 16:42:30 +0000 | [diff] [blame] | 971 | // FIXME: handle protocol headers that are declared across multiple lines. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 972 | ReplaceText(LocStart, 0, "// "); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 973 | |
| 974 | for (ObjCProtocolDecl::instmeth_iterator |
| 975 | I = PDecl->instmeth_begin(), E = PDecl->instmeth_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 976 | I != E; ++I) |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 977 | RewriteMethodDeclaration(*I); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 978 | for (ObjCProtocolDecl::classmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 979 | I = PDecl->classmeth_begin(), E = PDecl->classmeth_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 980 | I != E; ++I) |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 981 | RewriteMethodDeclaration(*I); |
| 982 | |
Fariborz Jahanian | 07acdf4 | 2010-09-24 18:36:58 +0000 | [diff] [blame] | 983 | for (ObjCInterfaceDecl::prop_iterator I = PDecl->prop_begin(), |
| 984 | E = PDecl->prop_end(); I != E; ++I) |
| 985 | RewriteProperty(*I); |
| 986 | |
Steve Naroff | 752d6ef | 2007-10-30 16:42:30 +0000 | [diff] [blame] | 987 | // Lastly, comment out the @end. |
Ted Kremenek | 782f2f5 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 988 | SourceLocation LocEnd = PDecl->getAtEndRange().getBegin(); |
Fariborz Jahanian | 73d1eb0 | 2010-05-24 17:22:38 +0000 | [diff] [blame] | 989 | ReplaceText(LocEnd, strlen("@end"), "/* @end */"); |
Steve Naroff | 8cc764c | 2007-11-14 15:03:57 +0000 | [diff] [blame] | 990 | |
Fariborz Jahanian | b82b3ea | 2007-11-14 01:37:46 +0000 | [diff] [blame] | 991 | // Must comment out @optional/@required |
| 992 | const char *startBuf = SM->getCharacterData(LocStart); |
| 993 | const char *endBuf = SM->getCharacterData(LocEnd); |
| 994 | for (const char *p = startBuf; p < endBuf; p++) { |
| 995 | if (*p == '@' && !strncmp(p+1, "optional", strlen("optional"))) { |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 996 | SourceLocation OptionalLoc = LocStart.getLocWithOffset(p-startBuf); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 997 | ReplaceText(OptionalLoc, strlen("@optional"), "/* @optional */"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 998 | |
Fariborz Jahanian | b82b3ea | 2007-11-14 01:37:46 +0000 | [diff] [blame] | 999 | } |
| 1000 | else if (*p == '@' && !strncmp(p+1, "required", strlen("required"))) { |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1001 | SourceLocation OptionalLoc = LocStart.getLocWithOffset(p-startBuf); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1002 | ReplaceText(OptionalLoc, strlen("@required"), "/* @required */"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1003 | |
Fariborz Jahanian | b82b3ea | 2007-11-14 01:37:46 +0000 | [diff] [blame] | 1004 | } |
| 1005 | } |
Steve Naroff | 752d6ef | 2007-10-30 16:42:30 +0000 | [diff] [blame] | 1006 | } |
| 1007 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1008 | void RewriteObjC::RewriteForwardProtocolDecl(ObjCForwardProtocolDecl *PDecl) { |
Fariborz Jahanian | d175ddf | 2007-11-14 00:42:16 +0000 | [diff] [blame] | 1009 | SourceLocation LocStart = PDecl->getLocation(); |
Steve Naroff | b7fa992 | 2007-11-14 03:37:28 +0000 | [diff] [blame] | 1010 | if (LocStart.isInvalid()) |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1011 | llvm_unreachable("Invalid SourceLocation"); |
Fariborz Jahanian | d175ddf | 2007-11-14 00:42:16 +0000 | [diff] [blame] | 1012 | // FIXME: handle forward protocol that are declared across multiple lines. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1013 | ReplaceText(LocStart, 0, "// "); |
Fariborz Jahanian | d175ddf | 2007-11-14 00:42:16 +0000 | [diff] [blame] | 1014 | } |
| 1015 | |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 1016 | void RewriteObjC::RewriteTypeIntoString(QualType T, std::string &ResultStr, |
| 1017 | const FunctionType *&FPRetType) { |
| 1018 | if (T->isObjCQualifiedIdType()) |
Fariborz Jahanian | c569249 | 2007-12-17 21:03:50 +0000 | [diff] [blame] | 1019 | ResultStr += "id"; |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 1020 | else if (T->isFunctionPointerType() || |
| 1021 | T->isBlockPointerType()) { |
Steve Naroff | 76e429d | 2008-07-16 14:40:40 +0000 | [diff] [blame] | 1022 | // needs special handling, since pointer-to-functions have special |
| 1023 | // syntax (where a decaration models use). |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 1024 | QualType retType = T; |
Steve Naroff | f4312dc | 2008-12-11 19:29:16 +0000 | [diff] [blame] | 1025 | QualType PointeeTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1026 | if (const PointerType* PT = retType->getAs<PointerType>()) |
Steve Naroff | f4312dc | 2008-12-11 19:29:16 +0000 | [diff] [blame] | 1027 | PointeeTy = PT->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1028 | else if (const BlockPointerType *BPT = retType->getAs<BlockPointerType>()) |
Steve Naroff | f4312dc | 2008-12-11 19:29:16 +0000 | [diff] [blame] | 1029 | PointeeTy = BPT->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1030 | if ((FPRetType = PointeeTy->getAs<FunctionType>())) { |
Daniel Dunbar | fa297fb | 2010-06-30 19:16:53 +0000 | [diff] [blame] | 1031 | ResultStr += FPRetType->getResultType().getAsString( |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1032 | Context->getPrintingPolicy()); |
Steve Naroff | f4312dc | 2008-12-11 19:29:16 +0000 | [diff] [blame] | 1033 | ResultStr += "(*"; |
Steve Naroff | 76e429d | 2008-07-16 14:40:40 +0000 | [diff] [blame] | 1034 | } |
| 1035 | } else |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1036 | ResultStr += T.getAsString(Context->getPrintingPolicy()); |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 1037 | } |
| 1038 | |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 1039 | void RewriteObjC::RewriteObjCMethodDecl(const ObjCInterfaceDecl *IDecl, |
| 1040 | ObjCMethodDecl *OMD, |
Fariborz Jahanian | 7c63fdd | 2010-02-26 01:42:20 +0000 | [diff] [blame] | 1041 | std::string &ResultStr) { |
| 1042 | //fprintf(stderr,"In RewriteObjCMethodDecl\n"); |
| 1043 | const FunctionType *FPRetType = 0; |
| 1044 | ResultStr += "\nstatic "; |
| 1045 | RewriteTypeIntoString(OMD->getResultType(), ResultStr, FPRetType); |
Fariborz Jahanian | 531a1ea | 2008-01-10 01:39:52 +0000 | [diff] [blame] | 1046 | ResultStr += " "; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1047 | |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1048 | // Unique method name |
Fariborz Jahanian | b7908b5 | 2007-11-13 21:02:00 +0000 | [diff] [blame] | 1049 | std::string NameStr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1050 | |
Douglas Gregor | f8d49f6 | 2009-01-09 17:18:27 +0000 | [diff] [blame] | 1051 | if (OMD->isInstanceMethod()) |
Fariborz Jahanian | b7908b5 | 2007-11-13 21:02:00 +0000 | [diff] [blame] | 1052 | NameStr += "_I_"; |
| 1053 | else |
| 1054 | NameStr += "_C_"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1055 | |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 1056 | NameStr += IDecl->getNameAsString(); |
Fariborz Jahanian | b7908b5 | 2007-11-13 21:02:00 +0000 | [diff] [blame] | 1057 | NameStr += "_"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1058 | |
| 1059 | if (ObjCCategoryImplDecl *CID = |
Steve Naroff | 3e0a540 | 2009-01-08 19:41:02 +0000 | [diff] [blame] | 1060 | dyn_cast<ObjCCategoryImplDecl>(OMD->getDeclContext())) { |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1061 | NameStr += CID->getNameAsString(); |
Fariborz Jahanian | b7908b5 | 2007-11-13 21:02:00 +0000 | [diff] [blame] | 1062 | NameStr += "_"; |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1063 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1064 | // Append selector names, replacing ':' with '_' |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 1065 | { |
| 1066 | std::string selString = OMD->getSelector().getAsString(); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1067 | int len = selString.size(); |
| 1068 | for (int i = 0; i < len; i++) |
| 1069 | if (selString[i] == ':') |
| 1070 | selString[i] = '_'; |
Fariborz Jahanian | b7908b5 | 2007-11-13 21:02:00 +0000 | [diff] [blame] | 1071 | NameStr += selString; |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1072 | } |
Fariborz Jahanian | b7908b5 | 2007-11-13 21:02:00 +0000 | [diff] [blame] | 1073 | // Remember this name for metadata emission |
| 1074 | MethodInternalNames[OMD] = NameStr; |
| 1075 | ResultStr += NameStr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1076 | |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1077 | // Rewrite arguments |
| 1078 | ResultStr += "("; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1079 | |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1080 | // invisible arguments |
Douglas Gregor | f8d49f6 | 2009-01-09 17:18:27 +0000 | [diff] [blame] | 1081 | if (OMD->isInstanceMethod()) { |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 1082 | QualType selfTy = Context->getObjCInterfaceType(IDecl); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1083 | selfTy = Context->getPointerType(selfTy); |
Francois Pichet | 62ec1f2 | 2011-09-17 17:15:52 +0000 | [diff] [blame] | 1084 | if (!LangOpts.MicrosoftExt) { |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 1085 | if (ObjCSynthesizedStructs.count(const_cast<ObjCInterfaceDecl*>(IDecl))) |
Steve Naroff | 05b8c78 | 2008-03-12 00:25:36 +0000 | [diff] [blame] | 1086 | ResultStr += "struct "; |
| 1087 | } |
| 1088 | // When rewriting for Microsoft, explicitly omit the structure name. |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 1089 | ResultStr += IDecl->getNameAsString(); |
Steve Naroff | 61ed9ca | 2008-03-10 23:16:54 +0000 | [diff] [blame] | 1090 | ResultStr += " *"; |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1091 | } |
| 1092 | else |
Daniel Dunbar | fa297fb | 2010-06-30 19:16:53 +0000 | [diff] [blame] | 1093 | ResultStr += Context->getObjCClassType().getAsString( |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1094 | Context->getPrintingPolicy()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1095 | |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1096 | ResultStr += " self, "; |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1097 | ResultStr += Context->getObjCSelType().getAsString(Context->getPrintingPolicy()); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1098 | ResultStr += " _cmd"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1099 | |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1100 | // Method arguments. |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 1101 | for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(), |
| 1102 | E = OMD->param_end(); PI != E; ++PI) { |
| 1103 | ParmVarDecl *PDecl = *PI; |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1104 | ResultStr += ", "; |
Steve Naroff | 543409e | 2008-04-18 21:13:19 +0000 | [diff] [blame] | 1105 | if (PDecl->getType()->isObjCQualifiedIdType()) { |
| 1106 | ResultStr += "id "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1107 | ResultStr += PDecl->getNameAsString(); |
Steve Naroff | 543409e | 2008-04-18 21:13:19 +0000 | [diff] [blame] | 1108 | } else { |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1109 | std::string Name = PDecl->getNameAsString(); |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 1110 | QualType QT = PDecl->getType(); |
| 1111 | // Make sure we convert "t (^)(...)" to "t (*)(...)". |
| 1112 | if (convertBlockPointerToFunctionPointer(QT)) |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1113 | QT.getAsStringInternal(Name, Context->getPrintingPolicy()); |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 1114 | else |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1115 | PDecl->getType().getAsStringInternal(Name, Context->getPrintingPolicy()); |
Steve Naroff | 543409e | 2008-04-18 21:13:19 +0000 | [diff] [blame] | 1116 | ResultStr += Name; |
| 1117 | } |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1118 | } |
Fariborz Jahanian | 7c39ff7 | 2008-01-21 20:14:23 +0000 | [diff] [blame] | 1119 | if (OMD->isVariadic()) |
| 1120 | ResultStr += ", ..."; |
Fariborz Jahanian | 531a1ea | 2008-01-10 01:39:52 +0000 | [diff] [blame] | 1121 | ResultStr += ") "; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1122 | |
Steve Naroff | 76e429d | 2008-07-16 14:40:40 +0000 | [diff] [blame] | 1123 | if (FPRetType) { |
| 1124 | ResultStr += ")"; // close the precedence "scope" for "*". |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1125 | |
Steve Naroff | 76e429d | 2008-07-16 14:40:40 +0000 | [diff] [blame] | 1126 | // Now, emit the argument types (if any). |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 1127 | if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(FPRetType)) { |
Steve Naroff | 76e429d | 2008-07-16 14:40:40 +0000 | [diff] [blame] | 1128 | ResultStr += "("; |
| 1129 | for (unsigned i = 0, e = FT->getNumArgs(); i != e; ++i) { |
| 1130 | if (i) ResultStr += ", "; |
Daniel Dunbar | fa297fb | 2010-06-30 19:16:53 +0000 | [diff] [blame] | 1131 | std::string ParamStr = FT->getArgType(i).getAsString( |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1132 | Context->getPrintingPolicy()); |
Steve Naroff | 76e429d | 2008-07-16 14:40:40 +0000 | [diff] [blame] | 1133 | ResultStr += ParamStr; |
| 1134 | } |
| 1135 | if (FT->isVariadic()) { |
| 1136 | if (FT->getNumArgs()) ResultStr += ", "; |
| 1137 | ResultStr += "..."; |
| 1138 | } |
| 1139 | ResultStr += ")"; |
| 1140 | } else { |
| 1141 | ResultStr += "()"; |
| 1142 | } |
| 1143 | } |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1144 | } |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1145 | void RewriteObjC::RewriteImplementationDecl(Decl *OID) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1146 | ObjCImplementationDecl *IMD = dyn_cast<ObjCImplementationDecl>(OID); |
| 1147 | ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(OID); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1148 | |
Fariborz Jahanian | a135216 | 2010-02-15 21:11:41 +0000 | [diff] [blame] | 1149 | InsertText(IMD ? IMD->getLocStart() : CID->getLocStart(), "// "); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1150 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1151 | for (ObjCCategoryImplDecl::instmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1152 | I = IMD ? IMD->instmeth_begin() : CID->instmeth_begin(), |
| 1153 | E = IMD ? IMD->instmeth_end() : CID->instmeth_end(); |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1154 | I != E; ++I) { |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1155 | std::string ResultStr; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1156 | ObjCMethodDecl *OMD = *I; |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 1157 | RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1158 | SourceLocation LocStart = OMD->getLocStart(); |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 1159 | SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 1160 | |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1161 | const char *startBuf = SM->getCharacterData(LocStart); |
| 1162 | const char *endBuf = SM->getCharacterData(LocEnd); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1163 | ReplaceText(LocStart, endBuf-startBuf, ResultStr); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1164 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1165 | |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1166 | for (ObjCCategoryImplDecl::classmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1167 | I = IMD ? IMD->classmeth_begin() : CID->classmeth_begin(), |
| 1168 | E = IMD ? IMD->classmeth_end() : CID->classmeth_end(); |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1169 | I != E; ++I) { |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1170 | std::string ResultStr; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1171 | ObjCMethodDecl *OMD = *I; |
Fariborz Jahanian | 2d8c1fd | 2010-10-16 00:29:27 +0000 | [diff] [blame] | 1172 | RewriteObjCMethodDecl(OMD->getClassInterface(), OMD, ResultStr); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1173 | SourceLocation LocStart = OMD->getLocStart(); |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 1174 | SourceLocation LocEnd = OMD->getCompoundBody()->getLocStart(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1175 | |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1176 | const char *startBuf = SM->getCharacterData(LocStart); |
| 1177 | const char *endBuf = SM->getCharacterData(LocEnd); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1178 | ReplaceText(LocStart, endBuf-startBuf, ResultStr); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1179 | } |
Steve Naroff | d40910b | 2008-12-01 20:33:01 +0000 | [diff] [blame] | 1180 | for (ObjCCategoryImplDecl::propimpl_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1181 | I = IMD ? IMD->propimpl_begin() : CID->propimpl_begin(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1182 | E = IMD ? IMD->propimpl_end() : CID->propimpl_end(); |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1183 | I != E; ++I) { |
Steve Naroff | a0876e8 | 2008-12-02 17:36:43 +0000 | [diff] [blame] | 1184 | RewritePropertyImplDecl(*I, IMD, CID); |
Steve Naroff | d40910b | 2008-12-01 20:33:01 +0000 | [diff] [blame] | 1185 | } |
| 1186 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1187 | InsertText(IMD ? IMD->getLocEnd() : CID->getLocEnd(), "// "); |
Fariborz Jahanian | 48a0b6a | 2007-11-13 18:44:14 +0000 | [diff] [blame] | 1188 | } |
| 1189 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1190 | void RewriteObjC::RewriteInterfaceDecl(ObjCInterfaceDecl *ClassDecl) { |
Steve Naroff | f908a87 | 2007-10-30 02:23:23 +0000 | [diff] [blame] | 1191 | std::string ResultStr; |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 1192 | if (!ObjCForwardDecls.count(ClassDecl->getCanonicalDecl())) { |
Steve Naroff | 6c6a2db | 2007-11-01 03:35:41 +0000 | [diff] [blame] | 1193 | // we haven't seen a forward decl - generate a typedef. |
Steve Naroff | 5086a8d | 2007-11-14 23:02:56 +0000 | [diff] [blame] | 1194 | ResultStr = "#ifndef _REWRITER_typedef_"; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1195 | ResultStr += ClassDecl->getNameAsString(); |
Steve Naroff | 3217482 | 2007-11-09 12:50:28 +0000 | [diff] [blame] | 1196 | ResultStr += "\n"; |
| 1197 | ResultStr += "#define _REWRITER_typedef_"; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1198 | ResultStr += ClassDecl->getNameAsString(); |
Steve Naroff | 3217482 | 2007-11-09 12:50:28 +0000 | [diff] [blame] | 1199 | ResultStr += "\n"; |
Steve Naroff | 61ed9ca | 2008-03-10 23:16:54 +0000 | [diff] [blame] | 1200 | ResultStr += "typedef struct objc_object "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 1201 | ResultStr += ClassDecl->getNameAsString(); |
Steve Naroff | 3217482 | 2007-11-09 12:50:28 +0000 | [diff] [blame] | 1202 | ResultStr += ";\n#endif\n"; |
Steve Naroff | 6c6a2db | 2007-11-01 03:35:41 +0000 | [diff] [blame] | 1203 | // Mark this typedef as having been generated. |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 1204 | ObjCForwardDecls.insert(ClassDecl->getCanonicalDecl()); |
Steve Naroff | 6c6a2db | 2007-11-01 03:35:41 +0000 | [diff] [blame] | 1205 | } |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 1206 | RewriteObjCInternalStruct(ClassDecl, ResultStr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1207 | |
| 1208 | for (ObjCInterfaceDecl::prop_iterator I = ClassDecl->prop_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1209 | E = ClassDecl->prop_end(); I != E; ++I) |
Steve Naroff | 6327e0d | 2009-01-11 01:06:09 +0000 | [diff] [blame] | 1210 | RewriteProperty(*I); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1211 | for (ObjCInterfaceDecl::instmeth_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1212 | I = ClassDecl->instmeth_begin(), E = ClassDecl->instmeth_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1213 | I != E; ++I) |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 1214 | RewriteMethodDeclaration(*I); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1215 | for (ObjCInterfaceDecl::classmeth_iterator |
| 1216 | I = ClassDecl->classmeth_begin(), E = ClassDecl->classmeth_end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1217 | I != E; ++I) |
Steve Naroff | 58dbdeb | 2007-12-14 23:37:57 +0000 | [diff] [blame] | 1218 | RewriteMethodDeclaration(*I); |
| 1219 | |
Steve Naroff | 2feac5e | 2007-10-30 03:43:13 +0000 | [diff] [blame] | 1220 | // Lastly, comment out the @end. |
Fariborz Jahanian | 73d1eb0 | 2010-05-24 17:22:38 +0000 | [diff] [blame] | 1221 | ReplaceText(ClassDecl->getAtEndRange().getBegin(), strlen("@end"), |
| 1222 | "/* @end */"); |
Steve Naroff | bef1185 | 2007-10-26 20:53:56 +0000 | [diff] [blame] | 1223 | } |
| 1224 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1225 | Stmt *RewriteObjC::RewritePropertyOrImplicitSetter(PseudoObjectExpr *PseudoOp) { |
| 1226 | SourceRange OldRange = PseudoOp->getSourceRange(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1227 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1228 | // We just magically know some things about the structure of this |
| 1229 | // expression. |
| 1230 | ObjCMessageExpr *OldMsg = |
| 1231 | cast<ObjCMessageExpr>(PseudoOp->getSemanticExpr( |
| 1232 | PseudoOp->getNumSemanticExprs() - 1)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1233 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1234 | // Because the rewriter doesn't allow us to rewrite rewritten code, |
| 1235 | // we need to suppress rewriting the sub-statements. |
| 1236 | Expr *Base, *RHS; |
| 1237 | { |
| 1238 | DisableReplaceStmtScope S(*this); |
| 1239 | |
| 1240 | // Rebuild the base expression if we have one. |
| 1241 | Base = 0; |
| 1242 | if (OldMsg->getReceiverKind() == ObjCMessageExpr::Instance) { |
| 1243 | Base = OldMsg->getInstanceReceiver(); |
| 1244 | Base = cast<OpaqueValueExpr>(Base)->getSourceExpr(); |
| 1245 | Base = cast<Expr>(RewriteFunctionBodyOrGlobalInitializer(Base)); |
| 1246 | } |
| 1247 | |
| 1248 | // Rebuild the RHS. |
| 1249 | RHS = cast<BinaryOperator>(PseudoOp->getSyntacticForm())->getRHS(); |
| 1250 | RHS = cast<OpaqueValueExpr>(RHS)->getSourceExpr(); |
| 1251 | RHS = cast<Expr>(RewriteFunctionBodyOrGlobalInitializer(RHS)); |
| 1252 | } |
| 1253 | |
| 1254 | // TODO: avoid this copy. |
| 1255 | SmallVector<SourceLocation, 1> SelLocs; |
| 1256 | OldMsg->getSelectorLocs(SelLocs); |
| 1257 | |
| 1258 | ObjCMessageExpr *NewMsg; |
| 1259 | switch (OldMsg->getReceiverKind()) { |
| 1260 | case ObjCMessageExpr::Class: |
| 1261 | NewMsg = ObjCMessageExpr::Create(*Context, OldMsg->getType(), |
| 1262 | OldMsg->getValueKind(), |
| 1263 | OldMsg->getLeftLoc(), |
| 1264 | OldMsg->getClassReceiverTypeInfo(), |
| 1265 | OldMsg->getSelector(), |
| 1266 | SelLocs, |
| 1267 | OldMsg->getMethodDecl(), |
| 1268 | RHS, |
| 1269 | OldMsg->getRightLoc()); |
| 1270 | break; |
| 1271 | |
| 1272 | case ObjCMessageExpr::Instance: |
| 1273 | NewMsg = ObjCMessageExpr::Create(*Context, OldMsg->getType(), |
| 1274 | OldMsg->getValueKind(), |
| 1275 | OldMsg->getLeftLoc(), |
| 1276 | Base, |
| 1277 | OldMsg->getSelector(), |
| 1278 | SelLocs, |
| 1279 | OldMsg->getMethodDecl(), |
| 1280 | RHS, |
| 1281 | OldMsg->getRightLoc()); |
| 1282 | break; |
| 1283 | |
| 1284 | case ObjCMessageExpr::SuperClass: |
| 1285 | case ObjCMessageExpr::SuperInstance: |
| 1286 | NewMsg = ObjCMessageExpr::Create(*Context, OldMsg->getType(), |
| 1287 | OldMsg->getValueKind(), |
| 1288 | OldMsg->getLeftLoc(), |
| 1289 | OldMsg->getSuperLoc(), |
| 1290 | OldMsg->getReceiverKind() == ObjCMessageExpr::SuperInstance, |
| 1291 | OldMsg->getSuperType(), |
| 1292 | OldMsg->getSelector(), |
| 1293 | SelLocs, |
| 1294 | OldMsg->getMethodDecl(), |
| 1295 | RHS, |
| 1296 | OldMsg->getRightLoc()); |
| 1297 | break; |
| 1298 | } |
| 1299 | |
| 1300 | Stmt *Replacement = SynthMessageExpr(NewMsg); |
| 1301 | ReplaceStmtWithRange(PseudoOp, Replacement, OldRange); |
| 1302 | return Replacement; |
Steve Naroff | 15f081d | 2008-12-03 00:56:33 +0000 | [diff] [blame] | 1303 | } |
| 1304 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1305 | Stmt *RewriteObjC::RewritePropertyOrImplicitGetter(PseudoObjectExpr *PseudoOp) { |
| 1306 | SourceRange OldRange = PseudoOp->getSourceRange(); |
| 1307 | |
| 1308 | // We just magically know some things about the structure of this |
| 1309 | // expression. |
| 1310 | ObjCMessageExpr *OldMsg = |
| 1311 | cast<ObjCMessageExpr>(PseudoOp->getResultExpr()->IgnoreImplicit()); |
| 1312 | |
| 1313 | // Because the rewriter doesn't allow us to rewrite rewritten code, |
| 1314 | // we need to suppress rewriting the sub-statements. |
| 1315 | Expr *Base = 0; |
| 1316 | { |
| 1317 | DisableReplaceStmtScope S(*this); |
| 1318 | |
| 1319 | // Rebuild the base expression if we have one. |
| 1320 | if (OldMsg->getReceiverKind() == ObjCMessageExpr::Instance) { |
| 1321 | Base = OldMsg->getInstanceReceiver(); |
| 1322 | Base = cast<OpaqueValueExpr>(Base)->getSourceExpr(); |
| 1323 | Base = cast<Expr>(RewriteFunctionBodyOrGlobalInitializer(Base)); |
John McCall | 12f78a6 | 2010-12-02 01:19:52 +0000 | [diff] [blame] | 1324 | } |
Fariborz Jahanian | e0f8386 | 2010-10-20 16:07:20 +0000 | [diff] [blame] | 1325 | } |
Steve Naroff | 15f081d | 2008-12-03 00:56:33 +0000 | [diff] [blame] | 1326 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1327 | // Intentionally empty. |
| 1328 | SmallVector<SourceLocation, 1> SelLocs; |
| 1329 | SmallVector<Expr*, 1> Args; |
Steve Naroff | 8599e7a | 2008-12-08 16:43:47 +0000 | [diff] [blame] | 1330 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1331 | ObjCMessageExpr *NewMsg; |
| 1332 | switch (OldMsg->getReceiverKind()) { |
| 1333 | case ObjCMessageExpr::Class: |
| 1334 | NewMsg = ObjCMessageExpr::Create(*Context, OldMsg->getType(), |
| 1335 | OldMsg->getValueKind(), |
| 1336 | OldMsg->getLeftLoc(), |
| 1337 | OldMsg->getClassReceiverTypeInfo(), |
| 1338 | OldMsg->getSelector(), |
| 1339 | SelLocs, |
| 1340 | OldMsg->getMethodDecl(), |
| 1341 | Args, |
| 1342 | OldMsg->getRightLoc()); |
| 1343 | break; |
| 1344 | |
| 1345 | case ObjCMessageExpr::Instance: |
| 1346 | NewMsg = ObjCMessageExpr::Create(*Context, OldMsg->getType(), |
| 1347 | OldMsg->getValueKind(), |
| 1348 | OldMsg->getLeftLoc(), |
| 1349 | Base, |
| 1350 | OldMsg->getSelector(), |
| 1351 | SelLocs, |
| 1352 | OldMsg->getMethodDecl(), |
| 1353 | Args, |
| 1354 | OldMsg->getRightLoc()); |
| 1355 | break; |
| 1356 | |
| 1357 | case ObjCMessageExpr::SuperClass: |
| 1358 | case ObjCMessageExpr::SuperInstance: |
| 1359 | NewMsg = ObjCMessageExpr::Create(*Context, OldMsg->getType(), |
| 1360 | OldMsg->getValueKind(), |
| 1361 | OldMsg->getLeftLoc(), |
| 1362 | OldMsg->getSuperLoc(), |
| 1363 | OldMsg->getReceiverKind() == ObjCMessageExpr::SuperInstance, |
| 1364 | OldMsg->getSuperType(), |
| 1365 | OldMsg->getSelector(), |
| 1366 | SelLocs, |
| 1367 | OldMsg->getMethodDecl(), |
| 1368 | Args, |
| 1369 | OldMsg->getRightLoc()); |
| 1370 | break; |
Steve Naroff | 8599e7a | 2008-12-08 16:43:47 +0000 | [diff] [blame] | 1371 | } |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 1372 | |
| 1373 | Stmt *Replacement = SynthMessageExpr(NewMsg); |
| 1374 | ReplaceStmtWithRange(PseudoOp, Replacement, OldRange); |
| 1375 | return Replacement; |
Steve Naroff | 15f081d | 2008-12-03 00:56:33 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1378 | /// SynthCountByEnumWithState - To print: |
| 1379 | /// ((unsigned int (*) |
| 1380 | /// (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1381 | /// (void *)objc_msgSend)((id)l_collection, |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1382 | /// sel_registerName( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1383 | /// "countByEnumeratingWithState:objects:count:"), |
| 1384 | /// &enumState, |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1385 | /// (id *)__rw_items, (unsigned int)16) |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1386 | /// |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1387 | void RewriteObjC::SynthCountByEnumWithState(std::string &buf) { |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1388 | buf += "((unsigned int (*) (id, SEL, struct __objcFastEnumerationState *, " |
| 1389 | "id *, unsigned int))(void *)objc_msgSend)"; |
| 1390 | buf += "\n\t\t"; |
| 1391 | buf += "((id)l_collection,\n\t\t"; |
| 1392 | buf += "sel_registerName(\"countByEnumeratingWithState:objects:count:\"),"; |
| 1393 | buf += "\n\t\t"; |
| 1394 | buf += "&enumState, " |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1395 | "(id *)__rw_items, (unsigned int)16)"; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1396 | } |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1397 | |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1398 | /// RewriteBreakStmt - Rewrite for a break-stmt inside an ObjC2's foreach |
| 1399 | /// statement to exit to its outer synthesized loop. |
| 1400 | /// |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1401 | Stmt *RewriteObjC::RewriteBreakStmt(BreakStmt *S) { |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1402 | if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) |
| 1403 | return S; |
| 1404 | // replace break with goto __break_label |
| 1405 | std::string buf; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1406 | |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1407 | SourceLocation startLoc = S->getLocStart(); |
| 1408 | buf = "goto __break_label_"; |
| 1409 | buf += utostr(ObjCBcLabelNo.back()); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1410 | ReplaceText(startLoc, strlen("break"), buf); |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1411 | |
| 1412 | return 0; |
| 1413 | } |
| 1414 | |
| 1415 | /// RewriteContinueStmt - Rewrite for a continue-stmt inside an ObjC2's foreach |
| 1416 | /// statement to continue with its inner synthesized loop. |
| 1417 | /// |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1418 | Stmt *RewriteObjC::RewriteContinueStmt(ContinueStmt *S) { |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1419 | if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) |
| 1420 | return S; |
| 1421 | // replace continue with goto __continue_label |
| 1422 | std::string buf; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1423 | |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1424 | SourceLocation startLoc = S->getLocStart(); |
| 1425 | buf = "goto __continue_label_"; |
| 1426 | buf += utostr(ObjCBcLabelNo.back()); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1427 | ReplaceText(startLoc, strlen("continue"), buf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1428 | |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1429 | return 0; |
| 1430 | } |
| 1431 | |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1432 | /// RewriteObjCForCollectionStmt - Rewriter for ObjC2's foreach statement. |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1433 | /// It rewrites: |
| 1434 | /// for ( type elem in collection) { stmts; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1435 | |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1436 | /// Into: |
| 1437 | /// { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1438 | /// type elem; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1439 | /// struct __objcFastEnumerationState enumState = { 0 }; |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1440 | /// id __rw_items[16]; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1441 | /// id l_collection = (id)collection; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1442 | /// unsigned long limit = [l_collection countByEnumeratingWithState:&enumState |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1443 | /// objects:__rw_items count:16]; |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1444 | /// if (limit) { |
| 1445 | /// unsigned long startMutations = *enumState.mutationsPtr; |
| 1446 | /// do { |
| 1447 | /// unsigned long counter = 0; |
| 1448 | /// do { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1449 | /// if (startMutations != *enumState.mutationsPtr) |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1450 | /// objc_enumerationMutation(l_collection); |
Fariborz Jahanian | 88f50f3 | 2008-01-09 18:15:42 +0000 | [diff] [blame] | 1451 | /// elem = (type)enumState.itemsPtr[counter++]; |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1452 | /// stmts; |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1453 | /// __continue_label: ; |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1454 | /// } while (counter < limit); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1455 | /// } while (limit = [l_collection countByEnumeratingWithState:&enumState |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1456 | /// objects:__rw_items count:16]); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1457 | /// elem = nil; |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1458 | /// __break_label: ; |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1459 | /// } |
| 1460 | /// else |
| 1461 | /// elem = nil; |
| 1462 | /// } |
| 1463 | /// |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1464 | Stmt *RewriteObjC::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S, |
Chris Lattner | 338d1e2 | 2008-01-31 05:10:40 +0000 | [diff] [blame] | 1465 | SourceLocation OrigEnd) { |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1466 | assert(!Stmts.empty() && "ObjCForCollectionStmt - Statement stack empty"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1467 | assert(isa<ObjCForCollectionStmt>(Stmts.back()) && |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1468 | "ObjCForCollectionStmt Statement stack mismatch"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1469 | assert(!ObjCBcLabelNo.empty() && |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1470 | "ObjCForCollectionStmt - Label No stack empty"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1471 | |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1472 | SourceLocation startLoc = S->getLocStart(); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1473 | const char *startBuf = SM->getCharacterData(startLoc); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1474 | StringRef elementName; |
Fariborz Jahanian | 88f50f3 | 2008-01-09 18:15:42 +0000 | [diff] [blame] | 1475 | std::string elementTypeAsString; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1476 | std::string buf; |
| 1477 | buf = "\n{\n\t"; |
| 1478 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S->getElement())) { |
| 1479 | // type elem; |
Chris Lattner | 7e24e82 | 2009-03-28 06:33:19 +0000 | [diff] [blame] | 1480 | NamedDecl* D = cast<NamedDecl>(DS->getSingleDecl()); |
Ted Kremenek | 1ed8e2a | 2008-10-06 22:16:13 +0000 | [diff] [blame] | 1481 | QualType ElementType = cast<ValueDecl>(D)->getType(); |
Steve Naroff | e89b8e7 | 2009-12-04 21:18:19 +0000 | [diff] [blame] | 1482 | if (ElementType->isObjCQualifiedIdType() || |
| 1483 | ElementType->isObjCQualifiedInterfaceType()) |
| 1484 | // Simply use 'id' for all qualified types. |
| 1485 | elementTypeAsString = "id"; |
| 1486 | else |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1487 | elementTypeAsString = ElementType.getAsString(Context->getPrintingPolicy()); |
Fariborz Jahanian | 88f50f3 | 2008-01-09 18:15:42 +0000 | [diff] [blame] | 1488 | buf += elementTypeAsString; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1489 | buf += " "; |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 1490 | elementName = D->getName(); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1491 | buf += elementName; |
| 1492 | buf += ";\n\t"; |
| 1493 | } |
Chris Lattner | 0676751 | 2008-04-08 05:52:18 +0000 | [diff] [blame] | 1494 | else { |
| 1495 | DeclRefExpr *DR = cast<DeclRefExpr>(S->getElement()); |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 1496 | elementName = DR->getDecl()->getName(); |
Steve Naroff | e89b8e7 | 2009-12-04 21:18:19 +0000 | [diff] [blame] | 1497 | ValueDecl *VD = cast<ValueDecl>(DR->getDecl()); |
| 1498 | if (VD->getType()->isObjCQualifiedIdType() || |
| 1499 | VD->getType()->isObjCQualifiedInterfaceType()) |
| 1500 | // Simply use 'id' for all qualified types. |
| 1501 | elementTypeAsString = "id"; |
| 1502 | else |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 1503 | elementTypeAsString = VD->getType().getAsString(Context->getPrintingPolicy()); |
Fariborz Jahanian | 88f50f3 | 2008-01-09 18:15:42 +0000 | [diff] [blame] | 1504 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1505 | |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1506 | // struct __objcFastEnumerationState enumState = { 0 }; |
| 1507 | buf += "struct __objcFastEnumerationState enumState = { 0 };\n\t"; |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1508 | // id __rw_items[16]; |
| 1509 | buf += "id __rw_items[16];\n\t"; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1510 | // id l_collection = (id) |
| 1511 | buf += "id l_collection = (id)"; |
Fariborz Jahanian | 7571228 | 2008-01-10 00:24:29 +0000 | [diff] [blame] | 1512 | // Find start location of 'collection' the hard way! |
| 1513 | const char *startCollectionBuf = startBuf; |
| 1514 | startCollectionBuf += 3; // skip 'for' |
| 1515 | startCollectionBuf = strchr(startCollectionBuf, '('); |
| 1516 | startCollectionBuf++; // skip '(' |
| 1517 | // find 'in' and skip it. |
| 1518 | while (*startCollectionBuf != ' ' || |
| 1519 | *(startCollectionBuf+1) != 'i' || *(startCollectionBuf+2) != 'n' || |
| 1520 | (*(startCollectionBuf+3) != ' ' && |
| 1521 | *(startCollectionBuf+3) != '[' && *(startCollectionBuf+3) != '(')) |
| 1522 | startCollectionBuf++; |
| 1523 | startCollectionBuf += 3; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1524 | |
| 1525 | // Replace: "for (type element in" with string constructed thus far. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1526 | ReplaceText(startLoc, startCollectionBuf - startBuf, buf); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1527 | // Replace ')' in for '(' type elem in collection ')' with ';' |
Fariborz Jahanian | 7571228 | 2008-01-10 00:24:29 +0000 | [diff] [blame] | 1528 | SourceLocation rightParenLoc = S->getRParenLoc(); |
| 1529 | const char *rparenBuf = SM->getCharacterData(rightParenLoc); |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1530 | SourceLocation lparenLoc = startLoc.getLocWithOffset(rparenBuf-startBuf); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1531 | buf = ";\n\t"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1532 | |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1533 | // unsigned long limit = [l_collection countByEnumeratingWithState:&enumState |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1534 | // objects:__rw_items count:16]; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1535 | // which is synthesized into: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1536 | // unsigned int limit = |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1537 | // ((unsigned int (*) |
| 1538 | // (id, SEL, struct __objcFastEnumerationState *, id *, unsigned int)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1539 | // (void *)objc_msgSend)((id)l_collection, |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1540 | // sel_registerName( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1541 | // "countByEnumeratingWithState:objects:count:"), |
| 1542 | // (struct __objcFastEnumerationState *)&state, |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1543 | // (id *)__rw_items, (unsigned int)16); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1544 | buf += "unsigned long limit =\n\t\t"; |
| 1545 | SynthCountByEnumWithState(buf); |
| 1546 | buf += ";\n\t"; |
| 1547 | /// if (limit) { |
| 1548 | /// unsigned long startMutations = *enumState.mutationsPtr; |
| 1549 | /// do { |
| 1550 | /// unsigned long counter = 0; |
| 1551 | /// do { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1552 | /// if (startMutations != *enumState.mutationsPtr) |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1553 | /// objc_enumerationMutation(l_collection); |
Fariborz Jahanian | 88f50f3 | 2008-01-09 18:15:42 +0000 | [diff] [blame] | 1554 | /// elem = (type)enumState.itemsPtr[counter++]; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1555 | buf += "if (limit) {\n\t"; |
| 1556 | buf += "unsigned long startMutations = *enumState.mutationsPtr;\n\t"; |
| 1557 | buf += "do {\n\t\t"; |
| 1558 | buf += "unsigned long counter = 0;\n\t\t"; |
| 1559 | buf += "do {\n\t\t\t"; |
| 1560 | buf += "if (startMutations != *enumState.mutationsPtr)\n\t\t\t\t"; |
| 1561 | buf += "objc_enumerationMutation(l_collection);\n\t\t\t"; |
| 1562 | buf += elementName; |
Fariborz Jahanian | 88f50f3 | 2008-01-09 18:15:42 +0000 | [diff] [blame] | 1563 | buf += " = ("; |
| 1564 | buf += elementTypeAsString; |
| 1565 | buf += ")enumState.itemsPtr[counter++];"; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1566 | // Replace ')' in for '(' type elem in collection ')' with all of these. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1567 | ReplaceText(lparenLoc, 1, buf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1568 | |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1569 | /// __continue_label: ; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1570 | /// } while (counter < limit); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1571 | /// } while (limit = [l_collection countByEnumeratingWithState:&enumState |
Fariborz Jahanian | 108fb14 | 2011-11-09 17:41:43 +0000 | [diff] [blame] | 1572 | /// objects:__rw_items count:16]); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1573 | /// elem = nil; |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1574 | /// __break_label: ; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1575 | /// } |
| 1576 | /// else |
| 1577 | /// elem = nil; |
| 1578 | /// } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1579 | /// |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1580 | buf = ";\n\t"; |
| 1581 | buf += "__continue_label_"; |
| 1582 | buf += utostr(ObjCBcLabelNo.back()); |
| 1583 | buf += ": ;"; |
| 1584 | buf += "\n\t\t"; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1585 | buf += "} while (counter < limit);\n\t"; |
| 1586 | buf += "} while (limit = "; |
| 1587 | SynthCountByEnumWithState(buf); |
| 1588 | buf += ");\n\t"; |
| 1589 | buf += elementName; |
Fariborz Jahanian | 65b0aa5 | 2010-01-08 01:29:44 +0000 | [diff] [blame] | 1590 | buf += " = (("; |
| 1591 | buf += elementTypeAsString; |
| 1592 | buf += ")0);\n\t"; |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1593 | buf += "__break_label_"; |
| 1594 | buf += utostr(ObjCBcLabelNo.back()); |
| 1595 | buf += ": ;\n\t"; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1596 | buf += "}\n\t"; |
| 1597 | buf += "else\n\t\t"; |
| 1598 | buf += elementName; |
Fariborz Jahanian | 65b0aa5 | 2010-01-08 01:29:44 +0000 | [diff] [blame] | 1599 | buf += " = (("; |
| 1600 | buf += elementTypeAsString; |
| 1601 | buf += ")0);\n\t"; |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1602 | buf += "}\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1603 | |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1604 | // Insert all these *after* the statement body. |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 1605 | // FIXME: If this should support Obj-C++, support CXXTryStmt |
Steve Naroff | 600e4e8 | 2008-07-21 18:26:02 +0000 | [diff] [blame] | 1606 | if (isa<CompoundStmt>(S->getBody())) { |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1607 | SourceLocation endBodyLoc = OrigEnd.getLocWithOffset(1); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1608 | InsertText(endBodyLoc, buf); |
Steve Naroff | 600e4e8 | 2008-07-21 18:26:02 +0000 | [diff] [blame] | 1609 | } else { |
| 1610 | /* Need to treat single statements specially. For example: |
| 1611 | * |
| 1612 | * for (A *a in b) if (stuff()) break; |
| 1613 | * for (A *a in b) xxxyy; |
| 1614 | * |
| 1615 | * The following code simply scans ahead to the semi to find the actual end. |
| 1616 | */ |
| 1617 | const char *stmtBuf = SM->getCharacterData(OrigEnd); |
| 1618 | const char *semiBuf = strchr(stmtBuf, ';'); |
| 1619 | assert(semiBuf && "Can't find ';'"); |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1620 | SourceLocation endBodyLoc = OrigEnd.getLocWithOffset(semiBuf-stmtBuf+1); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1621 | InsertText(endBodyLoc, buf); |
Steve Naroff | 600e4e8 | 2008-07-21 18:26:02 +0000 | [diff] [blame] | 1622 | } |
Fariborz Jahanian | e8d1c05 | 2008-01-15 23:58:23 +0000 | [diff] [blame] | 1623 | Stmts.pop_back(); |
| 1624 | ObjCBcLabelNo.pop_back(); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 1625 | return 0; |
Fariborz Jahanian | 10d24f0 | 2008-01-07 21:40:22 +0000 | [diff] [blame] | 1626 | } |
| 1627 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1628 | /// RewriteObjCSynchronizedStmt - |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1629 | /// This routine rewrites @synchronized(expr) stmt; |
| 1630 | /// into: |
| 1631 | /// objc_sync_enter(expr); |
| 1632 | /// @try stmt @finally { objc_sync_exit(expr); } |
| 1633 | /// |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1634 | Stmt *RewriteObjC::RewriteObjCSynchronizedStmt(ObjCAtSynchronizedStmt *S) { |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1635 | // Get the start location and compute the semi location. |
| 1636 | SourceLocation startLoc = S->getLocStart(); |
| 1637 | const char *startBuf = SM->getCharacterData(startLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1638 | |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1639 | assert((*startBuf == '@') && "bogus @synchronized location"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1640 | |
| 1641 | std::string buf; |
Steve Naroff | 3498cc9 | 2008-08-21 13:03:03 +0000 | [diff] [blame] | 1642 | buf = "objc_sync_enter((id)"; |
| 1643 | const char *lparenBuf = startBuf; |
| 1644 | while (*lparenBuf != '(') lparenBuf++; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1645 | ReplaceText(startLoc, lparenBuf-startBuf+1, buf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1646 | // We can't use S->getSynchExpr()->getLocEnd() to find the end location, since |
| 1647 | // the sync expression is typically a message expression that's already |
Steve Naroff | c7089f1 | 2008-08-19 13:04:19 +0000 | [diff] [blame] | 1648 | // been rewritten! (which implies the SourceLocation's are invalid). |
| 1649 | SourceLocation endLoc = S->getSynchBody()->getLocStart(); |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1650 | const char *endBuf = SM->getCharacterData(endLoc); |
Steve Naroff | c7089f1 | 2008-08-19 13:04:19 +0000 | [diff] [blame] | 1651 | while (*endBuf != ')') endBuf--; |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1652 | SourceLocation rparenLoc = startLoc.getLocWithOffset(endBuf-startBuf); |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1653 | buf = ");\n"; |
| 1654 | // declare a new scope with two variables, _stack and _rethrow. |
| 1655 | buf += "/* @try scope begin */ \n{ struct _objc_exception_data {\n"; |
| 1656 | buf += "int buf[18/*32-bit i386*/];\n"; |
| 1657 | buf += "char *pointers[4];} _stack;\n"; |
| 1658 | buf += "id volatile _rethrow = 0;\n"; |
| 1659 | buf += "objc_exception_try_enter(&_stack);\n"; |
| 1660 | buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1661 | ReplaceText(rparenLoc, 1, buf); |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1662 | startLoc = S->getSynchBody()->getLocEnd(); |
| 1663 | startBuf = SM->getCharacterData(startLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1664 | |
Steve Naroff | c7089f1 | 2008-08-19 13:04:19 +0000 | [diff] [blame] | 1665 | assert((*startBuf == '}') && "bogus @synchronized block"); |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1666 | SourceLocation lastCurlyLoc = startLoc; |
| 1667 | buf = "}\nelse {\n"; |
| 1668 | buf += " _rethrow = objc_exception_extract(&_stack);\n"; |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 1669 | buf += "}\n"; |
| 1670 | buf += "{ /* implicit finally clause */\n"; |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1671 | buf += " if (!_rethrow) objc_exception_try_exit(&_stack);\n"; |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1672 | |
| 1673 | std::string syncBuf; |
| 1674 | syncBuf += " objc_sync_exit("; |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 1675 | |
| 1676 | Expr *syncExpr = S->getSynchExpr(); |
| 1677 | CastKind CK = syncExpr->getType()->isObjCObjectPointerType() |
| 1678 | ? CK_BitCast : |
| 1679 | syncExpr->getType()->isBlockPointerType() |
| 1680 | ? CK_BlockPointerToObjCPointerCast |
| 1681 | : CK_CPointerToObjCPointerCast; |
| 1682 | syncExpr = NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), |
| 1683 | CK, syncExpr); |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 1684 | std::string syncExprBufS; |
| 1685 | llvm::raw_string_ostream syncExprBuf(syncExprBufS); |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 1686 | syncExpr->printPretty(syncExprBuf, *Context, 0, |
| 1687 | PrintingPolicy(LangOpts)); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1688 | syncBuf += syncExprBuf.str(); |
| 1689 | syncBuf += ");"; |
| 1690 | |
| 1691 | buf += syncBuf; |
| 1692 | buf += "\n if (_rethrow) objc_exception_throw(_rethrow);\n"; |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1693 | buf += "}\n"; |
| 1694 | buf += "}"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1695 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1696 | ReplaceText(lastCurlyLoc, 1, buf); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1697 | |
| 1698 | bool hasReturns = false; |
| 1699 | HasReturnStmts(S->getSynchBody(), hasReturns); |
| 1700 | if (hasReturns) |
| 1701 | RewriteSyncReturnStmts(S->getSynchBody(), syncBuf); |
| 1702 | |
Fariborz Jahanian | a0f5579 | 2008-01-29 22:59:37 +0000 | [diff] [blame] | 1703 | return 0; |
| 1704 | } |
| 1705 | |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1706 | void RewriteObjC::WarnAboutReturnGotoStmts(Stmt *S) |
| 1707 | { |
Steve Naroff | 8c56515 | 2008-12-05 17:03:39 +0000 | [diff] [blame] | 1708 | // Perform a bottom up traversal of all children. |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 1709 | for (Stmt::child_range CI = S->children(); CI; ++CI) |
Steve Naroff | 8c56515 | 2008-12-05 17:03:39 +0000 | [diff] [blame] | 1710 | if (*CI) |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1711 | WarnAboutReturnGotoStmts(*CI); |
Steve Naroff | 8c56515 | 2008-12-05 17:03:39 +0000 | [diff] [blame] | 1712 | |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1713 | if (isa<ReturnStmt>(S) || isa<GotoStmt>(S)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1714 | Diags.Report(Context->getFullLoc(S->getLocStart()), |
Steve Naroff | 8c56515 | 2008-12-05 17:03:39 +0000 | [diff] [blame] | 1715 | TryFinallyContainsReturnDiag); |
| 1716 | } |
| 1717 | return; |
| 1718 | } |
| 1719 | |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1720 | void RewriteObjC::HasReturnStmts(Stmt *S, bool &hasReturns) |
| 1721 | { |
| 1722 | // Perform a bottom up traversal of all children. |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 1723 | for (Stmt::child_range CI = S->children(); CI; ++CI) |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1724 | if (*CI) |
| 1725 | HasReturnStmts(*CI, hasReturns); |
| 1726 | |
| 1727 | if (isa<ReturnStmt>(S)) |
| 1728 | hasReturns = true; |
| 1729 | return; |
| 1730 | } |
| 1731 | |
| 1732 | void RewriteObjC::RewriteTryReturnStmts(Stmt *S) { |
| 1733 | // Perform a bottom up traversal of all children. |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 1734 | for (Stmt::child_range CI = S->children(); CI; ++CI) |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1735 | if (*CI) { |
| 1736 | RewriteTryReturnStmts(*CI); |
| 1737 | } |
| 1738 | if (isa<ReturnStmt>(S)) { |
| 1739 | SourceLocation startLoc = S->getLocStart(); |
| 1740 | const char *startBuf = SM->getCharacterData(startLoc); |
| 1741 | |
| 1742 | const char *semiBuf = strchr(startBuf, ';'); |
| 1743 | assert((*semiBuf == ';') && "RewriteTryReturnStmts: can't find ';'"); |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1744 | SourceLocation onePastSemiLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1745 | |
| 1746 | std::string buf; |
| 1747 | buf = "{ objc_exception_try_exit(&_stack); return"; |
| 1748 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1749 | ReplaceText(startLoc, 6, buf); |
| 1750 | InsertText(onePastSemiLoc, "}"); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1751 | } |
| 1752 | return; |
| 1753 | } |
| 1754 | |
| 1755 | void RewriteObjC::RewriteSyncReturnStmts(Stmt *S, std::string syncExitBuf) { |
| 1756 | // Perform a bottom up traversal of all children. |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 1757 | for (Stmt::child_range CI = S->children(); CI; ++CI) |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1758 | if (*CI) { |
| 1759 | RewriteSyncReturnStmts(*CI, syncExitBuf); |
| 1760 | } |
| 1761 | if (isa<ReturnStmt>(S)) { |
| 1762 | SourceLocation startLoc = S->getLocStart(); |
| 1763 | const char *startBuf = SM->getCharacterData(startLoc); |
| 1764 | |
| 1765 | const char *semiBuf = strchr(startBuf, ';'); |
| 1766 | assert((*semiBuf == ';') && "RewriteSyncReturnStmts: can't find ';'"); |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1767 | SourceLocation onePastSemiLoc = startLoc.getLocWithOffset(semiBuf-startBuf+1); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1768 | |
| 1769 | std::string buf; |
| 1770 | buf = "{ objc_exception_try_exit(&_stack);"; |
| 1771 | buf += syncExitBuf; |
| 1772 | buf += " return"; |
| 1773 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1774 | ReplaceText(startLoc, 6, buf); |
| 1775 | InsertText(onePastSemiLoc, "}"); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1776 | } |
| 1777 | return; |
| 1778 | } |
| 1779 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1780 | Stmt *RewriteObjC::RewriteObjCTryStmt(ObjCAtTryStmt *S) { |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1781 | // Get the start location and compute the semi location. |
| 1782 | SourceLocation startLoc = S->getLocStart(); |
| 1783 | const char *startBuf = SM->getCharacterData(startLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1784 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1785 | assert((*startBuf == '@') && "bogus @try location"); |
| 1786 | |
| 1787 | std::string buf; |
| 1788 | // declare a new scope with two variables, _stack and _rethrow. |
| 1789 | buf = "/* @try scope begin */ { struct _objc_exception_data {\n"; |
| 1790 | buf += "int buf[18/*32-bit i386*/];\n"; |
| 1791 | buf += "char *pointers[4];} _stack;\n"; |
| 1792 | buf += "id volatile _rethrow = 0;\n"; |
| 1793 | buf += "objc_exception_try_enter(&_stack);\n"; |
Steve Naroff | 21867b1 | 2007-11-07 18:43:40 +0000 | [diff] [blame] | 1794 | buf += "if (!_setjmp(_stack.buf)) /* @try block continue */\n"; |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1795 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1796 | ReplaceText(startLoc, 4, buf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1797 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1798 | startLoc = S->getTryBody()->getLocEnd(); |
| 1799 | startBuf = SM->getCharacterData(startLoc); |
| 1800 | |
| 1801 | assert((*startBuf == '}') && "bogus @try block"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1802 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1803 | SourceLocation lastCurlyLoc = startLoc; |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1804 | if (S->getNumCatchStmts()) { |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1805 | startLoc = startLoc.getLocWithOffset(1); |
Steve Naroff | c9ba172 | 2008-07-16 15:31:30 +0000 | [diff] [blame] | 1806 | buf = " /* @catch begin */ else {\n"; |
| 1807 | buf += " id _caught = objc_exception_extract(&_stack);\n"; |
| 1808 | buf += " objc_exception_try_enter (&_stack);\n"; |
| 1809 | buf += " if (_setjmp(_stack.buf))\n"; |
| 1810 | buf += " _rethrow = objc_exception_extract(&_stack);\n"; |
| 1811 | buf += " else { /* @catch continue */"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1812 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1813 | InsertText(startLoc, buf); |
Steve Naroff | 8bd3dc6 | 2008-09-09 19:59:12 +0000 | [diff] [blame] | 1814 | } else { /* no catch list */ |
| 1815 | buf = "}\nelse {\n"; |
| 1816 | buf += " _rethrow = objc_exception_extract(&_stack);\n"; |
| 1817 | buf += "}"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1818 | ReplaceText(lastCurlyLoc, 1, buf); |
Steve Naroff | c9ba172 | 2008-07-16 15:31:30 +0000 | [diff] [blame] | 1819 | } |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1820 | Stmt *lastCatchBody = 0; |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1821 | for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I) { |
| 1822 | ObjCAtCatchStmt *Catch = S->getCatchStmt(I); |
Douglas Gregor | c00d8e1 | 2010-04-26 16:46:50 +0000 | [diff] [blame] | 1823 | VarDecl *catchDecl = Catch->getCatchParamDecl(); |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1824 | |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1825 | if (I == 0) |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1826 | buf = "if ("; // we are generating code for the first catch clause |
| 1827 | else |
| 1828 | buf = "else if ("; |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1829 | startLoc = Catch->getLocStart(); |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1830 | startBuf = SM->getCharacterData(startLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1831 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1832 | assert((*startBuf == '@') && "bogus @catch location"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1833 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1834 | const char *lParenLoc = strchr(startBuf, '('); |
| 1835 | |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1836 | if (Catch->hasEllipsis()) { |
Steve Naroff | e12e692 | 2008-02-01 20:02:07 +0000 | [diff] [blame] | 1837 | // Now rewrite the body... |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1838 | lastCatchBody = Catch->getCatchBody(); |
Steve Naroff | e12e692 | 2008-02-01 20:02:07 +0000 | [diff] [blame] | 1839 | SourceLocation bodyLoc = lastCatchBody->getLocStart(); |
| 1840 | const char *bodyBuf = SM->getCharacterData(bodyLoc); |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1841 | assert(*SM->getCharacterData(Catch->getRParenLoc()) == ')' && |
Chris Lattner | 0676751 | 2008-04-08 05:52:18 +0000 | [diff] [blame] | 1842 | "bogus @catch paren location"); |
Steve Naroff | e12e692 | 2008-02-01 20:02:07 +0000 | [diff] [blame] | 1843 | assert((*bodyBuf == '{') && "bogus @catch body location"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1844 | |
Steve Naroff | e12e692 | 2008-02-01 20:02:07 +0000 | [diff] [blame] | 1845 | buf += "1) { id _tmp = _caught;"; |
Daniel Dunbar | d7407dc | 2009-08-19 19:10:30 +0000 | [diff] [blame] | 1846 | Rewrite.ReplaceText(startLoc, bodyBuf-startBuf+1, buf); |
Steve Naroff | 7ba138a | 2009-03-03 19:52:17 +0000 | [diff] [blame] | 1847 | } else if (catchDecl) { |
| 1848 | QualType t = catchDecl->getType(); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1849 | if (t == Context->getObjCIdType()) { |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1850 | buf += "1) { "; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1851 | ReplaceText(startLoc, lParenLoc-startBuf+1, buf); |
John McCall | 506b57e | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 1852 | } else if (const ObjCObjectPointerType *Ptr = |
| 1853 | t->getAs<ObjCObjectPointerType>()) { |
| 1854 | // Should be a pointer to a class. |
| 1855 | ObjCInterfaceDecl *IDecl = Ptr->getObjectType()->getInterface(); |
| 1856 | if (IDecl) { |
Steve Naroff | 21867b1 | 2007-11-07 18:43:40 +0000 | [diff] [blame] | 1857 | buf += "objc_exception_match((struct objc_class *)objc_getClass(\""; |
John McCall | 506b57e | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 1858 | buf += IDecl->getNameAsString(); |
Steve Naroff | 21867b1 | 2007-11-07 18:43:40 +0000 | [diff] [blame] | 1859 | buf += "\"), (struct objc_object *)_caught)) { "; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1860 | ReplaceText(startLoc, lParenLoc-startBuf+1, buf); |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1861 | } |
| 1862 | } |
| 1863 | // Now rewrite the body... |
Douglas Gregor | 8f5e3dd | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 1864 | lastCatchBody = Catch->getCatchBody(); |
| 1865 | SourceLocation rParenLoc = Catch->getRParenLoc(); |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1866 | SourceLocation bodyLoc = lastCatchBody->getLocStart(); |
| 1867 | const char *bodyBuf = SM->getCharacterData(bodyLoc); |
| 1868 | const char *rParenBuf = SM->getCharacterData(rParenLoc); |
| 1869 | assert((*rParenBuf == ')') && "bogus @catch paren location"); |
| 1870 | assert((*bodyBuf == '{') && "bogus @catch body location"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1871 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1872 | // Here we replace ") {" with "= _caught;" (which initializes and |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1873 | // declares the @catch parameter). |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1874 | ReplaceText(rParenLoc, bodyBuf-rParenBuf+1, " = _caught;"); |
Steve Naroff | 7ba138a | 2009-03-03 19:52:17 +0000 | [diff] [blame] | 1875 | } else { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1876 | llvm_unreachable("@catch rewrite bug"); |
Steve Naroff | 2bd0392 | 2007-11-07 15:32:26 +0000 | [diff] [blame] | 1877 | } |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1878 | } |
| 1879 | // Complete the catch list... |
| 1880 | if (lastCatchBody) { |
| 1881 | SourceLocation bodyLoc = lastCatchBody->getLocEnd(); |
Chris Lattner | 0676751 | 2008-04-08 05:52:18 +0000 | [diff] [blame] | 1882 | assert(*SM->getCharacterData(bodyLoc) == '}' && |
| 1883 | "bogus @catch body location"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1884 | |
Steve Naroff | 378f47a | 2008-09-11 15:29:03 +0000 | [diff] [blame] | 1885 | // Insert the last (implicit) else clause *before* the right curly brace. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1886 | bodyLoc = bodyLoc.getLocWithOffset(-1); |
Steve Naroff | 378f47a | 2008-09-11 15:29:03 +0000 | [diff] [blame] | 1887 | buf = "} /* last catch end */\n"; |
| 1888 | buf += "else {\n"; |
| 1889 | buf += " _rethrow = _caught;\n"; |
| 1890 | buf += " objc_exception_try_exit(&_stack);\n"; |
| 1891 | buf += "} } /* @catch end */\n"; |
| 1892 | if (!S->getFinallyStmt()) |
| 1893 | buf += "}\n"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1894 | InsertText(bodyLoc, buf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1895 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1896 | // Set lastCurlyLoc |
| 1897 | lastCurlyLoc = lastCatchBody->getLocEnd(); |
| 1898 | } |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1899 | if (ObjCAtFinallyStmt *finalStmt = S->getFinallyStmt()) { |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1900 | startLoc = finalStmt->getLocStart(); |
| 1901 | startBuf = SM->getCharacterData(startLoc); |
| 1902 | assert((*startBuf == '@') && "bogus @finally start"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1903 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1904 | ReplaceText(startLoc, 8, "/* @finally */"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1905 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1906 | Stmt *body = finalStmt->getFinallyBody(); |
| 1907 | SourceLocation startLoc = body->getLocStart(); |
| 1908 | SourceLocation endLoc = body->getLocEnd(); |
Chris Lattner | 0676751 | 2008-04-08 05:52:18 +0000 | [diff] [blame] | 1909 | assert(*SM->getCharacterData(startLoc) == '{' && |
| 1910 | "bogus @finally body location"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1911 | assert(*SM->getCharacterData(endLoc) == '}' && |
Chris Lattner | 0676751 | 2008-04-08 05:52:18 +0000 | [diff] [blame] | 1912 | "bogus @finally body location"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1913 | |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1914 | startLoc = startLoc.getLocWithOffset(1); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1915 | InsertText(startLoc, " if (!_rethrow) objc_exception_try_exit(&_stack);\n"); |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1916 | endLoc = endLoc.getLocWithOffset(-1); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1917 | InsertText(endLoc, " if (_rethrow) objc_exception_throw(_rethrow);\n"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1918 | |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1919 | // Set lastCurlyLoc |
| 1920 | lastCurlyLoc = body->getLocEnd(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1921 | |
Steve Naroff | 8c56515 | 2008-12-05 17:03:39 +0000 | [diff] [blame] | 1922 | // Now check for any return/continue/go statements within the @try. |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1923 | WarnAboutReturnGotoStmts(S->getTryBody()); |
Steve Naroff | 378f47a | 2008-09-11 15:29:03 +0000 | [diff] [blame] | 1924 | } else { /* no finally clause - make sure we synthesize an implicit one */ |
| 1925 | buf = "{ /* implicit finally clause */\n"; |
| 1926 | buf += " if (!_rethrow) objc_exception_try_exit(&_stack);\n"; |
| 1927 | buf += " if (_rethrow) objc_exception_throw(_rethrow);\n"; |
| 1928 | buf += "}"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1929 | ReplaceText(lastCurlyLoc, 1, buf); |
Steve Naroff | b85e77a | 2009-12-05 21:43:12 +0000 | [diff] [blame] | 1930 | |
| 1931 | // Now check for any return/continue/go statements within the @try. |
| 1932 | // The implicit finally clause won't called if the @try contains any |
| 1933 | // jump statements. |
| 1934 | bool hasReturns = false; |
| 1935 | HasReturnStmts(S->getTryBody(), hasReturns); |
| 1936 | if (hasReturns) |
| 1937 | RewriteTryReturnStmts(S->getTryBody()); |
Steve Naroff | 7573098 | 2007-11-07 04:08:17 +0000 | [diff] [blame] | 1938 | } |
| 1939 | // Now emit the final closing curly brace... |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1940 | lastCurlyLoc = lastCurlyLoc.getLocWithOffset(1); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1941 | InsertText(lastCurlyLoc, " } /* @try scope end */\n"); |
Fariborz Jahanian | 909f02a | 2007-11-05 17:47:33 +0000 | [diff] [blame] | 1942 | return 0; |
| 1943 | } |
| 1944 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1945 | // This can't be done with ReplaceStmt(S, ThrowExpr), since |
| 1946 | // the throw expression is typically a message expression that's already |
Steve Naroff | 2bd0392 | 2007-11-07 15:32:26 +0000 | [diff] [blame] | 1947 | // been rewritten! (which implies the SourceLocation's are invalid). |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1948 | Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { |
Steve Naroff | 2bd0392 | 2007-11-07 15:32:26 +0000 | [diff] [blame] | 1949 | // Get the start location and compute the semi location. |
| 1950 | SourceLocation startLoc = S->getLocStart(); |
| 1951 | const char *startBuf = SM->getCharacterData(startLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1952 | |
Steve Naroff | 2bd0392 | 2007-11-07 15:32:26 +0000 | [diff] [blame] | 1953 | assert((*startBuf == '@') && "bogus @throw location"); |
| 1954 | |
| 1955 | std::string buf; |
| 1956 | /* void objc_exception_throw(id) __attribute__((noreturn)); */ |
Steve Naroff | 20ebf8f | 2008-01-19 00:42:38 +0000 | [diff] [blame] | 1957 | if (S->getThrowExpr()) |
| 1958 | buf = "objc_exception_throw("; |
| 1959 | else // add an implicit argument |
| 1960 | buf = "objc_exception_throw(_caught"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1961 | |
Steve Naroff | 4ba0acb | 2008-07-25 15:41:30 +0000 | [diff] [blame] | 1962 | // handle "@ throw" correctly. |
| 1963 | const char *wBuf = strchr(startBuf, 'w'); |
| 1964 | assert((*wBuf == 'w') && "@throw: can't find 'w'"); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1965 | ReplaceText(startLoc, wBuf-startBuf+1, buf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1966 | |
Steve Naroff | 2bd0392 | 2007-11-07 15:32:26 +0000 | [diff] [blame] | 1967 | const char *semiBuf = strchr(startBuf, ';'); |
| 1968 | assert((*semiBuf == ';') && "@throw: can't find ';'"); |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 1969 | SourceLocation semiLoc = startLoc.getLocWithOffset(semiBuf-startBuf); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 1970 | ReplaceText(semiLoc, 1, ");"); |
Steve Naroff | 2bd0392 | 2007-11-07 15:32:26 +0000 | [diff] [blame] | 1971 | return 0; |
| 1972 | } |
Fariborz Jahanian | 909f02a | 2007-11-05 17:47:33 +0000 | [diff] [blame] | 1973 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1974 | Stmt *RewriteObjC::RewriteAtEncode(ObjCEncodeExpr *Exp) { |
Chris Lattner | 01c5748 | 2007-10-17 22:35:30 +0000 | [diff] [blame] | 1975 | // Create a new string expression. |
| 1976 | QualType StrType = Context->getPointerType(Context->CharTy); |
Anders Carlsson | 85f9bce | 2007-10-29 05:01:08 +0000 | [diff] [blame] | 1977 | std::string StrEncoding; |
Daniel Dunbar | 0d504c1 | 2008-10-17 20:21:44 +0000 | [diff] [blame] | 1978 | Context->getObjCEncodingForType(Exp->getEncodedType(), StrEncoding); |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 1979 | Expr *Replacement = StringLiteral::Create(*Context, StrEncoding, |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1980 | StringLiteral::Ascii, false, |
| 1981 | StrType, SourceLocation()); |
Chris Lattner | dcbc5b0 | 2008-01-31 19:37:57 +0000 | [diff] [blame] | 1982 | ReplaceStmt(Exp, Replacement); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1983 | |
Chris Lattner | 0750618 | 2007-11-30 22:53:43 +0000 | [diff] [blame] | 1984 | // Replace this subexpr in the parent. |
Fariborz Jahanian | f2ad2c9 | 2010-10-11 21:29:12 +0000 | [diff] [blame] | 1985 | // delete Exp; leak for now, see RewritePropertyOrImplicitSetter() usage for more info. |
Chris Lattner | e64b777 | 2007-10-24 16:57:36 +0000 | [diff] [blame] | 1986 | return Replacement; |
Chris Lattner | 311ff02 | 2007-10-16 22:36:42 +0000 | [diff] [blame] | 1987 | } |
| 1988 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 1989 | Stmt *RewriteObjC::RewriteAtSelector(ObjCSelectorExpr *Exp) { |
Steve Naroff | 1a93764 | 2008-12-22 22:16:07 +0000 | [diff] [blame] | 1990 | if (!SelGetUidFunctionDecl) |
| 1991 | SynthSelGetUidFunctionDecl(); |
Steve Naroff | b42f841 | 2007-11-05 14:50:49 +0000 | [diff] [blame] | 1992 | assert(SelGetUidFunctionDecl && "Can't find sel_registerName() decl"); |
| 1993 | // Create a call to sel_registerName("selName"). |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1994 | SmallVector<Expr*, 8> SelExprs; |
Steve Naroff | b42f841 | 2007-11-05 14:50:49 +0000 | [diff] [blame] | 1995 | QualType argType = Context->getPointerType(Context->CharTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1996 | SelExprs.push_back(StringLiteral::Create(*Context, |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 1997 | Exp->getSelector().getAsString(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 1998 | StringLiteral::Ascii, false, |
| 1999 | argType, SourceLocation())); |
Steve Naroff | b42f841 | 2007-11-05 14:50:49 +0000 | [diff] [blame] | 2000 | CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl, |
| 2001 | &SelExprs[0], SelExprs.size()); |
Chris Lattner | dcbc5b0 | 2008-01-31 19:37:57 +0000 | [diff] [blame] | 2002 | ReplaceStmt(Exp, SelExp); |
Fariborz Jahanian | f2ad2c9 | 2010-10-11 21:29:12 +0000 | [diff] [blame] | 2003 | // delete Exp; leak for now, see RewritePropertyOrImplicitSetter() usage for more info. |
Steve Naroff | b42f841 | 2007-11-05 14:50:49 +0000 | [diff] [blame] | 2004 | return SelExp; |
| 2005 | } |
| 2006 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2007 | CallExpr *RewriteObjC::SynthesizeCallToFunctionDecl( |
Fariborz Jahanian | 1d35b16 | 2010-02-22 20:48:10 +0000 | [diff] [blame] | 2008 | FunctionDecl *FD, Expr **args, unsigned nargs, SourceLocation StartLoc, |
| 2009 | SourceLocation EndLoc) { |
Steve Naroff | ebf2b56 | 2007-10-23 23:50:29 +0000 | [diff] [blame] | 2010 | // Get the type, we will need to reference it in a couple spots. |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2011 | QualType msgSendType = FD->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2012 | |
Steve Naroff | ebf2b56 | 2007-10-23 23:50:29 +0000 | [diff] [blame] | 2013 | // Create a reference to the objc_msgSend() declaration. |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2014 | DeclRefExpr *DRE = |
| 2015 | new (Context) DeclRefExpr(FD, msgSendType, VK_LValue, SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2016 | |
Steve Naroff | ebf2b56 | 2007-10-23 23:50:29 +0000 | [diff] [blame] | 2017 | // Now, we cast the reference to a pointer to the objc_msgSend type. |
Chris Lattner | f04da13 | 2007-10-24 17:06:59 +0000 | [diff] [blame] | 2018 | QualType pToFunc = Context->getPointerType(msgSendType); |
Anders Carlsson | 88465d3 | 2010-04-23 22:18:37 +0000 | [diff] [blame] | 2019 | ImplicitCastExpr *ICE = |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2020 | ImplicitCastExpr::Create(*Context, pToFunc, CK_FunctionToPointerDecay, |
John McCall | 5baba9d | 2010-08-25 10:28:54 +0000 | [diff] [blame] | 2021 | DRE, 0, VK_RValue); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2022 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2023 | const FunctionType *FT = msgSendType->getAs<FunctionType>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2024 | |
Fariborz Jahanian | 1d35b16 | 2010-02-22 20:48:10 +0000 | [diff] [blame] | 2025 | CallExpr *Exp = |
Douglas Gregor | 5291c3c | 2010-07-13 08:18:22 +0000 | [diff] [blame] | 2026 | new (Context) CallExpr(*Context, ICE, args, nargs, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2027 | FT->getCallResultType(*Context), |
| 2028 | VK_RValue, EndLoc); |
Fariborz Jahanian | 1d35b16 | 2010-02-22 20:48:10 +0000 | [diff] [blame] | 2029 | return Exp; |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2030 | } |
| 2031 | |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2032 | static bool scanForProtocolRefs(const char *startBuf, const char *endBuf, |
| 2033 | const char *&startRef, const char *&endRef) { |
| 2034 | while (startBuf < endBuf) { |
| 2035 | if (*startBuf == '<') |
| 2036 | startRef = startBuf; // mark the start. |
| 2037 | if (*startBuf == '>') { |
Steve Naroff | 3217482 | 2007-11-09 12:50:28 +0000 | [diff] [blame] | 2038 | if (startRef && *startRef == '<') { |
| 2039 | endRef = startBuf; // mark the end. |
| 2040 | return true; |
| 2041 | } |
| 2042 | return false; |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2043 | } |
| 2044 | startBuf++; |
| 2045 | } |
| 2046 | return false; |
| 2047 | } |
| 2048 | |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2049 | static void scanToNextArgument(const char *&argRef) { |
| 2050 | int angle = 0; |
| 2051 | while (*argRef != ')' && (*argRef != ',' || angle > 0)) { |
| 2052 | if (*argRef == '<') |
| 2053 | angle++; |
| 2054 | else if (*argRef == '>') |
| 2055 | angle--; |
| 2056 | argRef++; |
| 2057 | } |
| 2058 | assert(angle == 0 && "scanToNextArgument - bad protocol type syntax"); |
| 2059 | } |
Fariborz Jahanian | 291e04b | 2007-12-11 23:04:08 +0000 | [diff] [blame] | 2060 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2061 | bool RewriteObjC::needToScanForQualifiers(QualType T) { |
Fariborz Jahanian | 32132a0 | 2010-02-03 21:29:28 +0000 | [diff] [blame] | 2062 | if (T->isObjCQualifiedIdType()) |
| 2063 | return true; |
Fariborz Jahanian | 84aa946 | 2010-02-02 18:35:07 +0000 | [diff] [blame] | 2064 | if (const PointerType *PT = T->getAs<PointerType>()) { |
| 2065 | if (PT->getPointeeType()->isObjCQualifiedIdType()) |
| 2066 | return true; |
| 2067 | } |
| 2068 | if (T->isObjCObjectPointerType()) { |
| 2069 | T = T->getPointeeType(); |
| 2070 | return T->isObjCQualifiedInterfaceType(); |
| 2071 | } |
Fariborz Jahanian | 24f9cab | 2010-09-30 20:41:32 +0000 | [diff] [blame] | 2072 | if (T->isArrayType()) { |
| 2073 | QualType ElemTy = Context->getBaseElementType(T); |
| 2074 | return needToScanForQualifiers(ElemTy); |
| 2075 | } |
Fariborz Jahanian | 84aa946 | 2010-02-02 18:35:07 +0000 | [diff] [blame] | 2076 | return false; |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2077 | } |
| 2078 | |
Steve Naroff | 4f95b75 | 2008-07-29 18:15:38 +0000 | [diff] [blame] | 2079 | void RewriteObjC::RewriteObjCQualifiedInterfaceTypes(Expr *E) { |
| 2080 | QualType Type = E->getType(); |
| 2081 | if (needToScanForQualifiers(Type)) { |
Steve Naroff | cda658e | 2008-11-19 21:15:47 +0000 | [diff] [blame] | 2082 | SourceLocation Loc, EndLoc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2083 | |
Steve Naroff | cda658e | 2008-11-19 21:15:47 +0000 | [diff] [blame] | 2084 | if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) { |
| 2085 | Loc = ECE->getLParenLoc(); |
| 2086 | EndLoc = ECE->getRParenLoc(); |
| 2087 | } else { |
| 2088 | Loc = E->getLocStart(); |
| 2089 | EndLoc = E->getLocEnd(); |
| 2090 | } |
| 2091 | // This will defend against trying to rewrite synthesized expressions. |
| 2092 | if (Loc.isInvalid() || EndLoc.isInvalid()) |
| 2093 | return; |
| 2094 | |
Steve Naroff | 4f95b75 | 2008-07-29 18:15:38 +0000 | [diff] [blame] | 2095 | const char *startBuf = SM->getCharacterData(Loc); |
Steve Naroff | cda658e | 2008-11-19 21:15:47 +0000 | [diff] [blame] | 2096 | const char *endBuf = SM->getCharacterData(EndLoc); |
Steve Naroff | 4f95b75 | 2008-07-29 18:15:38 +0000 | [diff] [blame] | 2097 | const char *startRef = 0, *endRef = 0; |
| 2098 | if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) { |
| 2099 | // Get the locations of the startRef, endRef. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 2100 | SourceLocation LessLoc = Loc.getLocWithOffset(startRef-startBuf); |
| 2101 | SourceLocation GreaterLoc = Loc.getLocWithOffset(endRef-startBuf+1); |
Steve Naroff | 4f95b75 | 2008-07-29 18:15:38 +0000 | [diff] [blame] | 2102 | // Comment out the protocol references. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 2103 | InsertText(LessLoc, "/*"); |
| 2104 | InsertText(GreaterLoc, "*/"); |
Steve Naroff | 4f95b75 | 2008-07-29 18:15:38 +0000 | [diff] [blame] | 2105 | } |
| 2106 | } |
| 2107 | } |
| 2108 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2109 | void RewriteObjC::RewriteObjCQualifiedInterfaceTypes(Decl *Dcl) { |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2110 | SourceLocation Loc; |
| 2111 | QualType Type; |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2112 | const FunctionProtoType *proto = 0; |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2113 | if (VarDecl *VD = dyn_cast<VarDecl>(Dcl)) { |
| 2114 | Loc = VD->getLocation(); |
| 2115 | Type = VD->getType(); |
| 2116 | } |
| 2117 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Dcl)) { |
| 2118 | Loc = FD->getLocation(); |
| 2119 | // Check for ObjC 'id' and class types that have been adorned with protocol |
| 2120 | // information (id<p>, C<p>*). The protocol references need to be rewritten! |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2121 | const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2122 | assert(funcType && "missing function type"); |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2123 | proto = dyn_cast<FunctionProtoType>(funcType); |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2124 | if (!proto) |
| 2125 | return; |
| 2126 | Type = proto->getResultType(); |
| 2127 | } |
Steve Naroff | 3d7e786 | 2009-12-05 15:55:59 +0000 | [diff] [blame] | 2128 | else if (FieldDecl *FD = dyn_cast<FieldDecl>(Dcl)) { |
| 2129 | Loc = FD->getLocation(); |
| 2130 | Type = FD->getType(); |
| 2131 | } |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2132 | else |
| 2133 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2134 | |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2135 | if (needToScanForQualifiers(Type)) { |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2136 | // Since types are unique, we need to scan the buffer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2137 | |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2138 | const char *endBuf = SM->getCharacterData(Loc); |
| 2139 | const char *startBuf = endBuf; |
Steve Naroff | 6cafbf2 | 2008-05-31 05:02:17 +0000 | [diff] [blame] | 2140 | while (*startBuf != ';' && *startBuf != '<' && startBuf != MainFileStart) |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2141 | startBuf--; // scan backward (from the decl location) for return type. |
| 2142 | const char *startRef = 0, *endRef = 0; |
| 2143 | if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) { |
| 2144 | // Get the locations of the startRef, endRef. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 2145 | SourceLocation LessLoc = Loc.getLocWithOffset(startRef-endBuf); |
| 2146 | SourceLocation GreaterLoc = Loc.getLocWithOffset(endRef-endBuf+1); |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2147 | // Comment out the protocol references. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 2148 | InsertText(LessLoc, "/*"); |
| 2149 | InsertText(GreaterLoc, "*/"); |
Steve Naroff | 9165ad3 | 2007-10-31 04:38:33 +0000 | [diff] [blame] | 2150 | } |
| 2151 | } |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2152 | if (!proto) |
| 2153 | return; // most likely, was a variable |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2154 | // Now check arguments. |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2155 | const char *startBuf = SM->getCharacterData(Loc); |
| 2156 | const char *startFuncBuf = startBuf; |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2157 | for (unsigned i = 0; i < proto->getNumArgs(); i++) { |
| 2158 | if (needToScanForQualifiers(proto->getArgType(i))) { |
| 2159 | // Since types are unique, we need to scan the buffer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2160 | |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2161 | const char *endBuf = startBuf; |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2162 | // scan forward (from the decl location) for argument types. |
| 2163 | scanToNextArgument(endBuf); |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2164 | const char *startRef = 0, *endRef = 0; |
| 2165 | if (scanForProtocolRefs(startBuf, endBuf, startRef, endRef)) { |
| 2166 | // Get the locations of the startRef, endRef. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2167 | SourceLocation LessLoc = |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 2168 | Loc.getLocWithOffset(startRef-startFuncBuf); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2169 | SourceLocation GreaterLoc = |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 2170 | Loc.getLocWithOffset(endRef-startFuncBuf+1); |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2171 | // Comment out the protocol references. |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 2172 | InsertText(LessLoc, "/*"); |
| 2173 | InsertText(GreaterLoc, "*/"); |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2174 | } |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2175 | startBuf = ++endBuf; |
| 2176 | } |
| 2177 | else { |
Steve Naroff | aba49d1 | 2008-08-06 15:58:23 +0000 | [diff] [blame] | 2178 | // If the function name is derived from a macro expansion, then the |
| 2179 | // argument buffer will not follow the name. Need to speak with Chris. |
| 2180 | while (*startBuf && *startBuf != ')' && *startBuf != ',') |
Fariborz Jahanian | 61477f7 | 2007-12-11 22:50:14 +0000 | [diff] [blame] | 2181 | startBuf++; // scan forward (from the decl location) for argument types. |
| 2182 | startBuf++; |
| 2183 | } |
Steve Naroff | d5255f5 | 2007-11-01 13:24:47 +0000 | [diff] [blame] | 2184 | } |
Steve Naroff | 9165ad3 | 2007-10-31 04:38:33 +0000 | [diff] [blame] | 2185 | } |
| 2186 | |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 2187 | void RewriteObjC::RewriteTypeOfDecl(VarDecl *ND) { |
| 2188 | QualType QT = ND->getType(); |
| 2189 | const Type* TypePtr = QT->getAs<Type>(); |
| 2190 | if (!isa<TypeOfExprType>(TypePtr)) |
| 2191 | return; |
| 2192 | while (isa<TypeOfExprType>(TypePtr)) { |
| 2193 | const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); |
| 2194 | QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); |
| 2195 | TypePtr = QT->getAs<Type>(); |
| 2196 | } |
| 2197 | // FIXME. This will not work for multiple declarators; as in: |
| 2198 | // __typeof__(a) b,c,d; |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 2199 | std::string TypeAsString(QT.getAsString(Context->getPrintingPolicy())); |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 2200 | SourceLocation DeclLoc = ND->getTypeSpecStartLoc(); |
| 2201 | const char *startBuf = SM->getCharacterData(DeclLoc); |
| 2202 | if (ND->getInit()) { |
| 2203 | std::string Name(ND->getNameAsString()); |
| 2204 | TypeAsString += " " + Name + " = "; |
| 2205 | Expr *E = ND->getInit(); |
| 2206 | SourceLocation startLoc; |
| 2207 | if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) |
| 2208 | startLoc = ECE->getLParenLoc(); |
| 2209 | else |
| 2210 | startLoc = E->getLocStart(); |
Chandler Carruth | 4027853 | 2011-07-25 16:49:02 +0000 | [diff] [blame] | 2211 | startLoc = SM->getExpansionLoc(startLoc); |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 2212 | const char *endBuf = SM->getCharacterData(startLoc); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 2213 | ReplaceText(DeclLoc, endBuf-startBuf-1, TypeAsString); |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 2214 | } |
| 2215 | else { |
| 2216 | SourceLocation X = ND->getLocEnd(); |
Chandler Carruth | 4027853 | 2011-07-25 16:49:02 +0000 | [diff] [blame] | 2217 | X = SM->getExpansionLoc(X); |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 2218 | const char *endBuf = SM->getCharacterData(X); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 2219 | ReplaceText(DeclLoc, endBuf-startBuf-1, TypeAsString); |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 2220 | } |
| 2221 | } |
| 2222 | |
Fariborz Jahanian | a70711b | 2007-12-04 21:47:40 +0000 | [diff] [blame] | 2223 | // SynthSelGetUidFunctionDecl - SEL sel_registerName(const char *str); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2224 | void RewriteObjC::SynthSelGetUidFunctionDecl() { |
Fariborz Jahanian | a70711b | 2007-12-04 21:47:40 +0000 | [diff] [blame] | 2225 | IdentifierInfo *SelGetUidIdent = &Context->Idents.get("sel_registerName"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2226 | SmallVector<QualType, 16> ArgTys; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2227 | ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2228 | QualType getFuncType = |
| 2229 | getSimpleFunctionType(Context->getObjCSelType(), &ArgTys[0], ArgTys.size()); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2230 | SelGetUidFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2231 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2232 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2233 | SelGetUidIdent, getFuncType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2234 | SC_Extern, |
| 2235 | SC_None, false); |
Fariborz Jahanian | a70711b | 2007-12-04 21:47:40 +0000 | [diff] [blame] | 2236 | } |
| 2237 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2238 | void RewriteObjC::RewriteFunctionDecl(FunctionDecl *FD) { |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2239 | // declared in <objc/objc.h> |
Douglas Gregor | 51efe56 | 2009-01-09 01:47:02 +0000 | [diff] [blame] | 2240 | if (FD->getIdentifier() && |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 2241 | FD->getName() == "sel_registerName") { |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2242 | SelGetUidFunctionDecl = FD; |
Steve Naroff | 9165ad3 | 2007-10-31 04:38:33 +0000 | [diff] [blame] | 2243 | return; |
| 2244 | } |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2245 | RewriteObjCQualifiedInterfaceTypes(FD); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2246 | } |
| 2247 | |
Daniel Dunbar | fa297fb | 2010-06-30 19:16:53 +0000 | [diff] [blame] | 2248 | void RewriteObjC::RewriteBlockPointerType(std::string& Str, QualType Type) { |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 2249 | std::string TypeString(Type.getAsString(Context->getPrintingPolicy())); |
Fariborz Jahanian | 52b2e1e | 2010-02-12 17:52:31 +0000 | [diff] [blame] | 2250 | const char *argPtr = TypeString.c_str(); |
| 2251 | if (!strchr(argPtr, '^')) { |
| 2252 | Str += TypeString; |
| 2253 | return; |
| 2254 | } |
| 2255 | while (*argPtr) { |
| 2256 | Str += (*argPtr == '^' ? '*' : *argPtr); |
| 2257 | argPtr++; |
| 2258 | } |
| 2259 | } |
| 2260 | |
Fariborz Jahanian | e8c28df | 2010-02-16 16:21:26 +0000 | [diff] [blame] | 2261 | // FIXME. Consolidate this routine with RewriteBlockPointerType. |
Daniel Dunbar | fa297fb | 2010-06-30 19:16:53 +0000 | [diff] [blame] | 2262 | void RewriteObjC::RewriteBlockPointerTypeVariable(std::string& Str, |
| 2263 | ValueDecl *VD) { |
Fariborz Jahanian | e8c28df | 2010-02-16 16:21:26 +0000 | [diff] [blame] | 2264 | QualType Type = VD->getType(); |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 2265 | std::string TypeString(Type.getAsString(Context->getPrintingPolicy())); |
Fariborz Jahanian | e8c28df | 2010-02-16 16:21:26 +0000 | [diff] [blame] | 2266 | const char *argPtr = TypeString.c_str(); |
| 2267 | int paren = 0; |
| 2268 | while (*argPtr) { |
| 2269 | switch (*argPtr) { |
| 2270 | case '(': |
| 2271 | Str += *argPtr; |
| 2272 | paren++; |
| 2273 | break; |
| 2274 | case ')': |
| 2275 | Str += *argPtr; |
| 2276 | paren--; |
| 2277 | break; |
| 2278 | case '^': |
| 2279 | Str += '*'; |
| 2280 | if (paren == 1) |
| 2281 | Str += VD->getNameAsString(); |
| 2282 | break; |
| 2283 | default: |
| 2284 | Str += *argPtr; |
| 2285 | break; |
| 2286 | } |
| 2287 | argPtr++; |
| 2288 | } |
| 2289 | } |
| 2290 | |
| 2291 | |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 2292 | void RewriteObjC::RewriteBlockLiteralFunctionDecl(FunctionDecl *FD) { |
| 2293 | SourceLocation FunLocStart = FD->getTypeSpecStartLoc(); |
| 2294 | const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); |
| 2295 | const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(funcType); |
| 2296 | if (!proto) |
| 2297 | return; |
| 2298 | QualType Type = proto->getResultType(); |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 2299 | std::string FdStr = Type.getAsString(Context->getPrintingPolicy()); |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 2300 | FdStr += " "; |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 2301 | FdStr += FD->getName(); |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 2302 | FdStr += "("; |
| 2303 | unsigned numArgs = proto->getNumArgs(); |
| 2304 | for (unsigned i = 0; i < numArgs; i++) { |
| 2305 | QualType ArgType = proto->getArgType(i); |
Fariborz Jahanian | 52b2e1e | 2010-02-12 17:52:31 +0000 | [diff] [blame] | 2306 | RewriteBlockPointerType(FdStr, ArgType); |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 2307 | if (i+1 < numArgs) |
| 2308 | FdStr += ", "; |
| 2309 | } |
| 2310 | FdStr += ");\n"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 2311 | InsertText(FunLocStart, FdStr); |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 2312 | CurFunctionDeclToDeclareForBlock = 0; |
| 2313 | } |
| 2314 | |
Steve Naroff | c0a123c | 2008-03-11 17:37:02 +0000 | [diff] [blame] | 2315 | // SynthSuperContructorFunctionDecl - id objc_super(id obj, id super); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2316 | void RewriteObjC::SynthSuperContructorFunctionDecl() { |
Steve Naroff | c0a123c | 2008-03-11 17:37:02 +0000 | [diff] [blame] | 2317 | if (SuperContructorFunctionDecl) |
| 2318 | return; |
Steve Naroff | 46a98a7 | 2008-12-23 20:11:22 +0000 | [diff] [blame] | 2319 | IdentifierInfo *msgSendIdent = &Context->Idents.get("__rw_objc_super"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2320 | SmallVector<QualType, 16> ArgTys; |
Steve Naroff | c0a123c | 2008-03-11 17:37:02 +0000 | [diff] [blame] | 2321 | QualType argT = Context->getObjCIdType(); |
| 2322 | assert(!argT.isNull() && "Can't find 'id' type"); |
| 2323 | ArgTys.push_back(argT); |
| 2324 | ArgTys.push_back(argT); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2325 | QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), |
| 2326 | &ArgTys[0], ArgTys.size()); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2327 | SuperContructorFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2328 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2329 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2330 | msgSendIdent, msgSendType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2331 | SC_Extern, |
| 2332 | SC_None, false); |
Steve Naroff | c0a123c | 2008-03-11 17:37:02 +0000 | [diff] [blame] | 2333 | } |
| 2334 | |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2335 | // SynthMsgSendFunctionDecl - id objc_msgSend(id self, SEL op, ...); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2336 | void RewriteObjC::SynthMsgSendFunctionDecl() { |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2337 | IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2338 | SmallVector<QualType, 16> ArgTys; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2339 | QualType argT = Context->getObjCIdType(); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2340 | assert(!argT.isNull() && "Can't find 'id' type"); |
| 2341 | ArgTys.push_back(argT); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2342 | argT = Context->getObjCSelType(); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2343 | assert(!argT.isNull() && "Can't find 'SEL' type"); |
| 2344 | ArgTys.push_back(argT); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2345 | QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), |
| 2346 | &ArgTys[0], ArgTys.size(), |
| 2347 | true /*isVariadic*/); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2348 | MsgSendFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 2349 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2350 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2351 | msgSendIdent, msgSendType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2352 | SC_Extern, |
| 2353 | SC_None, false); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2354 | } |
| 2355 | |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2356 | // SynthMsgSendSuperFunctionDecl - id objc_msgSendSuper(struct objc_super *, SEL op, ...); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2357 | void RewriteObjC::SynthMsgSendSuperFunctionDecl() { |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2358 | IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSendSuper"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2359 | SmallVector<QualType, 16> ArgTys; |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 2360 | RecordDecl *RD = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2361 | SourceLocation(), SourceLocation(), |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 2362 | &Context->Idents.get("objc_super")); |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2363 | QualType argT = Context->getPointerType(Context->getTagDeclType(RD)); |
| 2364 | assert(!argT.isNull() && "Can't build 'struct objc_super *' type"); |
| 2365 | ArgTys.push_back(argT); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2366 | argT = Context->getObjCSelType(); |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2367 | assert(!argT.isNull() && "Can't find 'SEL' type"); |
| 2368 | ArgTys.push_back(argT); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2369 | QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), |
| 2370 | &ArgTys[0], ArgTys.size(), |
| 2371 | true /*isVariadic*/); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2372 | MsgSendSuperFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2373 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2374 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2375 | msgSendIdent, msgSendType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2376 | SC_Extern, |
| 2377 | SC_None, false); |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2378 | } |
| 2379 | |
Fariborz Jahanian | 336c8f7 | 2011-10-11 23:02:37 +0000 | [diff] [blame] | 2380 | // SynthMsgSendStretFunctionDecl - id objc_msgSend_stret(id self, SEL op, ...); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2381 | void RewriteObjC::SynthMsgSendStretFunctionDecl() { |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2382 | IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_stret"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2383 | SmallVector<QualType, 16> ArgTys; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2384 | QualType argT = Context->getObjCIdType(); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2385 | assert(!argT.isNull() && "Can't find 'id' type"); |
| 2386 | ArgTys.push_back(argT); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2387 | argT = Context->getObjCSelType(); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2388 | assert(!argT.isNull() && "Can't find 'SEL' type"); |
| 2389 | ArgTys.push_back(argT); |
Fariborz Jahanian | 336c8f7 | 2011-10-11 23:02:37 +0000 | [diff] [blame] | 2390 | QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2391 | &ArgTys[0], ArgTys.size(), |
| 2392 | true /*isVariadic*/); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2393 | MsgSendStretFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2394 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2395 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2396 | msgSendIdent, msgSendType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2397 | SC_Extern, |
| 2398 | SC_None, false); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2399 | } |
| 2400 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2401 | // SynthMsgSendSuperStretFunctionDecl - |
Fariborz Jahanian | 336c8f7 | 2011-10-11 23:02:37 +0000 | [diff] [blame] | 2402 | // id objc_msgSendSuper_stret(struct objc_super *, SEL op, ...); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2403 | void RewriteObjC::SynthMsgSendSuperStretFunctionDecl() { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2404 | IdentifierInfo *msgSendIdent = |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2405 | &Context->Idents.get("objc_msgSendSuper_stret"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2406 | SmallVector<QualType, 16> ArgTys; |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 2407 | RecordDecl *RD = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2408 | SourceLocation(), SourceLocation(), |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 2409 | &Context->Idents.get("objc_super")); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2410 | QualType argT = Context->getPointerType(Context->getTagDeclType(RD)); |
| 2411 | assert(!argT.isNull() && "Can't build 'struct objc_super *' type"); |
| 2412 | ArgTys.push_back(argT); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2413 | argT = Context->getObjCSelType(); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2414 | assert(!argT.isNull() && "Can't find 'SEL' type"); |
| 2415 | ArgTys.push_back(argT); |
Fariborz Jahanian | 336c8f7 | 2011-10-11 23:02:37 +0000 | [diff] [blame] | 2416 | QualType msgSendType = getSimpleFunctionType(Context->getObjCIdType(), |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2417 | &ArgTys[0], ArgTys.size(), |
| 2418 | true /*isVariadic*/); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2419 | MsgSendSuperStretFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2420 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2421 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2422 | msgSendIdent, msgSendType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2423 | SC_Extern, |
| 2424 | SC_None, false); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2425 | } |
| 2426 | |
Steve Naroff | 1284db8 | 2008-05-08 22:02:18 +0000 | [diff] [blame] | 2427 | // SynthMsgSendFpretFunctionDecl - double objc_msgSend_fpret(id self, SEL op, ...); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2428 | void RewriteObjC::SynthMsgSendFpretFunctionDecl() { |
Fariborz Jahanian | acb4977 | 2007-12-03 21:26:48 +0000 | [diff] [blame] | 2429 | IdentifierInfo *msgSendIdent = &Context->Idents.get("objc_msgSend_fpret"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2430 | SmallVector<QualType, 16> ArgTys; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2431 | QualType argT = Context->getObjCIdType(); |
Fariborz Jahanian | acb4977 | 2007-12-03 21:26:48 +0000 | [diff] [blame] | 2432 | assert(!argT.isNull() && "Can't find 'id' type"); |
| 2433 | ArgTys.push_back(argT); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2434 | argT = Context->getObjCSelType(); |
Fariborz Jahanian | acb4977 | 2007-12-03 21:26:48 +0000 | [diff] [blame] | 2435 | assert(!argT.isNull() && "Can't find 'SEL' type"); |
| 2436 | ArgTys.push_back(argT); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2437 | QualType msgSendType = getSimpleFunctionType(Context->DoubleTy, |
| 2438 | &ArgTys[0], ArgTys.size(), |
| 2439 | true /*isVariadic*/); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2440 | MsgSendFpretFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2441 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2442 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2443 | msgSendIdent, msgSendType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2444 | SC_Extern, |
| 2445 | SC_None, false); |
Fariborz Jahanian | acb4977 | 2007-12-03 21:26:48 +0000 | [diff] [blame] | 2446 | } |
| 2447 | |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2448 | // SynthGetClassFunctionDecl - id objc_getClass(const char *name); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2449 | void RewriteObjC::SynthGetClassFunctionDecl() { |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2450 | IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getClass"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2451 | SmallVector<QualType, 16> ArgTys; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2452 | ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2453 | QualType getClassType = getSimpleFunctionType(Context->getObjCIdType(), |
| 2454 | &ArgTys[0], ArgTys.size()); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2455 | GetClassFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2456 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2457 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2458 | getClassIdent, getClassType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2459 | SC_Extern, |
| 2460 | SC_None, false); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2461 | } |
| 2462 | |
Fariborz Jahanian | d314e9e | 2010-03-10 21:17:41 +0000 | [diff] [blame] | 2463 | // SynthGetSuperClassFunctionDecl - Class class_getSuperclass(Class cls); |
| 2464 | void RewriteObjC::SynthGetSuperClassFunctionDecl() { |
| 2465 | IdentifierInfo *getSuperClassIdent = |
| 2466 | &Context->Idents.get("class_getSuperclass"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2467 | SmallVector<QualType, 16> ArgTys; |
Fariborz Jahanian | d314e9e | 2010-03-10 21:17:41 +0000 | [diff] [blame] | 2468 | ArgTys.push_back(Context->getObjCClassType()); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2469 | QualType getClassType = getSimpleFunctionType(Context->getObjCClassType(), |
| 2470 | &ArgTys[0], ArgTys.size()); |
Fariborz Jahanian | d314e9e | 2010-03-10 21:17:41 +0000 | [diff] [blame] | 2471 | GetSuperClassFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 2472 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2473 | SourceLocation(), |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 2474 | getSuperClassIdent, |
| 2475 | getClassType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2476 | SC_Extern, |
| 2477 | SC_None, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 2478 | false); |
Fariborz Jahanian | d314e9e | 2010-03-10 21:17:41 +0000 | [diff] [blame] | 2479 | } |
| 2480 | |
Fariborz Jahanian | 97bbab2 | 2011-12-21 19:48:07 +0000 | [diff] [blame^] | 2481 | // SynthGetMetaClassFunctionDecl - id objc_getMetaClass(const char *name); |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2482 | void RewriteObjC::SynthGetMetaClassFunctionDecl() { |
Steve Naroff | 9bcb5fc | 2007-12-07 03:50:46 +0000 | [diff] [blame] | 2483 | IdentifierInfo *getClassIdent = &Context->Idents.get("objc_getMetaClass"); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2484 | SmallVector<QualType, 16> ArgTys; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2485 | ArgTys.push_back(Context->getPointerType(Context->CharTy.withConst())); |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2486 | QualType getClassType = getSimpleFunctionType(Context->getObjCIdType(), |
| 2487 | &ArgTys[0], ArgTys.size()); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 2488 | GetMetaClassFunctionDecl = FunctionDecl::Create(*Context, TUDecl, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2489 | SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2490 | SourceLocation(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2491 | getClassIdent, getClassType, 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 2492 | SC_Extern, |
| 2493 | SC_None, false); |
Steve Naroff | 9bcb5fc | 2007-12-07 03:50:46 +0000 | [diff] [blame] | 2494 | } |
| 2495 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2496 | Stmt *RewriteObjC::RewriteObjCStringLiteral(ObjCStringLiteral *Exp) { |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2497 | QualType strType = getConstantStringStructType(); |
| 2498 | |
| 2499 | std::string S = "__NSConstantStringImpl_"; |
Steve Naroff | 7691d9b | 2008-05-31 03:35:42 +0000 | [diff] [blame] | 2500 | |
| 2501 | std::string tmpName = InFileName; |
| 2502 | unsigned i; |
| 2503 | for (i=0; i < tmpName.length(); i++) { |
| 2504 | char c = tmpName.at(i); |
| 2505 | // replace any non alphanumeric characters with '_'. |
| 2506 | if (!isalpha(c) && (c < '0' || c > '9')) |
| 2507 | tmpName[i] = '_'; |
| 2508 | } |
| 2509 | S += tmpName; |
| 2510 | S += "_"; |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2511 | S += utostr(NumObjCStringLiterals++); |
| 2512 | |
Steve Naroff | ba92b2e | 2008-03-27 22:29:16 +0000 | [diff] [blame] | 2513 | Preamble += "static __NSConstantStringImpl " + S; |
| 2514 | Preamble += " __attribute__ ((section (\"__DATA, __cfstring\"))) = {__CFConstantStringClassReference,"; |
| 2515 | Preamble += "0x000007c8,"; // utf8_str |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2516 | // The pretty printer for StringLiteral handles escape characters properly. |
Ted Kremenek | a95d375 | 2008-09-13 05:16:45 +0000 | [diff] [blame] | 2517 | std::string prettyBufS; |
| 2518 | llvm::raw_string_ostream prettyBuf(prettyBufS); |
Chris Lattner | e4f2142 | 2009-06-30 01:26:17 +0000 | [diff] [blame] | 2519 | Exp->getString()->printPretty(prettyBuf, *Context, 0, |
| 2520 | PrintingPolicy(LangOpts)); |
Steve Naroff | ba92b2e | 2008-03-27 22:29:16 +0000 | [diff] [blame] | 2521 | Preamble += prettyBuf.str(); |
| 2522 | Preamble += ","; |
Steve Naroff | fd5b76f | 2009-12-06 01:48:44 +0000 | [diff] [blame] | 2523 | Preamble += utostr(Exp->getString()->getByteLength()) + "};\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2524 | |
| 2525 | VarDecl *NewVD = VarDecl::Create(*Context, TUDecl, SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2526 | SourceLocation(), &Context->Idents.get(S), |
| 2527 | strType, 0, SC_Static, SC_None); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2528 | DeclRefExpr *DRE = new (Context) DeclRefExpr(NewVD, strType, VK_LValue, |
| 2529 | SourceLocation()); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2530 | Expr *Unop = new (Context) UnaryOperator(DRE, UO_AddrOf, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2531 | Context->getPointerType(DRE->getType()), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2532 | VK_RValue, OK_Ordinary, |
| 2533 | SourceLocation()); |
Steve Naroff | 9698464 | 2007-11-08 14:30:50 +0000 | [diff] [blame] | 2534 | // cast to NSConstantString * |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 2535 | CastExpr *cast = NoTypeInfoCStyleCastExpr(Context, Exp->getType(), |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 2536 | CK_CPointerToObjCPointerCast, Unop); |
Chris Lattner | dcbc5b0 | 2008-01-31 19:37:57 +0000 | [diff] [blame] | 2537 | ReplaceStmt(Exp, cast); |
Fariborz Jahanian | f2ad2c9 | 2010-10-11 21:29:12 +0000 | [diff] [blame] | 2538 | // delete Exp; leak for now, see RewritePropertyOrImplicitSetter() usage for more info. |
Steve Naroff | 9698464 | 2007-11-08 14:30:50 +0000 | [diff] [blame] | 2539 | return cast; |
Steve Naroff | beaf299 | 2007-11-03 11:27:19 +0000 | [diff] [blame] | 2540 | } |
| 2541 | |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2542 | // struct objc_super { struct objc_object *receiver; struct objc_class *super; }; |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2543 | QualType RewriteObjC::getSuperStructType() { |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2544 | if (!SuperStructDecl) { |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 2545 | SuperStructDecl = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2546 | SourceLocation(), SourceLocation(), |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 2547 | &Context->Idents.get("objc_super")); |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2548 | QualType FieldTypes[2]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2549 | |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2550 | // struct objc_object *receiver; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2551 | FieldTypes[0] = Context->getObjCIdType(); |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2552 | // struct objc_class *super; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2553 | FieldTypes[1] = Context->getObjCClassType(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2554 | |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2555 | // Create fields |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2556 | for (unsigned i = 0; i < 2; ++i) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2557 | SuperStructDecl->addDecl(FieldDecl::Create(*Context, SuperStructDecl, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2558 | SourceLocation(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2559 | SourceLocation(), 0, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2560 | FieldTypes[i], 0, |
| 2561 | /*BitWidth=*/0, |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 2562 | /*Mutable=*/false, |
| 2563 | /*HasInit=*/false)); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2564 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2565 | |
Douglas Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 2566 | SuperStructDecl->completeDefinition(); |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2567 | } |
| 2568 | return Context->getTagDeclType(SuperStructDecl); |
| 2569 | } |
| 2570 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 2571 | QualType RewriteObjC::getConstantStringStructType() { |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2572 | if (!ConstantStringDecl) { |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 2573 | ConstantStringDecl = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 2574 | SourceLocation(), SourceLocation(), |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 2575 | &Context->Idents.get("__NSConstantStringImpl")); |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2576 | QualType FieldTypes[4]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2577 | |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2578 | // struct objc_object *receiver; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2579 | FieldTypes[0] = Context->getObjCIdType(); |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2580 | // int flags; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2581 | FieldTypes[1] = Context->IntTy; |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2582 | // char *str; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2583 | FieldTypes[2] = Context->getPointerType(Context->CharTy); |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2584 | // long length; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2585 | FieldTypes[3] = Context->LongTy; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2586 | |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2587 | // Create fields |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2588 | for (unsigned i = 0; i < 4; ++i) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2589 | ConstantStringDecl->addDecl(FieldDecl::Create(*Context, |
| 2590 | ConstantStringDecl, |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 2591 | SourceLocation(), |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2592 | SourceLocation(), 0, |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 2593 | FieldTypes[i], 0, |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2594 | /*BitWidth=*/0, |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 2595 | /*Mutable=*/true, |
| 2596 | /*HasInit=*/false)); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2597 | } |
| 2598 | |
Douglas Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 2599 | ConstantStringDecl->completeDefinition(); |
Steve Naroff | d82a9ab | 2008-03-15 00:55:56 +0000 | [diff] [blame] | 2600 | } |
| 2601 | return Context->getTagDeclType(ConstantStringDecl); |
| 2602 | } |
| 2603 | |
Fariborz Jahanian | 1d35b16 | 2010-02-22 20:48:10 +0000 | [diff] [blame] | 2604 | Stmt *RewriteObjC::SynthMessageExpr(ObjCMessageExpr *Exp, |
| 2605 | SourceLocation StartLoc, |
| 2606 | SourceLocation EndLoc) { |
Fariborz Jahanian | a70711b | 2007-12-04 21:47:40 +0000 | [diff] [blame] | 2607 | if (!SelGetUidFunctionDecl) |
| 2608 | SynthSelGetUidFunctionDecl(); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2609 | if (!MsgSendFunctionDecl) |
| 2610 | SynthMsgSendFunctionDecl(); |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2611 | if (!MsgSendSuperFunctionDecl) |
| 2612 | SynthMsgSendSuperFunctionDecl(); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2613 | if (!MsgSendStretFunctionDecl) |
| 2614 | SynthMsgSendStretFunctionDecl(); |
| 2615 | if (!MsgSendSuperStretFunctionDecl) |
| 2616 | SynthMsgSendSuperStretFunctionDecl(); |
Fariborz Jahanian | acb4977 | 2007-12-03 21:26:48 +0000 | [diff] [blame] | 2617 | if (!MsgSendFpretFunctionDecl) |
| 2618 | SynthMsgSendFpretFunctionDecl(); |
Steve Naroff | 09b266e | 2007-10-30 23:14:51 +0000 | [diff] [blame] | 2619 | if (!GetClassFunctionDecl) |
| 2620 | SynthGetClassFunctionDecl(); |
Fariborz Jahanian | d314e9e | 2010-03-10 21:17:41 +0000 | [diff] [blame] | 2621 | if (!GetSuperClassFunctionDecl) |
| 2622 | SynthGetSuperClassFunctionDecl(); |
Steve Naroff | 9bcb5fc | 2007-12-07 03:50:46 +0000 | [diff] [blame] | 2623 | if (!GetMetaClassFunctionDecl) |
| 2624 | SynthGetMetaClassFunctionDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2625 | |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2626 | // default to objc_msgSend(). |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2627 | FunctionDecl *MsgSendFlavor = MsgSendFunctionDecl; |
| 2628 | // May need to use objc_msgSend_stret() as well. |
| 2629 | FunctionDecl *MsgSendStretFlavor = 0; |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 2630 | if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) { |
| 2631 | QualType resultType = mDecl->getResultType(); |
Douglas Gregor | fb87b89 | 2010-04-26 21:31:17 +0000 | [diff] [blame] | 2632 | if (resultType->isRecordType()) |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2633 | MsgSendStretFlavor = MsgSendStretFunctionDecl; |
Chris Lattner | 8b51fd7 | 2008-07-26 22:36:27 +0000 | [diff] [blame] | 2634 | else if (resultType->isRealFloatingType()) |
Fariborz Jahanian | acb4977 | 2007-12-03 21:26:48 +0000 | [diff] [blame] | 2635 | MsgSendFlavor = MsgSendFpretFunctionDecl; |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2636 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2637 | |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2638 | // Synthesize a call to objc_msgSend(). |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2639 | SmallVector<Expr*, 8> MsgExprs; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2640 | switch (Exp->getReceiverKind()) { |
| 2641 | case ObjCMessageExpr::SuperClass: { |
| 2642 | MsgSendFlavor = MsgSendSuperFunctionDecl; |
| 2643 | if (MsgSendStretFlavor) |
| 2644 | MsgSendStretFlavor = MsgSendSuperStretFunctionDecl; |
| 2645 | assert(MsgSendFlavor && "MsgSendFlavor is NULL!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2646 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2647 | ObjCInterfaceDecl *ClassDecl = CurMethodDef->getClassInterface(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2648 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2649 | SmallVector<Expr*, 4> InitExprs; |
Steve Naroff | 9bcb5fc | 2007-12-07 03:50:46 +0000 | [diff] [blame] | 2650 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2651 | // set the receiver to self, the first argument to all methods. |
| 2652 | InitExprs.push_back( |
| 2653 | NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2654 | CK_BitCast, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2655 | new (Context) DeclRefExpr(CurMethodDef->getSelfDecl(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2656 | Context->getObjCIdType(), |
| 2657 | VK_RValue, |
| 2658 | SourceLocation())) |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2659 | ); // set the 'receiver'. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2660 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2661 | // (id)class_getSuperclass((Class)objc_getClass("CurrentClass")) |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2662 | SmallVector<Expr*, 8> ClsExprs; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2663 | QualType argType = Context->getPointerType(Context->CharTy); |
| 2664 | ClsExprs.push_back(StringLiteral::Create(*Context, |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 2665 | ClassDecl->getIdentifier()->getName(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2666 | StringLiteral::Ascii, false, |
| 2667 | argType, SourceLocation())); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2668 | CallExpr *Cls = SynthesizeCallToFunctionDecl(GetMetaClassFunctionDecl, |
| 2669 | &ClsExprs[0], |
| 2670 | ClsExprs.size(), |
| 2671 | StartLoc, |
| 2672 | EndLoc); |
| 2673 | // (Class)objc_getClass("CurrentClass") |
| 2674 | CastExpr *ArgExpr = NoTypeInfoCStyleCastExpr(Context, |
| 2675 | Context->getObjCClassType(), |
Fariborz Jahanian | 97bbab2 | 2011-12-21 19:48:07 +0000 | [diff] [blame^] | 2676 | CK_BitCast, Cls); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2677 | ClsExprs.clear(); |
| 2678 | ClsExprs.push_back(ArgExpr); |
| 2679 | Cls = SynthesizeCallToFunctionDecl(GetSuperClassFunctionDecl, |
| 2680 | &ClsExprs[0], ClsExprs.size(), |
| 2681 | StartLoc, EndLoc); |
| 2682 | |
| 2683 | // (id)class_getSuperclass((Class)objc_getClass("CurrentClass")) |
| 2684 | // To turn off a warning, type-cast to 'id' |
| 2685 | InitExprs.push_back( // set 'super class', using class_getSuperclass(). |
| 2686 | NoTypeInfoCStyleCastExpr(Context, |
| 2687 | Context->getObjCIdType(), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2688 | CK_BitCast, Cls)); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2689 | // struct objc_super |
| 2690 | QualType superType = getSuperStructType(); |
| 2691 | Expr *SuperRep; |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 2692 | |
Francois Pichet | 62ec1f2 | 2011-09-17 17:15:52 +0000 | [diff] [blame] | 2693 | if (LangOpts.MicrosoftExt) { |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2694 | SynthSuperContructorFunctionDecl(); |
| 2695 | // Simulate a contructor call... |
| 2696 | DeclRefExpr *DRE = new (Context) DeclRefExpr(SuperContructorFunctionDecl, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2697 | superType, VK_LValue, |
| 2698 | SourceLocation()); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2699 | SuperRep = new (Context) CallExpr(*Context, DRE, &InitExprs[0], |
| 2700 | InitExprs.size(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2701 | superType, VK_LValue, |
| 2702 | SourceLocation()); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2703 | // The code for super is a little tricky to prevent collision with |
| 2704 | // the structure definition in the header. The rewriter has it's own |
| 2705 | // internal definition (__rw_objc_super) that is uses. This is why |
| 2706 | // we need the cast below. For example: |
| 2707 | // (struct objc_super *)&__rw_objc_super((id)self, (id)objc_getClass("SUPER")) |
| 2708 | // |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2709 | SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2710 | Context->getPointerType(SuperRep->getType()), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2711 | VK_RValue, OK_Ordinary, |
| 2712 | SourceLocation()); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2713 | SuperRep = NoTypeInfoCStyleCastExpr(Context, |
| 2714 | Context->getPointerType(superType), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2715 | CK_BitCast, SuperRep); |
Steve Naroff | 9bcb5fc | 2007-12-07 03:50:46 +0000 | [diff] [blame] | 2716 | } else { |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2717 | // (struct objc_super) { <exprs from above> } |
| 2718 | InitListExpr *ILE = |
| 2719 | new (Context) InitListExpr(*Context, SourceLocation(), |
| 2720 | &InitExprs[0], InitExprs.size(), |
| 2721 | SourceLocation()); |
| 2722 | TypeSourceInfo *superTInfo |
| 2723 | = Context->getTrivialTypeSourceInfo(superType); |
| 2724 | SuperRep = new (Context) CompoundLiteralExpr(SourceLocation(), superTInfo, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2725 | superType, VK_LValue, |
| 2726 | ILE, false); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2727 | // struct objc_super * |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2728 | SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2729 | Context->getPointerType(SuperRep->getType()), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2730 | VK_RValue, OK_Ordinary, |
| 2731 | SourceLocation()); |
Steve Naroff | 9bcb5fc | 2007-12-07 03:50:46 +0000 | [diff] [blame] | 2732 | } |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2733 | MsgExprs.push_back(SuperRep); |
| 2734 | break; |
Steve Naroff | 6568d4d | 2007-11-14 23:54:14 +0000 | [diff] [blame] | 2735 | } |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2736 | |
| 2737 | case ObjCMessageExpr::Class: { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2738 | SmallVector<Expr*, 8> ClsExprs; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2739 | QualType argType = Context->getPointerType(Context->CharTy); |
| 2740 | ObjCInterfaceDecl *Class |
John McCall | 506b57e | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 2741 | = Exp->getClassReceiver()->getAs<ObjCObjectType>()->getInterface(); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2742 | IdentifierInfo *clsName = Class->getIdentifier(); |
| 2743 | ClsExprs.push_back(StringLiteral::Create(*Context, |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 2744 | clsName->getName(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2745 | StringLiteral::Ascii, false, |
Anders Carlsson | 3e2193c | 2011-04-14 00:40:03 +0000 | [diff] [blame] | 2746 | argType, SourceLocation())); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2747 | CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl, |
| 2748 | &ClsExprs[0], |
| 2749 | ClsExprs.size(), |
| 2750 | StartLoc, EndLoc); |
| 2751 | MsgExprs.push_back(Cls); |
| 2752 | break; |
| 2753 | } |
| 2754 | |
| 2755 | case ObjCMessageExpr::SuperInstance:{ |
| 2756 | MsgSendFlavor = MsgSendSuperFunctionDecl; |
| 2757 | if (MsgSendStretFlavor) |
| 2758 | MsgSendStretFlavor = MsgSendSuperStretFunctionDecl; |
| 2759 | assert(MsgSendFlavor && "MsgSendFlavor is NULL!"); |
| 2760 | ObjCInterfaceDecl *ClassDecl = CurMethodDef->getClassInterface(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2761 | SmallVector<Expr*, 4> InitExprs; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2762 | |
| 2763 | InitExprs.push_back( |
| 2764 | NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2765 | CK_BitCast, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2766 | new (Context) DeclRefExpr(CurMethodDef->getSelfDecl(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2767 | Context->getObjCIdType(), |
| 2768 | VK_RValue, SourceLocation())) |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2769 | ); // set the 'receiver'. |
| 2770 | |
| 2771 | // (id)class_getSuperclass((Class)objc_getClass("CurrentClass")) |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2772 | SmallVector<Expr*, 8> ClsExprs; |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2773 | QualType argType = Context->getPointerType(Context->CharTy); |
| 2774 | ClsExprs.push_back(StringLiteral::Create(*Context, |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 2775 | ClassDecl->getIdentifier()->getName(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2776 | StringLiteral::Ascii, false, argType, |
| 2777 | SourceLocation())); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2778 | CallExpr *Cls = SynthesizeCallToFunctionDecl(GetClassFunctionDecl, |
| 2779 | &ClsExprs[0], |
| 2780 | ClsExprs.size(), |
| 2781 | StartLoc, EndLoc); |
| 2782 | // (Class)objc_getClass("CurrentClass") |
| 2783 | CastExpr *ArgExpr = NoTypeInfoCStyleCastExpr(Context, |
| 2784 | Context->getObjCClassType(), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2785 | CK_BitCast, Cls); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2786 | ClsExprs.clear(); |
| 2787 | ClsExprs.push_back(ArgExpr); |
| 2788 | Cls = SynthesizeCallToFunctionDecl(GetSuperClassFunctionDecl, |
| 2789 | &ClsExprs[0], ClsExprs.size(), |
| 2790 | StartLoc, EndLoc); |
| 2791 | |
| 2792 | // (id)class_getSuperclass((Class)objc_getClass("CurrentClass")) |
| 2793 | // To turn off a warning, type-cast to 'id' |
| 2794 | InitExprs.push_back( |
| 2795 | // set 'super class', using class_getSuperclass(). |
| 2796 | NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2797 | CK_BitCast, Cls)); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2798 | // struct objc_super |
| 2799 | QualType superType = getSuperStructType(); |
| 2800 | Expr *SuperRep; |
| 2801 | |
Francois Pichet | 62ec1f2 | 2011-09-17 17:15:52 +0000 | [diff] [blame] | 2802 | if (LangOpts.MicrosoftExt) { |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2803 | SynthSuperContructorFunctionDecl(); |
| 2804 | // Simulate a contructor call... |
| 2805 | DeclRefExpr *DRE = new (Context) DeclRefExpr(SuperContructorFunctionDecl, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2806 | superType, VK_LValue, |
| 2807 | SourceLocation()); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2808 | SuperRep = new (Context) CallExpr(*Context, DRE, &InitExprs[0], |
| 2809 | InitExprs.size(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2810 | superType, VK_LValue, SourceLocation()); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2811 | // The code for super is a little tricky to prevent collision with |
| 2812 | // the structure definition in the header. The rewriter has it's own |
| 2813 | // internal definition (__rw_objc_super) that is uses. This is why |
| 2814 | // we need the cast below. For example: |
| 2815 | // (struct objc_super *)&__rw_objc_super((id)self, (id)objc_getClass("SUPER")) |
| 2816 | // |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2817 | SuperRep = new (Context) UnaryOperator(SuperRep, UO_AddrOf, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2818 | Context->getPointerType(SuperRep->getType()), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2819 | VK_RValue, OK_Ordinary, |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2820 | SourceLocation()); |
| 2821 | SuperRep = NoTypeInfoCStyleCastExpr(Context, |
| 2822 | Context->getPointerType(superType), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2823 | CK_BitCast, SuperRep); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2824 | } else { |
| 2825 | // (struct objc_super) { <exprs from above> } |
| 2826 | InitListExpr *ILE = |
| 2827 | new (Context) InitListExpr(*Context, SourceLocation(), |
| 2828 | &InitExprs[0], InitExprs.size(), |
| 2829 | SourceLocation()); |
| 2830 | TypeSourceInfo *superTInfo |
| 2831 | = Context->getTrivialTypeSourceInfo(superType); |
| 2832 | SuperRep = new (Context) CompoundLiteralExpr(SourceLocation(), superTInfo, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2833 | superType, VK_RValue, ILE, |
| 2834 | false); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2835 | } |
| 2836 | MsgExprs.push_back(SuperRep); |
| 2837 | break; |
| 2838 | } |
| 2839 | |
| 2840 | case ObjCMessageExpr::Instance: { |
| 2841 | // Remove all type-casts because it may contain objc-style types; e.g. |
| 2842 | // Foo<Proto> *. |
| 2843 | Expr *recExpr = Exp->getInstanceReceiver(); |
| 2844 | while (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(recExpr)) |
| 2845 | recExpr = CE->getSubExpr(); |
Fariborz Jahanian | baac1ea | 2011-10-07 17:17:45 +0000 | [diff] [blame] | 2846 | CastKind CK = recExpr->getType()->isObjCObjectPointerType() |
| 2847 | ? CK_BitCast : recExpr->getType()->isBlockPointerType() |
| 2848 | ? CK_BlockPointerToObjCPointerCast |
| 2849 | : CK_CPointerToObjCPointerCast; |
| 2850 | |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2851 | recExpr = NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), |
Fariborz Jahanian | baac1ea | 2011-10-07 17:17:45 +0000 | [diff] [blame] | 2852 | CK, recExpr); |
Douglas Gregor | 04badcf | 2010-04-21 00:45:42 +0000 | [diff] [blame] | 2853 | MsgExprs.push_back(recExpr); |
| 2854 | break; |
| 2855 | } |
| 2856 | } |
| 2857 | |
Steve Naroff | beaf299 | 2007-11-03 11:27:19 +0000 | [diff] [blame] | 2858 | // Create a call to sel_registerName("selName"), it will be the 2nd argument. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2859 | SmallVector<Expr*, 8> SelExprs; |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2860 | QualType argType = Context->getPointerType(Context->CharTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2861 | SelExprs.push_back(StringLiteral::Create(*Context, |
Jay Foad | 65aa688 | 2011-06-21 15:13:30 +0000 | [diff] [blame] | 2862 | Exp->getSelector().getAsString(), |
Douglas Gregor | 5cee119 | 2011-07-27 05:40:30 +0000 | [diff] [blame] | 2863 | StringLiteral::Ascii, false, |
| 2864 | argType, SourceLocation())); |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2865 | CallExpr *SelExp = SynthesizeCallToFunctionDecl(SelGetUidFunctionDecl, |
Fariborz Jahanian | 1d35b16 | 2010-02-22 20:48:10 +0000 | [diff] [blame] | 2866 | &SelExprs[0], SelExprs.size(), |
| 2867 | StartLoc, |
| 2868 | EndLoc); |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2869 | MsgExprs.push_back(SelExp); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2870 | |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2871 | // Now push any user supplied arguments. |
| 2872 | for (unsigned i = 0; i < Exp->getNumArgs(); i++) { |
Steve Naroff | 6568d4d | 2007-11-14 23:54:14 +0000 | [diff] [blame] | 2873 | Expr *userExpr = Exp->getArg(i); |
Steve Naroff | 7e3411b | 2007-11-15 02:58:25 +0000 | [diff] [blame] | 2874 | // Make all implicit casts explicit...ICE comes in handy:-) |
| 2875 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(userExpr)) { |
| 2876 | // Reuse the ICE type, it is exactly what the doctor ordered. |
Fariborz Jahanian | dff3f01 | 2011-02-26 01:31:36 +0000 | [diff] [blame] | 2877 | QualType type = ICE->getType(); |
| 2878 | if (needToScanForQualifiers(type)) |
| 2879 | type = Context->getObjCIdType(); |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 2880 | // Make sure we convert "type (^)(...)" to "type (*)(...)". |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 2881 | (void)convertBlockPointerToFunctionPointer(type); |
Fariborz Jahanian | 1a38b46 | 2011-08-04 23:58:03 +0000 | [diff] [blame] | 2882 | const Expr *SubExpr = ICE->IgnoreParenImpCasts(); |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 2883 | CastKind CK; |
| 2884 | if (SubExpr->getType()->isIntegralType(*Context) && |
| 2885 | type->isBooleanType()) { |
| 2886 | CK = CK_IntegralToBoolean; |
| 2887 | } else if (type->isObjCObjectPointerType()) { |
| 2888 | if (SubExpr->getType()->isBlockPointerType()) { |
| 2889 | CK = CK_BlockPointerToObjCPointerCast; |
| 2890 | } else if (SubExpr->getType()->isPointerType()) { |
| 2891 | CK = CK_CPointerToObjCPointerCast; |
| 2892 | } else { |
| 2893 | CK = CK_BitCast; |
| 2894 | } |
| 2895 | } else { |
| 2896 | CK = CK_BitCast; |
| 2897 | } |
| 2898 | |
| 2899 | userExpr = NoTypeInfoCStyleCastExpr(Context, type, CK, userExpr); |
Fariborz Jahanian | d58fabf | 2007-12-18 21:33:44 +0000 | [diff] [blame] | 2900 | } |
| 2901 | // Make id<P...> cast into an 'id' cast. |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 2902 | else if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(userExpr)) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2903 | if (CE->getType()->isObjCQualifiedIdType()) { |
Douglas Gregor | 6eec8e8 | 2008-10-28 15:36:24 +0000 | [diff] [blame] | 2904 | while ((CE = dyn_cast<CStyleCastExpr>(userExpr))) |
Fariborz Jahanian | d58fabf | 2007-12-18 21:33:44 +0000 | [diff] [blame] | 2905 | userExpr = CE->getSubExpr(); |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 2906 | CastKind CK; |
| 2907 | if (userExpr->getType()->isIntegralType(*Context)) { |
| 2908 | CK = CK_IntegralToPointer; |
| 2909 | } else if (userExpr->getType()->isBlockPointerType()) { |
| 2910 | CK = CK_BlockPointerToObjCPointerCast; |
| 2911 | } else if (userExpr->getType()->isPointerType()) { |
| 2912 | CK = CK_CPointerToObjCPointerCast; |
| 2913 | } else { |
| 2914 | CK = CK_BitCast; |
| 2915 | } |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 2916 | userExpr = NoTypeInfoCStyleCastExpr(Context, Context->getObjCIdType(), |
John McCall | 1d9b3b2 | 2011-09-09 05:25:32 +0000 | [diff] [blame] | 2917 | CK, userExpr); |
Fariborz Jahanian | d58fabf | 2007-12-18 21:33:44 +0000 | [diff] [blame] | 2918 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2919 | } |
Steve Naroff | 6568d4d | 2007-11-14 23:54:14 +0000 | [diff] [blame] | 2920 | MsgExprs.push_back(userExpr); |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 2921 | // We've transferred the ownership to MsgExprs. For now, we *don't* null |
| 2922 | // out the argument in the original expression (since we aren't deleting |
Fariborz Jahanian | f2ad2c9 | 2010-10-11 21:29:12 +0000 | [diff] [blame] | 2923 | // the ObjCMessageExpr). See RewritePropertyOrImplicitSetter() usage for more info. |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 2924 | //Exp->setArg(i, 0); |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 2925 | } |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2926 | // Generate the funky cast. |
| 2927 | CastExpr *cast; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2928 | SmallVector<QualType, 8> ArgTypes; |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2929 | QualType returnType; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2930 | |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2931 | // Push 'id' and 'SEL', the 2 implicit arguments. |
Steve Naroff | c3a438c | 2007-11-15 10:43:57 +0000 | [diff] [blame] | 2932 | if (MsgSendFlavor == MsgSendSuperFunctionDecl) |
| 2933 | ArgTypes.push_back(Context->getPointerType(getSuperStructType())); |
| 2934 | else |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2935 | ArgTypes.push_back(Context->getObjCIdType()); |
| 2936 | ArgTypes.push_back(Context->getObjCSelType()); |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 2937 | if (ObjCMethodDecl *OMD = Exp->getMethodDecl()) { |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2938 | // Push any user argument types. |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 2939 | for (ObjCMethodDecl::param_iterator PI = OMD->param_begin(), |
| 2940 | E = OMD->param_end(); PI != E; ++PI) { |
| 2941 | QualType t = (*PI)->getType()->isObjCQualifiedIdType() |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2942 | ? Context->getObjCIdType() |
Chris Lattner | 89951a8 | 2009-02-20 18:43:26 +0000 | [diff] [blame] | 2943 | : (*PI)->getType(); |
Steve Naroff | a206b06 | 2008-10-29 14:49:46 +0000 | [diff] [blame] | 2944 | // Make sure we convert "t (^)(...)" to "t (*)(...)". |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 2945 | (void)convertBlockPointerToFunctionPointer(t); |
Steve Naroff | 352336b | 2007-11-05 14:36:37 +0000 | [diff] [blame] | 2946 | ArgTypes.push_back(t); |
| 2947 | } |
Fariborz Jahanian | 3a448fb | 2011-09-10 17:01:56 +0000 | [diff] [blame] | 2948 | returnType = Exp->getType(); |
| 2949 | convertToUnqualifiedObjCType(returnType); |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 2950 | (void)convertBlockPointerToFunctionPointer(returnType); |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2951 | } else { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 2952 | returnType = Context->getObjCIdType(); |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2953 | } |
| 2954 | // Get the type, we will need to reference it in a couple spots. |
Steve Naroff | 874e232 | 2007-11-15 10:28:18 +0000 | [diff] [blame] | 2955 | QualType msgSendType = MsgSendFlavor->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2956 | |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2957 | // Create a reference to the objc_msgSend() declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2958 | DeclRefExpr *DRE = new (Context) DeclRefExpr(MsgSendFlavor, msgSendType, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2959 | VK_LValue, SourceLocation()); |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2960 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2961 | // Need to cast objc_msgSend to "void *" (to workaround a GCC bandaid). |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2962 | // If we don't do this cast, we get the following bizarre warning/note: |
| 2963 | // xx.m:13: warning: function called through a non-compatible type |
| 2964 | // xx.m:13: note: if this code is reached, the program will abort |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 2965 | cast = NoTypeInfoCStyleCastExpr(Context, |
| 2966 | Context->getPointerType(Context->VoidTy), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2967 | CK_BitCast, DRE); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2968 | |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2969 | // Now do the "normal" pointer to function cast. |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 2970 | QualType castType = |
| 2971 | getSimpleFunctionType(returnType, &ArgTypes[0], ArgTypes.size(), |
| 2972 | // If we don't have a method decl, force a variadic cast. |
| 2973 | Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : true); |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2974 | castType = Context->getPointerType(castType); |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2975 | cast = NoTypeInfoCStyleCastExpr(Context, castType, CK_BitCast, |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 2976 | cast); |
Steve Naroff | ab972d3 | 2007-11-04 22:37:50 +0000 | [diff] [blame] | 2977 | |
| 2978 | // Don't forget the parens to enforce the proper binding. |
Fariborz Jahanian | 1d35b16 | 2010-02-22 20:48:10 +0000 | [diff] [blame] | 2979 | ParenExpr *PE = new (Context) ParenExpr(StartLoc, EndLoc, cast); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2980 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2981 | const FunctionType *FT = msgSendType->getAs<FunctionType>(); |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2982 | CallExpr *CE = new (Context) CallExpr(*Context, PE, &MsgExprs[0], |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2983 | MsgExprs.size(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2984 | FT->getResultType(), VK_RValue, |
| 2985 | EndLoc); |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 2986 | Stmt *ReplacingStmt = CE; |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2987 | if (MsgSendStretFlavor) { |
| 2988 | // We have the method which returns a struct/union. Must also generate |
| 2989 | // call to objc_msgSend_stret and hang both varieties on a conditional |
| 2990 | // expression which dictate which one to envoke depending on size of |
| 2991 | // method's return type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2992 | |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2993 | // Create a reference to the objc_msgSend_stret() declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2994 | DeclRefExpr *STDRE = new (Context) DeclRefExpr(MsgSendStretFlavor, msgSendType, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 2995 | VK_LValue, SourceLocation()); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 2996 | // Need to cast objc_msgSend_stret to "void *" (see above comment). |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 2997 | cast = NoTypeInfoCStyleCastExpr(Context, |
| 2998 | Context->getPointerType(Context->VoidTy), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 2999 | CK_BitCast, STDRE); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 3000 | // Now do the "normal" pointer to function cast. |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 3001 | castType = getSimpleFunctionType(returnType, &ArgTypes[0], ArgTypes.size(), |
| 3002 | Exp->getMethodDecl() ? Exp->getMethodDecl()->isVariadic() : false); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 3003 | castType = Context->getPointerType(castType); |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 3004 | cast = NoTypeInfoCStyleCastExpr(Context, castType, CK_BitCast, |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 3005 | cast); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3006 | |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 3007 | // Don't forget the parens to enforce the proper binding. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3008 | PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), cast); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3009 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3010 | FT = msgSendType->getAs<FunctionType>(); |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 3011 | CallExpr *STCE = new (Context) CallExpr(*Context, PE, &MsgExprs[0], |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3012 | MsgExprs.size(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3013 | FT->getResultType(), VK_RValue, |
| 3014 | SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3015 | |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 3016 | // Build sizeof(returnType) |
Peter Collingbourne | f4e3cfb | 2011-03-11 19:24:49 +0000 | [diff] [blame] | 3017 | UnaryExprOrTypeTraitExpr *sizeofExpr = |
| 3018 | new (Context) UnaryExprOrTypeTraitExpr(UETT_SizeOf, |
| 3019 | Context->getTrivialTypeSourceInfo(returnType), |
| 3020 | Context->getSizeType(), SourceLocation(), |
| 3021 | SourceLocation()); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 3022 | // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...)) |
| 3023 | // FIXME: Value of 8 is base on ppc32/x86 ABI for the most common cases. |
| 3024 | // For X86 it is more complicated and some kind of target specific routine |
| 3025 | // is needed to decide what to do. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3026 | unsigned IntSize = |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3027 | static_cast<unsigned>(Context->getTypeSize(Context->IntTy)); |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 3028 | IntegerLiteral *limit = IntegerLiteral::Create(*Context, |
| 3029 | llvm::APInt(IntSize, 8), |
| 3030 | Context->IntTy, |
| 3031 | SourceLocation()); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3032 | BinaryOperator *lessThanExpr = |
| 3033 | new (Context) BinaryOperator(sizeofExpr, limit, BO_LE, Context->IntTy, |
| 3034 | VK_RValue, OK_Ordinary, SourceLocation()); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 3035 | // (sizeof(returnType) <= 8 ? objc_msgSend(...) : objc_msgSend_stret(...)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3036 | ConditionalOperator *CondExpr = |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3037 | new (Context) ConditionalOperator(lessThanExpr, |
| 3038 | SourceLocation(), CE, |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 3039 | SourceLocation(), STCE, |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3040 | returnType, VK_RValue, OK_Ordinary); |
Fariborz Jahanian | f9b949f | 2010-08-31 18:02:20 +0000 | [diff] [blame] | 3041 | ReplacingStmt = new (Context) ParenExpr(SourceLocation(), SourceLocation(), |
| 3042 | CondExpr); |
Fariborz Jahanian | 80a6a5a | 2007-12-03 19:17:29 +0000 | [diff] [blame] | 3043 | } |
Fariborz Jahanian | f2ad2c9 | 2010-10-11 21:29:12 +0000 | [diff] [blame] | 3044 | // delete Exp; leak for now, see RewritePropertyOrImplicitSetter() usage for more info. |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 3045 | return ReplacingStmt; |
| 3046 | } |
| 3047 | |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 3048 | Stmt *RewriteObjC::RewriteMessageExpr(ObjCMessageExpr *Exp) { |
Fariborz Jahanian | 1d35b16 | 2010-02-22 20:48:10 +0000 | [diff] [blame] | 3049 | Stmt *ReplacingStmt = SynthMessageExpr(Exp, Exp->getLocStart(), |
| 3050 | Exp->getLocEnd()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3051 | |
Steve Naroff | 934f276 | 2007-10-24 22:48:43 +0000 | [diff] [blame] | 3052 | // Now do the actual rewrite. |
Chris Lattner | dcbc5b0 | 2008-01-31 19:37:57 +0000 | [diff] [blame] | 3053 | ReplaceStmt(Exp, ReplacingStmt); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3054 | |
Fariborz Jahanian | f2ad2c9 | 2010-10-11 21:29:12 +0000 | [diff] [blame] | 3055 | // delete Exp; leak for now, see RewritePropertyOrImplicitSetter() usage for more info. |
Fariborz Jahanian | 33b9c4e | 2008-01-08 22:06:28 +0000 | [diff] [blame] | 3056 | return ReplacingStmt; |
Steve Naroff | ebf2b56 | 2007-10-23 23:50:29 +0000 | [diff] [blame] | 3057 | } |
| 3058 | |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3059 | // typedef struct objc_object Protocol; |
| 3060 | QualType RewriteObjC::getProtocolType() { |
| 3061 | if (!ProtocolTypeDecl) { |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 3062 | TypeSourceInfo *TInfo |
| 3063 | = Context->getTrivialTypeSourceInfo(Context->getObjCIdType()); |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3064 | ProtocolTypeDecl = TypedefDecl::Create(*Context, TUDecl, |
Abramo Bagnara | 344577e | 2011-03-06 15:48:19 +0000 | [diff] [blame] | 3065 | SourceLocation(), SourceLocation(), |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3066 | &Context->Idents.get("Protocol"), |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 3067 | TInfo); |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3068 | } |
| 3069 | return Context->getTypeDeclType(ProtocolTypeDecl); |
| 3070 | } |
| 3071 | |
Fariborz Jahanian | 36ee2cb | 2007-12-07 18:47:10 +0000 | [diff] [blame] | 3072 | /// RewriteObjCProtocolExpr - Rewrite a protocol expression into |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3073 | /// a synthesized/forward data reference (to the protocol's metadata). |
| 3074 | /// The forward references (and metadata) are generated in |
| 3075 | /// RewriteObjC::HandleTranslationUnit(). |
Steve Naroff | b29b427 | 2008-04-14 22:03:09 +0000 | [diff] [blame] | 3076 | Stmt *RewriteObjC::RewriteObjCProtocolExpr(ObjCProtocolExpr *Exp) { |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3077 | std::string Name = "_OBJC_PROTOCOL_" + Exp->getProtocol()->getNameAsString(); |
| 3078 | IdentifierInfo *ID = &Context->Idents.get(Name); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3079 | VarDecl *VD = VarDecl::Create(*Context, TUDecl, SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 3080 | SourceLocation(), ID, getProtocolType(), 0, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 3081 | SC_Extern, SC_None); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3082 | DeclRefExpr *DRE = new (Context) DeclRefExpr(VD, getProtocolType(), VK_LValue, |
| 3083 | SourceLocation()); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 3084 | Expr *DerefExpr = new (Context) UnaryOperator(DRE, UO_AddrOf, |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3085 | Context->getPointerType(DRE->getType()), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3086 | VK_RValue, OK_Ordinary, SourceLocation()); |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 3087 | CastExpr *castExpr = NoTypeInfoCStyleCastExpr(Context, DerefExpr->getType(), |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 3088 | CK_BitCast, |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 3089 | DerefExpr); |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3090 | ReplaceStmt(Exp, castExpr); |
| 3091 | ProtocolExprDecls.insert(Exp->getProtocol()); |
Fariborz Jahanian | f2ad2c9 | 2010-10-11 21:29:12 +0000 | [diff] [blame] | 3092 | // delete Exp; leak for now, see RewritePropertyOrImplicitSetter() usage for more info. |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3093 | return castExpr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3094 | |
Fariborz Jahanian | 36ee2cb | 2007-12-07 18:47:10 +0000 | [diff] [blame] | 3095 | } |
| 3096 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3097 | bool RewriteObjC::BufferContainsPPDirectives(const char *startBuf, |
Steve Naroff | baf58c3 | 2008-05-31 14:15:04 +0000 | [diff] [blame] | 3098 | const char *endBuf) { |
| 3099 | while (startBuf < endBuf) { |
| 3100 | if (*startBuf == '#') { |
| 3101 | // Skip whitespace. |
| 3102 | for (++startBuf; startBuf[0] == ' ' || startBuf[0] == '\t'; ++startBuf) |
| 3103 | ; |
| 3104 | if (!strncmp(startBuf, "if", strlen("if")) || |
| 3105 | !strncmp(startBuf, "ifdef", strlen("ifdef")) || |
| 3106 | !strncmp(startBuf, "ifndef", strlen("ifndef")) || |
| 3107 | !strncmp(startBuf, "define", strlen("define")) || |
| 3108 | !strncmp(startBuf, "undef", strlen("undef")) || |
| 3109 | !strncmp(startBuf, "else", strlen("else")) || |
| 3110 | !strncmp(startBuf, "elif", strlen("elif")) || |
| 3111 | !strncmp(startBuf, "endif", strlen("endif")) || |
| 3112 | !strncmp(startBuf, "pragma", strlen("pragma")) || |
| 3113 | !strncmp(startBuf, "include", strlen("include")) || |
| 3114 | !strncmp(startBuf, "import", strlen("import")) || |
| 3115 | !strncmp(startBuf, "include_next", strlen("include_next"))) |
| 3116 | return true; |
| 3117 | } |
| 3118 | startBuf++; |
| 3119 | } |
| 3120 | return false; |
| 3121 | } |
| 3122 | |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 3123 | /// RewriteObjCInternalStruct - Rewrite one internal struct corresponding to |
Fariborz Jahanian | 26e4cd3 | 2007-10-26 19:46:17 +0000 | [diff] [blame] | 3124 | /// an objective-c class with ivars. |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 3125 | void RewriteObjC::RewriteObjCInternalStruct(ObjCInterfaceDecl *CDecl, |
Fariborz Jahanian | 26e4cd3 | 2007-10-26 19:46:17 +0000 | [diff] [blame] | 3126 | std::string &Result) { |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3127 | assert(CDecl && "Class missing in SynthesizeObjCInternalStruct"); |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 3128 | assert(CDecl->getName() != "" && |
Douglas Gregor | 2e1cd42 | 2008-11-17 14:58:09 +0000 | [diff] [blame] | 3129 | "Name missing in SynthesizeObjCInternalStruct"); |
Fariborz Jahanian | 212b768 | 2007-10-31 23:08:24 +0000 | [diff] [blame] | 3130 | // Do not synthesize more than once. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3131 | if (ObjCSynthesizedStructs.count(CDecl)) |
Fariborz Jahanian | 212b768 | 2007-10-31 23:08:24 +0000 | [diff] [blame] | 3132 | return; |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3133 | ObjCInterfaceDecl *RCDecl = CDecl->getSuperClass(); |
Chris Lattner | f3a7af9 | 2008-03-16 21:08:55 +0000 | [diff] [blame] | 3134 | int NumIvars = CDecl->ivar_size(); |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3135 | SourceLocation LocStart = CDecl->getLocStart(); |
Douglas Gregor | 05c272f | 2011-12-15 22:34:59 +0000 | [diff] [blame] | 3136 | SourceLocation LocEnd = CDecl->getEndOfDefinitionLoc(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3137 | |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3138 | const char *startBuf = SM->getCharacterData(LocStart); |
| 3139 | const char *endBuf = SM->getCharacterData(LocEnd); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3140 | |
Fariborz Jahanian | 2c7038b | 2007-11-26 19:52:57 +0000 | [diff] [blame] | 3141 | // If no ivars and no root or if its root, directly or indirectly, |
| 3142 | // have no ivars (thus not synthesized) then no need to synthesize this class. |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 3143 | if ((!CDecl->isThisDeclarationADefinition() || NumIvars == 0) && |
Chris Lattner | f3a7af9 | 2008-03-16 21:08:55 +0000 | [diff] [blame] | 3144 | (!RCDecl || !ObjCSynthesizedStructs.count(RCDecl))) { |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 3145 | endBuf += Lexer::MeasureTokenLength(LocEnd, *SM, LangOpts); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3146 | ReplaceText(LocStart, endBuf-startBuf, Result); |
Fariborz Jahanian | 2c7038b | 2007-11-26 19:52:57 +0000 | [diff] [blame] | 3147 | return; |
| 3148 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3149 | |
| 3150 | // FIXME: This has potential of causing problem. If |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3151 | // SynthesizeObjCInternalStruct is ever called recursively. |
Fariborz Jahanian | 2c7038b | 2007-11-26 19:52:57 +0000 | [diff] [blame] | 3152 | Result += "\nstruct "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3153 | Result += CDecl->getNameAsString(); |
Francois Pichet | 62ec1f2 | 2011-09-17 17:15:52 +0000 | [diff] [blame] | 3154 | if (LangOpts.MicrosoftExt) |
Steve Naroff | 61ed9ca | 2008-03-10 23:16:54 +0000 | [diff] [blame] | 3155 | Result += "_IMPL"; |
Steve Naroff | 05b8c78 | 2008-03-12 00:25:36 +0000 | [diff] [blame] | 3156 | |
Fariborz Jahanian | fdc08a0 | 2007-10-31 17:29:28 +0000 | [diff] [blame] | 3157 | if (NumIvars > 0) { |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3158 | const char *cursor = strchr(startBuf, '{'); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3159 | assert((cursor && endBuf) |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3160 | && "SynthesizeObjCInternalStruct - malformed @interface"); |
Steve Naroff | baf58c3 | 2008-05-31 14:15:04 +0000 | [diff] [blame] | 3161 | // If the buffer contains preprocessor directives, we do more fine-grained |
| 3162 | // rewrites. This is intended to fix code that looks like (which occurs in |
| 3163 | // NSURL.h, for example): |
| 3164 | // |
| 3165 | // #ifdef XYZ |
| 3166 | // @interface Foo : NSObject |
| 3167 | // #else |
| 3168 | // @interface FooBar : NSObject |
| 3169 | // #endif |
| 3170 | // { |
| 3171 | // int i; |
| 3172 | // } |
| 3173 | // @end |
| 3174 | // |
| 3175 | // This clause is segregated to avoid breaking the common case. |
| 3176 | if (BufferContainsPPDirectives(startBuf, cursor)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3177 | SourceLocation L = RCDecl ? CDecl->getSuperClassLoc() : |
Argyrios Kyrtzidis | 1711fc9 | 2011-10-04 04:48:02 +0000 | [diff] [blame] | 3178 | CDecl->getAtStartLoc(); |
Steve Naroff | baf58c3 | 2008-05-31 14:15:04 +0000 | [diff] [blame] | 3179 | const char *endHeader = SM->getCharacterData(L); |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 3180 | endHeader += Lexer::MeasureTokenLength(L, *SM, LangOpts); |
Steve Naroff | baf58c3 | 2008-05-31 14:15:04 +0000 | [diff] [blame] | 3181 | |
Chris Lattner | cafeb35 | 2009-02-20 18:18:36 +0000 | [diff] [blame] | 3182 | if (CDecl->protocol_begin() != CDecl->protocol_end()) { |
Steve Naroff | baf58c3 | 2008-05-31 14:15:04 +0000 | [diff] [blame] | 3183 | // advance to the end of the referenced protocols. |
| 3184 | while (endHeader < cursor && *endHeader != '>') endHeader++; |
| 3185 | endHeader++; |
| 3186 | } |
| 3187 | // rewrite the original header |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3188 | ReplaceText(LocStart, endHeader-startBuf, Result); |
Steve Naroff | baf58c3 | 2008-05-31 14:15:04 +0000 | [diff] [blame] | 3189 | } else { |
| 3190 | // rewrite the original header *without* disturbing the '{' |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3191 | ReplaceText(LocStart, cursor-startBuf, Result); |
Steve Naroff | baf58c3 | 2008-05-31 14:15:04 +0000 | [diff] [blame] | 3192 | } |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3193 | if (RCDecl && ObjCSynthesizedStructs.count(RCDecl)) { |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3194 | Result = "\n struct "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3195 | Result += RCDecl->getNameAsString(); |
Steve Naroff | 39bbd9f | 2008-03-12 21:09:20 +0000 | [diff] [blame] | 3196 | Result += "_IMPL "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3197 | Result += RCDecl->getNameAsString(); |
Steve Naroff | 819173c | 2008-03-12 21:22:52 +0000 | [diff] [blame] | 3198 | Result += "_IVARS;\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3199 | |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3200 | // insert the super class structure definition. |
Chris Lattner | f3dd57e | 2008-01-31 19:42:41 +0000 | [diff] [blame] | 3201 | SourceLocation OnePastCurly = |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 3202 | LocStart.getLocWithOffset(cursor-startBuf+1); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3203 | InsertText(OnePastCurly, Result); |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3204 | } |
| 3205 | cursor++; // past '{' |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3206 | |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3207 | // Now comment out any visibility specifiers. |
| 3208 | while (cursor < endBuf) { |
| 3209 | if (*cursor == '@') { |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 3210 | SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); |
Chris Lattner | df6a51b | 2007-11-14 22:57:51 +0000 | [diff] [blame] | 3211 | // Skip whitespace. |
| 3212 | for (++cursor; cursor[0] == ' ' || cursor[0] == '\t'; ++cursor) |
| 3213 | /*scan*/; |
| 3214 | |
Fariborz Jahanian | fdc08a0 | 2007-10-31 17:29:28 +0000 | [diff] [blame] | 3215 | // FIXME: presence of @public, etc. inside comment results in |
| 3216 | // this transformation as well, which is still correct c-code. |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3217 | if (!strncmp(cursor, "public", strlen("public")) || |
| 3218 | !strncmp(cursor, "private", strlen("private")) || |
Steve Naroff | c5e3277 | 2008-04-04 22:34:24 +0000 | [diff] [blame] | 3219 | !strncmp(cursor, "package", strlen("package")) || |
Fariborz Jahanian | 9567392 | 2007-11-14 22:26:25 +0000 | [diff] [blame] | 3220 | !strncmp(cursor, "protected", strlen("protected"))) |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3221 | InsertText(atLoc, "// "); |
Fariborz Jahanian | fdc08a0 | 2007-10-31 17:29:28 +0000 | [diff] [blame] | 3222 | } |
Fariborz Jahanian | 9567392 | 2007-11-14 22:26:25 +0000 | [diff] [blame] | 3223 | // FIXME: If there are cases where '<' is used in ivar declaration part |
| 3224 | // of user code, then scan the ivar list and use needToScanForQualifiers |
| 3225 | // for type checking. |
| 3226 | else if (*cursor == '<') { |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 3227 | SourceLocation atLoc = LocStart.getLocWithOffset(cursor-startBuf); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3228 | InsertText(atLoc, "/* "); |
Fariborz Jahanian | 9567392 | 2007-11-14 22:26:25 +0000 | [diff] [blame] | 3229 | cursor = strchr(cursor, '>'); |
| 3230 | cursor++; |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 3231 | atLoc = LocStart.getLocWithOffset(cursor-startBuf); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3232 | InsertText(atLoc, " */"); |
Steve Naroff | ced80a8 | 2008-10-30 12:09:33 +0000 | [diff] [blame] | 3233 | } else if (*cursor == '^') { // rewrite block specifier. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 3234 | SourceLocation caretLoc = LocStart.getLocWithOffset(cursor-startBuf); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3235 | ReplaceText(caretLoc, 1, "*"); |
Fariborz Jahanian | 9567392 | 2007-11-14 22:26:25 +0000 | [diff] [blame] | 3236 | } |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3237 | cursor++; |
Fariborz Jahanian | fdc08a0 | 2007-10-31 17:29:28 +0000 | [diff] [blame] | 3238 | } |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3239 | // Don't forget to add a ';'!! |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 3240 | InsertText(LocEnd.getLocWithOffset(1), ";"); |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3241 | } else { // we don't have any instance variables - insert super struct. |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 3242 | endBuf += Lexer::MeasureTokenLength(LocEnd, *SM, LangOpts); |
Steve Naroff | fea763e8 | 2007-11-14 19:25:57 +0000 | [diff] [blame] | 3243 | Result += " {\n struct "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3244 | Result += RCDecl->getNameAsString(); |
Steve Naroff | 39bbd9f | 2008-03-12 21:09:20 +0000 | [diff] [blame] | 3245 | Result += "_IMPL "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3246 | Result += RCDecl->getNameAsString(); |
Steve Naroff | 819173c | 2008-03-12 21:22:52 +0000 | [diff] [blame] | 3247 | Result += "_IVARS;\n};\n"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3248 | ReplaceText(LocStart, endBuf-startBuf, Result); |
Fariborz Jahanian | 26e4cd3 | 2007-10-26 19:46:17 +0000 | [diff] [blame] | 3249 | } |
Fariborz Jahanian | 26e4cd3 | 2007-10-26 19:46:17 +0000 | [diff] [blame] | 3250 | // Mark this struct as having been generated. |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 3251 | if (!ObjCSynthesizedStructs.insert(CDecl)) |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 3252 | llvm_unreachable("struct already synthesize- SynthesizeObjCInternalStruct"); |
Fariborz Jahanian | 26e4cd3 | 2007-10-26 19:46:17 +0000 | [diff] [blame] | 3253 | } |
| 3254 | |
Fariborz Jahanian | 2e6d935 | 2007-10-24 19:23:36 +0000 | [diff] [blame] | 3255 | //===----------------------------------------------------------------------===// |
| 3256 | // Meta Data Emission |
| 3257 | //===----------------------------------------------------------------------===// |
| 3258 | |
Fariborz Jahanian | f4d331d | 2007-10-18 22:09:03 +0000 | [diff] [blame] | 3259 | |
Fariborz Jahanian | 7a3279d | 2007-11-13 19:21:13 +0000 | [diff] [blame] | 3260 | /// RewriteImplementations - This routine rewrites all method implementations |
| 3261 | /// and emits meta-data. |
| 3262 | |
Steve Naroff | ace6625 | 2008-11-13 20:07:04 +0000 | [diff] [blame] | 3263 | void RewriteObjC::RewriteImplementations() { |
Fariborz Jahanian | 545b9ae | 2007-10-18 19:23:00 +0000 | [diff] [blame] | 3264 | int ClsDefCount = ClassImplementation.size(); |
| 3265 | int CatDefCount = CategoryImplementation.size(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3266 | |
Fariborz Jahanian | 7a3279d | 2007-11-13 19:21:13 +0000 | [diff] [blame] | 3267 | // Rewrite implemented methods |
| 3268 | for (int i = 0; i < ClsDefCount; i++) |
| 3269 | RewriteImplementationDecl(ClassImplementation[i]); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3270 | |
Fariborz Jahanian | 66d6b29 | 2007-11-13 20:04:28 +0000 | [diff] [blame] | 3271 | for (int i = 0; i < CatDefCount; i++) |
| 3272 | RewriteImplementationDecl(CategoryImplementation[i]); |
Steve Naroff | ace6625 | 2008-11-13 20:07:04 +0000 | [diff] [blame] | 3273 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3274 | |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 3275 | void RewriteObjC::RewriteByRefString(std::string &ResultStr, |
| 3276 | const std::string &Name, |
Fariborz Jahanian | 1e8011e | 2011-01-27 23:18:15 +0000 | [diff] [blame] | 3277 | ValueDecl *VD, bool def) { |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 3278 | assert(BlockByRefDeclNo.count(VD) && |
| 3279 | "RewriteByRefString: ByRef decl missing"); |
Fariborz Jahanian | 1e8011e | 2011-01-27 23:18:15 +0000 | [diff] [blame] | 3280 | if (def) |
| 3281 | ResultStr += "struct "; |
| 3282 | ResultStr += "__Block_byref_" + Name + |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 3283 | "_" + utostr(BlockByRefDeclNo[VD]) ; |
| 3284 | } |
| 3285 | |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3286 | static bool HasLocalVariableExternalStorage(ValueDecl *VD) { |
| 3287 | if (VarDecl *Var = dyn_cast<VarDecl>(VD)) |
| 3288 | return (Var->isFunctionOrMethodVarDecl() && !Var->hasLocalStorage()); |
| 3289 | return false; |
| 3290 | } |
| 3291 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3292 | std::string RewriteObjC::SynthesizeBlockFunc(BlockExpr *CE, int i, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3293 | StringRef funcName, |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3294 | std::string Tag) { |
| 3295 | const FunctionType *AFT = CE->getFunctionType(); |
| 3296 | QualType RT = AFT->getResultType(); |
| 3297 | std::string StructRef = "struct " + Tag; |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 3298 | std::string S = "static " + RT.getAsString(Context->getPrintingPolicy()) + " __" + |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 3299 | funcName.str() + "_" + "block_func_" + utostr(i); |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 3300 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3301 | BlockDecl *BD = CE->getBlockDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3302 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3303 | if (isa<FunctionNoProtoType>(AFT)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3304 | // No user-supplied arguments. Still need to pass in a pointer to the |
Steve Naroff | df8570d | 2009-02-02 17:19:26 +0000 | [diff] [blame] | 3305 | // block (to reference imported block decl refs). |
| 3306 | S += "(" + StructRef + " *__cself)"; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3307 | } else if (BD->param_empty()) { |
| 3308 | S += "(" + StructRef + " *__cself)"; |
| 3309 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3310 | const FunctionProtoType *FT = cast<FunctionProtoType>(AFT); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3311 | assert(FT && "SynthesizeBlockFunc: No function proto"); |
| 3312 | S += '('; |
| 3313 | // first add the implicit argument. |
| 3314 | S += StructRef + " *__cself, "; |
| 3315 | std::string ParamStr; |
| 3316 | for (BlockDecl::param_iterator AI = BD->param_begin(), |
| 3317 | E = BD->param_end(); AI != E; ++AI) { |
| 3318 | if (AI != BD->param_begin()) S += ", "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3319 | ParamStr = (*AI)->getNameAsString(); |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3320 | QualType QT = (*AI)->getType(); |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 3321 | if (convertBlockPointerToFunctionPointer(QT)) |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 3322 | QT.getAsStringInternal(ParamStr, Context->getPrintingPolicy()); |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3323 | else |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 3324 | QT.getAsStringInternal(ParamStr, Context->getPrintingPolicy()); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3325 | S += ParamStr; |
| 3326 | } |
| 3327 | if (FT->isVariadic()) { |
| 3328 | if (!BD->param_empty()) S += ", "; |
| 3329 | S += "..."; |
| 3330 | } |
| 3331 | S += ')'; |
| 3332 | } |
| 3333 | S += " {\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3334 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3335 | // Create local declarations to avoid rewriting all closure decl ref exprs. |
| 3336 | // First, emit a declaration for all "by ref" decls. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3337 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3338 | E = BlockByRefDecls.end(); I != E; ++I) { |
| 3339 | S += " "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3340 | std::string Name = (*I)->getNameAsString(); |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 3341 | std::string TypeString; |
| 3342 | RewriteByRefString(TypeString, Name, (*I)); |
| 3343 | TypeString += " *"; |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 3344 | Name = TypeString + Name; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3345 | S += Name + " = __cself->" + (*I)->getNameAsString() + "; // bound by ref\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3346 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3347 | // Next, emit a declaration for all "by copy" declarations. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3348 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3349 | E = BlockByCopyDecls.end(); I != E; ++I) { |
| 3350 | S += " "; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3351 | // Handle nested closure invocation. For example: |
| 3352 | // |
| 3353 | // void (^myImportedClosure)(void); |
| 3354 | // myImportedClosure = ^(void) { setGlobalInt(x + y); }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3355 | // |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3356 | // void (^anotherClosure)(void); |
| 3357 | // anotherClosure = ^(void) { |
| 3358 | // myImportedClosure(); // import and invoke the closure |
| 3359 | // }; |
| 3360 | // |
Fariborz Jahanian | e8c28df | 2010-02-16 16:21:26 +0000 | [diff] [blame] | 3361 | if (isTopLevelBlockPointerType((*I)->getType())) { |
| 3362 | RewriteBlockPointerTypeVariable(S, (*I)); |
| 3363 | S += " = ("; |
| 3364 | RewriteBlockPointerType(S, (*I)->getType()); |
| 3365 | S += ")"; |
| 3366 | S += "__cself->" + (*I)->getNameAsString() + "; // bound by copy\n"; |
| 3367 | } |
| 3368 | else { |
Fariborz Jahanian | 210c248 | 2010-02-16 17:26:03 +0000 | [diff] [blame] | 3369 | std::string Name = (*I)->getNameAsString(); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3370 | QualType QT = (*I)->getType(); |
| 3371 | if (HasLocalVariableExternalStorage(*I)) |
| 3372 | QT = Context->getPointerType(QT); |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 3373 | QT.getAsStringInternal(Name, Context->getPrintingPolicy()); |
Fariborz Jahanian | e8c28df | 2010-02-16 16:21:26 +0000 | [diff] [blame] | 3374 | S += Name + " = __cself->" + |
| 3375 | (*I)->getNameAsString() + "; // bound by copy\n"; |
| 3376 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3377 | } |
| 3378 | std::string RewrittenStr = RewrittenBlockExprs[CE]; |
| 3379 | const char *cstr = RewrittenStr.c_str(); |
| 3380 | while (*cstr++ != '{') ; |
| 3381 | S += cstr; |
| 3382 | S += "\n"; |
| 3383 | return S; |
| 3384 | } |
Argyrios Kyrtzidis | 39ba4ae | 2008-06-09 23:19:58 +0000 | [diff] [blame] | 3385 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3386 | std::string RewriteObjC::SynthesizeBlockHelperFuncs(BlockExpr *CE, int i, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3387 | StringRef funcName, |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3388 | std::string Tag) { |
| 3389 | std::string StructRef = "struct " + Tag; |
| 3390 | std::string S = "static void __"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3391 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3392 | S += funcName; |
| 3393 | S += "_block_copy_" + utostr(i); |
| 3394 | S += "(" + StructRef; |
| 3395 | S += "*dst, " + StructRef; |
| 3396 | S += "*src) {"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3397 | for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = ImportedBlockDecls.begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3398 | E = ImportedBlockDecls.end(); I != E; ++I) { |
Fariborz Jahanian | a3f61ae | 2011-07-30 01:21:41 +0000 | [diff] [blame] | 3399 | ValueDecl *VD = (*I); |
Steve Naroff | 5bc60d0 | 2008-12-16 15:50:30 +0000 | [diff] [blame] | 3400 | S += "_Block_object_assign((void*)&dst->"; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3401 | S += (*I)->getNameAsString(); |
Steve Naroff | 47a2422 | 2008-12-11 20:51:38 +0000 | [diff] [blame] | 3402 | S += ", (void*)src->"; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3403 | S += (*I)->getNameAsString(); |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 3404 | if (BlockByRefDeclsPtrSet.count((*I))) |
Fariborz Jahanian | 73e437b | 2009-12-23 21:18:41 +0000 | [diff] [blame] | 3405 | S += ", " + utostr(BLOCK_FIELD_IS_BYREF) + "/*BLOCK_FIELD_IS_BYREF*/);"; |
Fariborz Jahanian | a3f61ae | 2011-07-30 01:21:41 +0000 | [diff] [blame] | 3406 | else if (VD->getType()->isBlockPointerType()) |
Fariborz Jahanian | 06433c6 | 2011-07-30 01:07:55 +0000 | [diff] [blame] | 3407 | S += ", " + utostr(BLOCK_FIELD_IS_BLOCK) + "/*BLOCK_FIELD_IS_BLOCK*/);"; |
Fariborz Jahanian | a3f61ae | 2011-07-30 01:21:41 +0000 | [diff] [blame] | 3408 | else |
| 3409 | S += ", " + utostr(BLOCK_FIELD_IS_OBJECT) + "/*BLOCK_FIELD_IS_OBJECT*/);"; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3410 | } |
Fariborz Jahanian | d25d1b5 | 2009-12-23 20:32:38 +0000 | [diff] [blame] | 3411 | S += "}\n"; |
| 3412 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3413 | S += "\nstatic void __"; |
| 3414 | S += funcName; |
| 3415 | S += "_block_dispose_" + utostr(i); |
| 3416 | S += "(" + StructRef; |
| 3417 | S += "*src) {"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3418 | for (llvm::SmallPtrSet<ValueDecl*,8>::iterator I = ImportedBlockDecls.begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3419 | E = ImportedBlockDecls.end(); I != E; ++I) { |
Fariborz Jahanian | a3f61ae | 2011-07-30 01:21:41 +0000 | [diff] [blame] | 3420 | ValueDecl *VD = (*I); |
Steve Naroff | 5bc60d0 | 2008-12-16 15:50:30 +0000 | [diff] [blame] | 3421 | S += "_Block_object_dispose((void*)src->"; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3422 | S += (*I)->getNameAsString(); |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 3423 | if (BlockByRefDeclsPtrSet.count((*I))) |
Fariborz Jahanian | 73e437b | 2009-12-23 21:18:41 +0000 | [diff] [blame] | 3424 | S += ", " + utostr(BLOCK_FIELD_IS_BYREF) + "/*BLOCK_FIELD_IS_BYREF*/);"; |
Fariborz Jahanian | a3f61ae | 2011-07-30 01:21:41 +0000 | [diff] [blame] | 3425 | else if (VD->getType()->isBlockPointerType()) |
Fariborz Jahanian | 06433c6 | 2011-07-30 01:07:55 +0000 | [diff] [blame] | 3426 | S += ", " + utostr(BLOCK_FIELD_IS_BLOCK) + "/*BLOCK_FIELD_IS_BLOCK*/);"; |
Fariborz Jahanian | a3f61ae | 2011-07-30 01:21:41 +0000 | [diff] [blame] | 3427 | else |
| 3428 | S += ", " + utostr(BLOCK_FIELD_IS_OBJECT) + "/*BLOCK_FIELD_IS_OBJECT*/);"; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3429 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3430 | S += "}\n"; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3431 | return S; |
| 3432 | } |
| 3433 | |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3434 | std::string RewriteObjC::SynthesizeBlockImpl(BlockExpr *CE, std::string Tag, |
| 3435 | std::string Desc) { |
Steve Naroff | ced80a8 | 2008-10-30 12:09:33 +0000 | [diff] [blame] | 3436 | std::string S = "\nstruct " + Tag; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3437 | std::string Constructor = " " + Tag; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3438 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3439 | S += " {\n struct __block_impl impl;\n"; |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3440 | S += " struct " + Desc; |
| 3441 | S += "* Desc;\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3442 | |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3443 | Constructor += "(void *fp, "; // Invoke function pointer. |
| 3444 | Constructor += "struct " + Desc; // Descriptor pointer. |
| 3445 | Constructor += " *desc"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3446 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3447 | if (BlockDeclRefs.size()) { |
| 3448 | // Output all "by copy" declarations. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3449 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3450 | E = BlockByCopyDecls.end(); I != E; ++I) { |
| 3451 | S += " "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3452 | std::string FieldName = (*I)->getNameAsString(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3453 | std::string ArgName = "_" + FieldName; |
| 3454 | // Handle nested closure invocation. For example: |
| 3455 | // |
| 3456 | // void (^myImportedBlock)(void); |
| 3457 | // myImportedBlock = ^(void) { setGlobalInt(x + y); }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3458 | // |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3459 | // void (^anotherBlock)(void); |
| 3460 | // anotherBlock = ^(void) { |
| 3461 | // myImportedBlock(); // import and invoke the closure |
| 3462 | // }; |
| 3463 | // |
Steve Naroff | 01f2ffa | 2008-12-11 21:05:33 +0000 | [diff] [blame] | 3464 | if (isTopLevelBlockPointerType((*I)->getType())) { |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3465 | S += "struct __block_impl *"; |
| 3466 | Constructor += ", void *" + ArgName; |
| 3467 | } else { |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3468 | QualType QT = (*I)->getType(); |
| 3469 | if (HasLocalVariableExternalStorage(*I)) |
| 3470 | QT = Context->getPointerType(QT); |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 3471 | QT.getAsStringInternal(FieldName, Context->getPrintingPolicy()); |
| 3472 | QT.getAsStringInternal(ArgName, Context->getPrintingPolicy()); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3473 | Constructor += ", " + ArgName; |
| 3474 | } |
| 3475 | S += FieldName + ";\n"; |
| 3476 | } |
| 3477 | // Output all "by ref" declarations. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3478 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3479 | E = BlockByRefDecls.end(); I != E; ++I) { |
| 3480 | S += " "; |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 3481 | std::string FieldName = (*I)->getNameAsString(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3482 | std::string ArgName = "_" + FieldName; |
Fariborz Jahanian | 651ba52 | 2011-04-01 23:08:13 +0000 | [diff] [blame] | 3483 | { |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 3484 | std::string TypeString; |
| 3485 | RewriteByRefString(TypeString, FieldName, (*I)); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 3486 | TypeString += " *"; |
| 3487 | FieldName = TypeString + FieldName; |
| 3488 | ArgName = TypeString + ArgName; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3489 | Constructor += ", " + ArgName; |
| 3490 | } |
| 3491 | S += FieldName + "; // by ref\n"; |
| 3492 | } |
| 3493 | // Finish writing the constructor. |
Fariborz Jahanian | 20432ef | 2010-07-28 23:27:30 +0000 | [diff] [blame] | 3494 | Constructor += ", int flags=0)"; |
| 3495 | // Initialize all "by copy" arguments. |
| 3496 | bool firsTime = true; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3497 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(), |
Fariborz Jahanian | 20432ef | 2010-07-28 23:27:30 +0000 | [diff] [blame] | 3498 | E = BlockByCopyDecls.end(); I != E; ++I) { |
| 3499 | std::string Name = (*I)->getNameAsString(); |
| 3500 | if (firsTime) { |
| 3501 | Constructor += " : "; |
| 3502 | firsTime = false; |
| 3503 | } |
| 3504 | else |
| 3505 | Constructor += ", "; |
| 3506 | if (isTopLevelBlockPointerType((*I)->getType())) |
| 3507 | Constructor += Name + "((struct __block_impl *)_" + Name + ")"; |
| 3508 | else |
| 3509 | Constructor += Name + "(_" + Name + ")"; |
| 3510 | } |
| 3511 | // Initialize all "by ref" arguments. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3512 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(), |
Fariborz Jahanian | 20432ef | 2010-07-28 23:27:30 +0000 | [diff] [blame] | 3513 | E = BlockByRefDecls.end(); I != E; ++I) { |
| 3514 | std::string Name = (*I)->getNameAsString(); |
| 3515 | if (firsTime) { |
| 3516 | Constructor += " : "; |
| 3517 | firsTime = false; |
| 3518 | } |
| 3519 | else |
| 3520 | Constructor += ", "; |
Fariborz Jahanian | 651ba52 | 2011-04-01 23:08:13 +0000 | [diff] [blame] | 3521 | Constructor += Name + "(_" + Name + "->__forwarding)"; |
Fariborz Jahanian | 20432ef | 2010-07-28 23:27:30 +0000 | [diff] [blame] | 3522 | } |
| 3523 | |
| 3524 | Constructor += " {\n"; |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3525 | if (GlobalVarDecl) |
| 3526 | Constructor += " impl.isa = &_NSConcreteGlobalBlock;\n"; |
| 3527 | else |
| 3528 | Constructor += " impl.isa = &_NSConcreteStackBlock;\n"; |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3529 | Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3530 | |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3531 | Constructor += " Desc = desc;\n"; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3532 | } else { |
| 3533 | // Finish writing the constructor. |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3534 | Constructor += ", int flags=0) {\n"; |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3535 | if (GlobalVarDecl) |
| 3536 | Constructor += " impl.isa = &_NSConcreteGlobalBlock;\n"; |
| 3537 | else |
| 3538 | Constructor += " impl.isa = &_NSConcreteStackBlock;\n"; |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3539 | Constructor += " impl.Flags = flags;\n impl.FuncPtr = fp;\n"; |
| 3540 | Constructor += " Desc = desc;\n"; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3541 | } |
| 3542 | Constructor += " "; |
| 3543 | Constructor += "}\n"; |
| 3544 | S += Constructor; |
| 3545 | S += "};\n"; |
| 3546 | return S; |
| 3547 | } |
| 3548 | |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3549 | std::string RewriteObjC::SynthesizeBlockDescriptor(std::string DescTag, |
| 3550 | std::string ImplTag, int i, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3551 | StringRef FunName, |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3552 | unsigned hasCopy) { |
| 3553 | std::string S = "\nstatic struct " + DescTag; |
| 3554 | |
| 3555 | S += " {\n unsigned long reserved;\n"; |
| 3556 | S += " unsigned long Block_size;\n"; |
| 3557 | if (hasCopy) { |
Fariborz Jahanian | 4fcc4fd | 2009-12-21 23:31:42 +0000 | [diff] [blame] | 3558 | S += " void (*copy)(struct "; |
| 3559 | S += ImplTag; S += "*, struct "; |
| 3560 | S += ImplTag; S += "*);\n"; |
| 3561 | |
| 3562 | S += " void (*dispose)(struct "; |
| 3563 | S += ImplTag; S += "*);\n"; |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3564 | } |
| 3565 | S += "} "; |
| 3566 | |
| 3567 | S += DescTag + "_DATA = { 0, sizeof(struct "; |
| 3568 | S += ImplTag + ")"; |
| 3569 | if (hasCopy) { |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 3570 | S += ", __" + FunName.str() + "_block_copy_" + utostr(i); |
| 3571 | S += ", __" + FunName.str() + "_block_dispose_" + utostr(i); |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3572 | } |
| 3573 | S += "};\n"; |
| 3574 | return S; |
| 3575 | } |
| 3576 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3577 | void RewriteObjC::SynthesizeBlockLiterals(SourceLocation FunLocStart, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3578 | StringRef FunName) { |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 3579 | // Insert declaration for the function in which block literal is used. |
Fariborz Jahanian | bf07012 | 2010-01-15 18:14:52 +0000 | [diff] [blame] | 3580 | if (CurFunctionDeclToDeclareForBlock && !Blocks.empty()) |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 3581 | RewriteBlockLiteralFunctionDecl(CurFunctionDeclToDeclareForBlock); |
Fariborz Jahanian | 8611eb0 | 2010-03-04 21:35:37 +0000 | [diff] [blame] | 3582 | bool RewriteSC = (GlobalVarDecl && |
| 3583 | !Blocks.empty() && |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 3584 | GlobalVarDecl->getStorageClass() == SC_Static && |
Fariborz Jahanian | 8611eb0 | 2010-03-04 21:35:37 +0000 | [diff] [blame] | 3585 | GlobalVarDecl->getType().getCVRQualifiers()); |
| 3586 | if (RewriteSC) { |
| 3587 | std::string SC(" void __"); |
| 3588 | SC += GlobalVarDecl->getNameAsString(); |
| 3589 | SC += "() {}"; |
| 3590 | InsertText(FunLocStart, SC); |
| 3591 | } |
| 3592 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3593 | // Insert closures that were part of the function. |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3594 | for (unsigned i = 0, count=0; i < Blocks.size(); i++) { |
| 3595 | CollectBlockDeclRefInfo(Blocks[i]); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3596 | // Need to copy-in the inner copied-in variables not actually used in this |
| 3597 | // block. |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3598 | for (int j = 0; j < InnerDeclRefsCount[i]; j++) { |
| 3599 | BlockDeclRefExpr *Exp = InnerDeclRefs[count++]; |
| 3600 | ValueDecl *VD = Exp->getDecl(); |
| 3601 | BlockDeclRefs.push_back(Exp); |
| 3602 | if (!Exp->isByRef() && !BlockByCopyDeclsPtrSet.count(VD)) { |
| 3603 | BlockByCopyDeclsPtrSet.insert(VD); |
| 3604 | BlockByCopyDecls.push_back(VD); |
| 3605 | } |
| 3606 | if (Exp->isByRef() && !BlockByRefDeclsPtrSet.count(VD)) { |
| 3607 | BlockByRefDeclsPtrSet.insert(VD); |
| 3608 | BlockByRefDecls.push_back(VD); |
| 3609 | } |
Fariborz Jahanian | 92c8568 | 2010-10-05 18:05:06 +0000 | [diff] [blame] | 3610 | // imported objects in the inner blocks not used in the outer |
| 3611 | // blocks must be copied/disposed in the outer block as well. |
| 3612 | if (Exp->isByRef() || |
| 3613 | VD->getType()->isObjCObjectPointerType() || |
| 3614 | VD->getType()->isBlockPointerType()) |
| 3615 | ImportedBlockDecls.insert(VD); |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3616 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3617 | |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 3618 | std::string ImplTag = "__" + FunName.str() + "_block_impl_" + utostr(i); |
| 3619 | std::string DescTag = "__" + FunName.str() + "_block_desc_" + utostr(i); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3620 | |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3621 | std::string CI = SynthesizeBlockImpl(Blocks[i], ImplTag, DescTag); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3622 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3623 | InsertText(FunLocStart, CI); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3624 | |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3625 | std::string CF = SynthesizeBlockFunc(Blocks[i], i, FunName, ImplTag); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3626 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3627 | InsertText(FunLocStart, CF); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3628 | |
| 3629 | if (ImportedBlockDecls.size()) { |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3630 | std::string HF = SynthesizeBlockHelperFuncs(Blocks[i], i, FunName, ImplTag); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3631 | InsertText(FunLocStart, HF); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3632 | } |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 3633 | std::string BD = SynthesizeBlockDescriptor(DescTag, ImplTag, i, FunName, |
| 3634 | ImportedBlockDecls.size() > 0); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3635 | InsertText(FunLocStart, BD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3636 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3637 | BlockDeclRefs.clear(); |
| 3638 | BlockByRefDecls.clear(); |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 3639 | BlockByRefDeclsPtrSet.clear(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3640 | BlockByCopyDecls.clear(); |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 3641 | BlockByCopyDeclsPtrSet.clear(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3642 | ImportedBlockDecls.clear(); |
| 3643 | } |
Fariborz Jahanian | 8611eb0 | 2010-03-04 21:35:37 +0000 | [diff] [blame] | 3644 | if (RewriteSC) { |
Fariborz Jahanian | 61b82e3 | 2010-03-04 18:54:29 +0000 | [diff] [blame] | 3645 | // Must insert any 'const/volatile/static here. Since it has been |
| 3646 | // removed as result of rewriting of block literals. |
Fariborz Jahanian | 61b82e3 | 2010-03-04 18:54:29 +0000 | [diff] [blame] | 3647 | std::string SC; |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 3648 | if (GlobalVarDecl->getStorageClass() == SC_Static) |
Fariborz Jahanian | 61b82e3 | 2010-03-04 18:54:29 +0000 | [diff] [blame] | 3649 | SC = "static "; |
Fariborz Jahanian | 61b82e3 | 2010-03-04 18:54:29 +0000 | [diff] [blame] | 3650 | if (GlobalVarDecl->getType().isConstQualified()) |
| 3651 | SC += "const "; |
| 3652 | if (GlobalVarDecl->getType().isVolatileQualified()) |
| 3653 | SC += "volatile "; |
Fariborz Jahanian | 8611eb0 | 2010-03-04 21:35:37 +0000 | [diff] [blame] | 3654 | if (GlobalVarDecl->getType().isRestrictQualified()) |
| 3655 | SC += "restrict "; |
| 3656 | InsertText(FunLocStart, SC); |
Fariborz Jahanian | 61b82e3 | 2010-03-04 18:54:29 +0000 | [diff] [blame] | 3657 | } |
| 3658 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3659 | Blocks.clear(); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3660 | InnerDeclRefsCount.clear(); |
| 3661 | InnerDeclRefs.clear(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3662 | RewrittenBlockExprs.clear(); |
| 3663 | } |
| 3664 | |
| 3665 | void RewriteObjC::InsertBlockLiteralsWithinFunction(FunctionDecl *FD) { |
| 3666 | SourceLocation FunLocStart = FD->getTypeSpecStartLoc(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3667 | StringRef FuncName = FD->getName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3668 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3669 | SynthesizeBlockLiterals(FunLocStart, FuncName); |
| 3670 | } |
| 3671 | |
Fariborz Jahanian | e61a1d4 | 2010-02-10 20:18:25 +0000 | [diff] [blame] | 3672 | static void BuildUniqueMethodName(std::string &Name, |
| 3673 | ObjCMethodDecl *MD) { |
| 3674 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 3675 | Name = IFace->getName(); |
Fariborz Jahanian | e61a1d4 | 2010-02-10 20:18:25 +0000 | [diff] [blame] | 3676 | Name += "__" + MD->getSelector().getAsString(); |
| 3677 | // Convert colons to underscores. |
| 3678 | std::string::size_type loc = 0; |
| 3679 | while ((loc = Name.find(":", loc)) != std::string::npos) |
| 3680 | Name.replace(loc, 1, "_"); |
| 3681 | } |
| 3682 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3683 | void RewriteObjC::InsertBlockLiteralsWithinMethod(ObjCMethodDecl *MD) { |
Steve Naroff | ced80a8 | 2008-10-30 12:09:33 +0000 | [diff] [blame] | 3684 | //fprintf(stderr,"In InsertBlockLiteralsWitinMethod\n"); |
| 3685 | //SourceLocation FunLocStart = MD->getLocStart(); |
Fariborz Jahanian | 0e1c99a | 2010-01-29 01:55:49 +0000 | [diff] [blame] | 3686 | SourceLocation FunLocStart = MD->getLocStart(); |
Fariborz Jahanian | e61a1d4 | 2010-02-10 20:18:25 +0000 | [diff] [blame] | 3687 | std::string FuncName; |
| 3688 | BuildUniqueMethodName(FuncName, MD); |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 3689 | SynthesizeBlockLiterals(FunLocStart, FuncName); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3690 | } |
| 3691 | |
| 3692 | void RewriteObjC::GetBlockDeclRefExprs(Stmt *S) { |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 3693 | for (Stmt::child_range CI = S->children(); CI; ++CI) |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3694 | if (*CI) { |
| 3695 | if (BlockExpr *CBE = dyn_cast<BlockExpr>(*CI)) |
| 3696 | GetBlockDeclRefExprs(CBE->getBody()); |
| 3697 | else |
| 3698 | GetBlockDeclRefExprs(*CI); |
| 3699 | } |
| 3700 | // Handle specific things. |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3701 | if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(S)) { |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3702 | // FIXME: Handle enums. |
| 3703 | if (!isa<FunctionDecl>(CDRE->getDecl())) |
| 3704 | BlockDeclRefs.push_back(CDRE); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3705 | } |
| 3706 | else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(S)) |
| 3707 | if (HasLocalVariableExternalStorage(DRE->getDecl())) { |
| 3708 | BlockDeclRefExpr *BDRE = |
John McCall | 6b5a61b | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 3709 | new (Context)BlockDeclRefExpr(cast<VarDecl>(DRE->getDecl()), |
| 3710 | DRE->getType(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3711 | VK_LValue, DRE->getLocation(), false); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3712 | BlockDeclRefs.push_back(BDRE); |
| 3713 | } |
| 3714 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3715 | return; |
| 3716 | } |
| 3717 | |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3718 | void RewriteObjC::GetInnerBlockDeclRefExprs(Stmt *S, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3719 | SmallVector<BlockDeclRefExpr *, 8> &InnerBlockDeclRefs, |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3720 | llvm::SmallPtrSet<const DeclContext *, 8> &InnerContexts) { |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 3721 | for (Stmt::child_range CI = S->children(); CI; ++CI) |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3722 | if (*CI) { |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3723 | if (BlockExpr *CBE = dyn_cast<BlockExpr>(*CI)) { |
| 3724 | InnerContexts.insert(cast<DeclContext>(CBE->getBlockDecl())); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3725 | GetInnerBlockDeclRefExprs(CBE->getBody(), |
| 3726 | InnerBlockDeclRefs, |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3727 | InnerContexts); |
| 3728 | } |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3729 | else |
| 3730 | GetInnerBlockDeclRefExprs(*CI, |
| 3731 | InnerBlockDeclRefs, |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3732 | InnerContexts); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3733 | |
| 3734 | } |
| 3735 | // Handle specific things. |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3736 | if (BlockDeclRefExpr *CDRE = dyn_cast<BlockDeclRefExpr>(S)) { |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3737 | if (!isa<FunctionDecl>(CDRE->getDecl()) && |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3738 | !InnerContexts.count(CDRE->getDecl()->getDeclContext())) |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3739 | InnerBlockDeclRefs.push_back(CDRE); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3740 | } |
| 3741 | else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(S)) { |
| 3742 | if (VarDecl *Var = dyn_cast<VarDecl>(DRE->getDecl())) |
| 3743 | if (Var->isFunctionOrMethodVarDecl()) |
| 3744 | ImportedLocalExternalDecls.insert(Var); |
| 3745 | } |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 3746 | |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 3747 | return; |
| 3748 | } |
| 3749 | |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3750 | /// convertFunctionTypeOfBlocks - This routine converts a function type |
| 3751 | /// whose result type may be a block pointer or whose argument type(s) |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 3752 | /// might be block pointers to an equivalent function type replacing |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3753 | /// all block pointers to function pointers. |
| 3754 | QualType RewriteObjC::convertFunctionTypeOfBlocks(const FunctionType *FT) { |
| 3755 | const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); |
| 3756 | // FTP will be null for closures that don't take arguments. |
| 3757 | // Generate a funky cast. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3758 | SmallVector<QualType, 8> ArgTypes; |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3759 | QualType Res = FT->getResultType(); |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 3760 | bool HasBlockType = convertBlockPointerToFunctionPointer(Res); |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3761 | |
| 3762 | if (FTP) { |
| 3763 | for (FunctionProtoType::arg_type_iterator I = FTP->arg_type_begin(), |
| 3764 | E = FTP->arg_type_end(); I && (I != E); ++I) { |
| 3765 | QualType t = *I; |
| 3766 | // Make sure we convert "t (^)(...)" to "t (*)(...)". |
Fariborz Jahanian | 4fc8453 | 2010-05-25 17:12:52 +0000 | [diff] [blame] | 3767 | if (convertBlockPointerToFunctionPointer(t)) |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3768 | HasBlockType = true; |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3769 | ArgTypes.push_back(t); |
| 3770 | } |
| 3771 | } |
| 3772 | QualType FuncType; |
| 3773 | // FIXME. Does this work if block takes no argument but has a return type |
| 3774 | // which is of block type? |
| 3775 | if (HasBlockType) |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 3776 | FuncType = getSimpleFunctionType(Res, &ArgTypes[0], ArgTypes.size()); |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 3777 | else FuncType = QualType(FT, 0); |
| 3778 | return FuncType; |
| 3779 | } |
| 3780 | |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 3781 | Stmt *RewriteObjC::SynthesizeBlockCall(CallExpr *Exp, const Expr *BlockExp) { |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3782 | // Navigate to relevant type information. |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3783 | const BlockPointerType *CPT = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3784 | |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 3785 | if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(BlockExp)) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3786 | CPT = DRE->getType()->getAs<BlockPointerType>(); |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 3787 | } else if (const BlockDeclRefExpr *CDRE = |
| 3788 | dyn_cast<BlockDeclRefExpr>(BlockExp)) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3789 | CPT = CDRE->getType()->getAs<BlockPointerType>(); |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 3790 | } else if (const MemberExpr *MExpr = dyn_cast<MemberExpr>(BlockExp)) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3791 | CPT = MExpr->getType()->getAs<BlockPointerType>(); |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 3792 | } |
| 3793 | else if (const ParenExpr *PRE = dyn_cast<ParenExpr>(BlockExp)) { |
| 3794 | return SynthesizeBlockCall(Exp, PRE->getSubExpr()); |
| 3795 | } |
| 3796 | else if (const ImplicitCastExpr *IEXPR = dyn_cast<ImplicitCastExpr>(BlockExp)) |
| 3797 | CPT = IEXPR->getType()->getAs<BlockPointerType>(); |
| 3798 | else if (const ConditionalOperator *CEXPR = |
| 3799 | dyn_cast<ConditionalOperator>(BlockExp)) { |
| 3800 | Expr *LHSExp = CEXPR->getLHS(); |
| 3801 | Stmt *LHSStmt = SynthesizeBlockCall(Exp, LHSExp); |
| 3802 | Expr *RHSExp = CEXPR->getRHS(); |
| 3803 | Stmt *RHSStmt = SynthesizeBlockCall(Exp, RHSExp); |
| 3804 | Expr *CONDExp = CEXPR->getCond(); |
| 3805 | ConditionalOperator *CondExpr = |
| 3806 | new (Context) ConditionalOperator(CONDExp, |
| 3807 | SourceLocation(), cast<Expr>(LHSStmt), |
Fariborz Jahanian | f9b949f | 2010-08-31 18:02:20 +0000 | [diff] [blame] | 3808 | SourceLocation(), cast<Expr>(RHSStmt), |
John McCall | 0943168 | 2010-11-18 19:01:18 +0000 | [diff] [blame] | 3809 | Exp->getType(), VK_RValue, OK_Ordinary); |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 3810 | return CondExpr; |
Fariborz Jahanian | e24b22b | 2009-12-18 01:15:21 +0000 | [diff] [blame] | 3811 | } else if (const ObjCIvarRefExpr *IRE = dyn_cast<ObjCIvarRefExpr>(BlockExp)) { |
| 3812 | CPT = IRE->getType()->getAs<BlockPointerType>(); |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 3813 | } else if (const PseudoObjectExpr *POE |
| 3814 | = dyn_cast<PseudoObjectExpr>(BlockExp)) { |
| 3815 | CPT = POE->getType()->castAs<BlockPointerType>(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3816 | } else { |
| 3817 | assert(1 && "RewriteBlockClass: Bad type"); |
| 3818 | } |
| 3819 | assert(CPT && "RewriteBlockClass: Bad type"); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3820 | const FunctionType *FT = CPT->getPointeeType()->getAs<FunctionType>(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3821 | assert(FT && "RewriteBlockClass: Bad type"); |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3822 | const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3823 | // FTP will be null for closures that don't take arguments. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3824 | |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 3825 | RecordDecl *RD = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 3826 | SourceLocation(), SourceLocation(), |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3827 | &Context->Idents.get("__block_impl")); |
| 3828 | QualType PtrBlock = Context->getPointerType(Context->getTagDeclType(RD)); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3829 | |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3830 | // Generate a funky cast. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3831 | SmallVector<QualType, 8> ArgTypes; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3832 | |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3833 | // Push the block argument type. |
| 3834 | ArgTypes.push_back(PtrBlock); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3835 | if (FTP) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3836 | for (FunctionProtoType::arg_type_iterator I = FTP->arg_type_begin(), |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3837 | E = FTP->arg_type_end(); I && (I != E); ++I) { |
| 3838 | QualType t = *I; |
| 3839 | // Make sure we convert "t (^)(...)" to "t (*)(...)". |
Fariborz Jahanian | 8188e5f | 2010-11-05 18:34:46 +0000 | [diff] [blame] | 3840 | if (!convertBlockPointerToFunctionPointer(t)) |
| 3841 | convertToUnqualifiedObjCType(t); |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3842 | ArgTypes.push_back(t); |
| 3843 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3844 | } |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3845 | // Now do the pointer to function cast. |
John McCall | e23cf43 | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 3846 | QualType PtrToFuncCastType |
| 3847 | = getSimpleFunctionType(Exp->getType(), &ArgTypes[0], ArgTypes.size()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3848 | |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3849 | PtrToFuncCastType = Context->getPointerType(PtrToFuncCastType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3850 | |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 3851 | CastExpr *BlkCast = NoTypeInfoCStyleCastExpr(Context, PtrBlock, |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 3852 | CK_BitCast, |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 3853 | const_cast<Expr*>(BlockExp)); |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3854 | // Don't forget the parens to enforce the proper binding. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3855 | ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), |
| 3856 | BlkCast); |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3857 | //PE->dump(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3858 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 3859 | FieldDecl *FD = FieldDecl::Create(*Context, 0, SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 3860 | SourceLocation(), |
| 3861 | &Context->Idents.get("FuncPtr"), |
| 3862 | Context->VoidPtrTy, 0, |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 3863 | /*BitWidth=*/0, /*Mutable=*/true, |
| 3864 | /*HasInit=*/false); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3865 | MemberExpr *ME = new (Context) MemberExpr(PE, true, FD, SourceLocation(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3866 | FD->getType(), VK_LValue, |
| 3867 | OK_Ordinary); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3868 | |
Fariborz Jahanian | 8188e5f | 2010-11-05 18:34:46 +0000 | [diff] [blame] | 3869 | |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 3870 | CastExpr *FunkCast = NoTypeInfoCStyleCastExpr(Context, PtrToFuncCastType, |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 3871 | CK_BitCast, ME); |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 3872 | PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), FunkCast); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3873 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3874 | SmallVector<Expr*, 8> BlkExprs; |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3875 | // Add the implicit argument. |
| 3876 | BlkExprs.push_back(BlkCast); |
| 3877 | // Add the user arguments. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3878 | for (CallExpr::arg_iterator I = Exp->arg_begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3879 | E = Exp->arg_end(); I != E; ++I) { |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3880 | BlkExprs.push_back(*I); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3881 | } |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 3882 | CallExpr *CE = new (Context) CallExpr(*Context, PE, &BlkExprs[0], |
| 3883 | BlkExprs.size(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3884 | Exp->getType(), VK_RValue, |
| 3885 | SourceLocation()); |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 3886 | return CE; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3887 | } |
| 3888 | |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3889 | // We need to return the rewritten expression to handle cases where the |
| 3890 | // BlockDeclRefExpr is embedded in another expression being rewritten. |
| 3891 | // For example: |
| 3892 | // |
| 3893 | // int main() { |
| 3894 | // __block Foo *f; |
| 3895 | // __block int i; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3896 | // |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3897 | // void (^myblock)() = ^() { |
| 3898 | // [f test]; // f is a BlockDeclRefExpr embedded in a message (which is being rewritten). |
| 3899 | // i = 77; |
| 3900 | // }; |
| 3901 | //} |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 3902 | Stmt *RewriteObjC::RewriteBlockDeclRefExpr(Expr *DeclRefExp) { |
Fariborz Jahanian | bbf37e2 | 2009-12-23 19:26:34 +0000 | [diff] [blame] | 3903 | // Rewrite the byref variable into BYREFVAR->__forwarding->BYREFVAR |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 3904 | // for each DeclRefExp where BYREFVAR is name of the variable. |
| 3905 | ValueDecl *VD; |
| 3906 | bool isArrow = true; |
| 3907 | if (BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(DeclRefExp)) |
| 3908 | VD = BDRE->getDecl(); |
| 3909 | else { |
| 3910 | VD = cast<DeclRefExpr>(DeclRefExp)->getDecl(); |
| 3911 | isArrow = false; |
| 3912 | } |
| 3913 | |
Fariborz Jahanian | ec878f2 | 2009-12-23 19:22:33 +0000 | [diff] [blame] | 3914 | FieldDecl *FD = FieldDecl::Create(*Context, 0, SourceLocation(), |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 3915 | SourceLocation(), |
Fariborz Jahanian | ec878f2 | 2009-12-23 19:22:33 +0000 | [diff] [blame] | 3916 | &Context->Idents.get("__forwarding"), |
| 3917 | Context->VoidPtrTy, 0, |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 3918 | /*BitWidth=*/0, /*Mutable=*/true, |
| 3919 | /*HasInit=*/false); |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 3920 | MemberExpr *ME = new (Context) MemberExpr(DeclRefExp, isArrow, |
| 3921 | FD, SourceLocation(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3922 | FD->getType(), VK_LValue, |
| 3923 | OK_Ordinary); |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 3924 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3925 | StringRef Name = VD->getName(); |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 3926 | FD = FieldDecl::Create(*Context, 0, SourceLocation(), SourceLocation(), |
Fariborz Jahanian | ec878f2 | 2009-12-23 19:22:33 +0000 | [diff] [blame] | 3927 | &Context->Idents.get(Name), |
| 3928 | Context->VoidPtrTy, 0, |
Richard Smith | 7a614d8 | 2011-06-11 17:19:42 +0000 | [diff] [blame] | 3929 | /*BitWidth=*/0, /*Mutable=*/true, |
| 3930 | /*HasInit=*/false); |
Fariborz Jahanian | ec878f2 | 2009-12-23 19:22:33 +0000 | [diff] [blame] | 3931 | ME = new (Context) MemberExpr(ME, true, FD, SourceLocation(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3932 | DeclRefExp->getType(), VK_LValue, OK_Ordinary); |
Fariborz Jahanian | ec878f2 | 2009-12-23 19:22:33 +0000 | [diff] [blame] | 3933 | |
| 3934 | |
| 3935 | |
Steve Naroff | df8570d | 2009-02-02 17:19:26 +0000 | [diff] [blame] | 3936 | // Need parens to enforce precedence. |
Fariborz Jahanian | 380ee50 | 2011-04-01 19:19:28 +0000 | [diff] [blame] | 3937 | ParenExpr *PE = new (Context) ParenExpr(DeclRefExp->getExprLoc(), |
| 3938 | DeclRefExp->getExprLoc(), |
Fariborz Jahanian | ec878f2 | 2009-12-23 19:22:33 +0000 | [diff] [blame] | 3939 | ME); |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 3940 | ReplaceStmt(DeclRefExp, PE); |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 3941 | return PE; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3942 | } |
| 3943 | |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3944 | // Rewrites the imported local variable V with external storage |
| 3945 | // (static, extern, etc.) as *V |
| 3946 | // |
| 3947 | Stmt *RewriteObjC::RewriteLocalVariableExternalStorage(DeclRefExpr *DRE) { |
| 3948 | ValueDecl *VD = DRE->getDecl(); |
| 3949 | if (VarDecl *Var = dyn_cast<VarDecl>(VD)) |
| 3950 | if (!ImportedLocalExternalDecls.count(Var)) |
| 3951 | return DRE; |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 3952 | Expr *Exp = new (Context) UnaryOperator(DRE, UO_Deref, DRE->getType(), |
| 3953 | VK_LValue, OK_Ordinary, |
| 3954 | DRE->getLocation()); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 3955 | // Need parens to enforce precedence. |
| 3956 | ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), |
| 3957 | Exp); |
| 3958 | ReplaceStmt(DRE, PE); |
| 3959 | return PE; |
| 3960 | } |
| 3961 | |
Steve Naroff | b2f9e51 | 2008-11-03 23:29:32 +0000 | [diff] [blame] | 3962 | void RewriteObjC::RewriteCastExpr(CStyleCastExpr *CE) { |
| 3963 | SourceLocation LocStart = CE->getLParenLoc(); |
| 3964 | SourceLocation LocEnd = CE->getRParenLoc(); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 3965 | |
| 3966 | // Need to avoid trying to rewrite synthesized casts. |
| 3967 | if (LocStart.isInvalid()) |
| 3968 | return; |
Steve Naroff | 8f6ce57 | 2008-11-03 11:20:24 +0000 | [diff] [blame] | 3969 | // Need to avoid trying to rewrite casts contained in macros. |
| 3970 | if (!Rewriter::isRewritable(LocStart) || !Rewriter::isRewritable(LocEnd)) |
| 3971 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3972 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3973 | const char *startBuf = SM->getCharacterData(LocStart); |
| 3974 | const char *endBuf = SM->getCharacterData(LocEnd); |
Fariborz Jahanian | 1d4fca2 | 2010-01-19 21:48:35 +0000 | [diff] [blame] | 3975 | QualType QT = CE->getType(); |
| 3976 | const Type* TypePtr = QT->getAs<Type>(); |
| 3977 | if (isa<TypeOfExprType>(TypePtr)) { |
| 3978 | const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); |
| 3979 | QT = TypeOfExprTypePtr->getUnderlyingExpr()->getType(); |
| 3980 | std::string TypeAsString = "("; |
Fariborz Jahanian | afad76f | 2010-02-18 01:20:22 +0000 | [diff] [blame] | 3981 | RewriteBlockPointerType(TypeAsString, QT); |
Fariborz Jahanian | 1d4fca2 | 2010-01-19 21:48:35 +0000 | [diff] [blame] | 3982 | TypeAsString += ")"; |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3983 | ReplaceText(LocStart, endBuf-startBuf+1, TypeAsString); |
Fariborz Jahanian | 1d4fca2 | 2010-01-19 21:48:35 +0000 | [diff] [blame] | 3984 | return; |
| 3985 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3986 | // advance the location to startArgList. |
| 3987 | const char *argPtr = startBuf; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3988 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3989 | while (*argPtr++ && (argPtr < endBuf)) { |
| 3990 | switch (*argPtr) { |
Mike Stump | b716633 | 2010-01-20 02:03:14 +0000 | [diff] [blame] | 3991 | case '^': |
| 3992 | // Replace the '^' with '*'. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 3993 | LocStart = LocStart.getLocWithOffset(argPtr-startBuf); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 3994 | ReplaceText(LocStart, 1, "*"); |
Mike Stump | b716633 | 2010-01-20 02:03:14 +0000 | [diff] [blame] | 3995 | break; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 3996 | } |
| 3997 | } |
| 3998 | return; |
| 3999 | } |
| 4000 | |
| 4001 | void RewriteObjC::RewriteBlockPointerFunctionArgs(FunctionDecl *FD) { |
| 4002 | SourceLocation DeclLoc = FD->getLocation(); |
| 4003 | unsigned parenCount = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4004 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4005 | // We have 1 or more arguments that have closure pointers. |
| 4006 | const char *startBuf = SM->getCharacterData(DeclLoc); |
| 4007 | const char *startArgList = strchr(startBuf, '('); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4008 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4009 | assert((*startArgList == '(') && "Rewriter fuzzy parser confused"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4010 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4011 | parenCount++; |
| 4012 | // advance the location to startArgList. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 4013 | DeclLoc = DeclLoc.getLocWithOffset(startArgList-startBuf); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4014 | assert((DeclLoc.isValid()) && "Invalid DeclLoc"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4015 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4016 | const char *argPtr = startArgList; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4017 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4018 | while (*argPtr++ && parenCount) { |
| 4019 | switch (*argPtr) { |
Mike Stump | b716633 | 2010-01-20 02:03:14 +0000 | [diff] [blame] | 4020 | case '^': |
| 4021 | // Replace the '^' with '*'. |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 4022 | DeclLoc = DeclLoc.getLocWithOffset(argPtr-startArgList); |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 4023 | ReplaceText(DeclLoc, 1, "*"); |
Mike Stump | b716633 | 2010-01-20 02:03:14 +0000 | [diff] [blame] | 4024 | break; |
| 4025 | case '(': |
| 4026 | parenCount++; |
| 4027 | break; |
| 4028 | case ')': |
| 4029 | parenCount--; |
| 4030 | break; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4031 | } |
| 4032 | } |
| 4033 | return; |
| 4034 | } |
| 4035 | |
| 4036 | bool RewriteObjC::PointerTypeTakesAnyBlockArguments(QualType QT) { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 4037 | const FunctionProtoType *FTP; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4038 | const PointerType *PT = QT->getAs<PointerType>(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4039 | if (PT) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4040 | FTP = PT->getPointeeType()->getAs<FunctionProtoType>(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4041 | } else { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4042 | const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4043 | assert(BPT && "BlockPointerTypeTakeAnyBlockArguments(): not a block pointer type"); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4044 | FTP = BPT->getPointeeType()->getAs<FunctionProtoType>(); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4045 | } |
| 4046 | if (FTP) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4047 | for (FunctionProtoType::arg_type_iterator I = FTP->arg_type_begin(), |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4048 | E = FTP->arg_type_end(); I != E; ++I) |
Steve Naroff | 01f2ffa | 2008-12-11 21:05:33 +0000 | [diff] [blame] | 4049 | if (isTopLevelBlockPointerType(*I)) |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4050 | return true; |
| 4051 | } |
| 4052 | return false; |
| 4053 | } |
| 4054 | |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4055 | bool RewriteObjC::PointerTypeTakesAnyObjCQualifiedType(QualType QT) { |
| 4056 | const FunctionProtoType *FTP; |
| 4057 | const PointerType *PT = QT->getAs<PointerType>(); |
| 4058 | if (PT) { |
| 4059 | FTP = PT->getPointeeType()->getAs<FunctionProtoType>(); |
| 4060 | } else { |
| 4061 | const BlockPointerType *BPT = QT->getAs<BlockPointerType>(); |
| 4062 | assert(BPT && "BlockPointerTypeTakeAnyBlockArguments(): not a block pointer type"); |
| 4063 | FTP = BPT->getPointeeType()->getAs<FunctionProtoType>(); |
| 4064 | } |
| 4065 | if (FTP) { |
| 4066 | for (FunctionProtoType::arg_type_iterator I = FTP->arg_type_begin(), |
Fariborz Jahanian | 06de2cf | 2010-11-03 23:50:34 +0000 | [diff] [blame] | 4067 | E = FTP->arg_type_end(); I != E; ++I) { |
| 4068 | if ((*I)->isObjCQualifiedIdType()) |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4069 | return true; |
Fariborz Jahanian | 06de2cf | 2010-11-03 23:50:34 +0000 | [diff] [blame] | 4070 | if ((*I)->isObjCObjectPointerType() && |
| 4071 | (*I)->getPointeeType()->isObjCQualifiedInterfaceType()) |
| 4072 | return true; |
| 4073 | } |
| 4074 | |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4075 | } |
| 4076 | return false; |
| 4077 | } |
| 4078 | |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 4079 | void RewriteObjC::GetExtentOfArgList(const char *Name, const char *&LParen, |
| 4080 | const char *&RParen) { |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4081 | const char *argPtr = strchr(Name, '('); |
| 4082 | assert((*argPtr == '(') && "Rewriter fuzzy parser confused"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4083 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4084 | LParen = argPtr; // output the start. |
| 4085 | argPtr++; // skip past the left paren. |
| 4086 | unsigned parenCount = 1; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4087 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4088 | while (*argPtr && parenCount) { |
| 4089 | switch (*argPtr) { |
Mike Stump | b716633 | 2010-01-20 02:03:14 +0000 | [diff] [blame] | 4090 | case '(': parenCount++; break; |
| 4091 | case ')': parenCount--; break; |
| 4092 | default: break; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4093 | } |
| 4094 | if (parenCount) argPtr++; |
| 4095 | } |
| 4096 | assert((*argPtr == ')') && "Rewriter fuzzy parser confused"); |
| 4097 | RParen = argPtr; // output the end |
| 4098 | } |
| 4099 | |
| 4100 | void RewriteObjC::RewriteBlockPointerDecl(NamedDecl *ND) { |
| 4101 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(ND)) { |
| 4102 | RewriteBlockPointerFunctionArgs(FD); |
| 4103 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4104 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4105 | // Handle Variables and Typedefs. |
| 4106 | SourceLocation DeclLoc = ND->getLocation(); |
| 4107 | QualType DeclT; |
| 4108 | if (VarDecl *VD = dyn_cast<VarDecl>(ND)) |
| 4109 | DeclT = VD->getType(); |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 4110 | else if (TypedefNameDecl *TDD = dyn_cast<TypedefNameDecl>(ND)) |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4111 | DeclT = TDD->getUnderlyingType(); |
| 4112 | else if (FieldDecl *FD = dyn_cast<FieldDecl>(ND)) |
| 4113 | DeclT = FD->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4114 | else |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 4115 | llvm_unreachable("RewriteBlockPointerDecl(): Decl type not yet handled"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4116 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4117 | const char *startBuf = SM->getCharacterData(DeclLoc); |
| 4118 | const char *endBuf = startBuf; |
| 4119 | // scan backward (from the decl location) for the end of the previous decl. |
| 4120 | while (*startBuf != '^' && *startBuf != ';' && startBuf != MainFileStart) |
| 4121 | startBuf--; |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 4122 | SourceLocation Start = DeclLoc.getLocWithOffset(startBuf-endBuf); |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4123 | std::string buf; |
| 4124 | unsigned OrigLength=0; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4125 | // *startBuf != '^' if we are dealing with a pointer to function that |
| 4126 | // may take block argument types (which will be handled below). |
| 4127 | if (*startBuf == '^') { |
| 4128 | // Replace the '^' with '*', computing a negative offset. |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4129 | buf = '*'; |
| 4130 | startBuf++; |
| 4131 | OrigLength++; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4132 | } |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4133 | while (*startBuf != ')') { |
| 4134 | buf += *startBuf; |
| 4135 | startBuf++; |
| 4136 | OrigLength++; |
| 4137 | } |
| 4138 | buf += ')'; |
| 4139 | OrigLength++; |
| 4140 | |
| 4141 | if (PointerTypeTakesAnyBlockArguments(DeclT) || |
| 4142 | PointerTypeTakesAnyObjCQualifiedType(DeclT)) { |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4143 | // Replace the '^' with '*' for arguments. |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4144 | // Replace id<P> with id/*<>*/ |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4145 | DeclLoc = ND->getLocation(); |
| 4146 | startBuf = SM->getCharacterData(DeclLoc); |
| 4147 | const char *argListBegin, *argListEnd; |
| 4148 | GetExtentOfArgList(startBuf, argListBegin, argListEnd); |
| 4149 | while (argListBegin < argListEnd) { |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4150 | if (*argListBegin == '^') |
| 4151 | buf += '*'; |
| 4152 | else if (*argListBegin == '<') { |
| 4153 | buf += "/*"; |
| 4154 | buf += *argListBegin++; |
| 4155 | OrigLength++;; |
| 4156 | while (*argListBegin != '>') { |
| 4157 | buf += *argListBegin++; |
| 4158 | OrigLength++; |
| 4159 | } |
| 4160 | buf += *argListBegin; |
| 4161 | buf += "*/"; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4162 | } |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4163 | else |
| 4164 | buf += *argListBegin; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4165 | argListBegin++; |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4166 | OrigLength++; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4167 | } |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4168 | buf += ')'; |
| 4169 | OrigLength++; |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4170 | } |
Fariborz Jahanian | e985d01 | 2010-11-03 23:29:24 +0000 | [diff] [blame] | 4171 | ReplaceText(Start, OrigLength, buf); |
| 4172 | |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4173 | return; |
| 4174 | } |
| 4175 | |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4176 | |
| 4177 | /// SynthesizeByrefCopyDestroyHelper - This routine synthesizes: |
| 4178 | /// void __Block_byref_id_object_copy(struct Block_byref_id_object *dst, |
| 4179 | /// struct Block_byref_id_object *src) { |
| 4180 | /// _Block_object_assign (&_dest->object, _src->object, |
| 4181 | /// BLOCK_BYREF_CALLER | BLOCK_FIELD_IS_OBJECT |
| 4182 | /// [|BLOCK_FIELD_IS_WEAK]) // object |
| 4183 | /// _Block_object_assign(&_dest->object, _src->object, |
| 4184 | /// BLOCK_BYREF_CALLER | BLOCK_FIELD_IS_BLOCK |
| 4185 | /// [|BLOCK_FIELD_IS_WEAK]) // block |
| 4186 | /// } |
| 4187 | /// And: |
| 4188 | /// void __Block_byref_id_object_dispose(struct Block_byref_id_object *_src) { |
| 4189 | /// _Block_object_dispose(_src->object, |
| 4190 | /// BLOCK_BYREF_CALLER | BLOCK_FIELD_IS_OBJECT |
| 4191 | /// [|BLOCK_FIELD_IS_WEAK]) // object |
| 4192 | /// _Block_object_dispose(_src->object, |
| 4193 | /// BLOCK_BYREF_CALLER | BLOCK_FIELD_IS_BLOCK |
| 4194 | /// [|BLOCK_FIELD_IS_WEAK]) // block |
| 4195 | /// } |
| 4196 | |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4197 | std::string RewriteObjC::SynthesizeByrefCopyDestroyHelper(VarDecl *VD, |
| 4198 | int flag) { |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4199 | std::string S; |
Benjamin Kramer | 1211a71 | 2010-01-10 19:57:50 +0000 | [diff] [blame] | 4200 | if (CopyDestroyCache.count(flag)) |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4201 | return S; |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4202 | CopyDestroyCache.insert(flag); |
| 4203 | S = "static void __Block_byref_id_object_copy_"; |
| 4204 | S += utostr(flag); |
| 4205 | S += "(void *dst, void *src) {\n"; |
| 4206 | |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4207 | // offset into the object pointer is computed as: |
| 4208 | // void * + void* + int + int + void* + void * |
| 4209 | unsigned IntSize = |
| 4210 | static_cast<unsigned>(Context->getTypeSize(Context->IntTy)); |
| 4211 | unsigned VoidPtrSize = |
| 4212 | static_cast<unsigned>(Context->getTypeSize(Context->VoidPtrTy)); |
| 4213 | |
Ken Dyck | 0c4e5d6 | 2011-04-30 16:08:27 +0000 | [diff] [blame] | 4214 | unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth(); |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4215 | S += " _Block_object_assign((char*)dst + "; |
| 4216 | S += utostr(offset); |
| 4217 | S += ", *(void * *) ((char*)src + "; |
| 4218 | S += utostr(offset); |
| 4219 | S += "), "; |
| 4220 | S += utostr(flag); |
| 4221 | S += ");\n}\n"; |
| 4222 | |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4223 | S += "static void __Block_byref_id_object_dispose_"; |
| 4224 | S += utostr(flag); |
| 4225 | S += "(void *src) {\n"; |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4226 | S += " _Block_object_dispose(*(void * *) ((char*)src + "; |
| 4227 | S += utostr(offset); |
| 4228 | S += "), "; |
| 4229 | S += utostr(flag); |
| 4230 | S += ");\n}\n"; |
| 4231 | return S; |
| 4232 | } |
| 4233 | |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4234 | /// RewriteByRefVar - For each __block typex ND variable this routine transforms |
| 4235 | /// the declaration into: |
| 4236 | /// struct __Block_byref_ND { |
| 4237 | /// void *__isa; // NULL for everything except __weak pointers |
| 4238 | /// struct __Block_byref_ND *__forwarding; |
| 4239 | /// int32_t __flags; |
| 4240 | /// int32_t __size; |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4241 | /// void *__Block_byref_id_object_copy; // If variable is __block ObjC object |
| 4242 | /// void *__Block_byref_id_object_dispose; // If variable is __block ObjC object |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4243 | /// typex ND; |
| 4244 | /// }; |
| 4245 | /// |
| 4246 | /// It then replaces declaration of ND variable with: |
| 4247 | /// struct __Block_byref_ND ND = {__isa=0B, __forwarding=&ND, __flags=some_flag, |
| 4248 | /// __size=sizeof(struct __Block_byref_ND), |
| 4249 | /// ND=initializer-if-any}; |
| 4250 | /// |
| 4251 | /// |
| 4252 | void RewriteObjC::RewriteByRefVar(VarDecl *ND) { |
Fariborz Jahanian | abfd83e | 2010-01-14 00:35:56 +0000 | [diff] [blame] | 4253 | // Insert declaration for the function in which block literal is |
| 4254 | // used. |
| 4255 | if (CurFunctionDeclToDeclareForBlock) |
| 4256 | RewriteBlockLiteralFunctionDecl(CurFunctionDeclToDeclareForBlock); |
Fariborz Jahanian | 2086d54 | 2010-01-05 19:21:35 +0000 | [diff] [blame] | 4257 | int flag = 0; |
| 4258 | int isa = 0; |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4259 | SourceLocation DeclLoc = ND->getTypeSpecStartLoc(); |
Fariborz Jahanian | d64a4f4 | 2010-02-26 22:49:11 +0000 | [diff] [blame] | 4260 | if (DeclLoc.isInvalid()) |
| 4261 | // If type location is missing, it is because of missing type (a warning). |
| 4262 | // Use variable's location which is good for this case. |
| 4263 | DeclLoc = ND->getLocation(); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4264 | const char *startBuf = SM->getCharacterData(DeclLoc); |
Fariborz Jahanian | 6f0a0a9 | 2009-12-30 20:38:08 +0000 | [diff] [blame] | 4265 | SourceLocation X = ND->getLocEnd(); |
Chandler Carruth | 4027853 | 2011-07-25 16:49:02 +0000 | [diff] [blame] | 4266 | X = SM->getExpansionLoc(X); |
Fariborz Jahanian | 6f0a0a9 | 2009-12-30 20:38:08 +0000 | [diff] [blame] | 4267 | const char *endBuf = SM->getCharacterData(X); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4268 | std::string Name(ND->getNameAsString()); |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 4269 | std::string ByrefType; |
Fariborz Jahanian | 1e8011e | 2011-01-27 23:18:15 +0000 | [diff] [blame] | 4270 | RewriteByRefString(ByrefType, Name, ND, true); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4271 | ByrefType += " {\n"; |
| 4272 | ByrefType += " void *__isa;\n"; |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 4273 | RewriteByRefString(ByrefType, Name, ND); |
| 4274 | ByrefType += " *__forwarding;\n"; |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4275 | ByrefType += " int __flags;\n"; |
| 4276 | ByrefType += " int __size;\n"; |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4277 | // Add void *__Block_byref_id_object_copy; |
| 4278 | // void *__Block_byref_id_object_dispose; if needed. |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 4279 | QualType Ty = ND->getType(); |
| 4280 | bool HasCopyAndDispose = Context->BlockRequiresCopying(Ty); |
| 4281 | if (HasCopyAndDispose) { |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4282 | ByrefType += " void (*__Block_byref_id_object_copy)(void*, void*);\n"; |
| 4283 | ByrefType += " void (*__Block_byref_id_object_dispose)(void*);\n"; |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 4284 | } |
Fariborz Jahanian | 822ac87 | 2011-03-31 22:49:32 +0000 | [diff] [blame] | 4285 | |
| 4286 | QualType T = Ty; |
| 4287 | (void)convertBlockPointerToFunctionPointer(T); |
Douglas Gregor | 30c4240 | 2011-09-27 22:38:19 +0000 | [diff] [blame] | 4288 | T.getAsStringInternal(Name, Context->getPrintingPolicy()); |
Fariborz Jahanian | 822ac87 | 2011-03-31 22:49:32 +0000 | [diff] [blame] | 4289 | |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4290 | ByrefType += " " + Name + ";\n"; |
| 4291 | ByrefType += "};\n"; |
| 4292 | // Insert this type in global scope. It is needed by helper function. |
Fariborz Jahanian | dfa4fa0 | 2010-01-16 19:36:43 +0000 | [diff] [blame] | 4293 | SourceLocation FunLocStart; |
| 4294 | if (CurFunctionDef) |
| 4295 | FunLocStart = CurFunctionDef->getTypeSpecStartLoc(); |
| 4296 | else { |
| 4297 | assert(CurMethodDef && "RewriteByRefVar - CurMethodDef is null"); |
| 4298 | FunLocStart = CurMethodDef->getLocStart(); |
| 4299 | } |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 4300 | InsertText(FunLocStart, ByrefType); |
Fariborz Jahanian | 2086d54 | 2010-01-05 19:21:35 +0000 | [diff] [blame] | 4301 | if (Ty.isObjCGCWeak()) { |
| 4302 | flag |= BLOCK_FIELD_IS_WEAK; |
| 4303 | isa = 1; |
| 4304 | } |
| 4305 | |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4306 | if (HasCopyAndDispose) { |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4307 | flag = BLOCK_BYREF_CALLER; |
| 4308 | QualType Ty = ND->getType(); |
| 4309 | // FIXME. Handle __weak variable (BLOCK_FIELD_IS_WEAK) as well. |
| 4310 | if (Ty->isBlockPointerType()) |
| 4311 | flag |= BLOCK_FIELD_IS_BLOCK; |
| 4312 | else |
| 4313 | flag |= BLOCK_FIELD_IS_OBJECT; |
| 4314 | std::string HF = SynthesizeByrefCopyDestroyHelper(ND, flag); |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4315 | if (!HF.empty()) |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 4316 | InsertText(FunLocStart, HF); |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4317 | } |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4318 | |
| 4319 | // struct __Block_byref_ND ND = |
| 4320 | // {0, &ND, some_flag, __size=sizeof(struct __Block_byref_ND), |
| 4321 | // initializer-if-any}; |
| 4322 | bool hasInit = (ND->getInit() != 0); |
Fariborz Jahanian | e1f84f8 | 2010-01-05 18:15:57 +0000 | [diff] [blame] | 4323 | unsigned flags = 0; |
| 4324 | if (HasCopyAndDispose) |
| 4325 | flags |= BLOCK_HAS_COPY_DISPOSE; |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4326 | Name = ND->getNameAsString(); |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 4327 | ByrefType.clear(); |
| 4328 | RewriteByRefString(ByrefType, Name, ND); |
Fariborz Jahanian | 2663f52 | 2010-02-04 00:07:58 +0000 | [diff] [blame] | 4329 | std::string ForwardingCastType("("); |
| 4330 | ForwardingCastType += ByrefType + " *)"; |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4331 | if (!hasInit) { |
Fariborz Jahanian | 2086d54 | 2010-01-05 19:21:35 +0000 | [diff] [blame] | 4332 | ByrefType += " " + Name + " = {(void*)"; |
| 4333 | ByrefType += utostr(isa); |
Fariborz Jahanian | 2663f52 | 2010-02-04 00:07:58 +0000 | [diff] [blame] | 4334 | ByrefType += "," + ForwardingCastType + "&" + Name + ", "; |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4335 | ByrefType += utostr(flags); |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 4336 | ByrefType += ", "; |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 4337 | ByrefType += "sizeof("; |
| 4338 | RewriteByRefString(ByrefType, Name, ND); |
| 4339 | ByrefType += ")"; |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4340 | if (HasCopyAndDispose) { |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4341 | ByrefType += ", __Block_byref_id_object_copy_"; |
| 4342 | ByrefType += utostr(flag); |
| 4343 | ByrefType += ", __Block_byref_id_object_dispose_"; |
| 4344 | ByrefType += utostr(flag); |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4345 | } |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4346 | ByrefType += "};\n"; |
Fariborz Jahanian | 822ac87 | 2011-03-31 22:49:32 +0000 | [diff] [blame] | 4347 | unsigned nameSize = Name.size(); |
| 4348 | // for block or function pointer declaration. Name is aleady |
| 4349 | // part of the declaration. |
| 4350 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) |
| 4351 | nameSize = 1; |
| 4352 | ReplaceText(DeclLoc, endBuf-startBuf+nameSize, ByrefType); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4353 | } |
| 4354 | else { |
Fariborz Jahanian | dfa4fa0 | 2010-01-16 19:36:43 +0000 | [diff] [blame] | 4355 | SourceLocation startLoc; |
| 4356 | Expr *E = ND->getInit(); |
| 4357 | if (const CStyleCastExpr *ECE = dyn_cast<CStyleCastExpr>(E)) |
| 4358 | startLoc = ECE->getLParenLoc(); |
| 4359 | else |
| 4360 | startLoc = E->getLocStart(); |
Chandler Carruth | 4027853 | 2011-07-25 16:49:02 +0000 | [diff] [blame] | 4361 | startLoc = SM->getExpansionLoc(startLoc); |
Fariborz Jahanian | dfa4fa0 | 2010-01-16 19:36:43 +0000 | [diff] [blame] | 4362 | endBuf = SM->getCharacterData(startLoc); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4363 | ByrefType += " " + Name; |
Fariborz Jahanian | dfa4fa0 | 2010-01-16 19:36:43 +0000 | [diff] [blame] | 4364 | ByrefType += " = {(void*)"; |
Fariborz Jahanian | 2086d54 | 2010-01-05 19:21:35 +0000 | [diff] [blame] | 4365 | ByrefType += utostr(isa); |
Fariborz Jahanian | 2663f52 | 2010-02-04 00:07:58 +0000 | [diff] [blame] | 4366 | ByrefType += "," + ForwardingCastType + "&" + Name + ", "; |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4367 | ByrefType += utostr(flags); |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 4368 | ByrefType += ", "; |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 4369 | ByrefType += "sizeof("; |
| 4370 | RewriteByRefString(ByrefType, Name, ND); |
| 4371 | ByrefType += "), "; |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4372 | if (HasCopyAndDispose) { |
Fariborz Jahanian | ab10b2e | 2010-01-05 18:04:40 +0000 | [diff] [blame] | 4373 | ByrefType += "__Block_byref_id_object_copy_"; |
| 4374 | ByrefType += utostr(flag); |
| 4375 | ByrefType += ", __Block_byref_id_object_dispose_"; |
| 4376 | ByrefType += utostr(flag); |
| 4377 | ByrefType += ", "; |
Fariborz Jahanian | d2eb1fd | 2010-01-05 01:16:51 +0000 | [diff] [blame] | 4378 | } |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 4379 | ReplaceText(DeclLoc, endBuf-startBuf, ByrefType); |
Steve Naroff | c5143c5 | 2009-12-23 17:24:33 +0000 | [diff] [blame] | 4380 | |
| 4381 | // Complete the newly synthesized compound expression by inserting a right |
| 4382 | // curly brace before the end of the declaration. |
| 4383 | // FIXME: This approach avoids rewriting the initializer expression. It |
| 4384 | // also assumes there is only one declarator. For example, the following |
| 4385 | // isn't currently supported by this routine (in general): |
| 4386 | // |
| 4387 | // double __block BYREFVAR = 1.34, BYREFVAR2 = 1.37; |
| 4388 | // |
Fariborz Jahanian | 5f371ee | 2010-07-21 17:36:39 +0000 | [diff] [blame] | 4389 | const char *startInitializerBuf = SM->getCharacterData(startLoc); |
| 4390 | const char *semiBuf = strchr(startInitializerBuf, ';'); |
Steve Naroff | c5143c5 | 2009-12-23 17:24:33 +0000 | [diff] [blame] | 4391 | assert((*semiBuf == ';') && "RewriteByRefVar: can't find ';'"); |
| 4392 | SourceLocation semiLoc = |
Argyrios Kyrtzidis | a64ccef | 2011-09-19 20:40:19 +0000 | [diff] [blame] | 4393 | startLoc.getLocWithOffset(semiBuf-startInitializerBuf); |
Steve Naroff | c5143c5 | 2009-12-23 17:24:33 +0000 | [diff] [blame] | 4394 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 4395 | InsertText(semiLoc, "}"); |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4396 | } |
Fariborz Jahanian | 1be6b46 | 2009-12-22 00:48:54 +0000 | [diff] [blame] | 4397 | return; |
| 4398 | } |
| 4399 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4400 | void RewriteObjC::CollectBlockDeclRefInfo(BlockExpr *Exp) { |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4401 | // Add initializers for any closure decl refs. |
| 4402 | GetBlockDeclRefExprs(Exp->getBody()); |
| 4403 | if (BlockDeclRefs.size()) { |
| 4404 | // Unique all "by copy" declarations. |
| 4405 | for (unsigned i = 0; i < BlockDeclRefs.size(); i++) |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 4406 | if (!BlockDeclRefs[i]->isByRef()) { |
| 4407 | if (!BlockByCopyDeclsPtrSet.count(BlockDeclRefs[i]->getDecl())) { |
| 4408 | BlockByCopyDeclsPtrSet.insert(BlockDeclRefs[i]->getDecl()); |
| 4409 | BlockByCopyDecls.push_back(BlockDeclRefs[i]->getDecl()); |
| 4410 | } |
| 4411 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4412 | // Unique all "by ref" declarations. |
| 4413 | for (unsigned i = 0; i < BlockDeclRefs.size(); i++) |
| 4414 | if (BlockDeclRefs[i]->isByRef()) { |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 4415 | if (!BlockByRefDeclsPtrSet.count(BlockDeclRefs[i]->getDecl())) { |
| 4416 | BlockByRefDeclsPtrSet.insert(BlockDeclRefs[i]->getDecl()); |
| 4417 | BlockByRefDecls.push_back(BlockDeclRefs[i]->getDecl()); |
| 4418 | } |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4419 | } |
| 4420 | // Find any imported blocks...they will need special attention. |
| 4421 | for (unsigned i = 0; i < BlockDeclRefs.size(); i++) |
Fariborz Jahanian | 4fcc4fd | 2009-12-21 23:31:42 +0000 | [diff] [blame] | 4422 | if (BlockDeclRefs[i]->isByRef() || |
| 4423 | BlockDeclRefs[i]->getType()->isObjCObjectPointerType() || |
Fariborz Jahanian | 5b011b0 | 2010-02-26 21:46:27 +0000 | [diff] [blame] | 4424 | BlockDeclRefs[i]->getType()->isBlockPointerType()) |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4425 | ImportedBlockDecls.insert(BlockDeclRefs[i]->getDecl()); |
Steve Naroff | 5405523 | 2008-10-27 17:20:55 +0000 | [diff] [blame] | 4426 | } |
| 4427 | } |
| 4428 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4429 | FunctionDecl *RewriteObjC::SynthBlockInitFunctionDecl(StringRef name) { |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4430 | IdentifierInfo *ID = &Context->Idents.get(name); |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 4431 | QualType FType = Context->getFunctionNoProtoType(Context->VoidPtrTy); |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 4432 | return FunctionDecl::Create(*Context, TUDecl, SourceLocation(), |
| 4433 | SourceLocation(), ID, FType, 0, SC_Extern, |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 4434 | SC_None, false, false); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4435 | } |
| 4436 | |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 4437 | Stmt *RewriteObjC::SynthBlockInitExpr(BlockExpr *Exp, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4438 | const SmallVector<BlockDeclRefExpr *, 8> &InnerBlockDeclRefs) { |
Fariborz Jahanian | 05318d8 | 2011-02-16 22:37:10 +0000 | [diff] [blame] | 4439 | const BlockDecl *block = Exp->getBlockDecl(); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4440 | Blocks.push_back(Exp); |
| 4441 | |
| 4442 | CollectBlockDeclRefInfo(Exp); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 4443 | |
| 4444 | // Add inner imported variables now used in current block. |
| 4445 | int countOfInnerDecls = 0; |
Fariborz Jahanian | 1276bfe | 2010-02-26 22:36:30 +0000 | [diff] [blame] | 4446 | if (!InnerBlockDeclRefs.empty()) { |
| 4447 | for (unsigned i = 0; i < InnerBlockDeclRefs.size(); i++) { |
| 4448 | BlockDeclRefExpr *Exp = InnerBlockDeclRefs[i]; |
| 4449 | ValueDecl *VD = Exp->getDecl(); |
| 4450 | if (!Exp->isByRef() && !BlockByCopyDeclsPtrSet.count(VD)) { |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 4451 | // We need to save the copied-in variables in nested |
| 4452 | // blocks because it is needed at the end for some of the API generations. |
| 4453 | // See SynthesizeBlockLiterals routine. |
Fariborz Jahanian | 1276bfe | 2010-02-26 22:36:30 +0000 | [diff] [blame] | 4454 | InnerDeclRefs.push_back(Exp); countOfInnerDecls++; |
| 4455 | BlockDeclRefs.push_back(Exp); |
| 4456 | BlockByCopyDeclsPtrSet.insert(VD); |
| 4457 | BlockByCopyDecls.push_back(VD); |
| 4458 | } |
| 4459 | if (Exp->isByRef() && !BlockByRefDeclsPtrSet.count(VD)) { |
| 4460 | InnerDeclRefs.push_back(Exp); countOfInnerDecls++; |
| 4461 | BlockDeclRefs.push_back(Exp); |
| 4462 | BlockByRefDeclsPtrSet.insert(VD); |
| 4463 | BlockByRefDecls.push_back(VD); |
| 4464 | } |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 4465 | } |
Fariborz Jahanian | 1276bfe | 2010-02-26 22:36:30 +0000 | [diff] [blame] | 4466 | // Find any imported blocks...they will need special attention. |
| 4467 | for (unsigned i = 0; i < InnerBlockDeclRefs.size(); i++) |
| 4468 | if (InnerBlockDeclRefs[i]->isByRef() || |
| 4469 | InnerBlockDeclRefs[i]->getType()->isObjCObjectPointerType() || |
| 4470 | InnerBlockDeclRefs[i]->getType()->isBlockPointerType()) |
| 4471 | ImportedBlockDecls.insert(InnerBlockDeclRefs[i]->getDecl()); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 4472 | } |
| 4473 | InnerDeclRefsCount.push_back(countOfInnerDecls); |
| 4474 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4475 | std::string FuncName; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4476 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4477 | if (CurFunctionDef) |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 4478 | FuncName = CurFunctionDef->getNameAsString(); |
Fariborz Jahanian | e61a1d4 | 2010-02-10 20:18:25 +0000 | [diff] [blame] | 4479 | else if (CurMethodDef) |
| 4480 | BuildUniqueMethodName(FuncName, CurMethodDef); |
| 4481 | else if (GlobalVarDecl) |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 4482 | FuncName = std::string(GlobalVarDecl->getNameAsString()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4483 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4484 | std::string BlockNumber = utostr(Blocks.size()-1); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4485 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4486 | std::string Tag = "__" + FuncName + "_block_impl_" + BlockNumber; |
| 4487 | std::string Func = "__" + FuncName + "_block_func_" + BlockNumber; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4488 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4489 | // Get a pointer to the function type so we can cast appropriately. |
Fariborz Jahanian | 1f90622 | 2010-05-25 15:56:08 +0000 | [diff] [blame] | 4490 | QualType BFT = convertFunctionTypeOfBlocks(Exp->getFunctionType()); |
| 4491 | QualType FType = Context->getPointerType(BFT); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4492 | |
| 4493 | FunctionDecl *FD; |
| 4494 | Expr *NewRep; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4495 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4496 | // Simulate a contructor call... |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 4497 | FD = SynthBlockInitFunctionDecl(Tag); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4498 | DeclRefExpr *DRE = new (Context) DeclRefExpr(FD, FType, VK_RValue, |
| 4499 | SourceLocation()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4500 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4501 | SmallVector<Expr*, 4> InitExprs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4502 | |
Steve Naroff | fdc0372 | 2008-10-29 21:23:59 +0000 | [diff] [blame] | 4503 | // Initialize the block function. |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 4504 | FD = SynthBlockInitFunctionDecl(Func); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4505 | DeclRefExpr *Arg = new (Context) DeclRefExpr(FD, FD->getType(), VK_LValue, |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 4506 | SourceLocation()); |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 4507 | CastExpr *castExpr = NoTypeInfoCStyleCastExpr(Context, Context->VoidPtrTy, |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 4508 | CK_BitCast, Arg); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4509 | InitExprs.push_back(castExpr); |
| 4510 | |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 4511 | // Initialize the block descriptor. |
| 4512 | std::string DescData = "__" + FuncName + "_block_desc_" + BlockNumber + "_DATA"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4513 | |
Abramo Bagnara | ff676cb | 2011-03-08 08:55:46 +0000 | [diff] [blame] | 4514 | VarDecl *NewVD = VarDecl::Create(*Context, TUDecl, |
| 4515 | SourceLocation(), SourceLocation(), |
| 4516 | &Context->Idents.get(DescData.c_str()), |
| 4517 | Context->VoidPtrTy, 0, |
| 4518 | SC_Static, SC_None); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4519 | UnaryOperator *DescRefExpr = |
| 4520 | new (Context) UnaryOperator(new (Context) DeclRefExpr(NewVD, |
| 4521 | Context->VoidPtrTy, |
| 4522 | VK_LValue, |
| 4523 | SourceLocation()), |
| 4524 | UO_AddrOf, |
| 4525 | Context->getPointerType(Context->VoidPtrTy), |
| 4526 | VK_RValue, OK_Ordinary, |
| 4527 | SourceLocation()); |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 4528 | InitExprs.push_back(DescRefExpr); |
| 4529 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4530 | // Add initializers for any closure decl refs. |
| 4531 | if (BlockDeclRefs.size()) { |
Steve Naroff | fdc0372 | 2008-10-29 21:23:59 +0000 | [diff] [blame] | 4532 | Expr *Exp; |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4533 | // Output all "by copy" declarations. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4534 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByCopyDecls.begin(), |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4535 | E = BlockByCopyDecls.end(); I != E; ++I) { |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4536 | if (isObjCType((*I)->getType())) { |
Steve Naroff | fdc0372 | 2008-10-29 21:23:59 +0000 | [diff] [blame] | 4537 | // FIXME: Conform to ABI ([[obj retain] autorelease]). |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 4538 | FD = SynthBlockInitFunctionDecl((*I)->getName()); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4539 | Exp = new (Context) DeclRefExpr(FD, FD->getType(), VK_LValue, |
| 4540 | SourceLocation()); |
Fariborz Jahanian | a5a7987 | 2010-05-24 18:32:56 +0000 | [diff] [blame] | 4541 | if (HasLocalVariableExternalStorage(*I)) { |
| 4542 | QualType QT = (*I)->getType(); |
| 4543 | QT = Context->getPointerType(QT); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4544 | Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue, |
| 4545 | OK_Ordinary, SourceLocation()); |
Fariborz Jahanian | a5a7987 | 2010-05-24 18:32:56 +0000 | [diff] [blame] | 4546 | } |
Steve Naroff | 01f2ffa | 2008-12-11 21:05:33 +0000 | [diff] [blame] | 4547 | } else if (isTopLevelBlockPointerType((*I)->getType())) { |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 4548 | FD = SynthBlockInitFunctionDecl((*I)->getName()); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4549 | Arg = new (Context) DeclRefExpr(FD, FD->getType(), VK_LValue, |
| 4550 | SourceLocation()); |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 4551 | Exp = NoTypeInfoCStyleCastExpr(Context, Context->VoidPtrTy, |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 4552 | CK_BitCast, Arg); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4553 | } else { |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 4554 | FD = SynthBlockInitFunctionDecl((*I)->getName()); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4555 | Exp = new (Context) DeclRefExpr(FD, FD->getType(), VK_LValue, |
| 4556 | SourceLocation()); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 4557 | if (HasLocalVariableExternalStorage(*I)) { |
| 4558 | QualType QT = (*I)->getType(); |
| 4559 | QT = Context->getPointerType(QT); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4560 | Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, QT, VK_RValue, |
| 4561 | OK_Ordinary, SourceLocation()); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 4562 | } |
| 4563 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4564 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4565 | InitExprs.push_back(Exp); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4566 | } |
| 4567 | // Output all "by ref" declarations. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4568 | for (SmallVector<ValueDecl*,8>::iterator I = BlockByRefDecls.begin(), |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4569 | E = BlockByRefDecls.end(); I != E; ++I) { |
Fariborz Jahanian | 2663f52 | 2010-02-04 00:07:58 +0000 | [diff] [blame] | 4570 | ValueDecl *ND = (*I); |
| 4571 | std::string Name(ND->getNameAsString()); |
| 4572 | std::string RecName; |
Fariborz Jahanian | 1e8011e | 2011-01-27 23:18:15 +0000 | [diff] [blame] | 4573 | RewriteByRefString(RecName, Name, ND, true); |
Fariborz Jahanian | 2663f52 | 2010-02-04 00:07:58 +0000 | [diff] [blame] | 4574 | IdentifierInfo *II = &Context->Idents.get(RecName.c_str() |
| 4575 | + sizeof("struct")); |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 4576 | RecordDecl *RD = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
Abramo Bagnara | ba877ad | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 4577 | SourceLocation(), SourceLocation(), |
| 4578 | II); |
Fariborz Jahanian | 2663f52 | 2010-02-04 00:07:58 +0000 | [diff] [blame] | 4579 | assert(RD && "SynthBlockInitExpr(): Can't find RecordDecl"); |
| 4580 | QualType castT = Context->getPointerType(Context->getTagDeclType(RD)); |
| 4581 | |
Daniel Dunbar | 4087f27 | 2010-08-17 22:39:59 +0000 | [diff] [blame] | 4582 | FD = SynthBlockInitFunctionDecl((*I)->getName()); |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4583 | Exp = new (Context) DeclRefExpr(FD, FD->getType(), VK_LValue, |
| 4584 | SourceLocation()); |
Fariborz Jahanian | 05318d8 | 2011-02-16 22:37:10 +0000 | [diff] [blame] | 4585 | bool isNestedCapturedVar = false; |
| 4586 | if (block) |
| 4587 | for (BlockDecl::capture_const_iterator ci = block->capture_begin(), |
| 4588 | ce = block->capture_end(); ci != ce; ++ci) { |
| 4589 | const VarDecl *variable = ci->getVariable(); |
| 4590 | if (variable == ND && ci->isNested()) { |
| 4591 | assert (ci->isByRef() && |
| 4592 | "SynthBlockInitExpr - captured block variable is not byref"); |
| 4593 | isNestedCapturedVar = true; |
| 4594 | break; |
| 4595 | } |
| 4596 | } |
| 4597 | // captured nested byref variable has its address passed. Do not take |
| 4598 | // its address again. |
| 4599 | if (!isNestedCapturedVar) |
| 4600 | Exp = new (Context) UnaryOperator(Exp, UO_AddrOf, |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4601 | Context->getPointerType(Exp->getType()), |
| 4602 | VK_RValue, OK_Ordinary, SourceLocation()); |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 4603 | Exp = NoTypeInfoCStyleCastExpr(Context, castT, CK_BitCast, Exp); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4604 | InitExprs.push_back(Exp); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4605 | } |
| 4606 | } |
Fariborz Jahanian | ff12788 | 2009-12-23 21:52:32 +0000 | [diff] [blame] | 4607 | if (ImportedBlockDecls.size()) { |
| 4608 | // generate BLOCK_HAS_COPY_DISPOSE(have helper funcs) | BLOCK_HAS_DESCRIPTOR |
| 4609 | int flag = (BLOCK_HAS_COPY_DISPOSE | BLOCK_HAS_DESCRIPTOR); |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 4610 | unsigned IntSize = |
| 4611 | static_cast<unsigned>(Context->getTypeSize(Context->IntTy)); |
Argyrios Kyrtzidis | 9996a7f | 2010-08-28 09:06:06 +0000 | [diff] [blame] | 4612 | Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag), |
| 4613 | Context->IntTy, SourceLocation()); |
Fariborz Jahanian | ff12788 | 2009-12-23 21:52:32 +0000 | [diff] [blame] | 4614 | InitExprs.push_back(FlagExp); |
Steve Naroff | 01aec11 | 2009-12-06 21:14:13 +0000 | [diff] [blame] | 4615 | } |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 4616 | NewRep = new (Context) CallExpr(*Context, DRE, &InitExprs[0], InitExprs.size(), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4617 | FType, VK_LValue, SourceLocation()); |
John McCall | 2de56d1 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 4618 | NewRep = new (Context) UnaryOperator(NewRep, UO_AddrOf, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4619 | Context->getPointerType(NewRep->getType()), |
John McCall | f89e55a | 2010-11-18 06:31:45 +0000 | [diff] [blame] | 4620 | VK_RValue, OK_Ordinary, SourceLocation()); |
John McCall | a5bbc50 | 2010-11-15 09:46:46 +0000 | [diff] [blame] | 4621 | NewRep = NoTypeInfoCStyleCastExpr(Context, FType, CK_BitCast, |
John McCall | 9d12503 | 2010-01-15 18:39:57 +0000 | [diff] [blame] | 4622 | NewRep); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4623 | BlockDeclRefs.clear(); |
| 4624 | BlockByRefDecls.clear(); |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 4625 | BlockByRefDeclsPtrSet.clear(); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4626 | BlockByCopyDecls.clear(); |
Fariborz Jahanian | bab7168 | 2010-02-11 23:35:57 +0000 | [diff] [blame] | 4627 | BlockByCopyDeclsPtrSet.clear(); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4628 | ImportedBlockDecls.clear(); |
| 4629 | return NewRep; |
| 4630 | } |
| 4631 | |
Fariborz Jahanian | 42f1e65 | 2011-02-24 21:29:21 +0000 | [diff] [blame] | 4632 | bool RewriteObjC::IsDeclStmtInForeachHeader(DeclStmt *DS) { |
| 4633 | if (const ObjCForCollectionStmt * CS = |
| 4634 | dyn_cast<ObjCForCollectionStmt>(Stmts.back())) |
| 4635 | return CS->getElement() == DS; |
| 4636 | return false; |
| 4637 | } |
| 4638 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4639 | //===----------------------------------------------------------------------===// |
| 4640 | // Function Body / Expression rewriting |
| 4641 | //===----------------------------------------------------------------------===// |
| 4642 | |
| 4643 | Stmt *RewriteObjC::RewriteFunctionBodyOrGlobalInitializer(Stmt *S) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4644 | if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4645 | isa<DoStmt>(S) || isa<ForStmt>(S)) |
| 4646 | Stmts.push_back(S); |
| 4647 | else if (isa<ObjCForCollectionStmt>(S)) { |
| 4648 | Stmts.push_back(S); |
Chris Lattner | 4824fcd | 2010-01-09 21:45:57 +0000 | [diff] [blame] | 4649 | ObjCBcLabelNo.push_back(++BcLabelCount); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4650 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4651 | |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 4652 | // Pseudo-object operations and ivar references need special |
| 4653 | // treatment because we're going to recursively rewrite them. |
| 4654 | if (PseudoObjectExpr *PseudoOp = dyn_cast<PseudoObjectExpr>(S)) { |
| 4655 | if (isa<BinaryOperator>(PseudoOp->getSyntacticForm())) { |
| 4656 | return RewritePropertyOrImplicitSetter(PseudoOp); |
| 4657 | } else { |
| 4658 | return RewritePropertyOrImplicitGetter(PseudoOp); |
| 4659 | } |
| 4660 | } else if (ObjCIvarRefExpr *IvarRefExpr = dyn_cast<ObjCIvarRefExpr>(S)) { |
| 4661 | return RewriteObjCIvarRefExpr(IvarRefExpr); |
| 4662 | } |
| 4663 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4664 | SourceRange OrigStmtRange = S->getSourceRange(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4665 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4666 | // Perform a bottom up rewrite of all children. |
John McCall | 7502c1d | 2011-02-13 04:07:26 +0000 | [diff] [blame] | 4667 | for (Stmt::child_range CI = S->children(); CI; ++CI) |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4668 | if (*CI) { |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 4669 | Stmt *childStmt = (*CI); |
| 4670 | Stmt *newStmt = RewriteFunctionBodyOrGlobalInitializer(childStmt); |
Fariborz Jahanian | 1d01531 | 2011-04-11 21:17:02 +0000 | [diff] [blame] | 4671 | if (newStmt) { |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 4672 | *CI = newStmt; |
Fariborz Jahanian | 1d01531 | 2011-04-11 21:17:02 +0000 | [diff] [blame] | 4673 | } |
Nick Lewycky | 7e74924 | 2010-10-31 21:07:24 +0000 | [diff] [blame] | 4674 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4675 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4676 | if (BlockExpr *BE = dyn_cast<BlockExpr>(S)) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4677 | SmallVector<BlockDeclRefExpr *, 8> InnerBlockDeclRefs; |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 4678 | llvm::SmallPtrSet<const DeclContext *, 8> InnerContexts; |
| 4679 | InnerContexts.insert(BE->getBlockDecl()); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 4680 | ImportedLocalExternalDecls.clear(); |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 4681 | GetInnerBlockDeclRefExprs(BE->getBody(), |
Fariborz Jahanian | 72952fc | 2010-03-01 23:36:21 +0000 | [diff] [blame] | 4682 | InnerBlockDeclRefs, InnerContexts); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4683 | // Rewrite the block body in place. |
Fariborz Jahanian | da4ad9f | 2010-11-08 18:37:50 +0000 | [diff] [blame] | 4684 | Stmt *SaveCurrentBody = CurrentBody; |
| 4685 | CurrentBody = BE->getBody(); |
| 4686 | PropParentMap = 0; |
Fariborz Jahanian | f23a0ff | 2011-08-02 20:28:46 +0000 | [diff] [blame] | 4687 | // block literal on rhs of a property-dot-sytax assignment |
| 4688 | // must be replaced by its synthesize ast so getRewrittenText |
| 4689 | // works as expected. In this case, what actually ends up on RHS |
| 4690 | // is the blockTranscribed which is the helper function for the |
| 4691 | // block literal; as in: self.c = ^() {[ace ARR];}; |
| 4692 | bool saveDisableReplaceStmt = DisableReplaceStmt; |
| 4693 | DisableReplaceStmt = false; |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4694 | RewriteFunctionBodyOrGlobalInitializer(BE->getBody()); |
Fariborz Jahanian | f23a0ff | 2011-08-02 20:28:46 +0000 | [diff] [blame] | 4695 | DisableReplaceStmt = saveDisableReplaceStmt; |
Fariborz Jahanian | da4ad9f | 2010-11-08 18:37:50 +0000 | [diff] [blame] | 4696 | CurrentBody = SaveCurrentBody; |
| 4697 | PropParentMap = 0; |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 4698 | ImportedLocalExternalDecls.clear(); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4699 | // Now we snarf the rewritten text and stash it away for later use. |
Fariborz Jahanian | f23a0ff | 2011-08-02 20:28:46 +0000 | [diff] [blame] | 4700 | std::string Str = Rewrite.getRewrittenText(BE->getSourceRange()); |
Steve Naroff | 8e2f57a | 2008-10-29 18:15:37 +0000 | [diff] [blame] | 4701 | RewrittenBlockExprs[BE] = Str; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4702 | |
Fariborz Jahanian | 5e49b2f | 2010-02-24 22:48:18 +0000 | [diff] [blame] | 4703 | Stmt *blockTranscribed = SynthBlockInitExpr(BE, InnerBlockDeclRefs); |
| 4704 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4705 | //blockTranscribed->dump(); |
Steve Naroff | 8e2f57a | 2008-10-29 18:15:37 +0000 | [diff] [blame] | 4706 | ReplaceStmt(S, blockTranscribed); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4707 | return blockTranscribed; |
| 4708 | } |
| 4709 | // Handle specific things. |
| 4710 | if (ObjCEncodeExpr *AtEncode = dyn_cast<ObjCEncodeExpr>(S)) |
| 4711 | return RewriteAtEncode(AtEncode); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4712 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4713 | if (ObjCSelectorExpr *AtSelector = dyn_cast<ObjCSelectorExpr>(S)) |
| 4714 | return RewriteAtSelector(AtSelector); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4715 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4716 | if (ObjCStringLiteral *AtString = dyn_cast<ObjCStringLiteral>(S)) |
| 4717 | return RewriteObjCStringLiteral(AtString); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4718 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4719 | if (ObjCMessageExpr *MessExpr = dyn_cast<ObjCMessageExpr>(S)) { |
Steve Naroff | c77a636 | 2008-12-04 16:24:46 +0000 | [diff] [blame] | 4720 | #if 0 |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4721 | // Before we rewrite it, put the original message expression in a comment. |
| 4722 | SourceLocation startLoc = MessExpr->getLocStart(); |
| 4723 | SourceLocation endLoc = MessExpr->getLocEnd(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4724 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4725 | const char *startBuf = SM->getCharacterData(startLoc); |
| 4726 | const char *endBuf = SM->getCharacterData(endLoc); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4727 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4728 | std::string messString; |
| 4729 | messString += "// "; |
| 4730 | messString.append(startBuf, endBuf-startBuf+1); |
| 4731 | messString += "\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4732 | |
| 4733 | // FIXME: Missing definition of |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4734 | // InsertText(clang::SourceLocation, char const*, unsigned int). |
| 4735 | // InsertText(startLoc, messString.c_str(), messString.size()); |
| 4736 | // Tried this, but it didn't work either... |
| 4737 | // ReplaceText(startLoc, 0, messString.c_str(), messString.size()); |
Steve Naroff | c77a636 | 2008-12-04 16:24:46 +0000 | [diff] [blame] | 4738 | #endif |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4739 | return RewriteMessageExpr(MessExpr); |
| 4740 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4741 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4742 | if (ObjCAtTryStmt *StmtTry = dyn_cast<ObjCAtTryStmt>(S)) |
| 4743 | return RewriteObjCTryStmt(StmtTry); |
| 4744 | |
| 4745 | if (ObjCAtSynchronizedStmt *StmtTry = dyn_cast<ObjCAtSynchronizedStmt>(S)) |
| 4746 | return RewriteObjCSynchronizedStmt(StmtTry); |
| 4747 | |
| 4748 | if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) |
| 4749 | return RewriteObjCThrowStmt(StmtThrow); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4750 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4751 | if (ObjCProtocolExpr *ProtocolExp = dyn_cast<ObjCProtocolExpr>(S)) |
| 4752 | return RewriteObjCProtocolExpr(ProtocolExp); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4753 | |
| 4754 | if (ObjCForCollectionStmt *StmtForCollection = |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4755 | dyn_cast<ObjCForCollectionStmt>(S)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4756 | return RewriteObjCForCollectionStmt(StmtForCollection, |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4757 | OrigStmtRange.getEnd()); |
| 4758 | if (BreakStmt *StmtBreakStmt = |
| 4759 | dyn_cast<BreakStmt>(S)) |
| 4760 | return RewriteBreakStmt(StmtBreakStmt); |
| 4761 | if (ContinueStmt *StmtContinueStmt = |
| 4762 | dyn_cast<ContinueStmt>(S)) |
| 4763 | return RewriteContinueStmt(StmtContinueStmt); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4764 | |
| 4765 | // Need to check for protocol refs (id <P>, Foo <P> *) in variable decls |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4766 | // and cast exprs. |
| 4767 | if (DeclStmt *DS = dyn_cast<DeclStmt>(S)) { |
| 4768 | // FIXME: What we're doing here is modifying the type-specifier that |
| 4769 | // precedes the first Decl. In the future the DeclGroup should have |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4770 | // a separate type-specifier that we can rewrite. |
Steve Naroff | 3d7e786 | 2009-12-05 15:55:59 +0000 | [diff] [blame] | 4771 | // NOTE: We need to avoid rewriting the DeclStmt if it is within |
| 4772 | // the context of an ObjCForCollectionStmt. For example: |
| 4773 | // NSArray *someArray; |
| 4774 | // for (id <FooProtocol> index in someArray) ; |
| 4775 | // This is because RewriteObjCForCollectionStmt() does textual rewriting |
| 4776 | // and it depends on the original text locations/positions. |
Fariborz Jahanian | 42f1e65 | 2011-02-24 21:29:21 +0000 | [diff] [blame] | 4777 | if (Stmts.empty() || !IsDeclStmtInForeachHeader(DS)) |
Steve Naroff | 3d7e786 | 2009-12-05 15:55:59 +0000 | [diff] [blame] | 4778 | RewriteObjCQualifiedInterfaceTypes(*DS->decl_begin()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4779 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4780 | // Blocks rewrite rules. |
| 4781 | for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end(); |
| 4782 | DI != DE; ++DI) { |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 4783 | Decl *SD = *DI; |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4784 | if (ValueDecl *ND = dyn_cast<ValueDecl>(SD)) { |
Steve Naroff | 01f2ffa | 2008-12-11 21:05:33 +0000 | [diff] [blame] | 4785 | if (isTopLevelBlockPointerType(ND->getType())) |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4786 | RewriteBlockPointerDecl(ND); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4787 | else if (ND->getType()->isFunctionPointerType()) |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4788 | CheckFunctionPointerDecl(ND->getType(), ND); |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 4789 | if (VarDecl *VD = dyn_cast<VarDecl>(SD)) { |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 4790 | if (VD->hasAttr<BlocksAttr>()) { |
| 4791 | static unsigned uniqueByrefDeclCount = 0; |
| 4792 | assert(!BlockByRefDeclNo.count(ND) && |
| 4793 | "RewriteFunctionBodyOrGlobalInitializer: Duplicate byref decl"); |
| 4794 | BlockByRefDeclNo[ND] = uniqueByrefDeclCount++; |
Fariborz Jahanian | 52b08f2 | 2009-12-23 02:07:37 +0000 | [diff] [blame] | 4795 | RewriteByRefVar(VD); |
Fariborz Jahanian | a73165e | 2010-01-14 23:05:52 +0000 | [diff] [blame] | 4796 | } |
Fariborz Jahanian | 4c863ef | 2010-02-10 18:54:22 +0000 | [diff] [blame] | 4797 | else |
| 4798 | RewriteTypeOfDecl(VD); |
| 4799 | } |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4800 | } |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 4801 | if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(SD)) { |
Steve Naroff | 01f2ffa | 2008-12-11 21:05:33 +0000 | [diff] [blame] | 4802 | if (isTopLevelBlockPointerType(TD->getUnderlyingType())) |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4803 | RewriteBlockPointerDecl(TD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4804 | else if (TD->getUnderlyingType()->isFunctionPointerType()) |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4805 | CheckFunctionPointerDecl(TD->getUnderlyingType(), TD); |
| 4806 | } |
| 4807 | } |
| 4808 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4809 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4810 | if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(S)) |
| 4811 | RewriteObjCQualifiedInterfaceTypes(CE); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4812 | |
| 4813 | if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4814 | isa<DoStmt>(S) || isa<ForStmt>(S)) { |
| 4815 | assert(!Stmts.empty() && "Statement stack is empty"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4816 | assert ((isa<SwitchStmt>(Stmts.back()) || isa<WhileStmt>(Stmts.back()) || |
| 4817 | isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back())) |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4818 | && "Statement stack mismatch"); |
| 4819 | Stmts.pop_back(); |
| 4820 | } |
| 4821 | // Handle blocks rewriting. |
| 4822 | if (BlockDeclRefExpr *BDRE = dyn_cast<BlockDeclRefExpr>(S)) { |
| 4823 | if (BDRE->isByRef()) |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 4824 | return RewriteBlockDeclRefExpr(BDRE); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4825 | } |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 4826 | if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(S)) { |
| 4827 | ValueDecl *VD = DRE->getDecl(); |
| 4828 | if (VD->hasAttr<BlocksAttr>()) |
| 4829 | return RewriteBlockDeclRefExpr(DRE); |
Fariborz Jahanian | 6cb6eb4 | 2010-03-11 18:20:03 +0000 | [diff] [blame] | 4830 | if (HasLocalVariableExternalStorage(VD)) |
| 4831 | return RewriteLocalVariableExternalStorage(DRE); |
Fariborz Jahanian | f381cc9 | 2010-01-04 19:50:07 +0000 | [diff] [blame] | 4832 | } |
| 4833 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4834 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 4835 | if (CE->getCallee()->getType()->isBlockPointerType()) { |
Fariborz Jahanian | 8a9e170 | 2009-12-15 17:30:20 +0000 | [diff] [blame] | 4836 | Stmt *BlockCall = SynthesizeBlockCall(CE, CE->getCallee()); |
Steve Naroff | aa4d5ae | 2008-10-30 10:07:53 +0000 | [diff] [blame] | 4837 | ReplaceStmt(S, BlockCall); |
| 4838 | return BlockCall; |
| 4839 | } |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4840 | } |
Steve Naroff | b2f9e51 | 2008-11-03 23:29:32 +0000 | [diff] [blame] | 4841 | if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(S)) { |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4842 | RewriteCastExpr(CE); |
| 4843 | } |
| 4844 | #if 0 |
| 4845 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(S)) { |
Sebastian Redl | 906082e | 2010-07-20 04:20:21 +0000 | [diff] [blame] | 4846 | CastExpr *Replacement = new (Context) CastExpr(ICE->getType(), |
| 4847 | ICE->getSubExpr(), |
| 4848 | SourceLocation()); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4849 | // Get the new text. |
| 4850 | std::string SStr; |
| 4851 | llvm::raw_string_ostream Buf(SStr); |
Eli Friedman | 3a9eb44 | 2009-05-30 05:19:26 +0000 | [diff] [blame] | 4852 | Replacement->printPretty(Buf, *Context); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4853 | const std::string &Str = Buf.str(); |
| 4854 | |
| 4855 | printf("CAST = %s\n", &Str[0]); |
| 4856 | InsertText(ICE->getSubExpr()->getLocStart(), &Str[0], Str.size()); |
| 4857 | delete S; |
| 4858 | return Replacement; |
| 4859 | } |
| 4860 | #endif |
| 4861 | // Return this stmt unmodified. |
| 4862 | return S; |
| 4863 | } |
| 4864 | |
Steve Naroff | 3d7e786 | 2009-12-05 15:55:59 +0000 | [diff] [blame] | 4865 | void RewriteObjC::RewriteRecordBody(RecordDecl *RD) { |
| 4866 | for (RecordDecl::field_iterator i = RD->field_begin(), |
| 4867 | e = RD->field_end(); i != e; ++i) { |
| 4868 | FieldDecl *FD = *i; |
| 4869 | if (isTopLevelBlockPointerType(FD->getType())) |
| 4870 | RewriteBlockPointerDecl(FD); |
| 4871 | if (FD->getType()->isObjCQualifiedIdType() || |
| 4872 | FD->getType()->isObjCQualifiedInterfaceType()) |
| 4873 | RewriteObjCQualifiedInterfaceTypes(FD); |
| 4874 | } |
| 4875 | } |
| 4876 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4877 | /// HandleDeclInMainFile - This is called for each top-level decl defined in the |
| 4878 | /// main file of the input. |
| 4879 | void RewriteObjC::HandleDeclInMainFile(Decl *D) { |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4880 | switch (D->getKind()) { |
| 4881 | case Decl::Function: { |
| 4882 | FunctionDecl *FD = cast<FunctionDecl>(D); |
| 4883 | if (FD->isOverloadedOperator()) |
| 4884 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4885 | |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4886 | // Since function prototypes don't have ParmDecl's, we check the function |
| 4887 | // prototype. This enables us to rewrite function declarations and |
| 4888 | // definitions using the same code. |
| 4889 | RewriteBlocksInFunctionProtoType(FD->getType(), FD); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4890 | |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4891 | // FIXME: If this should support Obj-C++, support CXXTryStmt |
| 4892 | if (CompoundStmt *Body = dyn_cast_or_null<CompoundStmt>(FD->getBody())) { |
| 4893 | CurFunctionDef = FD; |
| 4894 | CurFunctionDeclToDeclareForBlock = FD; |
| 4895 | CurrentBody = Body; |
| 4896 | Body = |
| 4897 | cast_or_null<CompoundStmt>(RewriteFunctionBodyOrGlobalInitializer(Body)); |
| 4898 | FD->setBody(Body); |
| 4899 | CurrentBody = 0; |
| 4900 | if (PropParentMap) { |
| 4901 | delete PropParentMap; |
| 4902 | PropParentMap = 0; |
| 4903 | } |
| 4904 | // This synthesizes and inserts the block "impl" struct, invoke function, |
| 4905 | // and any copy/dispose helper functions. |
| 4906 | InsertBlockLiteralsWithinFunction(FD); |
| 4907 | CurFunctionDef = 0; |
| 4908 | CurFunctionDeclToDeclareForBlock = 0; |
Steve Naroff | 8599e7a | 2008-12-08 16:43:47 +0000 | [diff] [blame] | 4909 | } |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4910 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4911 | } |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4912 | case Decl::ObjCMethod: { |
| 4913 | ObjCMethodDecl *MD = cast<ObjCMethodDecl>(D); |
| 4914 | if (CompoundStmt *Body = MD->getCompoundBody()) { |
| 4915 | CurMethodDef = MD; |
| 4916 | CurrentBody = Body; |
| 4917 | Body = |
| 4918 | cast_or_null<CompoundStmt>(RewriteFunctionBodyOrGlobalInitializer(Body)); |
| 4919 | MD->setBody(Body); |
| 4920 | CurrentBody = 0; |
| 4921 | if (PropParentMap) { |
| 4922 | delete PropParentMap; |
| 4923 | PropParentMap = 0; |
| 4924 | } |
| 4925 | InsertBlockLiteralsWithinMethod(MD); |
| 4926 | CurMethodDef = 0; |
Steve Naroff | 8599e7a | 2008-12-08 16:43:47 +0000 | [diff] [blame] | 4927 | } |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4928 | break; |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4929 | } |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4930 | case Decl::ObjCImplementation: { |
| 4931 | ObjCImplementationDecl *CI = cast<ObjCImplementationDecl>(D); |
| 4932 | ClassImplementation.push_back(CI); |
| 4933 | break; |
| 4934 | } |
| 4935 | case Decl::ObjCCategoryImpl: { |
| 4936 | ObjCCategoryImplDecl *CI = cast<ObjCCategoryImplDecl>(D); |
| 4937 | CategoryImplementation.push_back(CI); |
| 4938 | break; |
| 4939 | } |
| 4940 | case Decl::Var: { |
| 4941 | VarDecl *VD = cast<VarDecl>(D); |
| 4942 | RewriteObjCQualifiedInterfaceTypes(VD); |
| 4943 | if (isTopLevelBlockPointerType(VD->getType())) |
| 4944 | RewriteBlockPointerDecl(VD); |
| 4945 | else if (VD->getType()->isFunctionPointerType()) { |
| 4946 | CheckFunctionPointerDecl(VD->getType(), VD); |
| 4947 | if (VD->getInit()) { |
| 4948 | if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(VD->getInit())) { |
| 4949 | RewriteCastExpr(CE); |
| 4950 | } |
| 4951 | } |
| 4952 | } else if (VD->getType()->isRecordType()) { |
| 4953 | RecordDecl *RD = VD->getType()->getAs<RecordType>()->getDecl(); |
| 4954 | if (RD->isCompleteDefinition()) |
| 4955 | RewriteRecordBody(RD); |
| 4956 | } |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4957 | if (VD->getInit()) { |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4958 | GlobalVarDecl = VD; |
| 4959 | CurrentBody = VD->getInit(); |
| 4960 | RewriteFunctionBodyOrGlobalInitializer(VD->getInit()); |
| 4961 | CurrentBody = 0; |
| 4962 | if (PropParentMap) { |
| 4963 | delete PropParentMap; |
| 4964 | PropParentMap = 0; |
| 4965 | } |
| 4966 | SynthesizeBlockLiterals(VD->getTypeSpecStartLoc(), VD->getName()); |
| 4967 | GlobalVarDecl = 0; |
| 4968 | |
| 4969 | // This is needed for blocks. |
Steve Naroff | b2f9e51 | 2008-11-03 23:29:32 +0000 | [diff] [blame] | 4970 | if (CStyleCastExpr *CE = dyn_cast<CStyleCastExpr>(VD->getInit())) { |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4971 | RewriteCastExpr(CE); |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4972 | } |
| 4973 | } |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4974 | break; |
| 4975 | } |
| 4976 | case Decl::TypeAlias: |
| 4977 | case Decl::Typedef: { |
| 4978 | if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) { |
| 4979 | if (isTopLevelBlockPointerType(TD->getUnderlyingType())) |
| 4980 | RewriteBlockPointerDecl(TD); |
| 4981 | else if (TD->getUnderlyingType()->isFunctionPointerType()) |
| 4982 | CheckFunctionPointerDecl(TD->getUnderlyingType(), TD); |
| 4983 | } |
| 4984 | break; |
| 4985 | } |
| 4986 | case Decl::CXXRecord: |
| 4987 | case Decl::Record: { |
| 4988 | RecordDecl *RD = cast<RecordDecl>(D); |
| 4989 | if (RD->isCompleteDefinition()) |
Steve Naroff | 3d7e786 | 2009-12-05 15:55:59 +0000 | [diff] [blame] | 4990 | RewriteRecordBody(RD); |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4991 | break; |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4992 | } |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4993 | case Decl::ObjCClass: { |
| 4994 | llvm_unreachable("RewriteObjC::HandleDeclInMainFile - ObjCClassDecl"); |
| 4995 | break; |
Steve Naroff | 8e2f57a | 2008-10-29 18:15:37 +0000 | [diff] [blame] | 4996 | } |
Fariborz Jahanian | 02f8396 | 2011-12-05 22:59:54 +0000 | [diff] [blame] | 4997 | default: |
| 4998 | break; |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 4999 | } |
| 5000 | // Nothing yet. |
| 5001 | } |
| 5002 | |
Chris Lattner | dacbc5d | 2009-03-28 04:11:33 +0000 | [diff] [blame] | 5003 | void RewriteObjC::HandleTranslationUnit(ASTContext &C) { |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 5004 | if (Diags.hasErrorOccurred()) |
| 5005 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5006 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 5007 | RewriteInclude(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5008 | |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 5009 | // Here's a great place to add any extra declarations that may be needed. |
| 5010 | // Write out meta data for each @protocol(<expr>). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5011 | for (llvm::SmallPtrSet<ObjCProtocolDecl *,8>::iterator I = ProtocolExprDecls.begin(), |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 5012 | E = ProtocolExprDecls.end(); I != E; ++I) |
| 5013 | RewriteObjCProtocolMetaData(*I, "", "", Preamble); |
| 5014 | |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 5015 | InsertText(SM->getLocForStartOfFile(MainFileID), Preamble, false); |
Steve Naroff | 0aab796 | 2008-11-14 14:10:01 +0000 | [diff] [blame] | 5016 | if (ClassImplementation.size() || CategoryImplementation.size()) |
| 5017 | RewriteImplementations(); |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 5018 | |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 5019 | // Get the buffer corresponding to MainFileID. If we haven't changed it, then |
| 5020 | // we are done. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5021 | if (const RewriteBuffer *RewriteBuf = |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 5022 | Rewrite.getRewriteBufferFor(MainFileID)) { |
| 5023 | //printf("Changed:\n"); |
| 5024 | *OutFile << std::string(RewriteBuf->begin(), RewriteBuf->end()); |
| 5025 | } else { |
Benjamin Kramer | d999b37 | 2010-02-14 14:14:16 +0000 | [diff] [blame] | 5026 | llvm::errs() << "No changes\n"; |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 5027 | } |
Steve Naroff | ace6625 | 2008-11-13 20:07:04 +0000 | [diff] [blame] | 5028 | |
Steve Naroff | 621edce | 2009-04-29 16:37:50 +0000 | [diff] [blame] | 5029 | if (ClassImplementation.size() || CategoryImplementation.size() || |
| 5030 | ProtocolExprDecls.size()) { |
Steve Naroff | 0aab796 | 2008-11-14 14:10:01 +0000 | [diff] [blame] | 5031 | // Rewrite Objective-c meta data* |
| 5032 | std::string ResultStr; |
Fariborz Jahanian | 5845717 | 2011-12-05 18:43:13 +0000 | [diff] [blame] | 5033 | RewriteMetaDataIntoBuffer(ResultStr); |
Steve Naroff | 0aab796 | 2008-11-14 14:10:01 +0000 | [diff] [blame] | 5034 | // Emit metadata. |
| 5035 | *OutFile << ResultStr; |
| 5036 | } |
Steve Naroff | fa15fd9 | 2008-10-28 20:29:00 +0000 | [diff] [blame] | 5037 | OutFile->flush(); |
| 5038 | } |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 5039 | |
| 5040 | void RewriteObjCFragileABI::Initialize(ASTContext &context) { |
| 5041 | InitializeCommon(context); |
| 5042 | |
| 5043 | // declaring objc_selector outside the parameter list removes a silly |
| 5044 | // scope related warning... |
| 5045 | if (IsHeader) |
| 5046 | Preamble = "#pragma once\n"; |
| 5047 | Preamble += "struct objc_selector; struct objc_class;\n"; |
| 5048 | Preamble += "struct __rw_objc_super { struct objc_object *object; "; |
| 5049 | Preamble += "struct objc_object *superClass; "; |
| 5050 | if (LangOpts.MicrosoftExt) { |
| 5051 | // Add a constructor for creating temporary objects. |
| 5052 | Preamble += "__rw_objc_super(struct objc_object *o, struct objc_object *s) " |
| 5053 | ": "; |
| 5054 | Preamble += "object(o), superClass(s) {} "; |
| 5055 | } |
| 5056 | Preamble += "};\n"; |
| 5057 | Preamble += "#ifndef _REWRITER_typedef_Protocol\n"; |
| 5058 | Preamble += "typedef struct objc_object Protocol;\n"; |
| 5059 | Preamble += "#define _REWRITER_typedef_Protocol\n"; |
| 5060 | Preamble += "#endif\n"; |
| 5061 | if (LangOpts.MicrosoftExt) { |
| 5062 | Preamble += "#define __OBJC_RW_DLLIMPORT extern \"C\" __declspec(dllimport)\n"; |
| 5063 | Preamble += "#define __OBJC_RW_STATICIMPORT extern \"C\"\n"; |
| 5064 | } else |
| 5065 | Preamble += "#define __OBJC_RW_DLLIMPORT extern\n"; |
| 5066 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_object *objc_msgSend"; |
| 5067 | Preamble += "(struct objc_object *, struct objc_selector *, ...);\n"; |
| 5068 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_object *objc_msgSendSuper"; |
| 5069 | Preamble += "(struct objc_super *, struct objc_selector *, ...);\n"; |
| 5070 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_object* objc_msgSend_stret"; |
| 5071 | Preamble += "(struct objc_object *, struct objc_selector *, ...);\n"; |
| 5072 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_object* objc_msgSendSuper_stret"; |
| 5073 | Preamble += "(struct objc_super *, struct objc_selector *, ...);\n"; |
| 5074 | Preamble += "__OBJC_RW_DLLIMPORT double objc_msgSend_fpret"; |
| 5075 | Preamble += "(struct objc_object *, struct objc_selector *, ...);\n"; |
| 5076 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_object *objc_getClass"; |
| 5077 | Preamble += "(const char *);\n"; |
| 5078 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_class *class_getSuperclass"; |
| 5079 | Preamble += "(struct objc_class *);\n"; |
| 5080 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_object *objc_getMetaClass"; |
| 5081 | Preamble += "(const char *);\n"; |
| 5082 | Preamble += "__OBJC_RW_DLLIMPORT void objc_exception_throw(struct objc_object *);\n"; |
| 5083 | Preamble += "__OBJC_RW_DLLIMPORT void objc_exception_try_enter(void *);\n"; |
| 5084 | Preamble += "__OBJC_RW_DLLIMPORT void objc_exception_try_exit(void *);\n"; |
| 5085 | Preamble += "__OBJC_RW_DLLIMPORT struct objc_object *objc_exception_extract(void *);\n"; |
| 5086 | Preamble += "__OBJC_RW_DLLIMPORT int objc_exception_match"; |
| 5087 | Preamble += "(struct objc_class *, struct objc_object *);\n"; |
| 5088 | // @synchronized hooks. |
| 5089 | Preamble += "__OBJC_RW_DLLIMPORT void objc_sync_enter(struct objc_object *);\n"; |
| 5090 | Preamble += "__OBJC_RW_DLLIMPORT void objc_sync_exit(struct objc_object *);\n"; |
| 5091 | Preamble += "__OBJC_RW_DLLIMPORT Protocol *objc_getProtocol(const char *);\n"; |
| 5092 | Preamble += "#ifndef __FASTENUMERATIONSTATE\n"; |
| 5093 | Preamble += "struct __objcFastEnumerationState {\n\t"; |
| 5094 | Preamble += "unsigned long state;\n\t"; |
| 5095 | Preamble += "void **itemsPtr;\n\t"; |
| 5096 | Preamble += "unsigned long *mutationsPtr;\n\t"; |
| 5097 | Preamble += "unsigned long extra[5];\n};\n"; |
| 5098 | Preamble += "__OBJC_RW_DLLIMPORT void objc_enumerationMutation(struct objc_object *);\n"; |
| 5099 | Preamble += "#define __FASTENUMERATIONSTATE\n"; |
| 5100 | Preamble += "#endif\n"; |
| 5101 | Preamble += "#ifndef __NSCONSTANTSTRINGIMPL\n"; |
| 5102 | Preamble += "struct __NSConstantStringImpl {\n"; |
| 5103 | Preamble += " int *isa;\n"; |
| 5104 | Preamble += " int flags;\n"; |
| 5105 | Preamble += " char *str;\n"; |
| 5106 | Preamble += " long length;\n"; |
| 5107 | Preamble += "};\n"; |
| 5108 | Preamble += "#ifdef CF_EXPORT_CONSTANT_STRING\n"; |
| 5109 | Preamble += "extern \"C\" __declspec(dllexport) int __CFConstantStringClassReference[];\n"; |
| 5110 | Preamble += "#else\n"; |
| 5111 | Preamble += "__OBJC_RW_DLLIMPORT int __CFConstantStringClassReference[];\n"; |
| 5112 | Preamble += "#endif\n"; |
| 5113 | Preamble += "#define __NSCONSTANTSTRINGIMPL\n"; |
| 5114 | Preamble += "#endif\n"; |
| 5115 | // Blocks preamble. |
| 5116 | Preamble += "#ifndef BLOCK_IMPL\n"; |
| 5117 | Preamble += "#define BLOCK_IMPL\n"; |
| 5118 | Preamble += "struct __block_impl {\n"; |
| 5119 | Preamble += " void *isa;\n"; |
| 5120 | Preamble += " int Flags;\n"; |
| 5121 | Preamble += " int Reserved;\n"; |
| 5122 | Preamble += " void *FuncPtr;\n"; |
| 5123 | Preamble += "};\n"; |
| 5124 | Preamble += "// Runtime copy/destroy helper functions (from Block_private.h)\n"; |
| 5125 | Preamble += "#ifdef __OBJC_EXPORT_BLOCKS\n"; |
| 5126 | Preamble += "extern \"C\" __declspec(dllexport) " |
| 5127 | "void _Block_object_assign(void *, const void *, const int);\n"; |
| 5128 | Preamble += "extern \"C\" __declspec(dllexport) void _Block_object_dispose(const void *, const int);\n"; |
| 5129 | Preamble += "extern \"C\" __declspec(dllexport) void *_NSConcreteGlobalBlock[32];\n"; |
| 5130 | Preamble += "extern \"C\" __declspec(dllexport) void *_NSConcreteStackBlock[32];\n"; |
| 5131 | Preamble += "#else\n"; |
| 5132 | Preamble += "__OBJC_RW_DLLIMPORT void _Block_object_assign(void *, const void *, const int);\n"; |
| 5133 | Preamble += "__OBJC_RW_DLLIMPORT void _Block_object_dispose(const void *, const int);\n"; |
| 5134 | Preamble += "__OBJC_RW_DLLIMPORT void *_NSConcreteGlobalBlock[32];\n"; |
| 5135 | Preamble += "__OBJC_RW_DLLIMPORT void *_NSConcreteStackBlock[32];\n"; |
| 5136 | Preamble += "#endif\n"; |
| 5137 | Preamble += "#endif\n"; |
| 5138 | if (LangOpts.MicrosoftExt) { |
| 5139 | Preamble += "#undef __OBJC_RW_DLLIMPORT\n"; |
| 5140 | Preamble += "#undef __OBJC_RW_STATICIMPORT\n"; |
| 5141 | Preamble += "#ifndef KEEP_ATTRIBUTES\n"; // We use this for clang tests. |
| 5142 | Preamble += "#define __attribute__(X)\n"; |
| 5143 | Preamble += "#endif\n"; |
| 5144 | Preamble += "#define __weak\n"; |
| 5145 | } |
| 5146 | else { |
| 5147 | Preamble += "#define __block\n"; |
| 5148 | Preamble += "#define __weak\n"; |
| 5149 | } |
| 5150 | // NOTE! Windows uses LLP64 for 64bit mode. So, cast pointer to long long |
| 5151 | // as this avoids warning in any 64bit/32bit compilation model. |
| 5152 | Preamble += "\n#define __OFFSETOFIVAR__(TYPE, MEMBER) ((long long) &((TYPE *)0)->MEMBER)\n"; |
| 5153 | } |
| 5154 | |
| 5155 | /// RewriteIvarOffsetComputation - This rutine synthesizes computation of |
| 5156 | /// ivar offset. |
| 5157 | void RewriteObjCFragileABI::RewriteIvarOffsetComputation(ObjCIvarDecl *ivar, |
| 5158 | std::string &Result) { |
| 5159 | if (ivar->isBitField()) { |
| 5160 | // FIXME: The hack below doesn't work for bitfields. For now, we simply |
| 5161 | // place all bitfields at offset 0. |
| 5162 | Result += "0"; |
| 5163 | } else { |
| 5164 | Result += "__OFFSETOFIVAR__(struct "; |
| 5165 | Result += ivar->getContainingInterface()->getNameAsString(); |
| 5166 | if (LangOpts.MicrosoftExt) |
| 5167 | Result += "_IMPL"; |
| 5168 | Result += ", "; |
| 5169 | Result += ivar->getNameAsString(); |
| 5170 | Result += ")"; |
| 5171 | } |
| 5172 | } |
| 5173 | |
| 5174 | /// RewriteObjCProtocolMetaData - Rewrite protocols meta-data. |
| 5175 | void RewriteObjCFragileABI::RewriteObjCProtocolMetaData( |
| 5176 | ObjCProtocolDecl *PDecl, StringRef prefix, |
| 5177 | StringRef ClassName, std::string &Result) { |
| 5178 | static bool objc_protocol_methods = false; |
| 5179 | |
| 5180 | // Output struct protocol_methods holder of method selector and type. |
| 5181 | if (!objc_protocol_methods && !PDecl->isForwardDecl()) { |
| 5182 | /* struct protocol_methods { |
| 5183 | SEL _cmd; |
| 5184 | char *method_types; |
| 5185 | } |
| 5186 | */ |
| 5187 | Result += "\nstruct _protocol_methods {\n"; |
| 5188 | Result += "\tstruct objc_selector *_cmd;\n"; |
| 5189 | Result += "\tchar *method_types;\n"; |
| 5190 | Result += "};\n"; |
| 5191 | |
| 5192 | objc_protocol_methods = true; |
| 5193 | } |
| 5194 | // Do not synthesize the protocol more than once. |
| 5195 | if (ObjCSynthesizedProtocols.count(PDecl)) |
| 5196 | return; |
| 5197 | |
| 5198 | if (PDecl->instmeth_begin() != PDecl->instmeth_end()) { |
| 5199 | unsigned NumMethods = std::distance(PDecl->instmeth_begin(), |
| 5200 | PDecl->instmeth_end()); |
| 5201 | /* struct _objc_protocol_method_list { |
| 5202 | int protocol_method_count; |
| 5203 | struct protocol_methods protocols[]; |
| 5204 | } |
| 5205 | */ |
| 5206 | Result += "\nstatic struct {\n"; |
| 5207 | Result += "\tint protocol_method_count;\n"; |
| 5208 | Result += "\tstruct _protocol_methods protocol_methods["; |
| 5209 | Result += utostr(NumMethods); |
| 5210 | Result += "];\n} _OBJC_PROTOCOL_INSTANCE_METHODS_"; |
| 5211 | Result += PDecl->getNameAsString(); |
| 5212 | Result += " __attribute__ ((used, section (\"__OBJC, __cat_inst_meth\")))= " |
| 5213 | "{\n\t" + utostr(NumMethods) + "\n"; |
| 5214 | |
| 5215 | // Output instance methods declared in this protocol. |
| 5216 | for (ObjCProtocolDecl::instmeth_iterator |
| 5217 | I = PDecl->instmeth_begin(), E = PDecl->instmeth_end(); |
| 5218 | I != E; ++I) { |
| 5219 | if (I == PDecl->instmeth_begin()) |
| 5220 | Result += "\t ,{{(struct objc_selector *)\""; |
| 5221 | else |
| 5222 | Result += "\t ,{(struct objc_selector *)\""; |
| 5223 | Result += (*I)->getSelector().getAsString(); |
| 5224 | std::string MethodTypeString; |
| 5225 | Context->getObjCEncodingForMethodDecl((*I), MethodTypeString); |
| 5226 | Result += "\", \""; |
| 5227 | Result += MethodTypeString; |
| 5228 | Result += "\"}\n"; |
| 5229 | } |
| 5230 | Result += "\t }\n};\n"; |
| 5231 | } |
| 5232 | |
| 5233 | // Output class methods declared in this protocol. |
| 5234 | unsigned NumMethods = std::distance(PDecl->classmeth_begin(), |
| 5235 | PDecl->classmeth_end()); |
| 5236 | if (NumMethods > 0) { |
| 5237 | /* struct _objc_protocol_method_list { |
| 5238 | int protocol_method_count; |
| 5239 | struct protocol_methods protocols[]; |
| 5240 | } |
| 5241 | */ |
| 5242 | Result += "\nstatic struct {\n"; |
| 5243 | Result += "\tint protocol_method_count;\n"; |
| 5244 | Result += "\tstruct _protocol_methods protocol_methods["; |
| 5245 | Result += utostr(NumMethods); |
| 5246 | Result += "];\n} _OBJC_PROTOCOL_CLASS_METHODS_"; |
| 5247 | Result += PDecl->getNameAsString(); |
| 5248 | Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= " |
| 5249 | "{\n\t"; |
| 5250 | Result += utostr(NumMethods); |
| 5251 | Result += "\n"; |
| 5252 | |
| 5253 | // Output instance methods declared in this protocol. |
| 5254 | for (ObjCProtocolDecl::classmeth_iterator |
| 5255 | I = PDecl->classmeth_begin(), E = PDecl->classmeth_end(); |
| 5256 | I != E; ++I) { |
| 5257 | if (I == PDecl->classmeth_begin()) |
| 5258 | Result += "\t ,{{(struct objc_selector *)\""; |
| 5259 | else |
| 5260 | Result += "\t ,{(struct objc_selector *)\""; |
| 5261 | Result += (*I)->getSelector().getAsString(); |
| 5262 | std::string MethodTypeString; |
| 5263 | Context->getObjCEncodingForMethodDecl((*I), MethodTypeString); |
| 5264 | Result += "\", \""; |
| 5265 | Result += MethodTypeString; |
| 5266 | Result += "\"}\n"; |
| 5267 | } |
| 5268 | Result += "\t }\n};\n"; |
| 5269 | } |
| 5270 | |
| 5271 | // Output: |
| 5272 | /* struct _objc_protocol { |
| 5273 | // Objective-C 1.0 extensions |
| 5274 | struct _objc_protocol_extension *isa; |
| 5275 | char *protocol_name; |
| 5276 | struct _objc_protocol **protocol_list; |
| 5277 | struct _objc_protocol_method_list *instance_methods; |
| 5278 | struct _objc_protocol_method_list *class_methods; |
| 5279 | }; |
| 5280 | */ |
| 5281 | static bool objc_protocol = false; |
| 5282 | if (!objc_protocol) { |
| 5283 | Result += "\nstruct _objc_protocol {\n"; |
| 5284 | Result += "\tstruct _objc_protocol_extension *isa;\n"; |
| 5285 | Result += "\tchar *protocol_name;\n"; |
| 5286 | Result += "\tstruct _objc_protocol **protocol_list;\n"; |
| 5287 | Result += "\tstruct _objc_protocol_method_list *instance_methods;\n"; |
| 5288 | Result += "\tstruct _objc_protocol_method_list *class_methods;\n"; |
| 5289 | Result += "};\n"; |
| 5290 | |
| 5291 | objc_protocol = true; |
| 5292 | } |
| 5293 | |
| 5294 | Result += "\nstatic struct _objc_protocol _OBJC_PROTOCOL_"; |
| 5295 | Result += PDecl->getNameAsString(); |
| 5296 | Result += " __attribute__ ((used, section (\"__OBJC, __protocol\")))= " |
| 5297 | "{\n\t0, \""; |
| 5298 | Result += PDecl->getNameAsString(); |
| 5299 | Result += "\", 0, "; |
| 5300 | if (PDecl->instmeth_begin() != PDecl->instmeth_end()) { |
| 5301 | Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_INSTANCE_METHODS_"; |
| 5302 | Result += PDecl->getNameAsString(); |
| 5303 | Result += ", "; |
| 5304 | } |
| 5305 | else |
| 5306 | Result += "0, "; |
| 5307 | if (PDecl->classmeth_begin() != PDecl->classmeth_end()) { |
| 5308 | Result += "(struct _objc_protocol_method_list *)&_OBJC_PROTOCOL_CLASS_METHODS_"; |
| 5309 | Result += PDecl->getNameAsString(); |
| 5310 | Result += "\n"; |
| 5311 | } |
| 5312 | else |
| 5313 | Result += "0\n"; |
| 5314 | Result += "};\n"; |
| 5315 | |
| 5316 | // Mark this protocol as having been generated. |
| 5317 | if (!ObjCSynthesizedProtocols.insert(PDecl)) |
| 5318 | llvm_unreachable("protocol already synthesized"); |
| 5319 | |
| 5320 | } |
| 5321 | |
| 5322 | void RewriteObjCFragileABI::RewriteObjCProtocolListMetaData( |
| 5323 | const ObjCList<ObjCProtocolDecl> &Protocols, |
| 5324 | StringRef prefix, StringRef ClassName, |
| 5325 | std::string &Result) { |
| 5326 | if (Protocols.empty()) return; |
| 5327 | |
| 5328 | for (unsigned i = 0; i != Protocols.size(); i++) |
| 5329 | RewriteObjCProtocolMetaData(Protocols[i], prefix, ClassName, Result); |
| 5330 | |
| 5331 | // Output the top lovel protocol meta-data for the class. |
| 5332 | /* struct _objc_protocol_list { |
| 5333 | struct _objc_protocol_list *next; |
| 5334 | int protocol_count; |
| 5335 | struct _objc_protocol *class_protocols[]; |
| 5336 | } |
| 5337 | */ |
| 5338 | Result += "\nstatic struct {\n"; |
| 5339 | Result += "\tstruct _objc_protocol_list *next;\n"; |
| 5340 | Result += "\tint protocol_count;\n"; |
| 5341 | Result += "\tstruct _objc_protocol *class_protocols["; |
| 5342 | Result += utostr(Protocols.size()); |
| 5343 | Result += "];\n} _OBJC_"; |
| 5344 | Result += prefix; |
| 5345 | Result += "_PROTOCOLS_"; |
| 5346 | Result += ClassName; |
| 5347 | Result += " __attribute__ ((used, section (\"__OBJC, __cat_cls_meth\")))= " |
| 5348 | "{\n\t0, "; |
| 5349 | Result += utostr(Protocols.size()); |
| 5350 | Result += "\n"; |
| 5351 | |
| 5352 | Result += "\t,{&_OBJC_PROTOCOL_"; |
| 5353 | Result += Protocols[0]->getNameAsString(); |
| 5354 | Result += " \n"; |
| 5355 | |
| 5356 | for (unsigned i = 1; i != Protocols.size(); i++) { |
| 5357 | Result += "\t ,&_OBJC_PROTOCOL_"; |
| 5358 | Result += Protocols[i]->getNameAsString(); |
| 5359 | Result += "\n"; |
| 5360 | } |
| 5361 | Result += "\t }\n};\n"; |
| 5362 | } |
| 5363 | |
| 5364 | void RewriteObjCFragileABI::RewriteObjCClassMetaData(ObjCImplementationDecl *IDecl, |
| 5365 | std::string &Result) { |
| 5366 | ObjCInterfaceDecl *CDecl = IDecl->getClassInterface(); |
| 5367 | |
| 5368 | // Explicitly declared @interface's are already synthesized. |
| 5369 | if (CDecl->isImplicitInterfaceDecl()) { |
Douglas Gregor | 7723fec | 2011-12-15 20:29:51 +0000 | [diff] [blame] | 5370 | // FIXME: Implementation of a class with no @interface (legacy) does not |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 5371 | // produce correct synthesis as yet. |
| 5372 | RewriteObjCInternalStruct(CDecl, Result); |
| 5373 | } |
| 5374 | |
| 5375 | // Build _objc_ivar_list metadata for classes ivars if needed |
| 5376 | unsigned NumIvars = !IDecl->ivar_empty() |
| 5377 | ? IDecl->ivar_size() |
| 5378 | : (CDecl ? CDecl->ivar_size() : 0); |
| 5379 | if (NumIvars > 0) { |
| 5380 | static bool objc_ivar = false; |
| 5381 | if (!objc_ivar) { |
| 5382 | /* struct _objc_ivar { |
| 5383 | char *ivar_name; |
| 5384 | char *ivar_type; |
| 5385 | int ivar_offset; |
| 5386 | }; |
| 5387 | */ |
| 5388 | Result += "\nstruct _objc_ivar {\n"; |
| 5389 | Result += "\tchar *ivar_name;\n"; |
| 5390 | Result += "\tchar *ivar_type;\n"; |
| 5391 | Result += "\tint ivar_offset;\n"; |
| 5392 | Result += "};\n"; |
| 5393 | |
| 5394 | objc_ivar = true; |
| 5395 | } |
| 5396 | |
| 5397 | /* struct { |
| 5398 | int ivar_count; |
| 5399 | struct _objc_ivar ivar_list[nIvars]; |
| 5400 | }; |
| 5401 | */ |
| 5402 | Result += "\nstatic struct {\n"; |
| 5403 | Result += "\tint ivar_count;\n"; |
| 5404 | Result += "\tstruct _objc_ivar ivar_list["; |
| 5405 | Result += utostr(NumIvars); |
| 5406 | Result += "];\n} _OBJC_INSTANCE_VARIABLES_"; |
| 5407 | Result += IDecl->getNameAsString(); |
| 5408 | Result += " __attribute__ ((used, section (\"__OBJC, __instance_vars\")))= " |
| 5409 | "{\n\t"; |
| 5410 | Result += utostr(NumIvars); |
| 5411 | Result += "\n"; |
| 5412 | |
| 5413 | ObjCInterfaceDecl::ivar_iterator IVI, IVE; |
| 5414 | SmallVector<ObjCIvarDecl *, 8> IVars; |
| 5415 | if (!IDecl->ivar_empty()) { |
| 5416 | for (ObjCInterfaceDecl::ivar_iterator |
| 5417 | IV = IDecl->ivar_begin(), IVEnd = IDecl->ivar_end(); |
| 5418 | IV != IVEnd; ++IV) |
| 5419 | IVars.push_back(*IV); |
| 5420 | IVI = IDecl->ivar_begin(); |
| 5421 | IVE = IDecl->ivar_end(); |
| 5422 | } else { |
| 5423 | IVI = CDecl->ivar_begin(); |
| 5424 | IVE = CDecl->ivar_end(); |
| 5425 | } |
| 5426 | Result += "\t,{{\""; |
| 5427 | Result += (*IVI)->getNameAsString(); |
| 5428 | Result += "\", \""; |
| 5429 | std::string TmpString, StrEncoding; |
| 5430 | Context->getObjCEncodingForType((*IVI)->getType(), TmpString, *IVI); |
| 5431 | QuoteDoublequotes(TmpString, StrEncoding); |
| 5432 | Result += StrEncoding; |
| 5433 | Result += "\", "; |
| 5434 | RewriteIvarOffsetComputation(*IVI, Result); |
| 5435 | Result += "}\n"; |
| 5436 | for (++IVI; IVI != IVE; ++IVI) { |
| 5437 | Result += "\t ,{\""; |
| 5438 | Result += (*IVI)->getNameAsString(); |
| 5439 | Result += "\", \""; |
| 5440 | std::string TmpString, StrEncoding; |
| 5441 | Context->getObjCEncodingForType((*IVI)->getType(), TmpString, *IVI); |
| 5442 | QuoteDoublequotes(TmpString, StrEncoding); |
| 5443 | Result += StrEncoding; |
| 5444 | Result += "\", "; |
| 5445 | RewriteIvarOffsetComputation((*IVI), Result); |
| 5446 | Result += "}\n"; |
| 5447 | } |
| 5448 | |
| 5449 | Result += "\t }\n};\n"; |
| 5450 | } |
| 5451 | |
| 5452 | // Build _objc_method_list for class's instance methods if needed |
| 5453 | SmallVector<ObjCMethodDecl *, 32> |
| 5454 | InstanceMethods(IDecl->instmeth_begin(), IDecl->instmeth_end()); |
| 5455 | |
| 5456 | // If any of our property implementations have associated getters or |
| 5457 | // setters, produce metadata for them as well. |
| 5458 | for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), |
| 5459 | PropEnd = IDecl->propimpl_end(); |
| 5460 | Prop != PropEnd; ++Prop) { |
| 5461 | if ((*Prop)->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) |
| 5462 | continue; |
| 5463 | if (!(*Prop)->getPropertyIvarDecl()) |
| 5464 | continue; |
| 5465 | ObjCPropertyDecl *PD = (*Prop)->getPropertyDecl(); |
| 5466 | if (!PD) |
| 5467 | continue; |
| 5468 | if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) |
| 5469 | if (!Getter->isDefined()) |
| 5470 | InstanceMethods.push_back(Getter); |
| 5471 | if (PD->isReadOnly()) |
| 5472 | continue; |
| 5473 | if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) |
| 5474 | if (!Setter->isDefined()) |
| 5475 | InstanceMethods.push_back(Setter); |
| 5476 | } |
| 5477 | RewriteObjCMethodsMetaData(InstanceMethods.begin(), InstanceMethods.end(), |
| 5478 | true, "", IDecl->getName(), Result); |
| 5479 | |
| 5480 | // Build _objc_method_list for class's class methods if needed |
| 5481 | RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(), |
| 5482 | false, "", IDecl->getName(), Result); |
| 5483 | |
| 5484 | // Protocols referenced in class declaration? |
| 5485 | RewriteObjCProtocolListMetaData(CDecl->getReferencedProtocols(), |
| 5486 | "CLASS", CDecl->getName(), Result); |
| 5487 | |
| 5488 | // Declaration of class/meta-class metadata |
| 5489 | /* struct _objc_class { |
| 5490 | struct _objc_class *isa; // or const char *root_class_name when metadata |
| 5491 | const char *super_class_name; |
| 5492 | char *name; |
| 5493 | long version; |
| 5494 | long info; |
| 5495 | long instance_size; |
| 5496 | struct _objc_ivar_list *ivars; |
| 5497 | struct _objc_method_list *methods; |
| 5498 | struct objc_cache *cache; |
| 5499 | struct objc_protocol_list *protocols; |
| 5500 | const char *ivar_layout; |
| 5501 | struct _objc_class_ext *ext; |
| 5502 | }; |
| 5503 | */ |
| 5504 | static bool objc_class = false; |
| 5505 | if (!objc_class) { |
| 5506 | Result += "\nstruct _objc_class {\n"; |
| 5507 | Result += "\tstruct _objc_class *isa;\n"; |
| 5508 | Result += "\tconst char *super_class_name;\n"; |
| 5509 | Result += "\tchar *name;\n"; |
| 5510 | Result += "\tlong version;\n"; |
| 5511 | Result += "\tlong info;\n"; |
| 5512 | Result += "\tlong instance_size;\n"; |
| 5513 | Result += "\tstruct _objc_ivar_list *ivars;\n"; |
| 5514 | Result += "\tstruct _objc_method_list *methods;\n"; |
| 5515 | Result += "\tstruct objc_cache *cache;\n"; |
| 5516 | Result += "\tstruct _objc_protocol_list *protocols;\n"; |
| 5517 | Result += "\tconst char *ivar_layout;\n"; |
| 5518 | Result += "\tstruct _objc_class_ext *ext;\n"; |
| 5519 | Result += "};\n"; |
| 5520 | objc_class = true; |
| 5521 | } |
| 5522 | |
| 5523 | // Meta-class metadata generation. |
| 5524 | ObjCInterfaceDecl *RootClass = 0; |
| 5525 | ObjCInterfaceDecl *SuperClass = CDecl->getSuperClass(); |
| 5526 | while (SuperClass) { |
| 5527 | RootClass = SuperClass; |
| 5528 | SuperClass = SuperClass->getSuperClass(); |
| 5529 | } |
| 5530 | SuperClass = CDecl->getSuperClass(); |
| 5531 | |
| 5532 | Result += "\nstatic struct _objc_class _OBJC_METACLASS_"; |
| 5533 | Result += CDecl->getNameAsString(); |
| 5534 | Result += " __attribute__ ((used, section (\"__OBJC, __meta_class\")))= " |
| 5535 | "{\n\t(struct _objc_class *)\""; |
| 5536 | Result += (RootClass ? RootClass->getNameAsString() : CDecl->getNameAsString()); |
| 5537 | Result += "\""; |
| 5538 | |
| 5539 | if (SuperClass) { |
| 5540 | Result += ", \""; |
| 5541 | Result += SuperClass->getNameAsString(); |
| 5542 | Result += "\", \""; |
| 5543 | Result += CDecl->getNameAsString(); |
| 5544 | Result += "\""; |
| 5545 | } |
| 5546 | else { |
| 5547 | Result += ", 0, \""; |
| 5548 | Result += CDecl->getNameAsString(); |
| 5549 | Result += "\""; |
| 5550 | } |
| 5551 | // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it. |
| 5552 | // 'info' field is initialized to CLS_META(2) for metaclass |
| 5553 | Result += ", 0,2, sizeof(struct _objc_class), 0"; |
| 5554 | if (IDecl->classmeth_begin() != IDecl->classmeth_end()) { |
| 5555 | Result += "\n\t, (struct _objc_method_list *)&_OBJC_CLASS_METHODS_"; |
| 5556 | Result += IDecl->getNameAsString(); |
| 5557 | Result += "\n"; |
| 5558 | } |
| 5559 | else |
| 5560 | Result += ", 0\n"; |
| 5561 | if (CDecl->protocol_begin() != CDecl->protocol_end()) { |
| 5562 | Result += "\t,0, (struct _objc_protocol_list *)&_OBJC_CLASS_PROTOCOLS_"; |
| 5563 | Result += CDecl->getNameAsString(); |
| 5564 | Result += ",0,0\n"; |
| 5565 | } |
| 5566 | else |
| 5567 | Result += "\t,0,0,0,0\n"; |
| 5568 | Result += "};\n"; |
| 5569 | |
| 5570 | // class metadata generation. |
| 5571 | Result += "\nstatic struct _objc_class _OBJC_CLASS_"; |
| 5572 | Result += CDecl->getNameAsString(); |
| 5573 | Result += " __attribute__ ((used, section (\"__OBJC, __class\")))= " |
| 5574 | "{\n\t&_OBJC_METACLASS_"; |
| 5575 | Result += CDecl->getNameAsString(); |
| 5576 | if (SuperClass) { |
| 5577 | Result += ", \""; |
| 5578 | Result += SuperClass->getNameAsString(); |
| 5579 | Result += "\", \""; |
| 5580 | Result += CDecl->getNameAsString(); |
| 5581 | Result += "\""; |
| 5582 | } |
| 5583 | else { |
| 5584 | Result += ", 0, \""; |
| 5585 | Result += CDecl->getNameAsString(); |
| 5586 | Result += "\""; |
| 5587 | } |
| 5588 | // 'info' field is initialized to CLS_CLASS(1) for class |
| 5589 | Result += ", 0,1"; |
| 5590 | if (!ObjCSynthesizedStructs.count(CDecl)) |
| 5591 | Result += ",0"; |
| 5592 | else { |
| 5593 | // class has size. Must synthesize its size. |
| 5594 | Result += ",sizeof(struct "; |
| 5595 | Result += CDecl->getNameAsString(); |
| 5596 | if (LangOpts.MicrosoftExt) |
| 5597 | Result += "_IMPL"; |
| 5598 | Result += ")"; |
| 5599 | } |
| 5600 | if (NumIvars > 0) { |
| 5601 | Result += ", (struct _objc_ivar_list *)&_OBJC_INSTANCE_VARIABLES_"; |
| 5602 | Result += CDecl->getNameAsString(); |
| 5603 | Result += "\n\t"; |
| 5604 | } |
| 5605 | else |
| 5606 | Result += ",0"; |
| 5607 | if (IDecl->instmeth_begin() != IDecl->instmeth_end()) { |
| 5608 | Result += ", (struct _objc_method_list *)&_OBJC_INSTANCE_METHODS_"; |
| 5609 | Result += CDecl->getNameAsString(); |
| 5610 | Result += ", 0\n\t"; |
| 5611 | } |
| 5612 | else |
| 5613 | Result += ",0,0"; |
| 5614 | if (CDecl->protocol_begin() != CDecl->protocol_end()) { |
| 5615 | Result += ", (struct _objc_protocol_list*)&_OBJC_CLASS_PROTOCOLS_"; |
| 5616 | Result += CDecl->getNameAsString(); |
| 5617 | Result += ", 0,0\n"; |
| 5618 | } |
| 5619 | else |
| 5620 | Result += ",0,0,0\n"; |
| 5621 | Result += "};\n"; |
| 5622 | } |
| 5623 | |
| 5624 | void RewriteObjCFragileABI::RewriteMetaDataIntoBuffer(std::string &Result) { |
| 5625 | int ClsDefCount = ClassImplementation.size(); |
| 5626 | int CatDefCount = CategoryImplementation.size(); |
| 5627 | |
| 5628 | // For each implemented class, write out all its meta data. |
| 5629 | for (int i = 0; i < ClsDefCount; i++) |
| 5630 | RewriteObjCClassMetaData(ClassImplementation[i], Result); |
| 5631 | |
| 5632 | // For each implemented category, write out all its meta data. |
| 5633 | for (int i = 0; i < CatDefCount; i++) |
| 5634 | RewriteObjCCategoryImplDecl(CategoryImplementation[i], Result); |
| 5635 | |
| 5636 | // Write objc_symtab metadata |
| 5637 | /* |
| 5638 | struct _objc_symtab |
| 5639 | { |
| 5640 | long sel_ref_cnt; |
| 5641 | SEL *refs; |
| 5642 | short cls_def_cnt; |
| 5643 | short cat_def_cnt; |
| 5644 | void *defs[cls_def_cnt + cat_def_cnt]; |
| 5645 | }; |
| 5646 | */ |
| 5647 | |
| 5648 | Result += "\nstruct _objc_symtab {\n"; |
| 5649 | Result += "\tlong sel_ref_cnt;\n"; |
| 5650 | Result += "\tSEL *refs;\n"; |
| 5651 | Result += "\tshort cls_def_cnt;\n"; |
| 5652 | Result += "\tshort cat_def_cnt;\n"; |
| 5653 | Result += "\tvoid *defs[" + utostr(ClsDefCount + CatDefCount)+ "];\n"; |
| 5654 | Result += "};\n\n"; |
| 5655 | |
| 5656 | Result += "static struct _objc_symtab " |
| 5657 | "_OBJC_SYMBOLS __attribute__((used, section (\"__OBJC, __symbols\")))= {\n"; |
| 5658 | Result += "\t0, 0, " + utostr(ClsDefCount) |
| 5659 | + ", " + utostr(CatDefCount) + "\n"; |
| 5660 | for (int i = 0; i < ClsDefCount; i++) { |
| 5661 | Result += "\t,&_OBJC_CLASS_"; |
| 5662 | Result += ClassImplementation[i]->getNameAsString(); |
| 5663 | Result += "\n"; |
| 5664 | } |
| 5665 | |
| 5666 | for (int i = 0; i < CatDefCount; i++) { |
| 5667 | Result += "\t,&_OBJC_CATEGORY_"; |
| 5668 | Result += CategoryImplementation[i]->getClassInterface()->getNameAsString(); |
| 5669 | Result += "_"; |
| 5670 | Result += CategoryImplementation[i]->getNameAsString(); |
| 5671 | Result += "\n"; |
| 5672 | } |
| 5673 | |
| 5674 | Result += "};\n\n"; |
| 5675 | |
| 5676 | // Write objc_module metadata |
| 5677 | |
| 5678 | /* |
| 5679 | struct _objc_module { |
| 5680 | long version; |
| 5681 | long size; |
| 5682 | const char *name; |
| 5683 | struct _objc_symtab *symtab; |
| 5684 | } |
| 5685 | */ |
| 5686 | |
| 5687 | Result += "\nstruct _objc_module {\n"; |
| 5688 | Result += "\tlong version;\n"; |
| 5689 | Result += "\tlong size;\n"; |
| 5690 | Result += "\tconst char *name;\n"; |
| 5691 | Result += "\tstruct _objc_symtab *symtab;\n"; |
| 5692 | Result += "};\n\n"; |
| 5693 | Result += "static struct _objc_module " |
| 5694 | "_OBJC_MODULES __attribute__ ((used, section (\"__OBJC, __module_info\")))= {\n"; |
| 5695 | Result += "\t" + utostr(OBJC_ABI_VERSION) + |
| 5696 | ", sizeof(struct _objc_module), \"\", &_OBJC_SYMBOLS\n"; |
| 5697 | Result += "};\n\n"; |
| 5698 | |
| 5699 | if (LangOpts.MicrosoftExt) { |
| 5700 | if (ProtocolExprDecls.size()) { |
| 5701 | Result += "#pragma section(\".objc_protocol$B\",long,read,write)\n"; |
| 5702 | Result += "#pragma data_seg(push, \".objc_protocol$B\")\n"; |
| 5703 | for (llvm::SmallPtrSet<ObjCProtocolDecl *,8>::iterator I = ProtocolExprDecls.begin(), |
| 5704 | E = ProtocolExprDecls.end(); I != E; ++I) { |
| 5705 | Result += "static struct _objc_protocol *_POINTER_OBJC_PROTOCOL_"; |
| 5706 | Result += (*I)->getNameAsString(); |
| 5707 | Result += " = &_OBJC_PROTOCOL_"; |
| 5708 | Result += (*I)->getNameAsString(); |
| 5709 | Result += ";\n"; |
| 5710 | } |
| 5711 | Result += "#pragma data_seg(pop)\n\n"; |
| 5712 | } |
| 5713 | Result += "#pragma section(\".objc_module_info$B\",long,read,write)\n"; |
| 5714 | Result += "#pragma data_seg(push, \".objc_module_info$B\")\n"; |
| 5715 | Result += "static struct _objc_module *_POINTER_OBJC_MODULES = "; |
| 5716 | Result += "&_OBJC_MODULES;\n"; |
| 5717 | Result += "#pragma data_seg(pop)\n\n"; |
| 5718 | } |
| 5719 | } |
| 5720 | |
| 5721 | /// RewriteObjCCategoryImplDecl - Rewrite metadata for each category |
| 5722 | /// implementation. |
| 5723 | void RewriteObjCFragileABI::RewriteObjCCategoryImplDecl(ObjCCategoryImplDecl *IDecl, |
| 5724 | std::string &Result) { |
| 5725 | ObjCInterfaceDecl *ClassDecl = IDecl->getClassInterface(); |
| 5726 | // Find category declaration for this implementation. |
| 5727 | ObjCCategoryDecl *CDecl; |
| 5728 | for (CDecl = ClassDecl->getCategoryList(); CDecl; |
| 5729 | CDecl = CDecl->getNextClassCategory()) |
| 5730 | if (CDecl->getIdentifier() == IDecl->getIdentifier()) |
| 5731 | break; |
| 5732 | |
| 5733 | std::string FullCategoryName = ClassDecl->getNameAsString(); |
| 5734 | FullCategoryName += '_'; |
| 5735 | FullCategoryName += IDecl->getNameAsString(); |
| 5736 | |
| 5737 | // Build _objc_method_list for class's instance methods if needed |
| 5738 | SmallVector<ObjCMethodDecl *, 32> |
| 5739 | InstanceMethods(IDecl->instmeth_begin(), IDecl->instmeth_end()); |
| 5740 | |
| 5741 | // If any of our property implementations have associated getters or |
| 5742 | // setters, produce metadata for them as well. |
| 5743 | for (ObjCImplDecl::propimpl_iterator Prop = IDecl->propimpl_begin(), |
| 5744 | PropEnd = IDecl->propimpl_end(); |
| 5745 | Prop != PropEnd; ++Prop) { |
| 5746 | if ((*Prop)->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic) |
| 5747 | continue; |
| 5748 | if (!(*Prop)->getPropertyIvarDecl()) |
| 5749 | continue; |
| 5750 | ObjCPropertyDecl *PD = (*Prop)->getPropertyDecl(); |
| 5751 | if (!PD) |
| 5752 | continue; |
| 5753 | if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) |
| 5754 | InstanceMethods.push_back(Getter); |
| 5755 | if (PD->isReadOnly()) |
| 5756 | continue; |
| 5757 | if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) |
| 5758 | InstanceMethods.push_back(Setter); |
| 5759 | } |
| 5760 | RewriteObjCMethodsMetaData(InstanceMethods.begin(), InstanceMethods.end(), |
| 5761 | true, "CATEGORY_", FullCategoryName.c_str(), |
| 5762 | Result); |
| 5763 | |
| 5764 | // Build _objc_method_list for class's class methods if needed |
| 5765 | RewriteObjCMethodsMetaData(IDecl->classmeth_begin(), IDecl->classmeth_end(), |
| 5766 | false, "CATEGORY_", FullCategoryName.c_str(), |
| 5767 | Result); |
| 5768 | |
| 5769 | // Protocols referenced in class declaration? |
| 5770 | // Null CDecl is case of a category implementation with no category interface |
| 5771 | if (CDecl) |
| 5772 | RewriteObjCProtocolListMetaData(CDecl->getReferencedProtocols(), "CATEGORY", |
| 5773 | FullCategoryName, Result); |
| 5774 | /* struct _objc_category { |
| 5775 | char *category_name; |
| 5776 | char *class_name; |
| 5777 | struct _objc_method_list *instance_methods; |
| 5778 | struct _objc_method_list *class_methods; |
| 5779 | struct _objc_protocol_list *protocols; |
| 5780 | // Objective-C 1.0 extensions |
| 5781 | uint32_t size; // sizeof (struct _objc_category) |
| 5782 | struct _objc_property_list *instance_properties; // category's own |
| 5783 | // @property decl. |
| 5784 | }; |
| 5785 | */ |
| 5786 | |
| 5787 | static bool objc_category = false; |
| 5788 | if (!objc_category) { |
| 5789 | Result += "\nstruct _objc_category {\n"; |
| 5790 | Result += "\tchar *category_name;\n"; |
| 5791 | Result += "\tchar *class_name;\n"; |
| 5792 | Result += "\tstruct _objc_method_list *instance_methods;\n"; |
| 5793 | Result += "\tstruct _objc_method_list *class_methods;\n"; |
| 5794 | Result += "\tstruct _objc_protocol_list *protocols;\n"; |
| 5795 | Result += "\tunsigned int size;\n"; |
| 5796 | Result += "\tstruct _objc_property_list *instance_properties;\n"; |
| 5797 | Result += "};\n"; |
| 5798 | objc_category = true; |
| 5799 | } |
| 5800 | Result += "\nstatic struct _objc_category _OBJC_CATEGORY_"; |
| 5801 | Result += FullCategoryName; |
| 5802 | Result += " __attribute__ ((used, section (\"__OBJC, __category\")))= {\n\t\""; |
| 5803 | Result += IDecl->getNameAsString(); |
| 5804 | Result += "\"\n\t, \""; |
| 5805 | Result += ClassDecl->getNameAsString(); |
| 5806 | Result += "\"\n"; |
| 5807 | |
| 5808 | if (IDecl->instmeth_begin() != IDecl->instmeth_end()) { |
| 5809 | Result += "\t, (struct _objc_method_list *)" |
| 5810 | "&_OBJC_CATEGORY_INSTANCE_METHODS_"; |
| 5811 | Result += FullCategoryName; |
| 5812 | Result += "\n"; |
| 5813 | } |
| 5814 | else |
| 5815 | Result += "\t, 0\n"; |
| 5816 | if (IDecl->classmeth_begin() != IDecl->classmeth_end()) { |
| 5817 | Result += "\t, (struct _objc_method_list *)" |
| 5818 | "&_OBJC_CATEGORY_CLASS_METHODS_"; |
| 5819 | Result += FullCategoryName; |
| 5820 | Result += "\n"; |
| 5821 | } |
| 5822 | else |
| 5823 | Result += "\t, 0\n"; |
| 5824 | |
| 5825 | if (CDecl && CDecl->protocol_begin() != CDecl->protocol_end()) { |
| 5826 | Result += "\t, (struct _objc_protocol_list *)&_OBJC_CATEGORY_PROTOCOLS_"; |
| 5827 | Result += FullCategoryName; |
| 5828 | Result += "\n"; |
| 5829 | } |
| 5830 | else |
| 5831 | Result += "\t, 0\n"; |
| 5832 | Result += "\t, sizeof(struct _objc_category), 0\n};\n"; |
| 5833 | } |
| 5834 | |
| 5835 | // RewriteObjCMethodsMetaData - Rewrite methods metadata for instance or |
| 5836 | /// class methods. |
| 5837 | template<typename MethodIterator> |
| 5838 | void RewriteObjCFragileABI::RewriteObjCMethodsMetaData(MethodIterator MethodBegin, |
| 5839 | MethodIterator MethodEnd, |
| 5840 | bool IsInstanceMethod, |
| 5841 | StringRef prefix, |
| 5842 | StringRef ClassName, |
| 5843 | std::string &Result) { |
| 5844 | if (MethodBegin == MethodEnd) return; |
| 5845 | |
| 5846 | if (!objc_impl_method) { |
| 5847 | /* struct _objc_method { |
| 5848 | SEL _cmd; |
| 5849 | char *method_types; |
| 5850 | void *_imp; |
| 5851 | } |
| 5852 | */ |
| 5853 | Result += "\nstruct _objc_method {\n"; |
| 5854 | Result += "\tSEL _cmd;\n"; |
| 5855 | Result += "\tchar *method_types;\n"; |
| 5856 | Result += "\tvoid *_imp;\n"; |
| 5857 | Result += "};\n"; |
| 5858 | |
| 5859 | objc_impl_method = true; |
| 5860 | } |
| 5861 | |
| 5862 | // Build _objc_method_list for class's methods if needed |
| 5863 | |
| 5864 | /* struct { |
| 5865 | struct _objc_method_list *next_method; |
| 5866 | int method_count; |
| 5867 | struct _objc_method method_list[]; |
| 5868 | } |
| 5869 | */ |
| 5870 | unsigned NumMethods = std::distance(MethodBegin, MethodEnd); |
| 5871 | Result += "\nstatic struct {\n"; |
| 5872 | Result += "\tstruct _objc_method_list *next_method;\n"; |
| 5873 | Result += "\tint method_count;\n"; |
| 5874 | Result += "\tstruct _objc_method method_list["; |
| 5875 | Result += utostr(NumMethods); |
| 5876 | Result += "];\n} _OBJC_"; |
| 5877 | Result += prefix; |
| 5878 | Result += IsInstanceMethod ? "INSTANCE" : "CLASS"; |
| 5879 | Result += "_METHODS_"; |
| 5880 | Result += ClassName; |
| 5881 | Result += " __attribute__ ((used, section (\"__OBJC, __"; |
| 5882 | Result += IsInstanceMethod ? "inst" : "cls"; |
| 5883 | Result += "_meth\")))= "; |
| 5884 | Result += "{\n\t0, " + utostr(NumMethods) + "\n"; |
| 5885 | |
| 5886 | Result += "\t,{{(SEL)\""; |
| 5887 | Result += (*MethodBegin)->getSelector().getAsString().c_str(); |
| 5888 | std::string MethodTypeString; |
| 5889 | Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString); |
| 5890 | Result += "\", \""; |
| 5891 | Result += MethodTypeString; |
| 5892 | Result += "\", (void *)"; |
| 5893 | Result += MethodInternalNames[*MethodBegin]; |
| 5894 | Result += "}\n"; |
| 5895 | for (++MethodBegin; MethodBegin != MethodEnd; ++MethodBegin) { |
| 5896 | Result += "\t ,{(SEL)\""; |
| 5897 | Result += (*MethodBegin)->getSelector().getAsString().c_str(); |
| 5898 | std::string MethodTypeString; |
| 5899 | Context->getObjCEncodingForMethodDecl(*MethodBegin, MethodTypeString); |
| 5900 | Result += "\", \""; |
| 5901 | Result += MethodTypeString; |
| 5902 | Result += "\", (void *)"; |
| 5903 | Result += MethodInternalNames[*MethodBegin]; |
| 5904 | Result += "}\n"; |
| 5905 | } |
| 5906 | Result += "\t }\n};\n"; |
| 5907 | } |
| 5908 | |
| 5909 | Stmt *RewriteObjCFragileABI::RewriteObjCIvarRefExpr(ObjCIvarRefExpr *IV) { |
| 5910 | SourceRange OldRange = IV->getSourceRange(); |
| 5911 | Expr *BaseExpr = IV->getBase(); |
| 5912 | |
| 5913 | // Rewrite the base, but without actually doing replaces. |
| 5914 | { |
| 5915 | DisableReplaceStmtScope S(*this); |
| 5916 | BaseExpr = cast<Expr>(RewriteFunctionBodyOrGlobalInitializer(BaseExpr)); |
| 5917 | IV->setBase(BaseExpr); |
| 5918 | } |
| 5919 | |
| 5920 | ObjCIvarDecl *D = IV->getDecl(); |
| 5921 | |
| 5922 | Expr *Replacement = IV; |
| 5923 | if (CurMethodDef) { |
| 5924 | if (BaseExpr->getType()->isObjCObjectPointerType()) { |
| 5925 | const ObjCInterfaceType *iFaceDecl = |
| 5926 | dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType()); |
| 5927 | assert(iFaceDecl && "RewriteObjCIvarRefExpr - iFaceDecl is null"); |
| 5928 | // lookup which class implements the instance variable. |
| 5929 | ObjCInterfaceDecl *clsDeclared = 0; |
| 5930 | iFaceDecl->getDecl()->lookupInstanceVariable(D->getIdentifier(), |
| 5931 | clsDeclared); |
| 5932 | assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class"); |
| 5933 | |
| 5934 | // Synthesize an explicit cast to gain access to the ivar. |
| 5935 | std::string RecName = clsDeclared->getIdentifier()->getName(); |
| 5936 | RecName += "_IMPL"; |
| 5937 | IdentifierInfo *II = &Context->Idents.get(RecName); |
| 5938 | RecordDecl *RD = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
| 5939 | SourceLocation(), SourceLocation(), |
| 5940 | II); |
| 5941 | assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl"); |
| 5942 | QualType castT = Context->getPointerType(Context->getTagDeclType(RD)); |
| 5943 | CastExpr *castExpr = NoTypeInfoCStyleCastExpr(Context, castT, |
| 5944 | CK_BitCast, |
| 5945 | IV->getBase()); |
| 5946 | // Don't forget the parens to enforce the proper binding. |
| 5947 | ParenExpr *PE = new (Context) ParenExpr(OldRange.getBegin(), |
| 5948 | OldRange.getEnd(), |
| 5949 | castExpr); |
| 5950 | if (IV->isFreeIvar() && |
Douglas Gregor | 60ef308 | 2011-12-15 00:29:59 +0000 | [diff] [blame] | 5951 | declaresSameEntity(CurMethodDef->getClassInterface(), iFaceDecl->getDecl())) { |
Fariborz Jahanian | d5c3fa2 | 2011-12-08 18:25:15 +0000 | [diff] [blame] | 5952 | MemberExpr *ME = new (Context) MemberExpr(PE, true, D, |
| 5953 | IV->getLocation(), |
| 5954 | D->getType(), |
| 5955 | VK_LValue, OK_Ordinary); |
| 5956 | Replacement = ME; |
| 5957 | } else { |
| 5958 | IV->setBase(PE); |
| 5959 | } |
| 5960 | } |
| 5961 | } else { // we are outside a method. |
| 5962 | assert(!IV->isFreeIvar() && "Cannot have a free standing ivar outside a method"); |
| 5963 | |
| 5964 | // Explicit ivar refs need to have a cast inserted. |
| 5965 | // FIXME: consider sharing some of this code with the code above. |
| 5966 | if (BaseExpr->getType()->isObjCObjectPointerType()) { |
| 5967 | const ObjCInterfaceType *iFaceDecl = |
| 5968 | dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType()); |
| 5969 | // lookup which class implements the instance variable. |
| 5970 | ObjCInterfaceDecl *clsDeclared = 0; |
| 5971 | iFaceDecl->getDecl()->lookupInstanceVariable(D->getIdentifier(), |
| 5972 | clsDeclared); |
| 5973 | assert(clsDeclared && "RewriteObjCIvarRefExpr(): Can't find class"); |
| 5974 | |
| 5975 | // Synthesize an explicit cast to gain access to the ivar. |
| 5976 | std::string RecName = clsDeclared->getIdentifier()->getName(); |
| 5977 | RecName += "_IMPL"; |
| 5978 | IdentifierInfo *II = &Context->Idents.get(RecName); |
| 5979 | RecordDecl *RD = RecordDecl::Create(*Context, TTK_Struct, TUDecl, |
| 5980 | SourceLocation(), SourceLocation(), |
| 5981 | II); |
| 5982 | assert(RD && "RewriteObjCIvarRefExpr(): Can't find RecordDecl"); |
| 5983 | QualType castT = Context->getPointerType(Context->getTagDeclType(RD)); |
| 5984 | CastExpr *castExpr = NoTypeInfoCStyleCastExpr(Context, castT, |
| 5985 | CK_BitCast, |
| 5986 | IV->getBase()); |
| 5987 | // Don't forget the parens to enforce the proper binding. |
| 5988 | ParenExpr *PE = new (Context) ParenExpr(IV->getBase()->getLocStart(), |
| 5989 | IV->getBase()->getLocEnd(), castExpr); |
| 5990 | // Cannot delete IV->getBase(), since PE points to it. |
| 5991 | // Replace the old base with the cast. This is important when doing |
| 5992 | // embedded rewrites. For example, [newInv->_container addObject:0]. |
| 5993 | IV->setBase(PE); |
| 5994 | } |
| 5995 | } |
| 5996 | |
| 5997 | ReplaceStmtWithRange(IV, Replacement, OldRange); |
| 5998 | return Replacement; |
| 5999 | } |
| 6000 | |