Tagged Questions
4
votes
1answer
1k views
gcc, simd intrinsics and fast-math concepts
Hi all :)
I'm trying to get a hang on a few concepts regarding floating point, SIMD/math intrinsics and the fast-math flag for gcc. More specifically, I'm using MinGW with gcc v4.5.0 on a x86 cpu.
...
3
votes
2answers
1k views
intrinsic memcmp
According to the gcc docs, memcmp is not an intrinsic function of GCC. If you wanted to speed up glibc's memcmp under gcc, you would need to use the lower level intrinsics defined in the docs. ...
2
votes
1answer
31 views
Use both SSE2 intrinsics and gcc inline assembler
I have tried to mix SSE2 intrinsics and inline assembler in gcc. But if I specify a variable as xmm0/register as input then in some cases I get a compiler error. Example:
#include <emmintrin.h>
...
2
votes
2answers
789 views
SSE4.1 intrinsics compilation error on Mac
I'm having some trouble using SSE4.1 intrinsics on hardware that (I think) supports it.
Can anyone tell me if I've missed something?
Building the following code on a MacBookPro5,4 (Penryn):
>g++ ...
1
vote
1answer
1k views
Setting GCC 4.2.1 options in Xcode
I have a few questions about Xcode and interaction with GCC 4.2.1:
It doesn't seem as if Xcode Target Properties inspector exposes all possible GCC options. Is this correct?
More specifically, I'm ...
0
votes
2answers
88 views
Testing for builtins/intrinsics
I have some code that uses gcc intrinsics. I would like to include code in case the intrinsic is missing. How can I do this?
#ifdef __builtin_ctzll
does not work.
0
votes
1answer
362 views
No xor gcc intrinsics for ARM NEON
I could not find any intrinsics for a simple xor operation.
See: http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html
Are there really no way to use NEON instructions for this?
0
votes
2answers
141 views
what is wrong with my version of _bittestandset
I am new to assembly language. It seems that gcc doesn't have _bittestandset function in intrin.h like MSVC does, so I implemented a new one. This one works fine in linux, but it goes wrong with mingw ...