]> granicus.if.org Git - clang/commitdiff
Relax type checking for a few Neon intrinsics. <rdar://problem/10538555>
authorBob Wilson <bob.wilson@apple.com>
Tue, 20 Dec 2011 06:16:48 +0000 (06:16 +0000)
committerBob Wilson <bob.wilson@apple.com>
Tue, 20 Dec 2011 06:16:48 +0000 (06:16 +0000)
Not long ago, I tightened up the type checking for pointer arguments of
Neon intrinsics to match the specifications provided by ARM.  One consequence
was that it became impossible to access the unaligned versions of a few
Neon load/store operations.  Since there are just a few of these intrinsics
where it makes a difference, I think it's better to relax the type checking
than to either introduce new non-standard unaligned intrinsics or to disallow
intrinsics for the unaligned operations.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146963 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/NeonEmitter.cpp

index 589fbde771e464f8e511207ff1d2a0c608217c82..5d6dee6b442f12cfacb5392f7a731b11fae4d9b7 100644 (file)
@@ -1356,6 +1356,17 @@ void NeonEmitter::runHeader(raw_ostream &OS) {
     if (PtrArgNum >= 0 && (Proto[0] >= '2' && Proto[0] <= '4'))
       PtrArgNum += 1;
 
+    // Omit type checking for the pointer arguments of vld1_lane, vld1_dup,
+    // and vst1_lane intrinsics.  Using a pointer to the vector element
+    // type with one of those operations causes codegen to select an aligned
+    // load/store instruction.  If you want an unaligned operation,
+    // the pointer argument needs to have less alignment than element type,
+    // so just accept any pointer type.
+    if (name == "vld1_lane" || name == "vld1_dup" || name == "vst1_lane") {
+      PtrArgNum = -1;
+      HasConstPtr = false;
+    }
+
     if (mask) {
       OS << "case ARM::BI__builtin_neon_"
          << MangleName(name, TypeVec[si], ClassB)