HomeSort by relevance Sort by last modified time
    Searched refs:outs (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/llvm/tools/bugpoint/
FindBugs.cpp 35 outs() << "Starting bug finding procedure...\n\n";
40 outs() << "\n";
42 outs() << "Generating reference output from raw program: \n";
59 outs() << "Running selected passes on program to test for crash: ";
61 outs() << "-" << PassesToRun[i] << " ";
66 outs() << "\n";
67 outs() << "Optimizer passes caused failure!\n\n";
71 outs() << "Combination " << num << " optimized successfully!\n";
77 outs() << "Running the code generator to test for a crash: ";
81 outs() << "\n*** compileProgram threw an exception: "
    [all...]
BugDriver.cpp 122 outs() << "Read input file : '" << Filenames[0] << "'\n";
128 outs() << "Linking in input file: '" << Filenames[i] << "'\n";
138 outs() << "*** All input ok\n";
164 outs() << "Running selected passes on program to test for crash: ";
173 outs() << "Running the code generator to test for a crash: ";
177 outs() << Error;
180 outs() << '\n';
188 outs() << "Generating reference output from raw program: ";
203 outs() << "*** Checking the code generator...\n";
210 outs() << "\n*** Output matches: Debugging miscompilation!\n"
    [all...]
Miscompilation.cpp 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
    [all...]
OptimizerDriver.cpp 84 outs() << "Emitted bitcode to '" << Filename << "'\n";
86 outs() << "\n*** You can reproduce the problem with: ";
87 if (UseValgrind) outs() << "valgrind ";
88 outs() << "opt " << Filename;
90 outs() << " -load " << PluginLoader::getPlugin(i);
92 outs() << " " << getPassesString(PassesToRun) << "\n";
107 /// outs() a single line message indicating whether compilation was successful
116 outs().flush();
221 outs() << "Success!\n";
223 outs() << "Exited with error code '" << result << "'\n"
    [all...]
CrashDebugger.cpp 68 outs() << "Checking to see if these passes crash: "
86 outs() << "Checking to see if these passes crash: "
145 outs() << "Checking for crash with only these global variables: ";
147 outs() << ": ";
220 outs() << "Checking for crash with only these functions: ";
222 outs() << ": ";
282 outs() << "Checking for crash with only these blocks:";
286 outs() << " " << BBs[i]->getName();
288 outs() << "... <" << Blocks.size() << " total>";
289 outs() << ": "
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 57 outs() << " ('segment_name', '";
58 outs().write_escaped(Name, /*UseHexEscapes=*/true) << "')\n";
59 outs() << " ('vm_addr', " << VMAddr << ")\n";
60 outs() << " ('vm_size', " << VMSize << ")\n";
61 outs() << " ('file_offset', " << FileOffset << ")\n";
62 outs() << " ('file_size', " << FileSize << ")\n";
63 outs() << " ('maxprot', " << MaxProt << ")\n";
64 outs() << " ('initprot', " << InitProt << ")\n";
65 outs() << " ('num_sections', " << NumSections << ")\n";
66 outs() << " ('flags', " << Flags << ")\n"
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 334 if (Dump) outs() << Indent << "<BLOCKINFO_BLOCK/>\n";
348 outs() << Indent << "<";
350 outs() << BlockName;
352 outs() << "UnknownBlock" << BlockID;
355 outs() << " BlockID=" << BlockID;
357 outs() << " NumWords=" << NumWords
379 outs() << Indent << "</";
381 outs() << BlockName << ">\n";
383 outs() << "UnknownBlock" << BlockID << ">\n";
425 outs() << Indent << " <"
    [all...]
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 37 outs() << format(" %-32s", (const char*)"Name")
110 outs() << format(" %-32s", FullName.c_str())
124 outs() << "Symbols:\n";
134 outs() << " Total: " << count << "\n\n";
141 outs() << "Dynamic Symbols:\n";
151 outs() << " Total: " << count << "\n\n";
157 outs() << " " << path << "\n";
166 outs() << "Libraries needed:\n";
174 outs() << " Total: " << count << "\n\n";
178 outs() << "File Format : " << obj->getFileFormatName() << "\n"
    [all...]
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 72 outs() << indent(Indent);
75 outs() << "&" << Anchor << " ";
79 outs() << "!!str \"" << yaml::escape(Val) << "\"";
81 outs() << "!!seq [\n";
86 outs() << ",\n";
89 outs() << indent(Indent) << "]";
91 outs() << "!!map {\n";
95 outs() << indent(Indent) << "? ";
97 outs() << "\n";
98 outs() << indent(Indent) << ": "
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
TraversalChecker.cpp 44 // It is mildly evil to print directly to llvm::outs() rather than emitting
48 llvm::outs() << C.getSourceManager().getSpellingLineNumber(Loc) << " "
53 llvm::outs() << "--END PATH--\n";
75 // It is mildly evil to print directly to llvm::outs() rather than emitting
78 llvm::outs().indent(Indentation);
79 Call.dump(llvm::outs());
  /external/clang/tools/diagtool/
diagtool_main.cpp 21 return tool->run(argc - 2, &argv[2], llvm::outs());
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 119 outs() << "We just constructed this LLVM module:\n\n" << *M;
120 outs() << "\n\nRunning foo: ";
121 outs().flush();
128 outs() << "Result: " << gv.IntVal << "\n";
  /external/llvm/tools/llvm-prof/
llvm-prof.cpp 179 outs() << "===" << std::string(73, '-') << "===\n"
181 if (PIL.getNumExecutions() != 1) outs() << "s";
182 outs() << ":\n";
185 outs() << " ";
186 if (e != 1) outs() << i+1 << ". ";
187 outs() << PIL.getExecution(i) << "\n";
190 outs() << "\n===" << std::string(73, '-') << "===\n";
191 outs() << "Function execution frequencies:\n\n";
194 outs() << " ## Frequency\n";
197 outs() << "\n NOTE: " << e-i << " function"
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 108 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
109 outs().flush();
161 outs() << output;
235 outs() << "Disassembly of section " << name << ':';
311 outs() << '\n' << Symbols[si].second << ":\n";
324 outs() << format("%8" PRIx64 ":\t", SectionAddr + Index);
326 IP->printInst(&Inst, outs(), "");
327 outs() << "\n";
351 outs() << format("\t\t\t%8" PRIx64 ": ", SectionAddr + addr) << name
371 outs() << "RELOCATION RECORDS FOR [" << secname << "]:\n"
    [all...]
  /external/llvm/tools/llvm-size/
llvm-size.cpp 74 outs() << ToolName << ": error reading file: " << ec.message() << ".\n";
75 outs().flush();
145 outs() << format(fmt.str().c_str(),
171 outs() << format(fmt.str().c_str(),
181 outs() << format(fmt.str().c_str(),
221 outs() << format(fmt.str().c_str(),
228 outs() << format(fmt.str().c_str(),
264 outs() << o->getFileName() << " (ex " << a->getFileName()
268 outs() << o->getFileName() << " (ex " << a->getFileName() << ")\n";
273 outs() << o->getFileName() << " :\n"
    [all...]
  /external/llvm/lib/VMCore/
GCOV.cpp 155 outs() << "===== " << Name << " @ " << Filename << ":" << LineNumber << "\n";
195 outs() << "Block : " << Number << " Counter : " << Counter << "\n";
197 outs() << "\tEdges : ";
200 outs() << (*I) << ",";
201 outs() << "\n";
204 outs() << "\tLines : ";
207 outs() << LI->first() << " -> ";
209 outs() << "\n";
230 outs() << (*I) << ",";
259 outs() << Filename << "\n"
    [all...]
  /frameworks/compile/mclinker/lib/Support/
CommandLine.cpp 39 outs() << "= " << V;
42 outs().indent(NumSpaces) << " (default: ";
44 outs() << Default.getValue().c_str();
46 outs() << "*no default*";
47 outs() << ")\n";
73 outs() << "= " << V.name();
76 outs().indent(NumSpaces) << " (default: ";
78 outs() << Default.getValue().name();
80 outs() << "*no default*";
81 outs() << ")\n"
    [all...]
raw_ostream.cpp 74 // outs(), errs(), nulls()
76 mcld::raw_fd_ostream& mcld::outs() { function in class:mcld
79 // detection. If you don't want this behavior, don't use outs().
92 outs().setLDInfo(pLDInfo);
  /external/llvm/lib/Support/
CommandLine.cpp     [all...]
  /external/javassist/sample/evolve/
DemoServer.java 75 private void runJava(OutputStream outs) throws IOException {
76 OutputStreamWriter out = new OutputStreamWriter(outs);
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 334 outs() << "\nArchive Symbol Table:\n";
339 outs() << " " << format("%9u", offset) << "\t" << I->first <<"\n";
364 outs() << "Printing " << I->getPath().str() << "\n";
367 outs().write(data, len);
381 outs() << "r";
383 outs() << "-";
385 outs() << "w";
387 outs() << "-";
389 outs() << "x";
391 outs() << "-"
    [all...]
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 99 raw_ostream *out = &outs();
142 outs() << "------- Running JIT -------\n";
152 if (out != &outs())
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 59 WriteBitcodeToFile(M, outs());
  /external/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp 53 outs() << (dli.getFunctionName() ? dli.getFunctionName() : "<unknown>")
55 outs() << (dli.getFileName() ? dli.getFileName() : "<unknown>") << ':'
110 outs() << Filename
113 dictx->dump(outs());
  /frameworks/compile/linkloader/utils/
raw_ostream.cpp 25 static llvm::raw_ostream &singleton = llvm::outs();

Completed in 2505 milliseconds

1 2 3 4 5