Devang Patel | e330f2d | 2008-07-18 22:59:45 +0000 | [diff] [blame] | 1 | //===- LTOBugPoint.h - Top-Level LTO BugPoint class -------------*- 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 class contains all of the shared state and information that is used by |
| 11 | // the LTO BugPoint tool to track down bit code files that cause errors. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/ADT/SmallVector.h" |
Devang Patel | 4f574f5 | 2008-07-21 23:04:39 +0000 | [diff] [blame^] | 16 | #include "llvm/Module.h" |
Devang Patel | e330f2d | 2008-07-18 22:59:45 +0000 | [diff] [blame] | 17 | #include <string> |
| 18 | #include <fstream> |
| 19 | |
| 20 | class LTOBugPoint { |
| 21 | public: |
| 22 | |
| 23 | LTOBugPoint(std::istream &args, std::istream &ins); |
| 24 | |
Devang Patel | 5dd66a0 | 2008-07-18 23:46:41 +0000 | [diff] [blame] | 25 | /// findTroubleMakers - Find minimum set of input files that causes error |
| 26 | /// identified by the script. |
| 27 | bool findTroubleMakers(llvm::SmallVector<std::string, 4> &TroubleMakers, |
| 28 | std::string &Script); |
Devang Patel | 4f574f5 | 2008-07-21 23:04:39 +0000 | [diff] [blame^] | 29 | |
| 30 | /// getNativeObjectFile - Generate native object file based from llvm |
| 31 | /// bitcode file. Return false in case of an error. |
| 32 | bool getNativeObjectFile(std::string &FileName); |
| 33 | |
| 34 | std::string &getErrMsg() { return ErrMsg; } |
| 35 | |
Devang Patel | e330f2d | 2008-07-18 22:59:45 +0000 | [diff] [blame] | 36 | private: |
| 37 | /// LinkerInputFiles - This is a list of linker input files. Once populated |
| 38 | /// this list is not modified. |
| 39 | llvm::SmallVector<std::string, 16> LinkerInputFiles; |
Devang Patel | 5dd66a0 | 2008-07-18 23:46:41 +0000 | [diff] [blame] | 40 | |
| 41 | /// LinkerOptions - List of linker command line options. |
Devang Patel | e330f2d | 2008-07-18 22:59:45 +0000 | [diff] [blame] | 42 | llvm::SmallVector<std::string, 16> LinkerOptions; |
| 43 | |
Devang Patel | 5dd66a0 | 2008-07-18 23:46:41 +0000 | [diff] [blame] | 44 | /// NativeInputFiles - This is a list of input files that are not llvm |
| 45 | /// bitcode files. The order in this list is important. The a file |
| 46 | /// in LinkerInputFiles at index 4 is a llvm bitcode file then the file |
| 47 | /// at index 4 in NativeInputFiles is corresponding native object file. |
| 48 | llvm::SmallVector<std::string, 16> NativeInputFiles; |
| 49 | |
Devang Patel | 4f574f5 | 2008-07-21 23:04:39 +0000 | [diff] [blame^] | 50 | std::string getFeatureString(const char *TargetTriple); |
| 51 | std::string ErrMsg; |
| 52 | |
| 53 | private: |
| 54 | /// assembleBitcode - Generate assembly code from the module. Return false |
| 55 | /// in case of an error. |
| 56 | bool assembleBitcode(llvm::Module *M, const char *AsmFileName); |
Devang Patel | e330f2d | 2008-07-18 22:59:45 +0000 | [diff] [blame] | 57 | }; |