Add a recursive-iterative hybrid stage to attempt to reduce stack space, this
authorChris Lattner <sabre@nondot.org>
Thu, 6 Oct 2005 18:45:51 +0000 (18:45 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 6 Oct 2005 18:45:51 +0000 (18:45 +0000)
commitbd937b98f48cac17bd3d5102b2182943b97f8c28
treefea35f296ab3d803e607d6e83f7b4fe0e0ba99c5
parentcf5c79b34fcffdf7f0de72bc693ddcd3e2ec47a6
Add a recursive-iterative hybrid stage to attempt to reduce stack space, this
helps but not enough.

Start pulling cases out of PPC32DAGToDAGISel::Select.  With GCC 4, this function
required 8512 bytes of stack space for each invocation (GCC 3 required less
than 700 bytes).  Pulling this first function out gets us down to 8224.  More
to come :(

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23647 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/PowerPC/PPCISelDAGToDAG.cpp