Skip to content

anv: Delay allocation of relocation lists

The old relocation list code always allocated 256 relocations and a hash set up-front without knowing whether or not we really need them. In particular, in the softpin case, this is two fairly large allocations that we don't need to be making. Instead, we should do it on-demand.

Merge request reports