blob: 9f3ed84236451a989ec62b07b560281899156af3 [file] [log] [blame]
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001// RUN: %clang_cc1 -O1 -triple arm64-apple-ios7 -target-feature +neon -ffreestanding -S -o - -emit-llvm %s | FileCheck %s
Stephen Hines651f13c2014-04-23 16:59:28 -07002// Test ARM64 SIMD comparison test intrinsics
3
4#include <arm_neon.h>
5
6uint64x2_t test_vtstq_s64(int64x2_t a1, int64x2_t a2) {
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07007 // CHECK-LABEL: test_vtstq_s64
Stephen Hines651f13c2014-04-23 16:59:28 -07008 return vtstq_s64(a1, a2);
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07009 // CHECK: [[COMMONBITS:%[A-Za-z0-9.]+]] = and <2 x i64> {{%a1, %a2|%a2, %a1}}
Stephen Hines651f13c2014-04-23 16:59:28 -070010 // CHECK: [[MASK:%[A-Za-z0-9.]+]] = icmp ne <2 x i64> [[COMMONBITS]], zeroinitializer
11 // CHECK: [[RES:%[A-Za-z0-9.]+]] = sext <2 x i1> [[MASK]] to <2 x i64>
12 // CHECK: ret <2 x i64> [[RES]]
13}
14
15uint64x2_t test_vtstq_u64(uint64x2_t a1, uint64x2_t a2) {
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070016 // CHECK-LABEL: test_vtstq_u64
Stephen Hines651f13c2014-04-23 16:59:28 -070017 return vtstq_u64(a1, a2);
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070018 // CHECK: [[COMMONBITS:%[A-Za-z0-9.]+]] = and <2 x i64> {{%a1, %a2|%a2, %a1}}
Stephen Hines651f13c2014-04-23 16:59:28 -070019 // CHECK: [[MASK:%[A-Za-z0-9.]+]] = icmp ne <2 x i64> [[COMMONBITS]], zeroinitializer
20 // CHECK: [[RES:%[A-Za-z0-9.]+]] = sext <2 x i1> [[MASK]] to <2 x i64>
21 // CHECK: ret <2 x i64> [[RES]]
22}