Chapter 10 Implementing Subprograms

The format of an activation record for a given subprogram in most languages is known at compile time. In many cases, the size is also known for activation records b/c all local data is of fixed size. In languages with stack-dynamic local vars, activation record instances must be created dynamically. ................
................