VC++ asm intrinsics [OpenRCE import]
Microsoft’s Visual C++ supports less and less of inline assembly in later versions, or not at all on x64 platform. However, it provides a hefty number of intrinsics that are basically equivalents of single instructions.
http://msdn.microsoft.com/en-us/library/x8zs5twb.aspx
Handy reference if you like writing low-level but somewhat portable code.
There are also architecture-specific intrinsics:
x86
x64
Leave a Reply