HomeSort by: relevance | last modified time | path
    Searched refs:OutputFile (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/utils/
llvm-native-gxx 36 $OutputFile = $ARGV[$i + 1];
108 my ($BCFile, $Backend, $OutputFile) = @_;
113 $GeneratedCode = "${OutputFile}.c";
120 $GeneratedCode = "${OutputFile}.s";
128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs";
134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_;
139 my $BCFile = "${OutputFile}.llvm.bc";
141 run "mv ${OutputFile} $BCFile";
143 run "mv ${OutputFile}.bc $BCFile";
147 $GeneratedCode = "${OutputFile}.cbe.c"
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
PGOProfiling.c 21 static FILE *OutputFile = NULL;
39 fprintf(OutputFile, "%s %u\n", MangledName, NumCounters);
41 fprintf(OutputFile, "%" PRIu64 "\n", Counters[i]);
42 fprintf(OutputFile, "\n");
62 OutputFile = fopen(OutputName, "w");
63 if (!OutputFile) return;
72 fclose(OutputFile);
InstrProfilingFile.c 55 FILE *OutputFile;
60 OutputFile = fopen(OutputName, "ab");
61 if (!OutputFile)
64 RetVal = writeFile(OutputFile);
66 fclose(OutputFile);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
HeaderIncludeGen.cpp 21 raw_ostream *OutputFile;
35 : SM(PP->getSourceManager()), OutputFile(OutputFile_), DepOpts(DepOpts),
42 delete OutputFile;
54 static void PrintHeaderInfo(raw_ostream *OutputFile, StringRef Filename,
77 *OutputFile << Msg;
78 OutputFile->flush();
85 raw_ostream *OutputFile = &llvm::errs();
94 OutputFile = &llvm::errs();
97 OutputFile = &llvm::outs();
114 OutputFile = OS
    [all...]
DependencyGraph.cpp 30 std::string OutputFile;
44 DependencyGraphCallback(const Preprocessor *_PP, StringRef OutputFile,
46 : PP(_PP), OutputFile(OutputFile.str()), SysRoot(SysRoot.str()) { }
62 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
64 PP.addPPCallbacks(std::make_unique<DependencyGraphCallback>(&PP, OutputFile,
103 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_TextWithCRLF);
105 PP->getDiagnostics().Report(diag::err_fe_error_opening) << OutputFile
DependencyFile.cpp 189 : OutputFile(Opts.OutputFile), Targets(Opts.Targets),
316 llvm::sys::fs::remove(OutputFile);
321 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_TextWithCRLF);
323 Diags.Report(diag::err_fe_error_opening) << OutputFile << EC.message();
FrontendActions.cpp 102 std::string OutputFile;
104 CreateOutputFile(CI, InFile, /*ref*/ OutputFile);
115 CI.getPreprocessor(), CI.getModuleCache(), OutputFile, Sysroot, Buffer,
120 CI, std::string(InFile), OutputFile, std::move(OS), Buffer));
138 std::string &OutputFile) {
145 OutputFile = CI.getFrontendOpts().OutputFile;
167 std::string OutputFile = CI.getFrontendOpts().OutputFile;
174 CI.getPreprocessor(), CI.getModuleCache(), OutputFile, Sysroot, Buffer
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpixtract/
acpixtract.c 70 FILE *OutputFile = NULL;
192 OutputFile = fopen (Gbl_OutputFilename, "w+b");
193 if (!OutputFile)
220 BytesConverted = AxConvertAndWrite (OutputFile, ThisSignature);
262 if (OutputFile)
264 fclose (OutputFile);
292 FILE *OutputFile;
320 OutputFile = fopen (Gbl_OutputFilename, "w+b");
321 if (!OutputFile)
391 BytesConverted = AxConvertAndWrite (OutputFile, ThisSignature)
    [all...]
acpixtract.h 173 FILE *OutputFile,
  /src/sys/external/bsd/acpica/dist/compiler/
aslerror.c 96 FILE *OutputFile,
230 * PARAMETERS: OutputFile - Output file
243 FILE *OutputFile,
255 fprintf (OutputFile, "%s %4.4d -",
266 fprintf (OutputFile, " %s %s\n\n", MainMessage, ExtraMessage);
289 fprintf (OutputFile, " %s",
299 fprintf (OutputFile, "%*s%s",
305 fprintf (OutputFile, "%*s %s",
313 fprintf (OutputFile, " %s", MainMessage);
320 fprintf (OutputFile, " (%s)", ExtraMessage)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
SerializedDiagnosticPrinter.h 35 std::unique_ptr<DiagnosticConsumer> create(StringRef OutputFile,
DependencyOutputOptions.h 54 std::string OutputFile;
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
GeneratePCH.cpp 25 StringRef OutputFile, StringRef isysroot, std::shared_ptr<PCHBuffer> Buffer,
29 : PP(PP), OutputFile(OutputFile), isysroot(isysroot.str()),
68 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot,
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCommand.h 42 OutputFile(Other.OutputFile) {}
47 OutputFile = Other.OutputFile;
125 bool hasOutputFile() const { return !OutputFile.empty(); }
128 const std::string &getOutputFile() const { return OutputFile; }
131 void setOutputFile(const std::string &FileName) { OutputFile = FileName; }
174 std::string OutputFile;
FuzzerIO.cpp 24 static FILE *OutputFile = stderr;
108 OutputFile = NewOutputFile;
124 vfprintf(OutputFile, Fmt, ap);
126 fflush(OutputFile);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
COFFModuleDefinition.h 29 std::string OutputFile;
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
dsymutil.cpp 96 std::string OutputFile;
172 if (!Options.Flat && Options.OutputFile == "-")
178 !Options.OutputFile.empty())
276 if (opt::Arg *OutputFile = Args.getLastArg(OPT_output))
277 Options.OutputFile = OutputFile->getValue();
390 static bool verify(StringRef OutputFile, StringRef Arch, bool Verbose) {
391 if (OutputFile == "-") {
397 Expected<OwningBinary<Binary>> BinOrErr = createBinary(OutputFile);
399 WithColor::error() << OutputFile << ": " << toString(BinOrErr.takeError())
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/
generate_abi_list.py 17 def OutputFile(file):
28 parser.add_argument('-o', '--output', dest='output', type=OutputFile, default=sys.stdout,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp 152 SmallString<128> OutputFile;
155 OutputFile = Arg->getValue();
157 OutputFile = sys::path::filename(StringRef(InputFiles[0]));
158 sys::path::replace_extension(OutputFile, ".obj");
214 FileOutputBuffer::create(OutputFile, OutputBuffer->getBufferSize());
216 reportError(OutputFile, errorToErrorCode(FileOrErr.takeError()));
224 error(OutputFile,
225 MemoryBuffer::getFileOrSTDIN(OutputFile, /*IsText=*/false,
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ExecutionDriver.cpp 283 std::string OutputFile,
316 if (OutputFile.empty())
317 OutputFile = OutputPrefix + "-execution-output-%%%%%%%";
321 std::error_code EC = sys::fs::createUniqueFile(OutputFile, UniqueFile);
327 OutputFile = std::string(UniqueFile.str());
335 OutputFile, AdditionalLinkerArgs,
358 std::ofstream outFile(OutputFile.c_str(), std::ios_base::app);
364 return OutputFile;
371 const std::string &OutputFile) const {
372 return executeProgram(Program, OutputFile, "", "", SafeInterpreter)
    [all...]
ToolRunner.cpp 158 const std::string &InputFile, const std::string &OutputFile,
168 const std::string &OutputFile,
198 return RunProgramWithTimeout(LLIPath, LLIArgs, InputFile, OutputFile,
199 OutputFile, Timeout, MemoryLimit);
254 const std::string &InputFile, const std::string &OutputFile,
303 const std::string &InputFile, const std::string &OutputFile,
312 const std::string &InputFile, const std::string &OutputFile,
329 OutputFile, OutputFile, Timeout, MemoryLimit);
485 const std::string &OutputFile,
    [all...]
ToolRunner.h 58 /// Output is captured to the specified OutputFile location. The SharedLibs
65 const std::string &OutputFile,
73 std::string &OutputFile,
137 const std::string &InputFile, const std::string &OutputFile,
171 const std::string &InputFile, const std::string &OutputFile,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-mt/
llvm-mt.cpp 122 StringRef OutputFile;
124 OutputFile = InputArgs.getLastArgValue(OPT_out);
126 OutputFile = InputFiles[0];
146 FileOutputBuffer::create(OutputFile, OutputBuffer->getBufferSize());
148 reportError(OutputFile, errorToErrorCode(FileOrErr.takeError()));
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Signals.cpp 154 SmallString<32> InputFile, OutputFile;
156 sys::fs::createTemporaryFile("symbolizer-output", "", OutputFile);
158 FileRemover OutputRemover(OutputFile.c_str());
169 StringRef(OutputFile), StringRef("")};
185 auto OutputBuf = MemoryBuffer::getFile(OutputFile.c_str());
  /src/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-dlltool/
DlltoolDriver.cpp 140 // Do this after the parser because parseCOFFModuleDefinition sets OutputFile.
142 Def->OutputFile = Arg->getValue();
144 if (Def->OutputFile.empty()) {
181 writeImportLibrary(Def->OutputFile, Path, Def->Exports, Machine, true))

Completed in 44 milliseconds

1 2 3