Top "Stack-frame" questions

Use stackframe for questions related to debugging unterminated function calls.

What are the ESP and the EBP registers?

I found that the ESP register is the current stack pointer and EBP is the base pointer for the current …

assembly x86 callstack stack-frame
explanation about push ebp and pop ebp instruction in assembly

i used stack in assembly but i didn't got idea about push ebp and pop ebp. .intel_syntax noprefix .include "…

assembly x86 callstack stack-frame
What is the direction of stack growth in most modern systems?

I am preparing some training materials in C and I want my examples to fit the typical stack model. What …

assembly stack callstack abi stack-frame
ENTER and LEAVE in Assembly?

I was reading The Art of Assembly Language (Randall Hyde, link to Amazon) and I tried out a console application …

assembly x86 stack-frame
What is the difference between parent.frame() and parent.env() in R; how do they differ in call by reference?

It would be helpful if someone can illustrate this with a simple example? Also, where would it be useful to …

r environment function-call stack-frame
Function Prologue and Epilogue in C

I know data in nested function calls go to the Stack.The stack itself implements a step-by-step method for storing …

c++ c assembly stack-frame epilogue
GetEntryAssembly for web applications

Assembly.GetEntryAssembly() does not work for web applications. But... I really need something like that. I work with some deeply-nested …

c# reflection assemblies code-generation stack-frame
What is a stack map frame

I've recently been looking at The Java Virtual Machine Specifications (JVMS) to try to better understand the what makes my …

java jvm bytecode stack-frame
What does EBP+8 in this case in OllyDbg and Assembler mean?

I am just learning Assembler and debugging skills in OllyDbg in order to learn how to use undocumented functions. Now …

assembly ollydbg stack-frame
how to expand size of Java stack trace to see bottom of stack? (triggering a stack overflow)

In Java, is there any way to view the complete, untruncated stack trace (e.g. by increasing the number of …

java debugging scala stack-overflow stack-frame