动态链接
一些附加信息
Stack Frame5
method1() { method2();}
方法返回地址
method3() { method4();}
DL
Stack Frame2
RA
OS
栈帧结构
一个方法对应一个栈帧
局部变量表
Stack Frame1
LV
操作数栈
method4() { method5();}
Stack Frame3
栈空间
Stack Frame4
method2() { method3();}
method5() { // ... ...}