Home | History | Annotate | Download | only in bugpoint

Lines Matching full:outs

66   outs() << "Checking to see if '" << getPassesString(Suffix)
85 outs() << " nope.\n";
93 outs() << " yup.\n"; // No miscompilation!
99 outs() << "Checking to see if '" << getPassesString(Prefix)
122 outs() << " nope.\n";
126 outs() << " yup.\n"; // No miscompilation!
144 outs() << "Checking to see if '" << getPassesString(Suffix)
164 outs() << " nope.\n";
169 outs() << " yup.\n"; // No miscompilation!
250 outs() << "Checking to see if the program is misoptimized when "
255 outs() << '\n';
372 outs() << " Testing after loop extraction:\n";
388 outs() << "*** Loop extraction masked the problem. Undoing.\n";
420 outs() << "*** Loop extraction successful!\n";
501 outs() << "Checking to see if the program is misoptimized when all ";
503 outs() << "but these " << BBs.size() << " blocks are extracted: ";
505 outs() << BBs[i]->getName() << " ";
506 if (BBs.size() > 10) outs() << "...";
508 outs() << "blocks are extracted.";
510 outs() << '\n';
664 outs() << "\n*** The following function"
668 outs() << '\n';
689 outs() << "\n*** The following function"
693 outs() << '\n';
712 outs() << "\n*** The following function"
716 outs() << '\n';
731 outs() << " Optimizing functions being tested: ";
734 outs() << "done.\n";
737 outs() << " Checking to see if the merged program executes correctly: ";
741 outs() << (Broken ? " nope.\n" : " yup.\n");
763 outs() << "\n*** Found miscompiling pass"
774 outs() << "Outputting reduced bitcode files which expose the problem:\n";
781 outs() << " Non-optimized portion: ";
785 outs() << " Portion that is input to optimizer: ";
1031 outs() << "\n*** The \"safe\" i.e. 'known good' backend cannot match "
1096 outs() << "You can reproduce the problem with the command line: \n";
1098 outs() << " lli -load " << SharedObject << " " << TestModuleBC.str();
1100 outs() << " llc " << TestModuleBC.str() << " -o " << TestModuleBC.str()
1102 outs() << " gcc " << SharedObject << " " << TestModuleBC.str()
1105 outs() << " -Wl,-R.";
1107 outs() << "\n";
1108 outs() << " " << TestModuleBC.str() << ".exe";
1111 outs() << " " << InputArgv[i];
1112 outs() << '\n';
1113 outs() << "The shared object was created with:\n llc -march=c "
1117 outs() << " -G"; // Compile a shared library, `-G' for Sparc
1119 outs() << " -fPIC -shared"; // `-shared' for Linux/X86, maybe others
1121 outs() << " -fno-strict-aliasing\n";