View source code
Display the source code in core/simd.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Module core.simd

Builtin SIMD intrinsics

Functions

NameDescription
loadUnaligned(p) Load unaligned vector from address. This is a compiler intrinsic.
prefetch(address) Emit prefetch instruction.
storeUnaligned(p, value) Store vector to unaligned address. This is a compiler intrinsic.

Enums

NameDescription
XMM XMM opcodes that conform to the following:

Aliases

NameTypeDescription
byte16 __vector function(byte[16])
double2 __vector function(double[2])
float4 __vector function(float[4])
int4 __vector function(int[4])
long2 __vector function(long[2])
short8 __vector function(short[8])
ubyte16 __vector function(ubyte[16])
uint4 __vector function(uint[4])
ulong2 __vector function(ulong[2])
ushort8 __vector function(ushort[8])
Vector __vector function(T) Create a vector type.
void16 __vector function(void[16])

Authors

Walter Bright,

License

Boost License 1.0.