Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 978 Bytes

File metadata and controls

19 lines (17 loc) · 978 Bytes
title Intrinsics and Inline Assembly | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.technology
cpp-tools
ms.topic conceptual
dev_langs
C++
ms.assetid 8affd4bb-279d-46f3-851f-8be0a9c5ed3f
author corob-msft
ms.author corob
ms.workload
cplusplus

Intrinsics and Inline Assembly

One of the constraints for the [!INCLUDEvcprx64] compiler is to have no inline assembler support. This means that functions that cannot be written in C or C++ will either have to be written as subroutines or as intrinsic functions supported by the compiler. Certain functions are performance sensitive while others are not. Performance-sensitive functions should be implemented as intrinsic functions.

The intrinsics supported by the compiler are described in Compiler Intrinsics.

See Also

x64 Software Conventions