[PATCH] D15568: [X86] Add signed aliases for popcnt intrinsics
Michael Kuperstein via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 20 04:38:54 PST 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL256121: [X86] Add signed aliases for popcnt intrinsics (authored by mkuper).
Changed prior to commit:
http://reviews.llvm.org/D15568?vs=42999&id=43326#toc
Repository:
rL LLVM
http://reviews.llvm.org/D15568
Files:
cfe/trunk/lib/Headers/popcntintrin.h
cfe/trunk/test/CodeGen/popcnt-builtins.c
Index: cfe/trunk/test/CodeGen/popcnt-builtins.c
===================================================================
--- cfe/trunk/test/CodeGen/popcnt-builtins.c
+++ cfe/trunk/test/CodeGen/popcnt-builtins.c
@@ -6,11 +6,21 @@
#include <x86intrin.h>
unsigned int test_mm_popcnt_u32(unsigned int __X) {
- // CHECK: @llvm.ctpop.i32
+ //CHECK: call i32 @llvm.ctpop.i32
return _mm_popcnt_u32(__X);
}
+unsigned int test_popcnt_32(int __X) {
+ //CHECK: call i32 @llvm.ctpop.i32
+ return _popcnt32(__X);
+}
+
unsigned long long test_mm_popcnt_u64(unsigned long long __X) {
- // CHECK: @llvm.ctpop.i64
+ //CHECK: call i64 @llvm.ctpop.i64
return _mm_popcnt_u64(__X);
}
+
+unsigned long long test_popcnt_64(long long __X) {
+ //CHECK: call i64 @llvm.ctpop.i64
+ return _popcnt64(__X);
+}
Index: cfe/trunk/lib/Headers/popcntintrin.h
===================================================================
--- cfe/trunk/lib/Headers/popcntintrin.h
+++ cfe/trunk/lib/Headers/popcntintrin.h
@@ -33,12 +33,24 @@
return __builtin_popcount(__A);
}
+static __inline__ int __DEFAULT_FN_ATTRS
+_popcnt32(int __A)
+{
+ return __builtin_popcount(__A);
+}
+
#ifdef __x86_64__
static __inline__ long long __DEFAULT_FN_ATTRS
_mm_popcnt_u64(unsigned long long __A)
{
return __builtin_popcountll(__A);
}
+
+static __inline__ long long __DEFAULT_FN_ATTRS
+_popcnt64(long long __A)
+{
+ return __builtin_popcountll(__A);
+}
#endif /* __x86_64__ */
#undef __DEFAULT_FN_ATTRS
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15568.43326.patch
Type: text/x-patch
Size: 1480 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151220/2a9ad3c5/attachment.bin>
More information about the llvm-commits
mailing list