1 out of 1 rated this helpful - Rate this topic

Optimizing Inline Assembly

Microsoft Specific

The presence of an __asm block in a function affects optimization in several ways. First, the compiler doesn't try to optimize the __asm block itself. What you write in assembly language is exactly what you get. Second, the presence of an __asm block affects register variable storage. The compiler avoids enregistering variables across an __asm block if the register's contents would be changed by the __asm block. Finally, some other function-wide optimizations will be affected by the inclusion of assembly language in a function.

END Microsoft Specific

See Also

Inline Assembler

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.