Make sure that deleted functions have external linkage
[oota-llvm.git] / tools / bugpoint / BugDriver.cpp
1 //===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===//
2 //
3 // This class contains all of the shared state and information that is used by
4 // the BugPoint tool to track down errors in optimizations.  This class is the
5 // main driver class that invokes all sub-functionality.
6 //
7 //===----------------------------------------------------------------------===//
8
9 #include "BugDriver.h"
10 #include "llvm/Module.h"
11 #include "llvm/Bytecode/Reader.h"
12 #include "llvm/Assembly/Parser.h"
13 #include "llvm/Transforms/Utils/Linker.h"
14 #include "llvm/Pass.h"
15 #include <memory>
16
17 /// getPassesString - Turn a list of passes into a string which indicates the
18 /// command line options that must be passed to add the passes.
19 ///
20 std::string getPassesString(const std::vector<const PassInfo*> &Passes) {
21   std::string Result;
22   for (unsigned i = 0, e = Passes.size(); i != e; ++i) {
23     if (i) Result += " ";
24     Result += "-";
25     Result += Passes[i]->getPassArgument();
26   }
27   return Result;
28 }
29
30 // DeleteFunctionBody - "Remove" the function by deleting all of it's basic
31 // blocks, making it external.
32 //
33 void DeleteFunctionBody(Function *F) {
34   // First, break circular use/def chain references...
35   for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I)
36     I->dropAllReferences();
37
38   // Next, delete all of the basic blocks.
39   F->getBasicBlockList().clear();
40   F->setLinkage(GlobalValue::ExternalLinkage);
41   assert(F->isExternal() && "This didn't make the function external!");
42 }
43
44 /// ParseInputFile - Given a bytecode or assembly input filename, parse and
45 /// return it, or return null if not possible.
46 ///
47 Module *BugDriver::ParseInputFile(const std::string &InputFilename) const {
48   Module *Result = 0;
49   try {
50     Result = ParseBytecodeFile(InputFilename);
51     if (!Result && !(Result = ParseAssemblyFile(InputFilename))){
52       std::cerr << ToolName << ": could not read input file '"
53                 << InputFilename << "'!\n";
54     }
55   } catch (const ParseException &E) {
56     std::cerr << ToolName << ": " << E.getMessage() << "\n";
57     Result = 0;
58   }
59   return Result;
60 }
61
62 // This method takes the specified list of LLVM input files, attempts to load
63 // them, either as assembly or bytecode, then link them together.
64 //
65 bool BugDriver::addSources(const std::vector<std::string> &Filenames) {
66   assert(Program == 0 && "Cannot call addSources multiple times!");
67   assert(!Filenames.empty() && "Must specify at least on input filename!");
68
69   // Load the first input file...
70   Program = ParseInputFile(Filenames[0]);
71   if (Program == 0) return true;
72   std::cout << "Read input file      : '" << Filenames[0] << "'\n";
73
74   for (unsigned i = 1, e = Filenames.size(); i != e; ++i) {
75     std::auto_ptr<Module> M(ParseInputFile(Filenames[i]));
76     if (M.get() == 0) return true;
77
78     std::cout << "Linking in input file: '" << Filenames[i] << "'\n";
79     std::string ErrorMessage;
80     if (LinkModules(Program, M.get(), &ErrorMessage)) {
81       std::cerr << ToolName << ": error linking in '" << Filenames[i] << "': "
82                 << ErrorMessage << "\n";
83       return true;
84     }
85   }
86
87   std::cout << "*** All input ok\n";
88
89   // All input files read successfully!
90   return false;
91 }
92
93
94
95 /// run - The top level method that is invoked after all of the instance
96 /// variables are set up from command line arguments.
97 ///
98 bool BugDriver::run() {
99   // The first thing that we must do is determine what the problem is.  Does the
100   // optimization series crash the compiler, or does it produce illegal code? We
101   // make the top-level decision by trying to run all of the passes on the the
102   // input program, which should generate a bytecode file.  If it does generate
103   // a bytecode file, then we know the compiler didn't crash, so try to diagnose
104   // a miscompilation.
105   //
106   std::cout << "Running selected passes on program to test for crash: ";
107   if (runPasses(PassesToRun))
108     return debugCrash();
109   else
110     return debugMiscompilation();
111 }