[llvm] r360069 - [SelectionDAG][X86] Support inline assembly returning an mmx register into a type with fewer than 64 bits.
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Mon May 6 12:50:15 PDT 2019
Author: ctopper
Date: Mon May 6 12:50:14 2019
New Revision: 360069
URL: http://llvm.org/viewvc/llvm-project?rev=360069&view=rev
Log:
[SelectionDAG][X86] Support inline assembly returning an mmx register into a type with fewer than 64 bits.
It's possible to use the 'y' mmx constraint with a type narrower than 64-bits.
This patch supports this by bitcasting the mmx type to 64-bits and then
truncating to the desired type.
There are probably other missing type combinations we need to support, but this
is the case we have a bug report for.
Fixes PR41748.
Differential Revision: https://reviews.llvm.org/D61582
Added:
llvm/trunk/test/CodeGen/X86/pr41748.ll
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp?rev=360069&r1=360068&r2=360069&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp Mon May 6 12:50:14 2019
@@ -322,6 +322,14 @@ static SDValue getCopyFromParts(Selectio
return DAG.getNode(ISD::FP_EXTEND, DL, ValueVT, Val);
}
+ // Handle MMX to a narrower integer type by bitcasting MMX to integer and
+ // then truncating.
+ if (PartEVT == MVT::x86mmx && ValueVT.isInteger() &&
+ ValueVT.bitsLT(PartEVT)) {
+ Val = DAG.getNode(ISD::BITCAST, DL, MVT::i64, Val);
+ return DAG.getNode(ISD::TRUNCATE, DL, ValueVT, Val);
+ }
+
report_fatal_error("Unknown mismatch in getCopyFromParts!");
}
Added: llvm/trunk/test/CodeGen/X86/pr41748.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/pr41748.ll?rev=360069&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/X86/pr41748.ll (added)
+++ llvm/trunk/test/CodeGen/X86/pr41748.ll Mon May 6 12:50:14 2019
@@ -0,0 +1,15 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=x86_64-apple-macosx10.14.0 -mattr=mmx | FileCheck %s
+
+define i32 @foo(i32 %a) {
+; CHECK-LABEL: foo:
+; CHECK: ## %bb.0: ## %entry
+; CHECK-NEXT: ## InlineAsm Start
+; CHECK-NEXT: movd %edi, %mm0
+; CHECK-NEXT: ## InlineAsm End
+; CHECK-NEXT: movd %mm0, %eax
+; CHECK-NEXT: retq
+entry:
+ %0 = tail call i32 asm sideeffect "movd $1, $0", "=y,r,~{dirflag},~{fpsr},~{flags}"(i32 %a)
+ ret i32 %0
+}
More information about the llvm-commits
mailing list