]> granicus.if.org Git - llvm/commit
Merging r243745:
authorDaniel Sanders <daniel.sanders@imgtec.com>
Sat, 1 Aug 2015 14:01:00 +0000 (14:01 +0000)
committerDaniel Sanders <daniel.sanders@imgtec.com>
Sat, 1 Aug 2015 14:01:00 +0000 (14:01 +0000)
commitce13b919e692ee51c17aa0608f20454a83b826a8
treea62947a64759bb6507fca75164840f8962de6297
parent179f1e76c8ff0040365aaea942f4d76c532e7548
Merging r243745:
------------------------------------------------------------------------
r243745 | dsanders | 2015-07-31 13:58:55 +0100 (Fri, 31 Jul 2015) | 17 lines

[regalloc] Make RegMask clobbers prevent merging vreg's into PhysRegs when hoisting def's upwards.

Summary:
This prevents vreg260 and D7 from being merged in:
  %vreg260<def> = LDC1 ...
  JAL <ga:@sin>, <regmask ... list not containing D7 ...>
  %D7<def> = COPY %vreg260; ...
Doing so is not valid because the JAL clobbers the D7.

This fixes the almabench regression in the LLVM 3.7.0 release branch.

Reviewers: MatzeB

Subscribers: MatzeB, qcolombet, hans, llvm-commits

Differential Revision: http://reviews.llvm.org/D11649

------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_37@243834 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/RegisterCoalescer.cpp