* Rename pass to globalopt, since we do more than just constify
authorChris Lattner <sabre@nondot.org>
Thu, 7 Oct 2004 04:16:33 +0000 (04:16 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 7 Oct 2004 04:16:33 +0000 (04:16 +0000)
commit7a90b68e5c85fe11a4ccc386be9c5fcddd4a8b61
treee5eee8f5a63c8475e8c833b8bbd000e6ad9456a0
parent93a00e4ceb810639ec8dfb7985fad76c1ffba8c1
* Rename pass to globalopt, since we do more than just constify
* Instead of handling dead functions specially, just nuke them.
* Be more aggressive about cleaning up after constification, in
  particular, handle getelementptr instructions and constantexprs.
* Be a little bit more structured about how we process globals.

*** Delete globals that are only stored to, and never read.  These are
    clearly not useful, so they should go.  This implements deadglobal.llx

This last one triggers quite a few times.  In particular, 2208 in the
external tests, 1865 of which are in 252.eon.  This shrinks eon from
1995094 to 1732341 bytes of bytecode.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16802 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/IPO/GlobalOpt.cpp