]> granicus.if.org Git - llvm/commit
AArch64CollectLOH: Rewrite as block-local analysis.
authorMatthias Braun <matze@braunis.de>
Fri, 6 Jan 2017 19:22:01 +0000 (19:22 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 6 Jan 2017 19:22:01 +0000 (19:22 +0000)
commit4bdd2c57509ccd74bfd44a5ee19840f06f534f80
tree4d2a7711d591d2812bef80a6b8d1c71ecddba890
parente760878a957933a62bc37bf0d2476b651953526e
AArch64CollectLOH: Rewrite as block-local analysis.

Re-apply r288561: This time with a fix where the ADDs that are part of a
3 instruction LOH would not invalidate the "LastAdrp" state. This fixes
http://llvm.org/PR31361

Previously this pass was using up to 5% compile time in some cases which
is a bit much for what it is doing. The pass featured a full blown
data-flow analysis which in the default configuration was restricted to a
single block.

This rewrites the pass under the assumption that we only ever work on a
single block. This is done in a single pass maintaining a state machine
per general purpose register to catch LOH patterns.

Differential Revision: https://reviews.llvm.org/D27329

This reverts commit 9e6cedb0a4f14364d6511597a9160305e7d34493.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291266 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/AArch64/AArch64CollectLOH.cpp
test/CodeGen/AArch64/arm64-collect-loh-garbage-crash.ll
test/CodeGen/AArch64/arm64-collect-loh-str.ll
test/CodeGen/AArch64/arm64-collect-loh.ll
test/CodeGen/AArch64/loh.mir [new file with mode: 0644]