Home | History | Annotate | Download | only in llvm-spirv

Lines Matching refs:OutputFile

85 OutputFile("o", cl::desc("Override output filename"),
143 if (OutputFile.empty()) {
145 OutputFile = "-";
147 OutputFile = removeExt(InputFile) +
151 llvm::StringRef outFile(OutputFile);
182 if (OutputFile.empty()) {
184 OutputFile = "-";
186 OutputFile = removeExt(InputFile) + kExt::LLVMBinary;
190 tool_output_file Out(OutputFile.c_str(), EC, sys::fs::F_None);
211 if (OutputFile.empty()) {
213 OutputFile = "-";
215 OutputFile = removeExt(InputFile)
228 if (OutputFile != "-") {
230 llvm::raw_fd_ostream OFS(llvm::StringRef(OutputFile), EC, llvm::sys::fs::F_None);
263 if (OutputFile.empty()) {
265 OutputFile = "-";
267 OutputFile = removeExt(InputFile) + ".regularized.bc";
276 tool_output_file Out(OutputFile.c_str(), EC, sys::fs::F_None);