]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Pull in r300404 from upstream llvm trunk (by me):
authordim <dim@FreeBSD.org>
Sat, 15 Apr 2017 22:34:22 +0000 (22:34 +0000)
committerdim <dim@FreeBSD.org>
Sat, 15 Apr 2017 22:34:22 +0000 (22:34 +0000)
commit1f1b56585c1d49760a193449831f17fb91977113
tree76851aa6d529c1847f246af85539c95fd349c838
parentf1f2171b637ce67bad1c978a2f87ded70a82c398
Pull in r300404 from upstream llvm trunk (by me):

  Use correct registers for "A" inline asm constraint

  Summary:
  In PR32594, inline assembly using the 'A' constraint on x86_64 causes
  llvm to crash with a "Cannot select" stack trace.  This is because
  `X86TargetLowering::getRegForInlineAsmConstraint` hardcodes that 'A'
  means the EAX and EDX registers.

  However, on x86_64 it means the RAX and RDX registers, and on 16-bit
  x86 (ia16?) it means the old AX and DX registers.

  Add new register classes in `X86RegisterInfo.td` to support these
  cases, and amend the logic in `getRegForInlineAsmConstraint` to cope
  with different subtargets.  Also add a test case, derived from
  PR32594.

  Reviewers: craig.topper, qcolombet, RKSimon, ab

  Reviewed By: ab

  Subscribers: ab, emaste, royger, llvm-commits

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

This should fix crashes when using the 'A' constraint on amd64, for
example as it is being used in Xen.

Reported by: royger
MFC after: 3 days
contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
contrib/llvm/lib/Target/X86/X86RegisterInfo.td