aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lto-bugpoint/LTOBugPoint.cpp
blob: 925ab9e1acb7a2091620037ae1fcb5b915a1fafd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//===- LTOBugPoint.cpp - Top-Level LTO BugPoint class ---------------------===//
//
//                     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 "LTOBugPoint.h"
#include "llvm/Support/SystemUtils.h"
#include "llvm/System/Path.h"
#include <iostream>

/// LTOBugPoint -- Constructor. Popuate list of linker options and
/// list of linker input files.
LTOBugPoint::LTOBugPoint(std::istream &args, std::istream &ins) {

  // Read linker options. Order is important here.
  std::string option;
  while (getline(args, option))
    LinkerOptions.push_back(option);
  
  // Read linker input files. Order is important here.
  std::string inFile;
  while(getline(ins, inFile))
    LinkerInputFiles.push_back(inFile);
}

/// findTroubleMakers - Find minimum set of input files that causes error
/// identified by the script.
bool
LTOBugPoint::findTroubleMakers(llvm::SmallVector<std::string, 4> &TroubleMakers,
			       std::string &Script) {

  // First, build native object files set.
  bool bitcodeFileSeen = false;
  for(llvm::SmallVector<std::string, 16>::iterator I = LinkerInputFiles.begin(),
	E = LinkerInputFiles.end(); I != E; ++I) {
    std::string &path = *I;
    if (llvm::sys::Path(path.c_str()).isBitcodeFile()) 
      bitcodeFileSeen = true;
  }

  if (!bitcodeFileSeen) {
    std::cerr << "lto-bugpoint: Error: Unable to help!"; 
    std::cerr << " Need at least one input file that contains llvm bitcode\n";
    return false;
  }

  return true;
}