blob: 3690c83d84578f4e07ae2c5ccd67baa2bfb321ec [file] [log] [blame]
John McCall8f0e8d22011-06-15 23:25:17 +00001//===-- Internals.h - Implementation Details---------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_CLANG_LIB_ARCMIGRATE_INTERNALS_H
11#define LLVM_CLANG_LIB_ARCMIGRATE_INTERNALS_H
12
13#include "clang/ARCMigrate/ARCMT.h"
Douglas Gregordc7b6412012-10-23 23:11:23 +000014#include "clang/Basic/Diagnostic.h"
John McCall8f0e8d22011-06-15 23:25:17 +000015#include "llvm/ADT/ArrayRef.h"
Argyrios Kyrtzidis684190b2012-06-01 00:10:47 +000016#include "llvm/ADT/Optional.h"
Douglas Gregordc7b6412012-10-23 23:11:23 +000017#include <list>
John McCall8f0e8d22011-06-15 23:25:17 +000018
19namespace clang {
20 class Sema;
21 class Stmt;
22
23namespace arcmt {
24
25class CapturedDiagList {
26 typedef std::list<StoredDiagnostic> ListTy;
27 ListTy List;
28
29public:
30 void push_back(const StoredDiagnostic &diag) { List.push_back(diag); }
31
Chris Lattner2d3ba4f2011-07-23 17:14:25 +000032 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
33 bool hasDiagnostic(ArrayRef<unsigned> IDs, SourceRange range) const;
John McCall8f0e8d22011-06-15 23:25:17 +000034
David Blaikied6471f72011-09-25 23:23:43 +000035 void reportDiagnostics(DiagnosticsEngine &diags) const;
Argyrios Kyrtzidise665d692011-06-18 00:53:41 +000036
37 bool hasErrors() const;
Argyrios Kyrtzidis7ee20492011-07-19 17:20:03 +000038
39 typedef ListTy::const_iterator iterator;
40 iterator begin() const { return List.begin(); }
41 iterator end() const { return List.end(); }
John McCall8f0e8d22011-06-15 23:25:17 +000042};
43
Argyrios Kyrtzidis7ee20492011-07-19 17:20:03 +000044void writeARCDiagsToPlist(const std::string &outPath,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +000045 ArrayRef<StoredDiagnostic> diags,
Argyrios Kyrtzidis7ee20492011-07-19 17:20:03 +000046 SourceManager &SM, const LangOptions &LangOpts);
47
John McCall8f0e8d22011-06-15 23:25:17 +000048class TransformActions {
David Blaikied6471f72011-09-25 23:23:43 +000049 DiagnosticsEngine &Diags;
John McCall8f0e8d22011-06-15 23:25:17 +000050 CapturedDiagList &CapturedDiags;
Argyrios Kyrtzidisfd103982011-07-18 07:44:45 +000051 bool ReportedErrors;
John McCall8f0e8d22011-06-15 23:25:17 +000052 void *Impl; // TransformActionsImpl.
53
54public:
David Blaikied6471f72011-09-25 23:23:43 +000055 TransformActions(DiagnosticsEngine &diag, CapturedDiagList &capturedDiags,
John McCall8f0e8d22011-06-15 23:25:17 +000056 ASTContext &ctx, Preprocessor &PP);
57 ~TransformActions();
58
59 void startTransaction();
60 bool commitTransaction();
61 void abortTransaction();
62
Chris Lattner686775d2011-07-20 06:58:45 +000063 void insert(SourceLocation loc, StringRef text);
64 void insertAfterToken(SourceLocation loc, StringRef text);
John McCall8f0e8d22011-06-15 23:25:17 +000065 void remove(SourceRange range);
66 void removeStmt(Stmt *S);
Chris Lattner686775d2011-07-20 06:58:45 +000067 void replace(SourceRange range, StringRef text);
John McCall8f0e8d22011-06-15 23:25:17 +000068 void replace(SourceRange range, SourceRange replacementRange);
Chris Lattner686775d2011-07-20 06:58:45 +000069 void replaceStmt(Stmt *S, StringRef text);
70 void replaceText(SourceLocation loc, StringRef text,
71 StringRef replacementText);
John McCall8f0e8d22011-06-15 23:25:17 +000072 void increaseIndentation(SourceRange range,
73 SourceLocation parentIndent);
74
Chris Lattner2d3ba4f2011-07-23 17:14:25 +000075 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
John McCall8f0e8d22011-06-15 23:25:17 +000076 bool clearAllDiagnostics(SourceRange range) {
Chris Lattner2d3ba4f2011-07-23 17:14:25 +000077 return clearDiagnostic(ArrayRef<unsigned>(), range);
John McCall8f0e8d22011-06-15 23:25:17 +000078 }
79 bool clearDiagnostic(unsigned ID1, unsigned ID2, SourceRange range) {
80 unsigned IDs[] = { ID1, ID2 };
81 return clearDiagnostic(IDs, range);
82 }
83 bool clearDiagnostic(unsigned ID1, unsigned ID2, unsigned ID3,
84 SourceRange range) {
85 unsigned IDs[] = { ID1, ID2, ID3 };
86 return clearDiagnostic(IDs, range);
87 }
88
89 bool hasDiagnostic(unsigned ID, SourceRange range) {
90 return CapturedDiags.hasDiagnostic(ID, range);
91 }
92
93 bool hasDiagnostic(unsigned ID1, unsigned ID2, SourceRange range) {
94 unsigned IDs[] = { ID1, ID2 };
95 return CapturedDiags.hasDiagnostic(IDs, range);
96 }
97
Chris Lattner686775d2011-07-20 06:58:45 +000098 void reportError(StringRef error, SourceLocation loc,
John McCall8f0e8d22011-06-15 23:25:17 +000099 SourceRange range = SourceRange());
Fariborz Jahanianb5c6bab2012-01-25 00:20:29 +0000100 void reportWarning(StringRef warning, SourceLocation loc,
101 SourceRange range = SourceRange());
Chris Lattner686775d2011-07-20 06:58:45 +0000102 void reportNote(StringRef note, SourceLocation loc,
John McCall8f0e8d22011-06-15 23:25:17 +0000103 SourceRange range = SourceRange());
104
Argyrios Kyrtzidisfd103982011-07-18 07:44:45 +0000105 bool hasReportedErrors() const { return ReportedErrors; }
106
John McCall8f0e8d22011-06-15 23:25:17 +0000107 class RewriteReceiver {
108 public:
109 virtual ~RewriteReceiver();
110
Chris Lattner686775d2011-07-20 06:58:45 +0000111 virtual void insert(SourceLocation loc, StringRef text) = 0;
John McCall8f0e8d22011-06-15 23:25:17 +0000112 virtual void remove(CharSourceRange range) = 0;
113 virtual void increaseIndentation(CharSourceRange range,
114 SourceLocation parentIndent) = 0;
115 };
116
117 void applyRewrites(RewriteReceiver &receiver);
118};
119
120class Transaction {
121 TransformActions &TA;
122 bool Aborted;
123
124public:
125 Transaction(TransformActions &TA) : TA(TA), Aborted(false) {
126 TA.startTransaction();
127 }
128
129 ~Transaction() {
130 if (!isAborted())
131 TA.commitTransaction();
132 }
133
134 void abort() {
135 TA.abortTransaction();
136 Aborted = true;
137 }
138
139 bool isAborted() const { return Aborted; }
140};
141
142class MigrationPass {
143public:
144 ASTContext &Ctx;
Argyrios Kyrtzidise0ac7452011-11-04 15:58:08 +0000145 LangOptions::GCMode OrigGCMode;
Fariborz Jahanianb5c6bab2012-01-25 00:20:29 +0000146 MigratorOptions MigOptions;
John McCall8f0e8d22011-06-15 23:25:17 +0000147 Sema &SemaRef;
148 TransformActions &TA;
Argyrios Kyrtzidisea2224d2013-01-04 18:30:08 +0000149 const CapturedDiagList &CapturedDiags;
John McCall8f0e8d22011-06-15 23:25:17 +0000150 std::vector<SourceLocation> &ARCMTMacroLocs;
David Blaikiedc84cd52013-02-20 22:23:23 +0000151 Optional<bool> EnableCFBridgeFns;
John McCall8f0e8d22011-06-15 23:25:17 +0000152
Argyrios Kyrtzidise0ac7452011-11-04 15:58:08 +0000153 MigrationPass(ASTContext &Ctx, LangOptions::GCMode OrigGCMode,
154 Sema &sema, TransformActions &TA,
Argyrios Kyrtzidisea2224d2013-01-04 18:30:08 +0000155 const CapturedDiagList &capturedDiags,
John McCall8f0e8d22011-06-15 23:25:17 +0000156 std::vector<SourceLocation> &ARCMTMacroLocs)
Fariborz Jahanianb5c6bab2012-01-25 00:20:29 +0000157 : Ctx(Ctx), OrigGCMode(OrigGCMode), MigOptions(),
Argyrios Kyrtzidisea2224d2013-01-04 18:30:08 +0000158 SemaRef(sema), TA(TA), CapturedDiags(capturedDiags),
Argyrios Kyrtzidise0ac7452011-11-04 15:58:08 +0000159 ARCMTMacroLocs(ARCMTMacroLocs) { }
160
Argyrios Kyrtzidisea2224d2013-01-04 18:30:08 +0000161 const CapturedDiagList &getDiags() const { return CapturedDiags; }
162
Argyrios Kyrtzidise0ac7452011-11-04 15:58:08 +0000163 bool isGCMigration() const { return OrigGCMode != LangOptions::NonGC; }
Fariborz Jahanianb5c6bab2012-01-25 00:20:29 +0000164 bool noNSAllocReallocError() const { return MigOptions.NoNSAllocReallocError; }
165 void setNSAllocReallocError(bool val) { MigOptions.NoNSAllocReallocError = val; }
Fariborz Jahanian26f0e4e2012-01-26 00:08:04 +0000166 bool noFinalizeRemoval() const { return MigOptions.NoFinalizeRemoval; }
167 void setNoFinalizeRemoval(bool val) {MigOptions.NoFinalizeRemoval = val; }
Argyrios Kyrtzidis684190b2012-06-01 00:10:47 +0000168
169 bool CFBridgingFunctionsDefined();
John McCall8f0e8d22011-06-15 23:25:17 +0000170};
171
Chris Lattner686775d2011-07-20 06:58:45 +0000172static inline StringRef getARCMTMacroName() {
John McCall8f0e8d22011-06-15 23:25:17 +0000173 return "__IMPL_ARCMT_REMOVED_EXPR__";
174}
175
176} // end namespace arcmt
177
178} // end namespace clang
179
180#endif