Home
last modified time | relevance | path

Searched refs:NativeObjectStream (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/LTO/
H A DCaching.cpp71 struct CacheStream : NativeObjectStream { in localCache()
80 : NativeObjectStream(std::move(OS)), AddBuffer(std::move(AddBuffer)), in localCache()
132 return [=](size_t Task) -> std::unique_ptr<NativeObjectStream> { in localCache()
/freebsd-12.1/contrib/llvm/include/llvm/LTO/
H A DLTO.h175 class NativeObjectStream {
177 NativeObjectStream(std::unique_ptr<raw_pwrite_stream> OS) : OS(std::move(OS)) {} in NativeObjectStream() function
179 virtual ~NativeObjectStream() = default;
186 typedef std::function<std::unique_ptr<NativeObjectStream>(unsigned Task)>
/freebsd-12.1/contrib/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp300 [&](size_t Task) -> std::unique_ptr<lto::NativeObjectStream> { in run()
306 return llvm::make_unique<lto::NativeObjectStream>(std::move(S)); in run()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DLTO.cpp126 return llvm::make_unique<lto::NativeObjectStream>( in compile()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DLTO.cpp243 return llvm::make_unique<lto::NativeObjectStream>( in compile()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DBackendUtil.cpp1212 return llvm::make_unique<lto::NativeObjectStream>(std::move(OS)); in runThinLTOBackend()