Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.09 KB

stack-usage.md

File metadata and controls

33 lines (26 loc) · 1.09 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs ms.assetid caps.latest.revision author ms.author manager
Stack Usage | Microsoft Docs
11/04/2016
cpp-tools
article
C++
383f0072-0438-489f-8829-cca89582408c
9
corob-msft
corob
ghogen

Stack Usage

All memory beyond the current address of RSP is considered volatile: The OS, or a debugger, may overwrite this memory during a user debug session, or an interrupt handler. Thus, RSP must always be set before attempting to read or write values to a stack frame.

This section discusses the allocation of stack space for local variables and the alloca intrinsic.

See Also

x64 Software Conventions