Home | History | Annotate | Download | only in Driver

Lines Matching defs:Output

419   // Suppress driver output and emit preprocessor output to temp file.
438 // Suppress tool output.
508 // Generate preprocessed output.
524 // the crash into a directory next to the output.
892 // Make sure we can lipo this kind of output. If not (and it is an actual
893 // output) then we disallow, since we can't create an output file with the
895 // changing the output names to include the arch, which would also fix
933 // Verify the debug info output.
1150 // Check whether /Fo tries to name an output file for multiple inputs.
1252 // If we ended with something, add to the output list.
1280 // -{M, MM} alter the output type.
1320 types::ID Output =
1322 return new CompileJobAction(Input, Output);
1324 types::ID Output =
1326 return new CompileJobAction(Input, Output);
1350 // It is an error to provide a -o option if we are making multiple output
1543 // shouldn't get temporary output names.
1563 // Determine the place to write output to, if any.
1579 llvm::errs() << "], output: " << Result.getAsString() << "\n";
1586 /// \brief Create output filename based on ArgValue, which could either be a
1595 // If the argument is empty, output to BaseName in the current dir.
1598 // If the argument is a directory, output to BaseName in that dir.
1608 // The output file is a dll.
1624 llvm::PrettyStackTraceString CrashInfo("Computing output path");
1625 // Output to a user requested destination?
1659 // Output to a temporary file?
1680 // Determine what the derived output name should be.
1701 SmallString<128> Output(DefaultImageName.c_str());
1702 Output += "-";
1703 Output.append(BoundArch);
1704 NamedOutput = C.getArgs().MakeArgString(Output.c_str());
1709 assert(Suffix && "All types used for output should have a suffix.");