]> granicus.if.org Git - llvm/commit
Merging r308891:
authorHans Wennborg <hans@hanshq.net>
Wed, 26 Jul 2017 16:19:02 +0000 (16:19 +0000)
committerHans Wennborg <hans@hanshq.net>
Wed, 26 Jul 2017 16:19:02 +0000 (16:19 +0000)
commit2ac73a1c78f78ff44b31b786a8021a2237f8a0f5
tree1379c11cb46f66822e428c21984a37c644b0773a
parente872521211972995837f167d3f4d311795ae3a8f
Merging r308891:
------------------------------------------------------------------------
r308891 | d0k | 2017-07-24 09:18:09 -0700 (Mon, 24 Jul 2017) | 16 lines

[CodeGenPrepare] Cut off FindAllMemoryUses if there are too many uses.

This avoids excessive compile time. The case I'm looking at is
Function.cpp from an old version of LLVM that still had the giant memcmp
string matcher in it. Before r308322 this compiled in about 2 minutes,
after it, clang takes infinite* time to compile it. With this patch
we're at 5 min, which is still bad but this is a pathological case.

The cut off at 20 uses was chosen by looking at other cut-offs in LLVM
for user scanning. It's probably too high, but does the job and is very
unlikely to regress anything.

Fixes PR33900.

* I'm impatient and aborted after 15 minutes, on the bug report it was
  killed after 2h.
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_50@309131 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/CodeGenPrepare.cpp