blob: 9d8a7d3ec7a3e5cc36c0e0cc7f48373425a89b8d [file] [log] [blame]
John McCall73b21b72010-07-29 18:08:23 +00001//===-- 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
14#include "DifferenceEngine.h"
15
16#include "llvm/Instructions.h"
17#include "llvm/LLVMContext.h"
18#include "llvm/Module.h"
19#include "llvm/Type.h"
20#include "llvm/Assembly/Parser.h"
21#include "llvm/Bitcode/ReaderWriter.h"
22#include "llvm/ADT/DenseMap.h"
23#include "llvm/ADT/SmallVector.h"
24#include "llvm/ADT/StringRef.h"
25#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/ErrorHandling.h"
27#include "llvm/Support/MemoryBuffer.h"
28#include "llvm/Support/raw_ostream.h"
29#include "llvm/Support/SourceMgr.h"
30
John McCall3dd706b2010-07-29 07:53:27 +000031#include <string>
32#include <utility>
33
John McCall3dd706b2010-07-29 07:53:27 +000034
35using namespace llvm;
36
37/// Reads a module from a file. If the filename ends in .ll, it is
38/// interpreted as an assembly file; otherwise, it is interpreted as
39/// bitcode. On error, messages are written to stderr and null is
40/// returned.
41static Module *ReadModule(LLVMContext &Context, StringRef Name) {
42 // LLVM assembly path.
43 if (Name.endswith(".ll")) {
44 SMDiagnostic Diag;
45 Module *M = ParseAssemblyFile(Name, Diag, Context);
46 if (M) return M;
47
48 Diag.Print("llvmdiff", errs());
49 return 0;
50 }
51
52 // Bitcode path.
53 MemoryBuffer *Buffer = MemoryBuffer::getFile(Name);
54
55 // ParseBitcodeFile takes ownership of the buffer if it succeeds.
56 std::string Error;
57 Module *M = ParseBitcodeFile(Buffer, Context, &Error);
58 if (M) return M;
59
60 errs() << "error parsing " << Name << ": " << Error;
61 delete Buffer;
62 return 0;
63}
64
John McCall3dd706b2010-07-29 07:53:27 +000065namespace {
66struct DiffContext {
67 DiffContext(Value *L, Value *R)
68 : L(L), R(R), Differences(false), IsFunction(isa<Function>(L)) {}
69 Value *L;
70 Value *R;
71 bool Differences;
72 bool IsFunction;
73 DenseMap<Value*,unsigned> LNumbering;
74 DenseMap<Value*,unsigned> RNumbering;
75};
76
77void ComputeNumbering(Function *F, DenseMap<Value*,unsigned> &Numbering) {
78 unsigned BBN = 0;
79 unsigned IN = 0;
80
81 // Arguments get the first numbers.
82 for (Function::arg_iterator
83 AI = F->arg_begin(), AE = F->arg_end(); AI != AE; ++AI)
84 if (!AI->hasName())
85 Numbering[&*AI] = IN++;
86
87 // Walk the basic blocks in order.
88 for (Function::iterator FI = F->begin(), FE = F->end(); FI != FE; ++FI) {
89 // Basic blocks have their own 'namespace'.
90 if (!FI->hasName())
91 Numbering[&*FI] = BBN++;
92
93 // Walk the instructions in order.
94 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); BI != BE; ++BI)
95 // void instructions don't get numbers.
96 if (!BI->hasName() && !BI->getType()->isVoidTy())
97 Numbering[&*BI] = IN++;
98 }
99
100 assert(!Numbering.empty() && "asked for numbering but numbering was no-op");
101}
102
103class DiffConsumer : public DifferenceEngine::Consumer {
104private:
John McCall62dc1f32010-07-29 08:14:41 +0000105 raw_ostream &out;
John McCall3dd706b2010-07-29 07:53:27 +0000106 Module *LModule;
107 Module *RModule;
108 SmallVector<DiffContext, 5> contexts;
109 bool Differences;
110 unsigned Indent;
111
112 void printValue(Value *V, bool isL) {
113 if (V->hasName()) {
John McCall62dc1f32010-07-29 08:14:41 +0000114 out << (isa<GlobalValue>(V) ? '@' : '%') << V->getName();
John McCall3dd706b2010-07-29 07:53:27 +0000115 return;
116 }
117 if (V->getType()->isVoidTy()) {
118 if (isa<StoreInst>(V)) {
John McCall62dc1f32010-07-29 08:14:41 +0000119 out << "store to ";
John McCall3dd706b2010-07-29 07:53:27 +0000120 printValue(cast<StoreInst>(V)->getPointerOperand(), isL);
121 } else if (isa<CallInst>(V)) {
John McCall62dc1f32010-07-29 08:14:41 +0000122 out << "call to ";
John McCall3dd706b2010-07-29 07:53:27 +0000123 printValue(cast<CallInst>(V)->getCalledValue(), isL);
124 } else if (isa<InvokeInst>(V)) {
John McCall62dc1f32010-07-29 08:14:41 +0000125 out << "invoke to ";
John McCall3dd706b2010-07-29 07:53:27 +0000126 printValue(cast<InvokeInst>(V)->getCalledValue(), isL);
127 } else {
John McCall62dc1f32010-07-29 08:14:41 +0000128 out << *V;
John McCall3dd706b2010-07-29 07:53:27 +0000129 }
130 return;
131 }
132
133 unsigned N = contexts.size();
134 while (N > 0) {
135 --N;
136 DiffContext &ctxt = contexts[N];
137 if (!ctxt.IsFunction) continue;
138 if (isL) {
139 if (ctxt.LNumbering.empty())
140 ComputeNumbering(cast<Function>(ctxt.L), ctxt.LNumbering);
John McCall62dc1f32010-07-29 08:14:41 +0000141 out << '%' << ctxt.LNumbering[V];
John McCall3dd706b2010-07-29 07:53:27 +0000142 return;
143 } else {
144 if (ctxt.RNumbering.empty())
145 ComputeNumbering(cast<Function>(ctxt.R), ctxt.RNumbering);
John McCall62dc1f32010-07-29 08:14:41 +0000146 out << '%' << ctxt.RNumbering[V];
John McCall3dd706b2010-07-29 07:53:27 +0000147 return;
148 }
149 }
150
John McCall62dc1f32010-07-29 08:14:41 +0000151 out << "<anonymous>";
John McCall3dd706b2010-07-29 07:53:27 +0000152 }
153
154 void header() {
155 if (contexts.empty()) return;
156 for (SmallVectorImpl<DiffContext>::iterator
157 I = contexts.begin(), E = contexts.end(); I != E; ++I) {
158 if (I->Differences) continue;
159 if (isa<Function>(I->L)) {
160 // Extra newline between functions.
John McCall62dc1f32010-07-29 08:14:41 +0000161 if (Differences) out << "\n";
John McCall3dd706b2010-07-29 07:53:27 +0000162
163 Function *L = cast<Function>(I->L);
164 Function *R = cast<Function>(I->R);
165 if (L->getName() != R->getName())
John McCall62dc1f32010-07-29 08:14:41 +0000166 out << "in function " << L->getName() << " / " << R->getName() << ":\n";
John McCall3dd706b2010-07-29 07:53:27 +0000167 else
John McCall62dc1f32010-07-29 08:14:41 +0000168 out << "in function " << L->getName() << ":\n";
John McCall3dd706b2010-07-29 07:53:27 +0000169 } else if (isa<BasicBlock>(I->L)) {
170 BasicBlock *L = cast<BasicBlock>(I->L);
171 BasicBlock *R = cast<BasicBlock>(I->R);
John McCall62dc1f32010-07-29 08:14:41 +0000172 out << " in block ";
John McCall3dd706b2010-07-29 07:53:27 +0000173 printValue(L, true);
John McCall62dc1f32010-07-29 08:14:41 +0000174 out << " / ";
John McCall3dd706b2010-07-29 07:53:27 +0000175 printValue(R, false);
John McCall62dc1f32010-07-29 08:14:41 +0000176 out << ":\n";
John McCall3dd706b2010-07-29 07:53:27 +0000177 } else if (isa<Instruction>(I->L)) {
John McCall62dc1f32010-07-29 08:14:41 +0000178 out << " in instruction ";
John McCall3dd706b2010-07-29 07:53:27 +0000179 printValue(I->L, true);
John McCall62dc1f32010-07-29 08:14:41 +0000180 out << " / ";
John McCall3dd706b2010-07-29 07:53:27 +0000181 printValue(I->R, false);
John McCall62dc1f32010-07-29 08:14:41 +0000182 out << ":\n";
John McCall3dd706b2010-07-29 07:53:27 +0000183 }
184
185 I->Differences = true;
186 }
187 }
188
189 void indent() {
190 unsigned N = Indent;
John McCall62dc1f32010-07-29 08:14:41 +0000191 while (N--) out << ' ';
John McCall3dd706b2010-07-29 07:53:27 +0000192 }
193
194public:
195 DiffConsumer(Module *L, Module *R)
John McCall62dc1f32010-07-29 08:14:41 +0000196 : out(errs()), LModule(L), RModule(R), Differences(false), Indent(0) {}
John McCall3dd706b2010-07-29 07:53:27 +0000197
198 bool hadDifferences() const { return Differences; }
199
200 void enterContext(Value *L, Value *R) {
201 contexts.push_back(DiffContext(L, R));
202 Indent += 2;
203 }
204 void exitContext() {
205 Differences |= contexts.back().Differences;
206 contexts.pop_back();
207 Indent -= 2;
208 }
209
210 void log(StringRef text) {
211 header();
212 indent();
John McCall62dc1f32010-07-29 08:14:41 +0000213 out << text << '\n';
John McCall3dd706b2010-07-29 07:53:27 +0000214 }
215
216 void logf(const DifferenceEngine::LogBuilder &Log) {
217 header();
218 indent();
219
John McCall62dc1f32010-07-29 08:14:41 +0000220 unsigned arg = 0;
221
222 StringRef format = Log.getFormat();
223 while (true) {
224 size_t percent = format.find('%');
225 if (percent == StringRef::npos) {
226 out << format;
227 break;
228 }
229 assert(format[percent] == '%');
230
231 if (percent > 0) out << format.substr(0, percent);
232
233 switch (format[percent+1]) {
234 case '%': out << '%'; break;
235 case 'l': printValue(Log.getArgument(arg++), true); break;
236 case 'r': printValue(Log.getArgument(arg++), false); break;
237 default: llvm_unreachable("unknown format character");
238 }
239
240 format = format.substr(percent+2);
241 }
242
243 out << '\n';
John McCall3dd706b2010-07-29 07:53:27 +0000244 }
245
246 void logd(const DifferenceEngine::DiffLogBuilder &Log) {
247 header();
248
249 for (unsigned I = 0, E = Log.getNumLines(); I != E; ++I) {
250 indent();
251 switch (Log.getLineKind(I)) {
252 case DifferenceEngine::DC_match:
John McCall62dc1f32010-07-29 08:14:41 +0000253 out << " ";
John McCall3dd706b2010-07-29 07:53:27 +0000254 Log.getLeft(I)->dump();
255 //printValue(Log.getLeft(I), true);
256 break;
257 case DifferenceEngine::DC_left:
John McCall62dc1f32010-07-29 08:14:41 +0000258 out << "< ";
John McCall3dd706b2010-07-29 07:53:27 +0000259 Log.getLeft(I)->dump();
260 //printValue(Log.getLeft(I), true);
261 break;
262 case DifferenceEngine::DC_right:
John McCall62dc1f32010-07-29 08:14:41 +0000263 out << "> ";
John McCall3dd706b2010-07-29 07:53:27 +0000264 Log.getRight(I)->dump();
265 //printValue(Log.getRight(I), false);
266 break;
267 }
John McCall62dc1f32010-07-29 08:14:41 +0000268 //out << "\n";
John McCall3dd706b2010-07-29 07:53:27 +0000269 }
270 }
271
272};
273}
274
John McCalle5cbaf12010-07-29 17:55:00 +0000275static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R,
276 StringRef Name) {
277 // Drop leading sigils from the global name.
278 if (Name.startswith("@")) Name = Name.substr(1);
John McCall3dd706b2010-07-29 07:53:27 +0000279
John McCalle5cbaf12010-07-29 17:55:00 +0000280 Function *LFn = L->getFunction(Name);
281 Function *RFn = R->getFunction(Name);
282 if (LFn && RFn)
283 Engine.diff(LFn, RFn);
284 else if (!LFn && !RFn)
285 errs() << "No function named @" << Name << " in either module\n";
286 else if (!LFn)
287 errs() << "No function named @" << Name << " in left module\n";
288 else
289 errs() << "No function named @" << Name << " in right module\n";
290}
291
292cl::opt<std::string> LeftFilename(cl::Positional, cl::desc("<first file>"), cl::Required);
293cl::opt<std::string> RightFilename(cl::Positional, cl::desc("<second file>"), cl::Required);
294cl::list<std::string> GlobalsToCompare(cl::Positional, cl::desc("<globals to compare>"));
295
296int main(int argc, char **argv) {
297 cl::ParseCommandLineOptions(argc, argv);
John McCall3dd706b2010-07-29 07:53:27 +0000298
299 LLVMContext Context;
300
301 // Load both modules. Die if that fails.
John McCalle5cbaf12010-07-29 17:55:00 +0000302 Module *LModule = ReadModule(Context, LeftFilename);
303 Module *RModule = ReadModule(Context, RightFilename);
John McCall3dd706b2010-07-29 07:53:27 +0000304 if (!LModule || !RModule) return 1;
305
306 DiffConsumer Consumer(LModule, RModule);
307 DifferenceEngine Engine(Context, Consumer);
308
John McCalle5cbaf12010-07-29 17:55:00 +0000309 // If any global names were given, just diff those.
310 if (!GlobalsToCompare.empty()) {
311 for (unsigned I = 0, E = GlobalsToCompare.size(); I != E; ++I)
312 diffGlobal(Engine, LModule, RModule, GlobalsToCompare[I]);
John McCall3dd706b2010-07-29 07:53:27 +0000313
John McCalle5cbaf12010-07-29 17:55:00 +0000314 // Otherwise, diff everything in the module.
John McCall3dd706b2010-07-29 07:53:27 +0000315 } else {
John McCall3dd706b2010-07-29 07:53:27 +0000316 Engine.diff(LModule, RModule);
317 }
318
319 delete LModule;
320 delete RModule;
321
322 return Consumer.hadDifferences();
323}