John McCall | 73b21b7 | 2010-07-29 18:08:23 +0000 | [diff] [blame] | 1 | //===-- llvm-diff.cpp - Module comparator command-line driver ---*- 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 | // This file defines the command-line driver for the difference engine. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Renato Golin | 7d4fc4f | 2011-03-14 22:22:46 +0000 | [diff] [blame] | 14 | #include "DiffLog.h" |
John McCall | 73b21b7 | 2010-07-29 18:08:23 +0000 | [diff] [blame] | 15 | #include "DifferenceEngine.h" |
| 16 | |
John McCall | 73b21b7 | 2010-07-29 18:08:23 +0000 | [diff] [blame] | 17 | #include "llvm/LLVMContext.h" |
| 18 | #include "llvm/Module.h" |
| 19 | #include "llvm/Type.h" |
John McCall | 73b21b7 | 2010-07-29 18:08:23 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/DenseMap.h" |
| 21 | #include "llvm/ADT/SmallVector.h" |
| 22 | #include "llvm/ADT/StringRef.h" |
| 23 | #include "llvm/Support/CommandLine.h" |
Dan Gohman | c32a226 | 2010-09-13 18:02:47 +0000 | [diff] [blame] | 24 | #include "llvm/Support/IRReader.h" |
John McCall | 73b21b7 | 2010-07-29 18:08:23 +0000 | [diff] [blame] | 25 | #include "llvm/Support/MemoryBuffer.h" |
| 26 | #include "llvm/Support/raw_ostream.h" |
| 27 | #include "llvm/Support/SourceMgr.h" |
| 28 | |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 29 | #include <string> |
| 30 | #include <utility> |
| 31 | |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 32 | |
| 33 | using namespace llvm; |
| 34 | |
Dan Gohman | c32a226 | 2010-09-13 18:02:47 +0000 | [diff] [blame] | 35 | /// Reads a module from a file. On error, messages are written to stderr |
| 36 | /// and null is returned. |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 37 | static Module *ReadModule(LLVMContext &Context, StringRef Name) { |
Dan Gohman | c32a226 | 2010-09-13 18:02:47 +0000 | [diff] [blame] | 38 | SMDiagnostic Diag; |
| 39 | Module *M = ParseIRFile(Name, Diag, Context); |
| 40 | if (!M) |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 41 | Diag.Print("llvmdiff", errs()); |
Dan Gohman | c32a226 | 2010-09-13 18:02:47 +0000 | [diff] [blame] | 42 | return M; |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 43 | } |
| 44 | |
John McCall | e5cbaf1 | 2010-07-29 17:55:00 +0000 | [diff] [blame] | 45 | static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, |
| 46 | StringRef Name) { |
| 47 | // Drop leading sigils from the global name. |
| 48 | if (Name.startswith("@")) Name = Name.substr(1); |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 49 | |
John McCall | e5cbaf1 | 2010-07-29 17:55:00 +0000 | [diff] [blame] | 50 | Function *LFn = L->getFunction(Name); |
| 51 | Function *RFn = R->getFunction(Name); |
| 52 | if (LFn && RFn) |
| 53 | Engine.diff(LFn, RFn); |
| 54 | else if (!LFn && !RFn) |
| 55 | errs() << "No function named @" << Name << " in either module\n"; |
| 56 | else if (!LFn) |
| 57 | errs() << "No function named @" << Name << " in left module\n"; |
| 58 | else |
| 59 | errs() << "No function named @" << Name << " in right module\n"; |
| 60 | } |
| 61 | |
Chris Lattner | 53b1acd | 2010-09-05 21:25:43 +0000 | [diff] [blame] | 62 | static cl::opt<std::string> LeftFilename(cl::Positional, |
| 63 | cl::desc("<first file>"), |
| 64 | cl::Required); |
| 65 | static cl::opt<std::string> RightFilename(cl::Positional, |
| 66 | cl::desc("<second file>"), |
| 67 | cl::Required); |
| 68 | static cl::list<std::string> GlobalsToCompare(cl::Positional, |
| 69 | cl::desc("<globals to compare>")); |
John McCall | e5cbaf1 | 2010-07-29 17:55:00 +0000 | [diff] [blame] | 70 | |
| 71 | int main(int argc, char **argv) { |
| 72 | cl::ParseCommandLineOptions(argc, argv); |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 73 | |
| 74 | LLVMContext Context; |
| 75 | |
| 76 | // Load both modules. Die if that fails. |
John McCall | e5cbaf1 | 2010-07-29 17:55:00 +0000 | [diff] [blame] | 77 | Module *LModule = ReadModule(Context, LeftFilename); |
| 78 | Module *RModule = ReadModule(Context, RightFilename); |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 79 | if (!LModule || !RModule) return 1; |
| 80 | |
| 81 | DiffConsumer Consumer(LModule, RModule); |
| 82 | DifferenceEngine Engine(Context, Consumer); |
| 83 | |
John McCall | e5cbaf1 | 2010-07-29 17:55:00 +0000 | [diff] [blame] | 84 | // If any global names were given, just diff those. |
| 85 | if (!GlobalsToCompare.empty()) { |
| 86 | for (unsigned I = 0, E = GlobalsToCompare.size(); I != E; ++I) |
| 87 | diffGlobal(Engine, LModule, RModule, GlobalsToCompare[I]); |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 88 | |
John McCall | e5cbaf1 | 2010-07-29 17:55:00 +0000 | [diff] [blame] | 89 | // Otherwise, diff everything in the module. |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 90 | } else { |
John McCall | 3dd706b | 2010-07-29 07:53:27 +0000 | [diff] [blame] | 91 | Engine.diff(LModule, RModule); |
| 92 | } |
| 93 | |
| 94 | delete LModule; |
| 95 | delete RModule; |
| 96 | |
| 97 | return Consumer.hadDifferences(); |
| 98 | } |