[PATCH] CodeGen: Let arrays be inputs to inline asm

David Majnemer david.majnemer at gmail.com
Mon Jul 14 09:36:33 PDT 2014


Closed by commit rL212954 (authored by @majnemer).

REPOSITORY
  rL LLVM

http://reviews.llvm.org/D4382

Files:
  cfe/trunk/lib/Sema/SemaStmtAsm.cpp
  cfe/trunk/test/CodeGen/asm.c
  cfe/trunk/test/CodeGen/x86-64-inline-asm.c

Index: cfe/trunk/test/CodeGen/asm.c
===================================================================
--- cfe/trunk/test/CodeGen/asm.c
+++ cfe/trunk/test/CodeGen/asm.c
@@ -239,3 +239,12 @@
 // CHECK: call void asm sideeffect "/* $0 */", "i|r,~{dirflag},~{fpsr},~{flags}"(i32 1)
 }
 
+static unsigned t29_var[1];
+
+void t29(void) {
+  asm volatile("movl %%eax, %0"
+               :
+               : "m"(t29_var));
+  // CHECK: @t29
+  // CHECK: call void asm sideeffect "movl %eax, $0", "*m,~{dirflag},~{fpsr},~{flags}"([1 x i32]* @t29_var)
+}
Index: cfe/trunk/test/CodeGen/x86-64-inline-asm.c
===================================================================
--- cfe/trunk/test/CodeGen/x86-64-inline-asm.c
+++ cfe/trunk/test/CodeGen/x86-64-inline-asm.c
@@ -10,3 +10,8 @@
 // expected-error at -5 {{scale factor without index register is ignored}}
 #endif
 }
+
+static unsigned var[1] = {};
+void g(void) { asm volatile("movd %%xmm0, %0"
+                            :
+                            : "m"(var)); }
Index: cfe/trunk/lib/Sema/SemaStmtAsm.cpp
===================================================================
--- cfe/trunk/lib/Sema/SemaStmtAsm.cpp
+++ cfe/trunk/lib/Sema/SemaStmtAsm.cpp
@@ -152,6 +152,12 @@
                               diag::err_asm_invalid_lvalue_in_input)
                          << Info.getConstraintStr()
                          << InputExpr->getSourceRange());
+    } else {
+      ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
+      if (Result.isInvalid())
+        return StmtError();
+
+      Exprs[i] = Result.get();
     }
 
     if (Info.allowsRegister()) {
@@ -163,11 +169,6 @@
       }
     }
 
-    ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
-    if (Result.isInvalid())
-      return StmtError();
-
-    Exprs[i] = Result.get();
     InputConstraintInfos.push_back(Info);
 
     const Type *Ty = Exprs[i]->getType().getTypePtr();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D4382.11389.patch
Type: text/x-patch
Size: 1934 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20140714/e606a3d9/attachment.bin>


More information about the cfe-commits mailing list