1 //===-- llvm-diff.cpp - Module comparator command-line driver ---*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the command-line driver for the difference engine.
12 //===----------------------------------------------------------------------===//
15 #include "DifferenceEngine.h"
17 #include "llvm/LLVMContext.h"
18 #include "llvm/Module.h"
19 #include "llvm/Type.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/ADT/SmallVector.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/Support/CommandLine.h"
24 #include "llvm/Support/IRReader.h"
25 #include "llvm/Support/MemoryBuffer.h"
26 #include "llvm/Support/raw_ostream.h"
27 #include "llvm/Support/SourceMgr.h"
35 /// Reads a module from a file. On error, messages are written to stderr
36 /// and null is returned.
37 static Module
*ReadModule(LLVMContext
&Context
, StringRef Name
) {
39 Module
*M
= ParseIRFile(Name
, Diag
, Context
);
41 Diag
.Print("llvmdiff", errs());
45 static void diffGlobal(DifferenceEngine
&Engine
, Module
*L
, Module
*R
,
47 // Drop leading sigils from the global name.
48 if (Name
.startswith("@")) Name
= Name
.substr(1);
50 Function
*LFn
= L
->getFunction(Name
);
51 Function
*RFn
= R
->getFunction(Name
);
53 Engine
.diff(LFn
, RFn
);
54 else if (!LFn
&& !RFn
)
55 errs() << "No function named @" << Name
<< " in either module\n";
57 errs() << "No function named @" << Name
<< " in left module\n";
59 errs() << "No function named @" << Name
<< " in right module\n";
62 static cl::opt
<std::string
> LeftFilename(cl::Positional
,
63 cl::desc("<first file>"),
65 static cl::opt
<std::string
> RightFilename(cl::Positional
,
66 cl::desc("<second file>"),
68 static cl::list
<std::string
> GlobalsToCompare(cl::Positional
,
69 cl::desc("<globals to compare>"));
71 int main(int argc
, char **argv
) {
72 cl::ParseCommandLineOptions(argc
, argv
);
76 // Load both modules. Die if that fails.
77 Module
*LModule
= ReadModule(Context
, LeftFilename
);
78 Module
*RModule
= ReadModule(Context
, RightFilename
);
79 if (!LModule
|| !RModule
) return 1;
81 DiffConsumer
Consumer(LModule
, RModule
);
82 DifferenceEngine
Engine(Context
, Consumer
);
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
]);
89 // Otherwise, diff everything in the module.
91 Engine
.diff(LModule
, RModule
);
97 return Consumer
.hadDifferences();