This is an archive of the discontinued LLVM Phabricator instance.

[WIP][ELF] Parallelize relocation scanning
AbandonedPublic

Authored by andrewng on Sep 7 2022, 9:15 AM.

Details

Reviewers
MaskRay
Summary

Experimental alternative to https://reviews.llvm.org/D133003 which
limits the amount of concurrent relocation scanning because too much
concurrency has been seen to reduce performance on Windows due to lock
contention.

Diff Detail

Event Timeline

andrewng created this revision.Sep 7 2022, 9:15 AM
Herald added a project: Restricted Project. · View Herald Transcript
andrewng requested review of this revision.Sep 7 2022, 9:15 AM
andrewng abandoned this revision.Sep 9 2022, 8:59 AM

Far better approach now in D133003 that removes the lock contention.