Skip to content

Commit

Permalink
LowerTypeTests: Improve performance by optimising type metadata queries.
Browse files Browse the repository at this point in the history
Requesting metadata for a global is a relatively expensive operation as it
involves a map lookup, but it's one that we need to do relatively frequently in
this pass to collect the list of type metadata nodes associated with a global.
This change improves the performance of type metadata queries by prebuilding
data structures that keep the global together with its list of type metadata,
and changing the pass to use that data structure wherever we were previously
passing global references around.

This change also eliminates some O(N^2) behavior by collecting the list of
globals associated with each type identifier during the first pass over the
list of globals rather than visiting each global to compute that list every
time we add a new type identifier.

Reduces pass runtime on a module containing Chrome's vtables from over 60s
to 0.9s.

Differential Revision: https://reviews.llvm.org/D27484

llvm-svn: 288859
  • Loading branch information
pcc committed Dec 6, 2016
1 parent 0559b9e commit 7357b2a
Showing 1 changed file with 129 additions and 88 deletions.

0 comments on commit 7357b2a

Please sign in to comment.