Architectural "virtual address space" of the POWER8 architecture

As mentioned here , can anyone explain what is meant by “flat” 32-bit space?

Text for the lazy:

Another interesting architectural feature is a virtual address that maps all addresses to 52-bit space. In this case, applications can share memory in a “flat” 32-bit space, and all programs can have different blocks of 32 bits each.

+4
source share
1 answer

A “flat” address space means that the virtual 32-bit space used for each program is independently and directly accessible in successive offsets, starting at byte 0, all the way through xFFFFFFFF.

Contrast this with what is commonly called “segmented” address spaces, where the address consists of a segment or descriptor number, and then fewer bits as an offset to that segment / descriptor.

The memory management system performs a routine to translate a 32-bit address link to a specific location within the actual 52-bit address space provided by the underlying architecture.

+4
source

All Articles