About 1,600,000 results
Open links in new tab
  1. Explain the concept of a stack frame in a nutshell

    Apr 7, 2012 · A stack frame is a frame of data that gets pushed onto the stack. In the case of a call stack, a stack frame would represent a function call and its argument data. If I remember …

  2. Stack Frame in Computer Organization - GeeksforGeeks

    Jun 15, 2021 · Each stack frame maintains the Stack Pointer (SP), and the frame pointer (FP). Stack pointer and frame pointer always point to the top of the stack. It also maintains a …

  3. Understanding stack frame of function call in C/C++?

    Apr 18, 2013 · I am trying to understand how stack frames are built and which variables (params) are pushed to stack in what order? Some search results showed that the C/C++ compiler …

  4. Stack frames - Rutgers University

    Mar 4, 2024 · Each function has local memory associated with it to hold incoming parameters, local variables, and (in some cases) temporary variables. This region of memory is called a …

  5. Stack and Stack Frame (a.k.a Frame) - Steven Gong

    Mar 5, 2025 · A new stack frame for funcB() is added to the control stack. At this point, the control stack has three stack frames : one for main() , one for funcA() , and one for funcB() . Each …

  6. How Your Code Executes: A Guide to Stack Frames and Function …

    Dec 27, 2024 · Understanding Stack Frames in Function Calls. When a program executes, it uses a stackto manage function calls and local variables. The stack is a Last-In-First-Out (LIFO) …

  7. Fundamentals of Programming: Stack Frames - Wikibooks

    Jan 13, 2019 · Description of stackframe during execution of program for Stackframe article. As the computer encounters a function or subroutine call, it stores the local variables, parameters …

  8. Understand stack memory management - Chris Bao's Blog

    Aug 18, 2020 · Until now, you see all the necessary stuff: stack frame, stack frame content and CPU registers. Let’s see how they play together to make stack frames of function call and …

  9. The call stack and stack frames — Ada Computer Science

    When the main subroutine is called, a stack frame is created on the call stack. This will have memory space for the local variables num1 and num2, and space to store the return pointer. …

  10. What is the difference between a stack and a frame?

    Hence the difference is that the frame record also includes the frame object and some lines of context, while the traceback only includes the text of the individual lines in the call stack (i.e., …

Refresh