created: 01/17/2003; edits: 11/26/2003, 04/29/2004, 04/26/2007, 06/02/2015, 05/28/2021

go to home page   go to next page hear noise highlighting

CHAPTER 33 — Dynamic Memory Allocation

Dynamic memory allocation is used in assembly language and high level languages for building data structures. In object oriented languages it is used to get the memory used to construct objects.

Just before a program starts running, the loader copies machine code from the executable file into the text segment of memory. It also copies data from the executable file into the data segment of memory.

Source code declares a fixed amount of memory (in the .data section for assembly language). But often as a program runs it requests more memory for data. The operating system finds a block of available memory and allocates it to the program. This is dynamic memory allocation.

Chapter Topics:


QUESTION 1:

(Review: ) How many addresses does MIPS main storage have?


go to home page   go to next page