Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DCaching.cpp73 struct CacheStream : NativeObjectStream { in localCache()
82 : NativeObjectStream(std::move(OS)), AddBuffer(std::move(AddBuffer)), in localCache()
134 return [=](size_t Task) -> std::unique_ptr<NativeObjectStream> { in localCache()
H A DLTOCodeGenerator.cpp249 [&](size_t Task) -> std::unique_ptr<lto::NativeObjectStream> { in compileOptimizedToFile()
258 return std::make_unique<lto::NativeObjectStream>( in compileOptimizedToFile()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
H A DLTO.h192 class NativeObjectStream {
194 NativeObjectStream(std::unique_ptr<raw_pwrite_stream> OS) : OS(std::move(OS)) {} in NativeObjectStream() function
196 virtual ~NativeObjectStream() = default;
204 std::function<std::unique_ptr<NativeObjectStream>(unsigned Task)>;
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp366 [&](size_t Task) -> std::unique_ptr<lto::NativeObjectStream> { in run()
372 return std::make_unique<lto::NativeObjectStream>(std::move(S)); in run()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp1052 [&](size_t Task) -> std::unique_ptr<lto::NativeObjectStream> { in main()
1062 return std::make_unique<lto::NativeObjectStream>(std::move(S)); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/gold/
H A Dgold-plugin.cpp1083 [&](size_t Task) -> std::unique_ptr<lto::NativeObjectStream> { in runLTO()
1087 return std::make_unique<lto::NativeObjectStream>( in runLTO()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DBackendUtil.cpp1522 return std::make_unique<lto::NativeObjectStream>(std::move(OS)); in runThinLTOBackend()