]> granicus.if.org Git - llvm/commit
Merging r310534:
authorHans Wennborg <hans@hanshq.net>
Thu, 10 Aug 2017 17:12:27 +0000 (17:12 +0000)
committerHans Wennborg <hans@hanshq.net>
Thu, 10 Aug 2017 17:12:27 +0000 (17:12 +0000)
commitdc84a08de80aa51e4f333d1a108a56415bc67f7e
tree3f6ea902f4a92dccfd70a81bf259ec58c12a3d0a
parentaab7f85c1c63b4205d4623eec86dc39e8e2d7613
Merging r310534:
------------------------------------------------------------------------
r310534 | matze | 2017-08-09 15:22:05 -0700 (Wed, 09 Aug 2017) | 20 lines

ARM: Fix CMP_SWAP expansion

Clean up after my misguided attempt in r304267 to "fix" CMP_SWAP
returning an uninitialized status value.

- I was always using tMOVi8 to zero the status register which cannot
  encode higher register numbers and llvm would silently miscompile)

- Nobody was ever looking at that status value outside the expansion.
  ARMDAGToDAGISel::SelectCMP_SWAP() the only place creating CMP_SWAP
  instructions was not mapping anything to it. (The cmpxchg status value
  from llvm IR is lowered to a manual comparison after the CMP_SWAP)

So this:
- Renames the register from "status" to "temp" it make it obvious that
  it isn't used outside the expansion.
- Remove the zeroing status/temp register.
- Keep the live-in list improvements from r304267

Fixes http://llvm.org/PR34056
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_50@310628 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/ARM/ARMExpandPseudoInsts.cpp
lib/Target/ARM/ARMInstrInfo.td
test/CodeGen/ARM/cmpxchg-O0.ll