Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Out

249   // Dig out the module definition.
293 // If no output file was provided, figure out where this module would go
331 llvm::raw_ostream &Out;
334 DumpModuleInfoListener(llvm::raw_ostream &Out) : Out(Out) { }
337 Out.indent(4) << Text << ": " << (Value? "Yes" : "No") << "\n"
340 Out.indent(2)
350 Out.indent(2) << "Language options:\n";
354 Out.indent(4) << Description << ": " \
357 Out.indent(4) << Description << ": " << LangOpts.Name << "\n";
366 Out.indent(2) << "Target options:\n";
367 Out.indent(4) << " Triple: " << TargetOpts.Triple << "\n";
368 Out.indent(4) << " CPU: " << TargetOpts.CPU << "\n";
369 Out.indent(4) << " ABI: " << TargetOpts.ABI << "\n";
370 Out.indent(4) << " C++ ABI: " << TargetOpts.CXXABI << "\n";
371 Out.indent(4) << " Linker version: " << TargetOpts.LinkerVersion << "\n";
374 Out.indent(4) << "Target features:\n";
377 Out.indent(6) << TargetOpts.FeaturesAsWritten[I] << "\n";
386 Out.indent(2) << "Header search options:\n";
387 Out.indent(4) << "System root [-isysroot=]: '" << HSOpts.Sysroot << "'\n";
402 Out.indent(2) << "Preprocessor options:\n";
409 Out.indent(4) << "Predefined macros:\n";
415 Out.indent(6);
417 Out << "-U";
419 Out << "-D";
420 Out << I->first << "\n";
437 llvm::raw_ostream &Out = OutFile.get()? *OutFile.get() : llvm::outs();
439 Out << "Information for module file '" << getCurrentFile() << "':\n";
440 DumpModuleInfoListener Listener(Out);