Intrinsic function

来源:互联网 发布:php websocket server 编辑:程序博客网 时间:2024/06/11 06:33

Intrinsic function

From Wikipedia, the free encyclopedia
Jump to: navigation,search
 This article needs additional citations for verification. Please help improve this article by adding citations toreliable sources. Unsourced material may be challenged and removed. (December 2009)

In compiler theory, an intrinsic function is a function available for use in a givenlanguage whose implementation is handled specially by the compiler. Typically, it substitutes a sequence of automatically generated instructions for the original function call, similar to an inline function. Unlike an inline function though, the compiler has an intimate knowledge of the intrinsic function and can therefore better integrate it and optimize it for the situation. This is also called builtin function in many languages.

Compilers that implement intrinsic functions generally enable them only when the user has requestedoptimization, falling back to a default implementation provided by the language runtime environment otherwise.

Intrinsic functions are often used to explicitly implement vectorization and parallelization in languages which do not address such constructs. Altivec and OpenMP are examples of APIs which use intrinsic functions to declare, respectively, vectorizable andmultiprocessor-aware operations during compilation. The compiler parses the intrinsic functions and converts them into vector math or multiprocessingobject code appropriate for the target platform.

Microsoft and Intel's C/C++ compilers as well as GCC implement intrinsics that map directly to the x86 SIMD instructions (MMX,SSE,SSE2, SSE3,SSSE3, SSE4). In the latest version of the Microsft Visual Studio (VS2010), the Visual C++ compiler does not support inline assembler for X86-64[1] (neither VS2008[2] nor VS2005[3]). To compensate for the lack of inline assembly, new intrinsics have been added that map to standard assembly instructions that are not normally accessible through C/C++ (e.g.: bit scan).[4]

References
  1. ^ MSDN (VS2010). "Intrinsics and Inline Assembly". Microsoft. http://msdn.microsoft.com/en-us/library/wbk4z78b.aspx?ppud=4. Retrieved 2010-04-16. 
  2. ^ MSDN (VS2008). "Intrinsics and Inline Assembly". Microsoft. http://msdn.microsoft.com/en-us/library/wbk4z78b(v=VS.90).aspx. Retrieved 2011-09-28. 
  3. ^ MSDN (VS2005). "Intrinsics and Inline Assembly". Microsoft. http://msdn.microsoft.com/en-us/library/wbk4z78b(v=VS.80).aspx. Retrieved 2011-09-28. 
  4. ^ MSDN (VS2010). "Intrinsics Available on All Architectures". Microsoft. http://msdn.microsoft.com/en-us/library/5704bbxw.aspx. Retrieved 2011-09-28. 


参考:https://en.wikipedia.org/wiki/Intrinsic_function