Is there an alternative to the following manual fix-up:

// excerpt adapted from SIMDTest in   
// http://www.mccauslandcenter.sc.edu/mricro/obsolete/graphics/simdtest.zip
//
var
  lAdblRAp, lArraySz, lAdblRA, Doublep: LongInt;
begin
  // ...
  GetMem(lAdblRAp,(lArraySz * SizeOf(Double)) + 32);
  lAdblRA := Doublep((Integer(lAdblRAp) and $FFFFFFF0) + 16);
  // ...
end;

Notice that this piece of code is embbeded either in a procedure or in a function.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

The standard way is to use a memory manager that will align blocks on 16 byte boundaries. FastMM will do this but you need the full version to be able to configure this option.

Note also that the code in your question is not 64 bit ready since it casts a pointer to a 4 byte integer.

link|improve this answer
Retag my post: I am using Windows 7 / 32 bit – menjaraz Feb 23 at 8:15
always worth writing code that will work on any platform, where possible. NativeInt is what should have been used in the code in the Q. – David Heffernan Feb 23 at 8:21
Thank you David. That's interesting, I am waiting for the successor of Delphi XE2 to switch to 64-bit with targeting Linux as an option. – menjaraz Feb 23 at 8:30
feedback

If you are using new versions of Delphi (I have tested with XE and XE2), the best and easiest way is to call SetMinimumBlockAlignment(mba16Byte) at the first place in your code.

Then call the regular GetMem, New or any memory allocation function and be sure the address is aligned to 16 bytes boundaries

Edit:

Also if you prefer to use manual fix-up, the best efficient way that wastes less memory is as followings:

var
  lArraySz: LongInt;
  lAdblRAp, lAdblRA: Pointer;     

begin
  // ...
  GetMem(lAdblRAp,(lArraySz * SizeOf(Double)) + 16);
  lAdblRA := Pointer((Integer(lAdblRAp) + 15) and $FFFFFFF0));
  // ...
end;

It will use 16 bytes less for every allocations.

link|improve this answer
+1. Quote from Embarcadero RAD Studio help note on SetMinimumBlockAlignment: Memory allocated through the Memory Manager is guaranteed to be aligned to at least 8-byte boundaries. 16-byte alignment is useful when memory blocks will be manipulated using SSE instructions, but may increase the memory usage overhead. – menjaraz Feb 23 at 10:56
@menjaraz: If you do not need to 16-byte alignment anymore in your code you can return it back to 8-byte alignment with SetMinimumBlockAlignment(mba8Byte). It will affect only newly allocated memories. – Vahid Nasehi Feb 23 at 11:02
@menjaraz: I should also mention that you may waste some memory in your manual fix-up also. But If you set block alignment back to 8-byte alignment, the memory manager will reuse possible memory wastes in prior 16-byte aligned memory allocations. – Vahid Nasehi Feb 23 at 11:08
You are right. Seeking to attain 16-byte alignment may incur some memory usage penalty either way. Nevertheless, doing it the manual fashion doesn't call for a revert action because the Memory Manager's minimum block alignment remains untouched. – menjaraz Feb 23 at 11:23
Yes, but remember that setting alignment back to 8-byte, will reuse prior wasted memories which will not occur in manual fix-up. – Vahid Nasehi Feb 23 at 11:34
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.