blob: 3dc4c11667335776a9ed3c91ee8b1064a0108433 [file] [log] [blame]
John McCall8f0e8d22011-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"
David Blaikie621bc692011-09-26 00:38:03 +000013#include "clang/Frontend/VerifyDiagnosticConsumer.h"
John McCall8f0e8d22011-06-15 23:25:17 +000014#include "clang/Frontend/Utils.h"
15#include "clang/Lex/Preprocessor.h"
16#include "llvm/Support/MemoryBuffer.h"
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +000017#include "llvm/Support/FileSystem.h"
John McCall8f0e8d22011-06-15 23:25:17 +000018#include "llvm/Support/Signals.h"
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +000019#include "llvm/Support/system_error.h"
John McCall8f0e8d22011-06-15 23:25:17 +000020
21using namespace clang;
22using namespace arcmt;
23
24static llvm::cl::opt<bool>
25CheckOnly("check-only",
26 llvm::cl::desc("Just check for issues that need to be handled manually"));
27
28//static llvm::cl::opt<bool>
29//TestResultForARC("test-result",
30//llvm::cl::desc("Test the result of transformations by parsing it in ARC mode"));
31
32static llvm::cl::opt<bool>
33OutputTransformations("output-transformations",
34 llvm::cl::desc("Print the source transformations"));
35
36static llvm::cl::opt<bool>
37VerifyDiags("verify",llvm::cl::desc("Verify emitted diagnostics and warnings"));
38
39static llvm::cl::opt<bool>
40VerboseOpt("v", llvm::cl::desc("Enable verbose output"));
41
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +000042static llvm::cl::opt<bool>
43VerifyTransformedFiles("verify-transformed-files",
44llvm::cl::desc("Read pairs of file mappings (typically the output of "
45 "c-arcmt-test) and compare their contents with the filenames "
46 "provided in command-line"));
47
48static llvm::cl::opt<std::string>
49RemappingsFile("remappings-file",
50 llvm::cl::desc("Pairs of file mappings (typically the output of "
51 "c-arcmt-test)"));
52
53static llvm::cl::list<std::string>
54ResultFiles(llvm::cl::Positional, llvm::cl::desc("<filename>..."));
55
John McCall8f0e8d22011-06-15 23:25:17 +000056static llvm::cl::extrahelp extraHelp(
57 "\nusage with compiler args: arcmt-test [options] --args [compiler flags]\n");
58
59// This function isn't referenced outside its translation unit, but it
60// can't use the "static" keyword because its address is used for
61// GetMainExecutable (since some platforms don't support taking the
62// address of main, and some platforms can't implement GetMainExecutable
63// without being given the address of a function in the main executable).
64llvm::sys::Path GetExecutablePath(const char *Argv0) {
65 // This just needs to be some symbol in the binary; C++ doesn't
66 // allow taking the address of ::main however.
67 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
68 return llvm::sys::Path::GetMainExecutable(Argv0, MainAddr);
69}
70
71static void printSourceLocation(SourceLocation loc, ASTContext &Ctx,
Chris Lattner5f9e2722011-07-23 10:55:15 +000072 raw_ostream &OS);
John McCall8f0e8d22011-06-15 23:25:17 +000073static void printSourceRange(CharSourceRange range, ASTContext &Ctx,
Chris Lattner5f9e2722011-07-23 10:55:15 +000074 raw_ostream &OS);
John McCall8f0e8d22011-06-15 23:25:17 +000075
76namespace {
77
78class PrintTransforms : public MigrationProcess::RewriteListener {
79 ASTContext *Ctx;
Chris Lattner5f9e2722011-07-23 10:55:15 +000080 raw_ostream &OS;
John McCall8f0e8d22011-06-15 23:25:17 +000081
82public:
Chris Lattner5f9e2722011-07-23 10:55:15 +000083 PrintTransforms(raw_ostream &OS)
John McCall8f0e8d22011-06-15 23:25:17 +000084 : Ctx(0), OS(OS) { }
85
86 virtual void start(ASTContext &ctx) { Ctx = &ctx; }
87 virtual void finish() { Ctx = 0; }
88
Chris Lattner5f9e2722011-07-23 10:55:15 +000089 virtual void insert(SourceLocation loc, StringRef text) {
John McCall8f0e8d22011-06-15 23:25:17 +000090 assert(Ctx);
91 OS << "Insert: ";
92 printSourceLocation(loc, *Ctx, OS);
93 OS << " \"" << text << "\"\n";
94 }
95
96 virtual void remove(CharSourceRange range) {
97 assert(Ctx);
98 OS << "Remove: ";
99 printSourceRange(range, *Ctx, OS);
100 OS << '\n';
101 }
102};
103
104} // anonymous namespace
105
Chris Lattner5f9e2722011-07-23 10:55:15 +0000106static bool checkForMigration(StringRef resourcesPath,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +0000107 ArrayRef<const char *> Args) {
David Blaikie78ad0b92011-09-25 23:39:51 +0000108 DiagnosticConsumer *DiagClient =
John McCall8f0e8d22011-06-15 23:25:17 +0000109 new TextDiagnosticPrinter(llvm::errs(), DiagnosticOptions());
110 llvm::IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
David Blaikied6471f72011-09-25 23:23:43 +0000111 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags(
112 new DiagnosticsEngine(DiagID, DiagClient));
John McCall8f0e8d22011-06-15 23:25:17 +0000113 // Chain in -verify checker, if requested.
David Blaikie621bc692011-09-26 00:38:03 +0000114 VerifyDiagnosticConsumer *verifyDiag = 0;
John McCall8f0e8d22011-06-15 23:25:17 +0000115 if (VerifyDiags) {
David Blaikie621bc692011-09-26 00:38:03 +0000116 verifyDiag = new VerifyDiagnosticConsumer(*Diags);
John McCall8f0e8d22011-06-15 23:25:17 +0000117 Diags->setClient(verifyDiag);
118 }
119
Argyrios Kyrtzidiseaed19e2011-06-16 00:53:46 +0000120 CompilerInvocation CI;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000121 if (!CompilerInvocation::CreateFromArgs(CI, Args.begin(), Args.end(), *Diags))
122 return true;
John McCall8f0e8d22011-06-15 23:25:17 +0000123
Argyrios Kyrtzidiseaed19e2011-06-16 00:53:46 +0000124 if (CI.getFrontendOpts().Inputs.empty()) {
John McCall8f0e8d22011-06-15 23:25:17 +0000125 llvm::errs() << "error: no input files\n";
126 return true;
127 }
128
Ted Kremenekd3b74d92011-11-17 23:01:24 +0000129 if (!CI.getLangOpts()->ObjC1)
John McCall8f0e8d22011-06-15 23:25:17 +0000130 return false;
131
Argyrios Kyrtzidise665d692011-06-18 00:53:41 +0000132 arcmt::checkForManualIssues(CI,
133 CI.getFrontendOpts().Inputs[0].second,
134 CI.getFrontendOpts().Inputs[0].first,
135 Diags->getClient());
136 return Diags->getClient()->getNumErrors() > 0;
John McCall8f0e8d22011-06-15 23:25:17 +0000137}
138
Chris Lattner5f9e2722011-07-23 10:55:15 +0000139static void printResult(FileRemapper &remapper, raw_ostream &OS) {
John McCall8f0e8d22011-06-15 23:25:17 +0000140 CompilerInvocation CI;
141 remapper.applyMappings(CI);
142 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
143 // The changed files will be in memory buffers, print them.
144 for (unsigned i = 0, e = PPOpts.RemappedFileBuffers.size(); i != e; ++i) {
145 const llvm::MemoryBuffer *mem = PPOpts.RemappedFileBuffers[i].second;
146 OS << mem->getBuffer();
147 }
148}
149
Chris Lattner5f9e2722011-07-23 10:55:15 +0000150static bool performTransformations(StringRef resourcesPath,
Chris Lattner2d3ba4f2011-07-23 17:14:25 +0000151 ArrayRef<const char *> Args) {
John McCall8f0e8d22011-06-15 23:25:17 +0000152 // Check first.
153 if (checkForMigration(resourcesPath, Args))
154 return true;
155
David Blaikie78ad0b92011-09-25 23:39:51 +0000156 DiagnosticConsumer *DiagClient =
John McCall8f0e8d22011-06-15 23:25:17 +0000157 new TextDiagnosticPrinter(llvm::errs(), DiagnosticOptions());
158 llvm::IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
David Blaikied6471f72011-09-25 23:23:43 +0000159 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> TopDiags(
160 new DiagnosticsEngine(DiagID, DiagClient));
John McCall8f0e8d22011-06-15 23:25:17 +0000161
Argyrios Kyrtzidiseaed19e2011-06-16 00:53:46 +0000162 CompilerInvocation origCI;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000163 if (!CompilerInvocation::CreateFromArgs(origCI, Args.begin(), Args.end(),
164 *TopDiags))
165 return true;
John McCall8f0e8d22011-06-15 23:25:17 +0000166
Argyrios Kyrtzidiseaed19e2011-06-16 00:53:46 +0000167 if (origCI.getFrontendOpts().Inputs.empty()) {
John McCall8f0e8d22011-06-15 23:25:17 +0000168 llvm::errs() << "error: no input files\n";
169 return true;
170 }
171
Ted Kremenekd3b74d92011-11-17 23:01:24 +0000172 if (!origCI.getLangOpts()->ObjC1)
John McCall8f0e8d22011-06-15 23:25:17 +0000173 return false;
174
Argyrios Kyrtzidiseaed19e2011-06-16 00:53:46 +0000175 MigrationProcess migration(origCI, DiagClient);
John McCall8f0e8d22011-06-15 23:25:17 +0000176
Argyrios Kyrtzidise0ac7452011-11-04 15:58:08 +0000177 std::vector<TransformFn>
Ted Kremenekd3b74d92011-11-17 23:01:24 +0000178 transforms = arcmt::getAllTransformations(origCI.getLangOpts()->getGC());
John McCall8f0e8d22011-06-15 23:25:17 +0000179 assert(!transforms.empty());
180
181 llvm::OwningPtr<PrintTransforms> transformPrinter;
182 if (OutputTransformations)
183 transformPrinter.reset(new PrintTransforms(llvm::outs()));
184
185 for (unsigned i=0, e = transforms.size(); i != e; ++i) {
186 bool err = migration.applyTransform(transforms[i], transformPrinter.get());
187 if (err) return true;
188
189 if (VerboseOpt) {
190 if (i == e-1)
191 llvm::errs() << "\n##### FINAL RESULT #####\n";
192 else
193 llvm::errs() << "\n##### OUTPUT AFTER "<< i+1 <<". TRANSFORMATION #####\n";
194 printResult(migration.getRemapper(), llvm::errs());
195 llvm::errs() << "\n##########################\n\n";
196 }
197 }
198
199 if (!OutputTransformations)
200 printResult(migration.getRemapper(), llvm::outs());
201
202 // FIXME: TestResultForARC
203
204 return false;
205}
206
Chris Lattner5f9e2722011-07-23 10:55:15 +0000207static bool filesCompareEqual(StringRef fname1, StringRef fname2) {
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +0000208 using namespace llvm;
209
210 OwningPtr<MemoryBuffer> file1;
211 MemoryBuffer::getFile(fname1, file1);
212 if (!file1)
213 return false;
214
215 OwningPtr<MemoryBuffer> file2;
216 MemoryBuffer::getFile(fname2, file2);
217 if (!file2)
218 return false;
219
220 return file1->getBuffer() == file2->getBuffer();
221}
222
Chris Lattner2d3ba4f2011-07-23 17:14:25 +0000223static bool verifyTransformedFiles(ArrayRef<std::string> resultFiles) {
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +0000224 using namespace llvm;
225
226 assert(!resultFiles.empty());
227
228 std::map<StringRef, StringRef> resultMap;
229
230 for (ArrayRef<std::string>::iterator
231 I = resultFiles.begin(), E = resultFiles.end(); I != E; ++I) {
232 StringRef fname(*I);
233 if (!fname.endswith(".result")) {
234 errs() << "error: filename '" << fname
235 << "' does not have '.result' extension\n";
236 return true;
237 }
238 resultMap[sys::path::stem(fname)] = fname;
239 }
240
241 OwningPtr<MemoryBuffer> inputBuf;
242 if (RemappingsFile.empty())
243 MemoryBuffer::getSTDIN(inputBuf);
244 else
245 MemoryBuffer::getFile(RemappingsFile, inputBuf);
246 if (!inputBuf) {
247 errs() << "error: could not read remappings input\n";
248 return true;
249 }
250
251 SmallVector<StringRef, 8> strs;
252 inputBuf->getBuffer().split(strs, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
253
254 if (strs.empty()) {
255 errs() << "error: no files to verify from stdin\n";
256 return true;
257 }
258 if (strs.size() % 2 != 0) {
259 errs() << "error: files to verify are not original/result pairs\n";
260 return true;
261 }
262
263 for (unsigned i = 0, e = strs.size(); i != e; i += 2) {
264 StringRef inputOrigFname = strs[i];
265 StringRef inputResultFname = strs[i+1];
266
267 std::map<StringRef, StringRef>::iterator It;
268 It = resultMap.find(sys::path::filename(inputOrigFname));
269 if (It == resultMap.end()) {
270 errs() << "error: '" << inputOrigFname << "' is not in the list of "
271 << "transformed files to verify\n";
272 return true;
273 }
274
275 bool exists = false;
276 sys::fs::exists(It->second, exists);
277 if (!exists) {
278 errs() << "error: '" << It->second << "' does not exist\n";
279 return true;
280 }
281 sys::fs::exists(inputResultFname, exists);
282 if (!exists) {
283 errs() << "error: '" << inputResultFname << "' does not exist\n";
284 return true;
285 }
286
287 if (!filesCompareEqual(It->second, inputResultFname)) {
288 errs() << "error: '" << It->second << "' is different than "
289 << "'" << inputResultFname << "'\n";
290 return true;
291 }
292
293 resultMap.erase(It);
294 }
295
296 if (!resultMap.empty()) {
297 for (std::map<StringRef, StringRef>::iterator
298 I = resultMap.begin(), E = resultMap.end(); I != E; ++I)
299 errs() << "error: '" << I->second << "' was not verified!\n";
300 return true;
301 }
302
303 return false;
304}
305
John McCall8f0e8d22011-06-15 23:25:17 +0000306//===----------------------------------------------------------------------===//
307// Misc. functions.
308//===----------------------------------------------------------------------===//
309
310static void printSourceLocation(SourceLocation loc, ASTContext &Ctx,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000311 raw_ostream &OS) {
John McCall8f0e8d22011-06-15 23:25:17 +0000312 SourceManager &SM = Ctx.getSourceManager();
313 PresumedLoc PL = SM.getPresumedLoc(loc);
314
315 OS << llvm::sys::path::filename(PL.getFilename());
316 OS << ":" << PL.getLine() << ":"
317 << PL.getColumn();
318}
319
320static void printSourceRange(CharSourceRange range, ASTContext &Ctx,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000321 raw_ostream &OS) {
John McCall8f0e8d22011-06-15 23:25:17 +0000322 SourceManager &SM = Ctx.getSourceManager();
323 const LangOptions &langOpts = Ctx.getLangOptions();
324
325 PresumedLoc PL = SM.getPresumedLoc(range.getBegin());
326
327 OS << llvm::sys::path::filename(PL.getFilename());
328 OS << " [" << PL.getLine() << ":"
329 << PL.getColumn();
330 OS << " - ";
331
332 SourceLocation end = range.getEnd();
333 PL = SM.getPresumedLoc(end);
334
335 unsigned endCol = PL.getColumn() - 1;
336 if (!range.isTokenRange())
337 endCol += Lexer::MeasureTokenLength(end, SM, langOpts);
338 OS << PL.getLine() << ":" << endCol << "]";
339}
340
341//===----------------------------------------------------------------------===//
342// Command line processing.
343//===----------------------------------------------------------------------===//
344
345int main(int argc, const char **argv) {
John McCall8f0e8d22011-06-15 23:25:17 +0000346 void *MainAddr = (void*) (intptr_t) GetExecutablePath;
347 llvm::sys::PrintStackTraceOnErrorSignal();
348
349 std::string
350 resourcesPath = CompilerInvocation::GetResourcesPath(argv[0], MainAddr);
351
352 int optargc = 0;
353 for (; optargc != argc; ++optargc) {
354 if (StringRef(argv[optargc]) == "--args")
355 break;
356 }
357 llvm::cl::ParseCommandLineOptions(optargc, const_cast<char **>(argv), "arcmt-test");
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +0000358
359 if (VerifyTransformedFiles) {
360 if (ResultFiles.empty()) {
361 llvm::cl::PrintHelpMessage();
362 return 1;
363 }
364 return verifyTransformedFiles(ResultFiles);
365 }
366
John McCall8f0e8d22011-06-15 23:25:17 +0000367 if (optargc == argc) {
368 llvm::cl::PrintHelpMessage();
369 return 1;
370 }
371
Chris Lattner2d3ba4f2011-07-23 17:14:25 +0000372 ArrayRef<const char*> Args(argv+optargc+1, argc-optargc-1);
John McCall8f0e8d22011-06-15 23:25:17 +0000373
374 if (CheckOnly)
375 return checkForMigration(resourcesPath, Args);
376
377 return performTransformations(resourcesPath, Args);
378}