Tagged Questions
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. ...
1
vote
4answers
601 views
Using C intrinsics and memory alignment difficulties with classes
Ok, so I am just starting to use C intrinsics in my code and I have created a class, which simplified looks like this:
class _Vector3D
{
public:
_Vector3D()
{
aVals[0] = _mm_setzero_ps();
aVals[1] ...
0
votes
1answer
144 views
Clarification of atomic memory access for different OSs
I'm currently porting a Windows C++ library to MacOS as a hobby project as a learning experience. I stumbled across some code using the Win Interlocked* functions and thus I've been trying to read up ...