PR c++/86320 - memory-hog with std::array of pair
authorJason Merrill <jason@redhat.com>
Wed, 27 Jun 2018 02:59:44 +0000 (22:59 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 27 Jun 2018 02:59:44 +0000 (22:59 -0400)
commit307193b82cecb8ab79cf8880d642e1a3acb9c9f6
treee8ecb61a6f283f91fee98716062463538c3c38f0
parent6147a53a9cb946ab08acb0177cff29a40aee937b
PR c++/86320 - memory-hog with std::array of pair

* typeck2.c (process_init_constructor_array): Only compute a
constant initializer once.

In this PR, we have a large std::array of pairs.  Since the C array is
wrapped in a class we don't go to build_vec_init, so we end up with
digest_init wanting to build up the element initializer for each element of
the array.

In the more general case, like 80272, we have a data structure problem: we
don't currently have a good way of expressing the same dynamic
initialization of many elements within a CONSTRUCTOR.  RANGE_EXPR probably
ought to work, but will need more work at genericize or gimplify time.

But in this case, the initialization for each element reduces to constant
0, so we don't even need to add anything to the CONSTRUCTOR.  We just need
to realize that if the initializer for one element is 0, the others will be
as well, and we don't need to iterate over the whole array.

For the trunk, I also use a RANGE_EXPR to handle constant initialization by
a value other than 0.

void foo ()
{
  std::array<std::pair<int, int>, 1024 * 1024> arr {};
}

From-SVN: r262173
gcc/cp/ChangeLog
gcc/cp/typeck2.c