[PATCH] D61582: [SelectionDAG][X86] Support inline assembly returning an mmx register into a type with fewer than 64 bits.

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon May 6 12:49:01 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL360069: [SelectionDAG][X86] Support inline assembly returning an mmx register into a… (authored by ctopper, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D61582?vs=198219&id=198325#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61582/new/

https://reviews.llvm.org/D61582

Files:
  llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
  llvm/trunk/test/CodeGen/X86/pr41748.ll


Index: llvm/trunk/test/CodeGen/X86/pr41748.ll
===================================================================
--- llvm/trunk/test/CodeGen/X86/pr41748.ll
+++ llvm/trunk/test/CodeGen/X86/pr41748.ll
@@ -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
+}
Index: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
===================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -322,6 +322,14 @@
     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!");
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61582.198325.patch
Type: text/x-patch
Size: 1478 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190506/6ebaa213/attachment.bin>


More information about the llvm-commits mailing list