blob: 0a5bbe838c9a3654c80734f5922c97dcdfc7504b [file] [log] [blame]
John McCalld70fb982011-06-15 23:25:17 +00001//===-- arcmt-test.cpp - ARC Migration Tool testbed -----------------------===//
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#include "clang/ARCMigrate/ARCMT.h"
11#include "clang/Frontend/ASTUnit.h"
12#include "clang/Frontend/TextDiagnosticPrinter.h"
John McCalld70fb982011-06-15 23:25:17 +000013#include "clang/Frontend/Utils.h"
Chandler Carruthcc0694c2012-12-04 09:25:21 +000014#include "clang/Frontend/VerifyDiagnosticConsumer.h"
John McCalld70fb982011-06-15 23:25:17 +000015#include "clang/Lex/Preprocessor.h"
Argyrios Kyrtzidis7fbd97f2011-07-09 20:00:58 +000016#include "llvm/Support/FileSystem.h"
Chandler Carruthcc0694c2012-12-04 09:25:21 +000017#include "llvm/Support/MemoryBuffer.h"
Rafael Espindoladcf73d22013-06-13 21:09:29 +000018#include "llvm/Support/PathV1.h"
John McCalld70fb982011-06-15 23:25:17 +000019#include "llvm/Support/Signals.h"
Argyrios Kyrtzidis7fbd97f2011-07-09 20:00:58 +000020#include "llvm/Support/system_error.h"
John McCalld70fb982011-06-15 23:25:17 +000021
22using namespace clang;
23using namespace arcmt;
24
25static llvm::cl::opt<bool>
26CheckOnly("check-only",
27 llvm::cl::desc("Just check for issues that need to be handled manually"));
28
29//static llvm::cl::opt<bool>
30//TestResultForARC("test-result",
31//llvm::cl::desc("Test the result of transformations by parsing it in ARC mode"));
32
33static llvm::cl::opt<bool>
34OutputTransformations("output-transformations",
35 llvm::cl::desc("Print the source transformations"));
36
37static llvm::cl::opt<bool>
38VerifyDiags("verify",llvm::cl::desc("Verify emitted diagnostics and warnings"));
39
40static llvm::cl::opt<bool>
41VerboseOpt("v", llvm::cl::desc("Enable verbose output"));
42
Argyrios Kyrtzidis7fbd97f2011-07-09 20:00:58 +000043static llvm::cl::opt<bool>
44VerifyTransformedFiles("verify-transformed-files",
45llvm::cl::desc("Read pairs of file mappings (typically the output of "
46 "c-arcmt-test) and compare their contents with the filenames "
47 "provided in command-line"));
48
49static llvm::cl::opt<std::string>
50RemappingsFile("remappings-file",
51 llvm::cl::desc("Pairs of file mappings (typically the output of "
52 "c-arcmt-test)"));
53
54static llvm::cl::list<std::string>
55ResultFiles(llvm::cl::Positional, llvm::cl::desc("<filename>..."));
56
John McCalld70fb982011-06-15 23:25:17 +000057static llvm::cl::extrahelp extraHelp(
58 "\nusage with compiler args: arcmt-test [options] --args [compiler flags]\n");
59
60// This function isn't referenced outside its translation unit, but it
61// can't use the "static" keyword because its address is used for
62// GetMainExecutable (since some platforms don't support taking the
63// address of main, and some platforms can't implement GetMainExecutable
64// without being given the address of a function in the main executable).
Rafael Espindola9678d272013-06-26 05:03:40 +000065std::string GetExecutablePath(const char *Argv0) {
John McCalld70fb982011-06-15 23:25:17 +000066 // This just needs to be some symbol in the binary; C++ doesn't
67 // allow taking the address of ::main however.
68 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
Rafael Espindola9678d272013-06-26 05:03:40 +000069 return llvm::sys::fs::getMainExecutable(Argv0, MainAddr);
John McCalld70fb982011-06-15 23:25:17 +000070}
71
72static void printSourceLocation(SourceLocation loc, ASTContext &Ctx,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000073 raw_ostream &OS);
John McCalld70fb982011-06-15 23:25:17 +000074static void printSourceRange(CharSourceRange range, ASTContext &Ctx,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000075 raw_ostream &OS);
John McCalld70fb982011-06-15 23:25:17 +000076
77namespace {
78
79class PrintTransforms : public MigrationProcess::RewriteListener {
80 ASTContext *Ctx;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000081 raw_ostream &OS;
John McCalld70fb982011-06-15 23:25:17 +000082
83public:
Chris Lattner0e62c1c2011-07-23 10:55:15 +000084 PrintTransforms(raw_ostream &OS)
John McCalld70fb982011-06-15 23:25:17 +000085 : Ctx(0), OS(OS) { }
86
87 virtual void start(ASTContext &ctx) { Ctx = &ctx; }
88 virtual void finish() { Ctx = 0; }
89
Chris Lattner0e62c1c2011-07-23 10:55:15 +000090 virtual void insert(SourceLocation loc, StringRef text) {
John McCalld70fb982011-06-15 23:25:17 +000091 assert(Ctx);
92 OS << "Insert: ";
93 printSourceLocation(loc, *Ctx, OS);
94 OS << " \"" << text << "\"\n";
95 }
96
97 virtual void remove(CharSourceRange range) {
98 assert(Ctx);
99 OS << "Remove: ";
100 printSourceRange(range, *Ctx, OS);
101 OS << '\n';
102 }
103};
104
105} // anonymous namespace
106
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000107static bool checkForMigration(StringRef resourcesPath,
Chris Lattner54b16772011-07-23 17:14:25 +0000108 ArrayRef<const char *> Args) {
Douglas Gregor811db4e2012-10-23 22:26:28 +0000109 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
David Blaikiee2eefae2011-09-25 23:39:51 +0000110 DiagnosticConsumer *DiagClient =
Douglas Gregor811db4e2012-10-23 22:26:28 +0000111 new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts);
Dylan Noblesmithc95d8192012-02-20 14:00:23 +0000112 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
113 IntrusiveRefCntPtr<DiagnosticsEngine> Diags(
Douglas Gregor811db4e2012-10-23 22:26:28 +0000114 new DiagnosticsEngine(DiagID, &*DiagOpts, DiagClient));
John McCalld70fb982011-06-15 23:25:17 +0000115 // Chain in -verify checker, if requested.
David Blaikie69609dc2011-09-26 00:38:03 +0000116 VerifyDiagnosticConsumer *verifyDiag = 0;
John McCalld70fb982011-06-15 23:25:17 +0000117 if (VerifyDiags) {
David Blaikie69609dc2011-09-26 00:38:03 +0000118 verifyDiag = new VerifyDiagnosticConsumer(*Diags);
John McCalld70fb982011-06-15 23:25:17 +0000119 Diags->setClient(verifyDiag);
120 }
121
Argyrios Kyrtzidis6e4ef202011-06-16 00:53:46 +0000122 CompilerInvocation CI;
Dylan Noblesmithe99b27f2011-12-23 03:05:38 +0000123 if (!CompilerInvocation::CreateFromArgs(CI, Args.begin(), Args.end(), *Diags))
124 return true;
John McCalld70fb982011-06-15 23:25:17 +0000125
Argyrios Kyrtzidis6e4ef202011-06-16 00:53:46 +0000126 if (CI.getFrontendOpts().Inputs.empty()) {
John McCalld70fb982011-06-15 23:25:17 +0000127 llvm::errs() << "error: no input files\n";
128 return true;
129 }
130
Ted Kremenek8cf47df2011-11-17 23:01:24 +0000131 if (!CI.getLangOpts()->ObjC1)
John McCalld70fb982011-06-15 23:25:17 +0000132 return false;
133
Douglas Gregor32fbe312012-01-20 16:28:04 +0000134 arcmt::checkForManualIssues(CI, CI.getFrontendOpts().Inputs[0],
Argyrios Kyrtzidis90b6a2a2011-06-18 00:53:41 +0000135 Diags->getClient());
136 return Diags->getClient()->getNumErrors() > 0;
John McCalld70fb982011-06-15 23:25:17 +0000137}
138
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000139static void printResult(FileRemapper &remapper, raw_ostream &OS) {
Ted Kremenekf7639e12012-03-06 20:06:33 +0000140 PreprocessorOptions PPOpts;
141 remapper.applyMappings(PPOpts);
John McCalld70fb982011-06-15 23:25:17 +0000142 // The changed files will be in memory buffers, print them.
143 for (unsigned i = 0, e = PPOpts.RemappedFileBuffers.size(); i != e; ++i) {
144 const llvm::MemoryBuffer *mem = PPOpts.RemappedFileBuffers[i].second;
145 OS << mem->getBuffer();
146 }
147}
148
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000149static bool performTransformations(StringRef resourcesPath,
Chris Lattner54b16772011-07-23 17:14:25 +0000150 ArrayRef<const char *> Args) {
John McCalld70fb982011-06-15 23:25:17 +0000151 // Check first.
152 if (checkForMigration(resourcesPath, Args))
153 return true;
154
Douglas Gregor811db4e2012-10-23 22:26:28 +0000155 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
David Blaikiee2eefae2011-09-25 23:39:51 +0000156 DiagnosticConsumer *DiagClient =
Douglas Gregor811db4e2012-10-23 22:26:28 +0000157 new TextDiagnosticPrinter(llvm::errs(), &*DiagOpts);
Dylan Noblesmithc95d8192012-02-20 14:00:23 +0000158 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
159 IntrusiveRefCntPtr<DiagnosticsEngine> TopDiags(
Douglas Gregor811db4e2012-10-23 22:26:28 +0000160 new DiagnosticsEngine(DiagID, &*DiagOpts, &*DiagClient));
John McCalld70fb982011-06-15 23:25:17 +0000161
Argyrios Kyrtzidis6e4ef202011-06-16 00:53:46 +0000162 CompilerInvocation origCI;
Dylan Noblesmithe99b27f2011-12-23 03:05:38 +0000163 if (!CompilerInvocation::CreateFromArgs(origCI, Args.begin(), Args.end(),
164 *TopDiags))
165 return true;
John McCalld70fb982011-06-15 23:25:17 +0000166
Argyrios Kyrtzidis6e4ef202011-06-16 00:53:46 +0000167 if (origCI.getFrontendOpts().Inputs.empty()) {
John McCalld70fb982011-06-15 23:25:17 +0000168 llvm::errs() << "error: no input files\n";
169 return true;
170 }
171
Ted Kremenek8cf47df2011-11-17 23:01:24 +0000172 if (!origCI.getLangOpts()->ObjC1)
John McCalld70fb982011-06-15 23:25:17 +0000173 return false;
174
Argyrios Kyrtzidis6e4ef202011-06-16 00:53:46 +0000175 MigrationProcess migration(origCI, DiagClient);
John McCalld70fb982011-06-15 23:25:17 +0000176
Argyrios Kyrtzidisd208ef92011-11-04 15:58:08 +0000177 std::vector<TransformFn>
Fariborz Jahanian48fd81b2012-01-26 20:57:58 +0000178 transforms = arcmt::getAllTransformations(origCI.getLangOpts()->getGC(),
179 origCI.getMigratorOpts().NoFinalizeRemoval);
John McCalld70fb982011-06-15 23:25:17 +0000180 assert(!transforms.empty());
181
Dylan Noblesmith1cd10692012-02-13 12:32:21 +0000182 OwningPtr<PrintTransforms> transformPrinter;
John McCalld70fb982011-06-15 23:25:17 +0000183 if (OutputTransformations)
184 transformPrinter.reset(new PrintTransforms(llvm::outs()));
185
186 for (unsigned i=0, e = transforms.size(); i != e; ++i) {
187 bool err = migration.applyTransform(transforms[i], transformPrinter.get());
188 if (err) return true;
189
190 if (VerboseOpt) {
191 if (i == e-1)
192 llvm::errs() << "\n##### FINAL RESULT #####\n";
193 else
194 llvm::errs() << "\n##### OUTPUT AFTER "<< i+1 <<". TRANSFORMATION #####\n";
195 printResult(migration.getRemapper(), llvm::errs());
196 llvm::errs() << "\n##########################\n\n";
197 }
198 }
199
200 if (!OutputTransformations)
201 printResult(migration.getRemapper(), llvm::outs());
202
203 // FIXME: TestResultForARC
204
205 return false;
206}
207
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000208static bool filesCompareEqual(StringRef fname1, StringRef fname2) {
Argyrios Kyrtzidis7fbd97f2011-07-09 20:00:58 +0000209 using namespace llvm;
210
211 OwningPtr<MemoryBuffer> file1;
212 MemoryBuffer::getFile(fname1, file1);
213 if (!file1)
214 return false;
215
216 OwningPtr<MemoryBuffer> file2;
217 MemoryBuffer::getFile(fname2, file2);
218 if (!file2)
219 return false;
220
221 return file1->getBuffer() == file2->getBuffer();
222}
223
Chris Lattner54b16772011-07-23 17:14:25 +0000224static bool verifyTransformedFiles(ArrayRef<std::string> resultFiles) {
Argyrios Kyrtzidis7fbd97f2011-07-09 20:00:58 +0000225 using namespace llvm;
226
227 assert(!resultFiles.empty());
228
229 std::map<StringRef, StringRef> resultMap;
230
231 for (ArrayRef<std::string>::iterator
232 I = resultFiles.begin(), E = resultFiles.end(); I != E; ++I) {
233 StringRef fname(*I);
234 if (!fname.endswith(".result")) {
235 errs() << "error: filename '" << fname
236 << "' does not have '.result' extension\n";
237 return true;
238 }
239 resultMap[sys::path::stem(fname)] = fname;
240 }
241
242 OwningPtr<MemoryBuffer> inputBuf;
243 if (RemappingsFile.empty())
244 MemoryBuffer::getSTDIN(inputBuf);
245 else
246 MemoryBuffer::getFile(RemappingsFile, inputBuf);
247 if (!inputBuf) {
248 errs() << "error: could not read remappings input\n";
249 return true;
250 }
251
252 SmallVector<StringRef, 8> strs;
253 inputBuf->getBuffer().split(strs, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
254
255 if (strs.empty()) {
256 errs() << "error: no files to verify from stdin\n";
257 return true;
258 }
259 if (strs.size() % 2 != 0) {
260 errs() << "error: files to verify are not original/result pairs\n";
261 return true;
262 }
263
264 for (unsigned i = 0, e = strs.size(); i != e; i += 2) {
265 StringRef inputOrigFname = strs[i];
266 StringRef inputResultFname = strs[i+1];
267
268 std::map<StringRef, StringRef>::iterator It;
269 It = resultMap.find(sys::path::filename(inputOrigFname));
270 if (It == resultMap.end()) {
271 errs() << "error: '" << inputOrigFname << "' is not in the list of "
272 << "transformed files to verify\n";
273 return true;
274 }
275
276 bool exists = false;
277 sys::fs::exists(It->second, exists);
278 if (!exists) {
279 errs() << "error: '" << It->second << "' does not exist\n";
280 return true;
281 }
282 sys::fs::exists(inputResultFname, exists);
283 if (!exists) {
284 errs() << "error: '" << inputResultFname << "' does not exist\n";
285 return true;
286 }
287
288 if (!filesCompareEqual(It->second, inputResultFname)) {
289 errs() << "error: '" << It->second << "' is different than "
290 << "'" << inputResultFname << "'\n";
291 return true;
292 }
293
294 resultMap.erase(It);
295 }
296
297 if (!resultMap.empty()) {
298 for (std::map<StringRef, StringRef>::iterator
299 I = resultMap.begin(), E = resultMap.end(); I != E; ++I)
300 errs() << "error: '" << I->second << "' was not verified!\n";
301 return true;
302 }
303
304 return false;
305}
306
John McCalld70fb982011-06-15 23:25:17 +0000307//===----------------------------------------------------------------------===//
308// Misc. functions.
309//===----------------------------------------------------------------------===//
310
311static void printSourceLocation(SourceLocation loc, ASTContext &Ctx,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000312 raw_ostream &OS) {
John McCalld70fb982011-06-15 23:25:17 +0000313 SourceManager &SM = Ctx.getSourceManager();
314 PresumedLoc PL = SM.getPresumedLoc(loc);
315
316 OS << llvm::sys::path::filename(PL.getFilename());
317 OS << ":" << PL.getLine() << ":"
318 << PL.getColumn();
319}
320
321static void printSourceRange(CharSourceRange range, ASTContext &Ctx,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000322 raw_ostream &OS) {
John McCalld70fb982011-06-15 23:25:17 +0000323 SourceManager &SM = Ctx.getSourceManager();
David Blaikiebbafb8a2012-03-11 07:00:24 +0000324 const LangOptions &langOpts = Ctx.getLangOpts();
John McCalld70fb982011-06-15 23:25:17 +0000325
326 PresumedLoc PL = SM.getPresumedLoc(range.getBegin());
327
328 OS << llvm::sys::path::filename(PL.getFilename());
329 OS << " [" << PL.getLine() << ":"
330 << PL.getColumn();
331 OS << " - ";
332
333 SourceLocation end = range.getEnd();
334 PL = SM.getPresumedLoc(end);
335
336 unsigned endCol = PL.getColumn() - 1;
337 if (!range.isTokenRange())
338 endCol += Lexer::MeasureTokenLength(end, SM, langOpts);
339 OS << PL.getLine() << ":" << endCol << "]";
340}
341
342//===----------------------------------------------------------------------===//
343// Command line processing.
344//===----------------------------------------------------------------------===//
345
346int main(int argc, const char **argv) {
John McCalld70fb982011-06-15 23:25:17 +0000347 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
348 llvm::sys::PrintStackTraceOnErrorSignal();
349
350 std::string
351 resourcesPath = CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
352
353 int optargc = 0;
354 for (; optargc != argc; ++optargc) {
355 if (StringRef(argv[optargc]) == "--args")
356 break;
357 }
David Blaikie09d20ee2012-02-07 19:36:38 +0000358 llvm::cl::ParseCommandLineOptions(optargc, argv, "arcmt-test");
Argyrios Kyrtzidis7fbd97f2011-07-09 20:00:58 +0000359
360 if (VerifyTransformedFiles) {
361 if (ResultFiles.empty()) {
362 llvm::cl::PrintHelpMessage();
363 return 1;
364 }
365 return verifyTransformedFiles(ResultFiles);
366 }
367
John McCalld70fb982011-06-15 23:25:17 +0000368 if (optargc == argc) {
369 llvm::cl::PrintHelpMessage();
370 return 1;
371 }
372
Chris Lattner54b16772011-07-23 17:14:25 +0000373 ArrayRef<const char*> Args(argv+optargc+1, argc-optargc-1);
John McCalld70fb982011-06-15 23:25:17 +0000374
375 if (CheckOnly)
376 return checkForMigration(resourcesPath, Args);
377
378 return performTransformations(resourcesPath, Args);
379}