Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 1 | //===- BugDriver.cpp - Top-Level BugPoint class implementation ------------===// |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 21c62da | 2007-12-29 20:44:31 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 7c0e022 | 2003-10-20 17:47:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 9 | // |
| 10 | // This class contains all of the shared state and information that is used by |
| 11 | // the BugPoint tool to track down errors in optimizations. This class is the |
| 12 | // main driver class that invokes all sub-functionality. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "BugDriver.h" |
Chris Lattner | f1b20d8 | 2006-06-06 22:30:59 +0000 | [diff] [blame] | 17 | #include "ToolRunner.h" |
Reid Spencer | 605b9e2 | 2004-11-14 23:00:08 +0000 | [diff] [blame] | 18 | #include "llvm/Linker.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 19 | #include "llvm/Module.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 20 | #include "llvm/Pass.h" |
Misha Brukman | e49603d | 2003-08-07 21:19:30 +0000 | [diff] [blame] | 21 | #include "llvm/Assembly/Parser.h" |
Chris Lattner | 03b6963 | 2007-05-06 05:47:06 +0000 | [diff] [blame] | 22 | #include "llvm/Bitcode/ReaderWriter.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 23 | #include "llvm/Support/CommandLine.h" |
| 24 | #include "llvm/Support/FileUtilities.h" |
Chris Lattner | 03b6963 | 2007-05-06 05:47:06 +0000 | [diff] [blame] | 25 | #include "llvm/Support/MemoryBuffer.h" |
Chris Lattner | 92bcb42 | 2009-07-02 22:46:18 +0000 | [diff] [blame] | 26 | #include "llvm/Support/SourceMgr.h" |
Chris Lattner | df98617 | 2009-01-02 07:01:27 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | ca74096 | 2009-08-18 03:35:57 +0000 | [diff] [blame^] | 28 | #include "llvm/System/Host.h" |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 29 | #include <memory> |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 30 | using namespace llvm; |
| 31 | |
Daniel Dunbar | ca74096 | 2009-08-18 03:35:57 +0000 | [diff] [blame^] | 32 | namespace llvm { |
| 33 | Triple TargetTriple; |
| 34 | } |
| 35 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 36 | // Anonymous namespace to define command line options for debugging. |
| 37 | // |
| 38 | namespace { |
| 39 | // Output - The user can specify a file containing the expected output of the |
| 40 | // program. If this filename is set, it is used as the reference diff source, |
| 41 | // otherwise the raw input run through an interpreter is used as the reference |
| 42 | // source. |
| 43 | // |
Misha Brukman | 3da94ae | 2005-04-22 00:00:37 +0000 | [diff] [blame] | 44 | cl::opt<std::string> |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 45 | OutputFile("output", cl::desc("Specify a reference program output " |
| 46 | "(for miscompilation detection)")); |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 47 | } |
| 48 | |
Chris Lattner | 06905db | 2004-02-18 21:24:48 +0000 | [diff] [blame] | 49 | /// setNewProgram - If we reduce or update the program somehow, call this method |
| 50 | /// to update bugdriver with it. This deletes the old module and sets the |
| 51 | /// specified one as the current program. |
| 52 | void BugDriver::setNewProgram(Module *M) { |
| 53 | delete Program; |
| 54 | Program = M; |
| 55 | } |
| 56 | |
| 57 | |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 58 | /// getPassesString - Turn a list of passes into a string which indicates the |
| 59 | /// command line options that must be passed to add the passes. |
| 60 | /// |
Chris Lattner | fa76183 | 2004-01-14 03:38:37 +0000 | [diff] [blame] | 61 | std::string llvm::getPassesString(const std::vector<const PassInfo*> &Passes) { |
Chris Lattner | 640f22e | 2003-04-24 17:02:17 +0000 | [diff] [blame] | 62 | std::string Result; |
| 63 | for (unsigned i = 0, e = Passes.size(); i != e; ++i) { |
| 64 | if (i) Result += " "; |
| 65 | Result += "-"; |
| 66 | Result += Passes[i]->getPassArgument(); |
| 67 | } |
| 68 | return Result; |
| 69 | } |
| 70 | |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 71 | BugDriver::BugDriver(const char *toolname, bool as_child, bool find_bugs, |
Owen Anderson | 31895e7 | 2009-07-01 21:22:36 +0000 | [diff] [blame] | 72 | unsigned timeout, unsigned memlimit, |
Owen Anderson | 4434ed4 | 2009-07-01 23:13:44 +0000 | [diff] [blame] | 73 | LLVMContext& ctxt) |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 74 | : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile), |
Dan Gohman | 70ef449 | 2008-12-08 04:02:47 +0000 | [diff] [blame] | 75 | Program(0), Interpreter(0), SafeInterpreter(0), gcc(0), |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 76 | run_as_child(as_child), run_find_bugs(find_bugs), Timeout(timeout), |
| 77 | MemoryLimit(memlimit) {} |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 78 | |
| 79 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 80 | /// ParseInputFile - Given a bitcode or assembly input filename, parse and |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 81 | /// return it, or return null if not possible. |
| 82 | /// |
Owen Anderson | 31895e7 | 2009-07-01 21:22:36 +0000 | [diff] [blame] | 83 | Module *llvm::ParseInputFile(const std::string &Filename, |
Owen Anderson | 4434ed4 | 2009-07-01 23:13:44 +0000 | [diff] [blame] | 84 | LLVMContext& Ctxt) { |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 85 | std::auto_ptr<MemoryBuffer> Buffer(MemoryBuffer::getFileOrSTDIN(Filename)); |
Chris Lattner | 744879e | 2007-05-06 09:32:02 +0000 | [diff] [blame] | 86 | Module *Result = 0; |
| 87 | if (Buffer.get()) |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 88 | Result = ParseBitcodeFile(Buffer.get(), Ctxt); |
Chris Lattner | 03b6963 | 2007-05-06 05:47:06 +0000 | [diff] [blame] | 89 | |
Chris Lattner | 92bcb42 | 2009-07-02 22:46:18 +0000 | [diff] [blame] | 90 | SMDiagnostic Err; |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 91 | if (!Result && !(Result = ParseAssemblyFile(Filename, Err, Ctxt))) { |
Chris Lattner | 92bcb42 | 2009-07-02 22:46:18 +0000 | [diff] [blame] | 92 | Err.Print("bugpoint", errs()); |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 93 | Result = 0; |
| 94 | } |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 95 | |
Daniel Dunbar | ca74096 | 2009-08-18 03:35:57 +0000 | [diff] [blame^] | 96 | // If we don't have an override triple, use the first one to configure |
| 97 | // bugpoint, or use the host triple if none provided. |
| 98 | if (Result) { |
| 99 | if (TargetTriple.getTriple().empty()) { |
| 100 | Triple TheTriple(Result->getTargetTriple()); |
| 101 | |
| 102 | if (TheTriple.getTriple().empty()) |
| 103 | TheTriple.setTriple(sys::getHostTriple()); |
| 104 | |
| 105 | TargetTriple.setTriple(TheTriple.getTriple()); |
| 106 | } |
| 107 | |
| 108 | Result->setTargetTriple(TargetTriple.getTriple()); // override the triple |
| 109 | } |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 110 | return Result; |
| 111 | } |
| 112 | |
| 113 | // This method takes the specified list of LLVM input files, attempts to load |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 114 | // them, either as assembly or bitcode, then link them together. It returns |
| 115 | // true on failure (if, for example, an input bitcode file could not be |
Brian Gaeke | dae7f92 | 2003-05-23 05:34:32 +0000 | [diff] [blame] | 116 | // parsed), and false on success. |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 117 | // |
| 118 | bool BugDriver::addSources(const std::vector<std::string> &Filenames) { |
| 119 | assert(Program == 0 && "Cannot call addSources multiple times!"); |
| 120 | assert(!Filenames.empty() && "Must specify at least on input filename!"); |
| 121 | |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 122 | try { |
| 123 | // Load the first input file. |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 124 | Program = ParseInputFile(Filenames[0], Context); |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 125 | if (Program == 0) return true; |
Chris Lattner | 065344d | 2007-05-06 23:45:49 +0000 | [diff] [blame] | 126 | |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 127 | if (!run_as_child) |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 128 | outs() << "Read input file : '" << Filenames[0] << "'\n"; |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 129 | |
| 130 | for (unsigned i = 1, e = Filenames.size(); i != e; ++i) { |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 131 | std::auto_ptr<Module> M(ParseInputFile(Filenames[i], Context)); |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 132 | if (M.get() == 0) return true; |
| 133 | |
| 134 | if (!run_as_child) |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 135 | outs() << "Linking in input file: '" << Filenames[i] << "'\n"; |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 136 | std::string ErrorMessage; |
| 137 | if (Linker::LinkModules(Program, M.get(), &ErrorMessage)) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 138 | errs() << ToolName << ": error linking in '" << Filenames[i] << "': " |
| 139 | << ErrorMessage << '\n'; |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 140 | return true; |
| 141 | } |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 142 | } |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 143 | } catch (const std::string &Error) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 144 | errs() << ToolName << ": error reading input '" << Error << "'\n"; |
Chris Lattner | 53bd1b9 | 2006-05-14 19:15:56 +0000 | [diff] [blame] | 145 | return true; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 148 | if (!run_as_child) |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 149 | outs() << "*** All input ok\n"; |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 150 | |
| 151 | // All input files read successfully! |
| 152 | return false; |
| 153 | } |
| 154 | |
| 155 | |
| 156 | |
| 157 | /// run - The top level method that is invoked after all of the instance |
| 158 | /// variables are set up from command line arguments. |
| 159 | /// |
| 160 | bool BugDriver::run() { |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 161 | // The first thing to do is determine if we're running as a child. If we are, |
| 162 | // then what to do is very narrow. This form of invocation is only called |
| 163 | // from the runPasses method to actually run those passes in a child process. |
| 164 | if (run_as_child) { |
| 165 | // Execute the passes |
| 166 | return runPassesAsChild(PassesToRun); |
| 167 | } |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 168 | |
| 169 | if (run_find_bugs) { |
| 170 | // Rearrange the passes and apply them to the program. Repeat this process |
| 171 | // until the user kills the program or we find a bug. |
| 172 | return runManyPasses(PassesToRun); |
| 173 | } |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 174 | |
| 175 | // If we're not running as a child, the first thing that we must do is |
| 176 | // determine what the problem is. Does the optimization series crash the |
| 177 | // compiler, or does it produce illegal code? We make the top-level |
| 178 | // decision by trying to run all of the passes on the the input program, |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 179 | // which should generate a bitcode file. If it does generate a bitcode |
Reid Spencer | c4bb052 | 2005-12-22 20:02:55 +0000 | [diff] [blame] | 180 | // file, then we know the compiler didn't crash, so try to diagnose a |
| 181 | // miscompilation. |
Chris Lattner | 99b8533 | 2003-10-13 21:04:26 +0000 | [diff] [blame] | 182 | if (!PassesToRun.empty()) { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 183 | outs() << "Running selected passes on program to test for crash: "; |
Chris Lattner | 99b8533 | 2003-10-13 21:04:26 +0000 | [diff] [blame] | 184 | if (runPasses(PassesToRun)) |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 185 | return debugOptimizerCrash(); |
Chris Lattner | 99b8533 | 2003-10-13 21:04:26 +0000 | [diff] [blame] | 186 | } |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 187 | |
Gabor Greif | 8ff70c2 | 2007-07-04 21:55:50 +0000 | [diff] [blame] | 188 | // Set up the execution environment, selecting a method to run LLVM bitcode. |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 189 | if (initializeExecutionEnvironment()) return true; |
| 190 | |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 191 | // Test to see if we have a code generator crash. |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 192 | outs() << "Running the code generator to test for a crash: "; |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 193 | try { |
| 194 | compileProgram(Program); |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 195 | outs() << '\n'; |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 196 | } catch (ToolExecutionError &TEE) { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 197 | outs() << TEE.what(); |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 198 | return debugCodeGeneratorCrash(); |
| 199 | } |
| 200 | |
| 201 | |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 202 | // Run the raw input to see where we are coming from. If a reference output |
| 203 | // was specified, make sure that the raw output matches it. If not, it's a |
| 204 | // problem in the front-end or the code generator. |
| 205 | // |
Chris Lattner | c28c1d3 | 2003-08-22 18:57:43 +0000 | [diff] [blame] | 206 | bool CreatedOutput = false; |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 207 | if (ReferenceOutputFile.empty()) { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 208 | outs() << "Generating reference output from raw program: "; |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 209 | if(!createReferenceFile(Program)){ |
Bill Wendling | 584c3bf | 2008-02-26 10:46:10 +0000 | [diff] [blame] | 210 | return debugCodeGeneratorCrash(); |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 211 | } |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 212 | CreatedOutput = true; |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 215 | // Make sure the reference output file gets deleted on exit from this |
| 216 | // function, if appropriate. |
Reid Spencer | 5d28218 | 2004-12-20 19:16:12 +0000 | [diff] [blame] | 217 | sys::Path ROF(ReferenceOutputFile); |
Anton Korobeynikov | 86c006a | 2009-08-05 09:32:10 +0000 | [diff] [blame] | 218 | FileRemover RemoverInstance(ROF, CreatedOutput && !SaveTemps); |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 219 | |
| 220 | // Diff the output of the raw program against the reference output. If it |
Patrick Jenkins | 6a3f31c | 2006-08-15 16:40:49 +0000 | [diff] [blame] | 221 | // matches, then we assume there is a miscompilation bug and try to |
| 222 | // diagnose it. |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 223 | outs() << "*** Checking the code generator...\n"; |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 224 | try { |
| 225 | if (!diffProgram()) { |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 226 | outs() << "\n*** Output matches: Debugging miscompilation!\n"; |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 227 | return debugMiscompilation(); |
| 228 | } |
| 229 | } catch (ToolExecutionError &TEE) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 230 | errs() << TEE.what(); |
Chris Lattner | 0252626 | 2004-02-18 21:02:04 +0000 | [diff] [blame] | 231 | return debugCodeGeneratorCrash(); |
Chris Lattner | a5a96a9 | 2003-10-14 20:52:55 +0000 | [diff] [blame] | 232 | } |
| 233 | |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 234 | outs() << "\n*** Input program does not match reference diff!\n"; |
| 235 | outs() << "Debugging code generator problem!\n"; |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 236 | try { |
| 237 | return debugCodeGenerator(); |
| 238 | } catch (ToolExecutionError &TEE) { |
Dan Gohman | 65f57c2 | 2009-07-15 16:35:29 +0000 | [diff] [blame] | 239 | errs() << TEE.what(); |
Chris Lattner | 7c955fd | 2004-02-19 17:03:49 +0000 | [diff] [blame] | 240 | return debugCodeGeneratorCrash(); |
| 241 | } |
Misha Brukman | 5073336 | 2003-07-24 18:17:43 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 244 | void llvm::PrintFunctionList(const std::vector<Function*> &Funcs) { |
| 245 | unsigned NumPrint = Funcs.size(); |
| 246 | if (NumPrint > 10) NumPrint = 10; |
| 247 | for (unsigned i = 0; i != NumPrint; ++i) |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 248 | outs() << " " << Funcs[i]->getName(); |
Chris Lattner | efdc0b5 | 2004-03-14 20:50:42 +0000 | [diff] [blame] | 249 | if (NumPrint < Funcs.size()) |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 250 | outs() << "... <" << Funcs.size() << " total>"; |
| 251 | outs().flush(); |
Chris Lattner | afade92 | 2002-11-20 22:28:10 +0000 | [diff] [blame] | 252 | } |
Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 253 | |
| 254 | void llvm::PrintGlobalVariableList(const std::vector<GlobalVariable*> &GVs) { |
| 255 | unsigned NumPrint = GVs.size(); |
| 256 | if (NumPrint > 10) NumPrint = 10; |
| 257 | for (unsigned i = 0; i != NumPrint; ++i) |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 258 | outs() << " " << GVs[i]->getName(); |
Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 259 | if (NumPrint < GVs.size()) |
Dan Gohman | ac95cc7 | 2009-07-16 15:30:09 +0000 | [diff] [blame] | 260 | outs() << "... <" << GVs.size() << " total>"; |
| 261 | outs().flush(); |
Bill Wendling | 4e3be89 | 2006-10-25 18:36:14 +0000 | [diff] [blame] | 262 | } |