Run writeTo() concurrently.

I don't know why we didn't use parallelForEach to call writeTo,
but there should be no reason to not do that, as most writeTo
functions are safe to run concurrently.

llvm-svn: 314616
This commit is contained in:
Rui Ueyama 2017-10-01 02:25:34 +00:00
parent bffac0eb81
commit cb222035c2
1 changed files with 4 additions and 2 deletions

View File

@ -1910,14 +1910,16 @@ template <class ELFT> void Writer<ELFT>::writeSections() {
// In -r or -emit-relocs mode, write the relocation sections first as in
// ELf_Rel targets we might find out that we need to modify the relocated
// section while doing it.
for (OutputSection *Sec : OutputSections)
parallelForEach(OutputSections, [&](OutputSection *Sec) {
if (Sec->Type == SHT_REL || Sec->Type == SHT_RELA)
Sec->writeTo<ELFT>(Buf + Sec->Offset);
});
for (OutputSection *Sec : OutputSections)
parallelForEach(OutputSections, [&](OutputSection *Sec) {
if (Sec != Out::Opd && Sec != EhFrameHdr && Sec->Type != SHT_REL &&
Sec->Type != SHT_RELA)
Sec->writeTo<ELFT>(Buf + Sec->Offset);
});
// The .eh_frame_hdr depends on .eh_frame section contents, therefore
// it should be written after .eh_frame is written.