Tagged Questions

11
votes
5answers
2k views

How to use VC++ intrinsic functions w/o run-time library

I'm involved in one of those challenges where you try to produce the smallest possible binary, so I'm building my program without the C or C++ run-time libraries (RTL). I don't link to the DLL ...
7
votes
1answer
348 views

How compilers treat SSE (or any) intrinsic functions?

A while ago I read somewhere that SSE intrinsic functions compile into efficient machine code because compilers treat them differently from ordinary functions. I am wandering how actually compilers do ...
6
votes
1answer
3k views

Equivalent of InterlockedIncrement in Linux/gcc

It would be a very simple question (could be duplicated), but I was unable to find it. Win32 API provides a very handy set of atomic operations (as intrinsics) such as InterlockedIncrement which ...
5
votes
2answers
117 views

SSE intrinsics - comparison if/else optimization

I have been trying to optimize some code which handles raw pixel data. Currently the C++ implementation of the code is too slow, so I've been trying to make some grounds using SSE intrinsics (SSE/2/3 ...
5
votes
2answers
164 views

How do I perform 8 x 8 matrix operation using SSE?

My initial attempt looked like this (supposed we want to multiply) __m128 mat[n]; /* rows */ __m128 vec[n] = {1,1,1,1}; float outvector[n]; for (int row=0;row<n;row++) { for(int k ...
5
votes
6answers
935 views

Make compiler copy characters using movsd

I would like to copy a relatively short sequence of memory (less than 1 KB, typically 2-200 bytes) in a time critical function. The best code for this on CPU side seems to be rep movsd. However I ...
4
votes
2answers
123 views

SSE2 code optimization

I am using SSE2 intrinsics to optimize the bottlenecks of my application and have the following question: ddata = _mm_xor_si128(_mm_xor_si128( _mm_sll_epi32(xdata, 0x7u), _mm_srl_epi32(tdata, ...
4
votes
6answers
344 views

How to optimize a cycle?

I have the following bottleneck function. typedef unsigned char byte; void CompareArrays(const byte * p1Start, const byte * p1End, const byte * p2, byte * p3) { const byte b1 = 128-30; ...
3
votes
1answer
186 views

C#: Using pragma intrinsic(sqrt, pow) in C#?

C++ Summary Using the #pragma intrinsic command in the preprocessor section of your code will greatly increase the speed of most math function calls. #pragma intrinsic(sqrt, pow) The above code ...
3
votes
2answers
378 views

Why does my data not seem to be aligned?

I'm trying to figure out how to best pre-calculate some sin and cosine values, store them in aligned blocks, and then use them later for SSE calculations: At the beginning of my program, I create an ...
2
votes
3answers
127 views

Where can I find script that convert VC++ inline assembler to intrinsics?

I am porting inline assembler that use SSE commands to intrinsics. It takes much work to find appropriate intrinsic for assembler instruction. Somewhere on the Internet I saw a Python script that ...
2
votes
3answers
272 views

if/else statement in SSE intrinsics

I am trying to optimize a small piece of code with SSE intrinsics (I am a complete beginner on the topic), but I am a little stuck on the use of conditionals. My original code is: unsigned long c; ...
2
votes
9answers
326 views

How can I optimize this C++ code?

I'm trying improve performance for my function. Profiler points to the code at inner loop. Can I improve perfomance of that code, maybe using SSE intrinsics? void ...
2
votes
5answers
623 views

c++ SSE SIMD framework

Does anyone know an open-source C++ x86 SIMD intrinsics library? Intel supplies exactly what I need in their integrated performance primitives library, but I can't use that because of the copyrights ...
2
votes
2answers
237 views

How cast C++ class to intrinsic type

Basic C++ class question: I have simple code currently that looks like something like this: typedef int sType; int array[100]; int test(sType s) { return array[ (int)s ]; } What I want, is to ...
2
votes
3answers
419 views

Help with Assembly/SSE Multiplication

I've been trying to figure out how to gain some improvement in my code at a very crucial couple lines: float x = a*b; float y = c*d; float z = e*f; float w = g*h; all a, b, c... are floats. I ...
2
votes
1answer
738 views

Intel AVX intrinsics: any compatibility library out?

Are there any Intel AVX intrinsics library out? I'm looking for something similar as 'sse2mmx.h' header which fall-backs to MMX intrinsics if SSE2 integer intrinsics are not available on compile time. ...
2
votes
3answers
1k views

VC++ SSE intrinsic optimisation weirdness

I am performing a scattered read of 8-bit data from a file (De-Interleaving a 64 channel wave file). I am then combining them to be a single stream of bytes. The problem I'm having is with my ...
2
votes
4answers
483 views

How do I replace __asm jno no_oflow with an intristic in a VS2008 64bit build?

I have this code: __asm jno no_oflow overflow = 1; __asm no_oflow: It produces this nice warning: error C4235: nonstandard extension used : '__asm' keyword not supported on this architecture ...
2
votes
7answers
247 views

How to quickly find maximal element of a sum of vectors?

I have a following code in a most inner loop of my program struct V { float val [200]; // 0 <= val[i] <= 1 }; V a[600]; V b[250]; V c[250]; V d[350]; V e[350]; // ... init values in ...
1
vote
1answer
71 views

Calling MSVC builtin/intrinsics for C math functions

For GCC and Clang, I can easily do this: // absolute value inline constexpr int abs(const int number) { return __builtin_abs(number); } inline constexpr long abs(const long number) ...
1
vote
2answers
84 views

Compare the sign bit in SSE Intrinsics

How would one create a mask using SSE intrinsics which indicates whether the signs of two packed floats (__m128's) are the same for example if comparing a and b where a is [1.0 -1.0 0.0 2.0] and b is ...
1
vote
1answer
109 views

SSE intrinsics for comparison (_mm_cmpeq_ps) and assignment operation

I have started optimising my code using SSE. Essentially it is a ray tracer that processes 4 rays at a time by storing the coordinates in __m128 data types x, y, z (the coordinates for the four rays ...
1
vote
4answers
192 views

WinAPI _Interlocked* intrinsic functions for char, short

I need to use _Interlocked*** function on char or short, but it takes long pointer as input. It seems that there is function _InterlockedExchange8, I don't see any documentation on that. Looks like ...
1
vote
3answers
260 views

does passing __m128i objects by reference to inline function cause these objects to be moved to stack?

I'm writing transpose function for 8x16bit vectors with SSE2 intrinsics. Since there are 8 arguments for that function (a matrix of 8x8x16bit size), I can't do anything but pass them by reference. ...
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
25 views

InterlockedExchange Visual Studio 2010 Intrinsic

I have intrinsics enabled in the optimization settings for the compiler, however, the resulting code for InterlockedExchange is generating calls into kernel32.dll rather than producing inline ...
0
votes
1answer
46 views

BitScanForward64 issue in Visual Studio 11 Developer Preview

I am totally new to writing anything in C. I am writing a helper DLL (to be called from C#) that performs binary manipulation. I get an 'identifier "BitScanForward64" is undefined' error. The 32-bit ...