<div dir="ltr">Hi all,<div><br></div><div>As mentioned in my recent RFC entitled "RFC: a more detailed design for ThinLTO + vcall CFI" I would like to introduce the ability for bitcode files to contain multiple modules. In <a href="https://reviews.llvm.org/D24786">https://reviews.llvm.org/D24786</a> I took a step towards that by proposing a change to the module format so that the block info block is stored at the top level. The next step is to think about what the API would look like for reading and writing multiple modules.</div><div><br></div><div>Here's what I have in mind. To create a multi-module bitcode file, you would create a BitcodeWriter object and add modules to it:</div><div><br></div><div>BitcodeWriter W(OS);</div><div>W.addModule(M1);</div><div>W.addModule(M2);</div><div>W.write();</div><div><br></div><div>Reading a multi-module bitcode file would be supported with a BitcodeReader class. Each of the functional reader APIs in ReaderWriter.h would have a member function on BitcodeReader. We would also have a next() member function which would move to the next module in the file. For example:</div><div><br></div><div>BitcodeReader R(MBRef);</div><div>Expected<bool> B = R.hasGlobalValueSummary();<br></div><div><div>std::unique_ptr<Module> M1 = R.getLazyModule(Ctx); // lazily load the first module</div></div><div><div>R.next();</div></div><div><div><div>std::unique_ptr<Module> M2 = R.parseBitcodeFile(Ctx); // eagerly load the second module</div><div><br></div>We'd continue to support the existing functional APIs in ReaderWriter.h for convenience in the common case where the bitcode file has a single module.</div></div><div><br></div><div>Thanks,<br>-- <br><div class="gmail_signature"><div dir="ltr">-- <div>Peter</div></div></div>
</div></div>