Rewrite the gold plugin to fix pr19901.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 21 Aug 2014 20:28:55 +0000 (20:28 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 21 Aug 2014 20:28:55 +0000 (20:28 +0000)
commit3fd7e37b34cbcb641cd348d29853199b53576cd1
tree80056025d3a942d8a8a99597e4f8930568ecf44b
parent96c909cc74e41dc26edcad3775b07fe317210821
Rewrite the gold plugin to fix pr19901.

There is a fundamental difference between how the gold API and lib/LTO view
the LTO process.

The gold API talks about a particular symbol in a particular file. The lib/LTO
API talks about a symbol in the merged module.

The merged module is then defined in terms of the IR semantics. In particular,
a linkonce_odr GV is only copied if it is used, since it is valid to drop
unused linkonce_odr GVs.

In the testcase in pr19901 both properties collide. What happens is that gold
asks us to keep a particular linkonce_odr symbol, but the IR linker doesn't
copy it to the merged module and we never have a chance to ask lib/LTO to keep
it.

This patch fixes it by having a more direct implementation of the gold API. If
it asks us to keep a symbol, we change the linkage so it is not linkonce. If it
says we can drop a symbol, we do so. All of this before we even send the module
to lib/Linker.

Since now we don't have to produce LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN,
during symbol resolution we can use a temporary LLVMContext and do lazy
module loading. This allows us to keep the minimum possible amount of
allocated memory around. This should also allow as much parallelism as
we want, since there is no shared context.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216215 91177308-0d34-0410-b5e6-96231b3b80d8
test/tools/gold/Inputs/alias-1.ll [new file with mode: 0644]
test/tools/gold/Inputs/pr19901-1.ll [new file with mode: 0644]
test/tools/gold/alias.ll [new file with mode: 0644]
test/tools/gold/emit-llvm.ll
test/tools/gold/mtriple.ll
test/tools/gold/pr19901.ll [new file with mode: 0644]
tools/gold/CMakeLists.txt
tools/gold/Makefile
tools/gold/gold-plugin.cpp