blob: 50dd44fa659f4ca4dd5277b477f404ff03b863e3 [file] [log] [blame]
Peter Collingbournec269ed52015-08-27 23:37:36 +00001//===-- ParallelCG.cpp ----------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines functions that can be used for parallel code generation.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/ParallelCG.h"
Teresa Johnsonad176792016-11-11 05:34:58 +000015#include "llvm/Bitcode/BitcodeReader.h"
16#include "llvm/Bitcode/BitcodeWriter.h"
Peter Collingbournec269ed52015-08-27 23:37:36 +000017#include "llvm/IR/LLVMContext.h"
18#include "llvm/IR/LegacyPassManager.h"
19#include "llvm/IR/Module.h"
20#include "llvm/Support/ErrorOr.h"
21#include "llvm/Support/MemoryBuffer.h"
22#include "llvm/Support/TargetRegistry.h"
Teresa Johnsond84c7de2016-03-04 15:39:13 +000023#include "llvm/Support/ThreadPool.h"
Peter Collingbournec269ed52015-08-27 23:37:36 +000024#include "llvm/Target/TargetMachine.h"
25#include "llvm/Transforms/Utils/SplitModule.h"
26
27using namespace llvm;
28
Benjamin Kramer1afc1de2016-06-17 20:41:14 +000029static void codegen(Module *M, llvm::raw_pwrite_stream &OS,
30 function_ref<std::unique_ptr<TargetMachine>()> TMFactory,
31 TargetMachine::CodeGenFileType FileType) {
Davide Italiano7950b122016-04-15 17:34:32 +000032 std::unique_ptr<TargetMachine> TM = TMFactory();
Peter Collingbournec269ed52015-08-27 23:37:36 +000033 legacy::PassManager CodeGenPasses;
Tobias Edler von Koch4d450902015-11-19 23:59:24 +000034 if (TM->addPassesToEmitFile(CodeGenPasses, OS, FileType))
Peter Collingbournec269ed52015-08-27 23:37:36 +000035 report_fatal_error("Failed to setup codegen");
36 CodeGenPasses.run(*M);
37}
38
Davide Italiano7950b122016-04-15 17:34:32 +000039std::unique_ptr<Module> llvm::splitCodeGen(
40 std::unique_ptr<Module> M, ArrayRef<llvm::raw_pwrite_stream *> OSs,
41 ArrayRef<llvm::raw_pwrite_stream *> BCOSs,
42 const std::function<std::unique_ptr<TargetMachine>()> &TMFactory,
43 TargetMachine::CodeGenFileType FileType, bool PreserveLocals) {
Evgeniy Stepanov268826a2016-04-06 18:32:13 +000044 assert(BCOSs.empty() || BCOSs.size() == OSs.size());
45
Peter Collingbournec269ed52015-08-27 23:37:36 +000046 if (OSs.size() == 1) {
Evgeniy Stepanov268826a2016-04-06 18:32:13 +000047 if (!BCOSs.empty())
48 WriteBitcodeToFile(M.get(), *BCOSs[0]);
Davide Italiano7950b122016-04-15 17:34:32 +000049 codegen(M.get(), *OSs[0], TMFactory, FileType);
Peter Collingbournec269ed52015-08-27 23:37:36 +000050 return M;
51 }
52
Teresa Johnsond84c7de2016-03-04 15:39:13 +000053 // Create ThreadPool in nested scope so that threads will be joined
54 // on destruction.
55 {
56 ThreadPool CodegenThreadPool(OSs.size());
57 int ThreadCount = 0;
Peter Collingbournec269ed52015-08-27 23:37:36 +000058
Teresa Johnsond84c7de2016-03-04 15:39:13 +000059 SplitModule(
60 std::move(M), OSs.size(),
61 [&](std::unique_ptr<Module> MPart) {
62 // We want to clone the module in a new context to multi-thread the
63 // codegen. We do it by serializing partition modules to bitcode
64 // (while still on the main thread, in order to avoid data races) and
65 // spinning up new threads which deserialize the partitions into
66 // separate contexts.
67 // FIXME: Provide a more direct way to do this in LLVM.
Davide Italianocaa11692016-04-17 19:38:57 +000068 SmallString<0> BC;
Teresa Johnsond84c7de2016-03-04 15:39:13 +000069 raw_svector_ostream BCOS(BC);
70 WriteBitcodeToFile(MPart.get(), BCOS);
Peter Collingbournec269ed52015-08-27 23:37:36 +000071
Evgeniy Stepanov268826a2016-04-06 18:32:13 +000072 if (!BCOSs.empty()) {
73 BCOSs[ThreadCount]->write(BC.begin(), BC.size());
74 BCOSs[ThreadCount]->flush();
75 }
76
Teresa Johnsond84c7de2016-03-04 15:39:13 +000077 llvm::raw_pwrite_stream *ThreadOS = OSs[ThreadCount++];
78 // Enqueue the task
79 CodegenThreadPool.async(
Davide Italianocaa11692016-04-17 19:38:57 +000080 [TMFactory, FileType, ThreadOS](const SmallString<0> &BC) {
Teresa Johnsond84c7de2016-03-04 15:39:13 +000081 LLVMContext Ctx;
Peter Collingbourned9445c42016-11-13 07:00:17 +000082 Expected<std::unique_ptr<Module>> MOrErr = parseBitcodeFile(
Teresa Johnsond84c7de2016-03-04 15:39:13 +000083 MemoryBufferRef(StringRef(BC.data(), BC.size()),
84 "<split-module>"),
85 Ctx);
86 if (!MOrErr)
87 report_fatal_error("Failed to read bitcode");
88 std::unique_ptr<Module> MPartInCtx = std::move(MOrErr.get());
89
Davide Italiano7950b122016-04-15 17:34:32 +000090 codegen(MPartInCtx.get(), *ThreadOS, TMFactory, FileType);
Teresa Johnsond84c7de2016-03-04 15:39:13 +000091 },
92 // Pass BC using std::move to ensure that it get moved rather than
93 // copied into the thread's context.
94 std::move(BC));
Peter Collingbournec269ed52015-08-27 23:37:36 +000095 },
Teresa Johnsond84c7de2016-03-04 15:39:13 +000096 PreserveLocals);
97 }
Peter Collingbournec269ed52015-08-27 23:37:36 +000098
99 return {};
100}