Home
last modified time | relevance | path

Searched refs:OptRecordFile (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenAction.cpp269 std::unique_ptr<llvm::ToolOutputFile> OptRecordFile; in HandleTranslationUnit() local
270 if (!CodeGenOpts.OptRecordFile.empty()) { in HandleTranslationUnit()
272 OptRecordFile = llvm::make_unique<llvm::ToolOutputFile>( in HandleTranslationUnit()
273 CodeGenOpts.OptRecordFile, EC, sys::fs::F_None); in HandleTranslationUnit()
276 CodeGenOpts.OptRecordFile << EC.message(); in HandleTranslationUnit()
281 llvm::make_unique<yaml::Output>(OptRecordFile->os())); in HandleTranslationUnit()
301 if (OptRecordFile) in HandleTranslationUnit()
302 OptRecordFile->keep(); in HandleTranslationUnit()
H A DBackendUtil.cpp1235 Conf.RemarksFilename = CGOpts.OptRecordFile; in runThinLTOBackend()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCodeGenOptions.h239 std::string OptRecordFile; variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp1213 Opts.OptRecordFile = Args.getLastArgValue(OPT_opt_record_file); in ParseCodeGenArgs()
1214 if (!Opts.OptRecordFile.empty()) in ParseCodeGenArgs()