GCC Middle and Back End API Reference
|
Data Fields | |
struct page_group * | next |
char * | allocation |
size_t | alloc_size |
unsigned int | in_use |
A page_group describes a large allocation from malloc, from which we parcel out aligned pages.
size_t page_group::alloc_size |
The size of the block.
char* page_group::allocation |
The address we received from malloc.
unsigned int page_group::in_use |
A bitmask of pages in use.
struct page_group* page_group::next |
A linked list of all extant page groups.