Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DThinLTOBitcodeWriter.cpp247 raw_ostream &OS, raw_ostream *ThinLinkOS, in splitAndWriteThinLTOBitcode() argument
258 if (ThinLinkOS) in splitAndWriteThinLTOBitcode()
261 WriteBitcodeToFile(M, *ThinLinkOS, /*ShouldPreserveUseListOrder=*/false, in splitAndWriteThinLTOBitcode()
467 if (ThinLinkOS) { in splitAndWriteThinLTOBitcode()
476 *ThinLinkOS << Buffer; in splitAndWriteThinLTOBitcode()
498 void writeThinLTOBitcode(raw_ostream &OS, raw_ostream *ThinLinkOS, in writeThinLTOBitcode() argument
506 return splitAndWriteThinLTOBitcode(OS, ThinLinkOS, AARGetter, M); in writeThinLTOBitcode()
537 if (ThinLinkOS && Index) in writeThinLTOBitcode()
538 WriteThinLinkBitcodeToFile(M, *ThinLinkOS, *Index, ModHash); in writeThinLTOBitcode()
545 raw_ostream *ThinLinkOS; member in __anone1f51ed60111::WriteThinLTOBitcode
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
DThinLTOBitcodeWriter.h27 raw_ostream *ThinLinkOS; variable
32 ThinLTOBitcodeWriterPass(raw_ostream &OS, raw_ostream *ThinLinkOS) in ThinLTOBitcodeWriterPass() argument
33 : OS(OS), ThinLinkOS(ThinLinkOS) {} in ThinLTOBitcodeWriterPass()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DBackendUtil.cpp984 std::unique_ptr<llvm::ToolOutputFile> ThinLinkOS, DwoOS; in EmitAssembly() local
993 ThinLinkOS = openOutputFile(CodeGenOpts.ThinLinkBitcodeFile); in EmitAssembly()
994 if (!ThinLinkOS) in EmitAssembly()
1000 *OS, ThinLinkOS ? &ThinLinkOS->os() : nullptr)); in EmitAssembly()
1066 if (ThinLinkOS) in EmitAssembly()
1067 ThinLinkOS->keep(); in EmitAssembly()
1429 std::unique_ptr<llvm::ToolOutputFile> ThinLinkOS, DwoOS; in EmitAssemblyWithNewPassManager() local
1439 ThinLinkOS = openOutputFile(CodeGenOpts.ThinLinkBitcodeFile); in EmitAssemblyWithNewPassManager()
1440 if (!ThinLinkOS) in EmitAssemblyWithNewPassManager()
1445 MPM.addPass(ThinLTOBitcodeWriterPass(*OS, ThinLinkOS ? &ThinLinkOS->os() in EmitAssemblyWithNewPassManager()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/
DIPO.h294 raw_ostream *ThinLinkOS = nullptr);