[PATCH] D16440: [ThinLTO] Link in only necessary DICompileUnit operands

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 28 11:30:31 PST 2016


tejohnson updated this revision to Diff 46298.
tejohnson added a comment.

Ensure that all needed retained types are mapped in, and as declarations.

The retained composite types needed in the dest module include not only
those reached by mapped subprograms, but also those in the scope-chain
of other needed composite types. Because the full composite type will
be emitted in the original module, only the type declaration is needed
in the dest module. Therefore, a new composite type is constructed for
the dest module, and only fields required for a declaration are
populated, and the FlagFwdDecl flag is set.

Different support is needed to detect the set of retained types
referenced by imported functions for normal metadata linking vs
postpass metadata linking. The former can simply look at which
retained types were added to the value map, whereas the latter needs to
recursively locate the retained types reached from needed subprograms
(which have not yet been mapped). This is similar to how we recursively
identify needed subprograms in the post-pass linking case.

The test cases were augmented to contain composite types referenced
in various ways, and check that the expected ones are imported as
type declarations.

Also tested by building 483.xalancbmk from SPEC with and without
postpass metadata linking. In both cases the size of the binary
was reduced around 28% with this patch.


http://reviews.llvm.org/D16440

Files:
  include/llvm/Linker/IRMover.h
  lib/Linker/IRMover.cpp
  lib/Linker/LinkModules.cpp
  test/Linker/thinlto_funcimport_debug.ll
  test/Transforms/FunctionImport/Inputs/funcimport_debug.ll
  test/Transforms/FunctionImport/funcimport_debug.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16440.46298.patch
Type: text/x-patch
Size: 29976 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160128/65b11aae/attachment.bin>


More information about the llvm-commits mailing list