//===- LTOBugPoint.h - Top-Level LTO BugPoint class -------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This class contains all of the shared state and information that is used by // the LTO BugPoint tool to track down bit code files that cause errors. // //===----------------------------------------------------------------------===// #include "llvm/ADT/SmallVector.h" #include "llvm/Module.h" #include #include class LTOBugPoint { public: LTOBugPoint(std::istream &args, std::istream &ins); /// findTroubleMakers - Find minimum set of input files that causes error /// identified by the script. bool findTroubleMakers(llvm::SmallVector &TroubleMakers, std::string &Script); /// getNativeObjectFile - Generate native object file based from llvm /// bitcode file. Return false in case of an error. bool getNativeObjectFile(std::string &FileName); std::string &getErrMsg() { return ErrMsg; } private: /// LinkerInputFiles - This is a list of linker input files. Once populated /// this list is not modified. llvm::SmallVector LinkerInputFiles; /// LinkerOptions - List of linker command line options. llvm::SmallVector LinkerOptions; /// NativeInputFiles - This is a list of input files that are not llvm /// bitcode files. The order in this list is important. The a file /// in LinkerInputFiles at index 4 is a llvm bitcode file then the file /// at index 4 in NativeInputFiles is corresponding native object file. llvm::SmallVector NativeInputFiles; std::string getFeatureString(const char *TargetTriple); std::string ErrMsg; private: /// assembleBitcode - Generate assembly code from the module. Return false /// in case of an error. bool assembleBitcode(llvm::Module *M, const char *AsmFileName); };