Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 1 | //===-- ParallelCG.cpp ----------------------------------------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame^] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file defines functions that can be used for parallel code generation. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "llvm/CodeGen/ParallelCG.h" |
Teresa Johnson | ad17679 | 2016-11-11 05:34:58 +0000 | [diff] [blame] | 14 | #include "llvm/Bitcode/BitcodeReader.h" |
| 15 | #include "llvm/Bitcode/BitcodeWriter.h" |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 16 | #include "llvm/IR/LLVMContext.h" |
| 17 | #include "llvm/IR/LegacyPassManager.h" |
| 18 | #include "llvm/IR/Module.h" |
| 19 | #include "llvm/Support/ErrorOr.h" |
| 20 | #include "llvm/Support/MemoryBuffer.h" |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 21 | #include "llvm/Support/ThreadPool.h" |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetMachine.h" |
| 23 | #include "llvm/Transforms/Utils/SplitModule.h" |
| 24 | |
| 25 | using namespace llvm; |
| 26 | |
Benjamin Kramer | 1afc1de | 2016-06-17 20:41:14 +0000 | [diff] [blame] | 27 | static void codegen(Module *M, llvm::raw_pwrite_stream &OS, |
| 28 | function_ref<std::unique_ptr<TargetMachine>()> TMFactory, |
| 29 | TargetMachine::CodeGenFileType FileType) { |
Davide Italiano | 7950b12 | 2016-04-15 17:34:32 +0000 | [diff] [blame] | 30 | std::unique_ptr<TargetMachine> TM = TMFactory(); |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 31 | legacy::PassManager CodeGenPasses; |
Peter Collingbourne | 9a45114 | 2018-05-21 20:16:41 +0000 | [diff] [blame] | 32 | if (TM->addPassesToEmitFile(CodeGenPasses, OS, nullptr, FileType)) |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 33 | report_fatal_error("Failed to setup codegen"); |
| 34 | CodeGenPasses.run(*M); |
| 35 | } |
| 36 | |
Davide Italiano | 7950b12 | 2016-04-15 17:34:32 +0000 | [diff] [blame] | 37 | std::unique_ptr<Module> llvm::splitCodeGen( |
| 38 | std::unique_ptr<Module> M, ArrayRef<llvm::raw_pwrite_stream *> OSs, |
| 39 | ArrayRef<llvm::raw_pwrite_stream *> BCOSs, |
| 40 | const std::function<std::unique_ptr<TargetMachine>()> &TMFactory, |
| 41 | TargetMachine::CodeGenFileType FileType, bool PreserveLocals) { |
Evgeniy Stepanov | 268826a | 2016-04-06 18:32:13 +0000 | [diff] [blame] | 42 | assert(BCOSs.empty() || BCOSs.size() == OSs.size()); |
| 43 | |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 44 | if (OSs.size() == 1) { |
Evgeniy Stepanov | 268826a | 2016-04-06 18:32:13 +0000 | [diff] [blame] | 45 | if (!BCOSs.empty()) |
Rafael Espindola | 6a86e25 | 2018-02-14 19:11:32 +0000 | [diff] [blame] | 46 | WriteBitcodeToFile(*M, *BCOSs[0]); |
Davide Italiano | 7950b12 | 2016-04-15 17:34:32 +0000 | [diff] [blame] | 47 | codegen(M.get(), *OSs[0], TMFactory, FileType); |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 48 | return M; |
| 49 | } |
| 50 | |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 51 | // Create ThreadPool in nested scope so that threads will be joined |
| 52 | // on destruction. |
| 53 | { |
| 54 | ThreadPool CodegenThreadPool(OSs.size()); |
| 55 | int ThreadCount = 0; |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 56 | |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 57 | SplitModule( |
| 58 | std::move(M), OSs.size(), |
| 59 | [&](std::unique_ptr<Module> MPart) { |
| 60 | // We want to clone the module in a new context to multi-thread the |
| 61 | // codegen. We do it by serializing partition modules to bitcode |
| 62 | // (while still on the main thread, in order to avoid data races) and |
| 63 | // spinning up new threads which deserialize the partitions into |
| 64 | // separate contexts. |
| 65 | // FIXME: Provide a more direct way to do this in LLVM. |
Davide Italiano | caa1169 | 2016-04-17 19:38:57 +0000 | [diff] [blame] | 66 | SmallString<0> BC; |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 67 | raw_svector_ostream BCOS(BC); |
Rafael Espindola | 6a86e25 | 2018-02-14 19:11:32 +0000 | [diff] [blame] | 68 | WriteBitcodeToFile(*MPart, BCOS); |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 69 | |
Evgeniy Stepanov | 268826a | 2016-04-06 18:32:13 +0000 | [diff] [blame] | 70 | if (!BCOSs.empty()) { |
| 71 | BCOSs[ThreadCount]->write(BC.begin(), BC.size()); |
| 72 | BCOSs[ThreadCount]->flush(); |
| 73 | } |
| 74 | |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 75 | llvm::raw_pwrite_stream *ThreadOS = OSs[ThreadCount++]; |
| 76 | // Enqueue the task |
| 77 | CodegenThreadPool.async( |
Davide Italiano | caa1169 | 2016-04-17 19:38:57 +0000 | [diff] [blame] | 78 | [TMFactory, FileType, ThreadOS](const SmallString<0> &BC) { |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 79 | LLVMContext Ctx; |
Peter Collingbourne | d9445c4 | 2016-11-13 07:00:17 +0000 | [diff] [blame] | 80 | Expected<std::unique_ptr<Module>> MOrErr = parseBitcodeFile( |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 81 | MemoryBufferRef(StringRef(BC.data(), BC.size()), |
| 82 | "<split-module>"), |
| 83 | Ctx); |
| 84 | if (!MOrErr) |
| 85 | report_fatal_error("Failed to read bitcode"); |
| 86 | std::unique_ptr<Module> MPartInCtx = std::move(MOrErr.get()); |
| 87 | |
Davide Italiano | 7950b12 | 2016-04-15 17:34:32 +0000 | [diff] [blame] | 88 | codegen(MPartInCtx.get(), *ThreadOS, TMFactory, FileType); |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 89 | }, |
| 90 | // Pass BC using std::move to ensure that it get moved rather than |
| 91 | // copied into the thread's context. |
| 92 | std::move(BC)); |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 93 | }, |
Teresa Johnson | d84c7de | 2016-03-04 15:39:13 +0000 | [diff] [blame] | 94 | PreserveLocals); |
| 95 | } |
Peter Collingbourne | c269ed5 | 2015-08-27 23:37:36 +0000 | [diff] [blame] | 96 | |
| 97 | return {}; |
| 98 | } |