HOME

TheInfoList



OR:

Flat memory model or linear memory model refers to a
memory address In computing, a memory address is a reference to a specific memory location used at various levels by software and hardware. Memory addresses are fixed-length sequences of digits conventionally displayed and manipulated as unsigned integers. ...
ing paradigm in which "
memory Memory is the faculty of the mind by which data or information is encoded, stored, and retrieved when needed. It is the retention of information over time for the purpose of influencing future action. If past events could not be remembered ...
appears to the program as a single contiguous
address space In computing, an address space defines a range of discrete addresses, each of which may correspond to a network host, peripheral device, disk sector, a memory cell or other logical or physical entity. For software programs to save and retrieve ...
." The
CPU A central processing unit (CPU), also called a central processor, main processor or just processor, is the electronic circuitry that executes instructions comprising a computer program. The CPU performs basic arithmetic, logic, controlling, and ...
can directly (and linearly)
address An address is a collection of information, presented in a mostly fixed format, used to give the location of a building, apartment, or other structure or a plot of land, generally using political boundaries and street names as references, along ...
all of the available
memory Memory is the faculty of the mind by which data or information is encoded, stored, and retrieved when needed. It is the retention of information over time for the purpose of influencing future action. If past events could not be remembered ...
locations without having to resort to any sort of memory segmentation or paging schemes. Memory management and address translation can still be implemented ''on top of'' a flat memory model in order to facilitate the
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common daemon (computing), services for computer programs. Time-sharing operating systems scheduler (computing), schedule tasks for ef ...
's functionality, resource protection, multitasking or to increase the memory capacity beyond the limits imposed by the processor's physical address space, but the key feature of a flat memory model is that the entire memory space is linear, sequential and contiguous. In a simple controller, or in a ''single tasking'' embedded application, where memory management is not needed nor desirable, the flat memory model is the most appropriate, because it provides the simplest interface from the programmer's point of view, with direct access to all memory locations and minimum design complexity. In a general purpose computer system, which requires multitasking, resource allocation, and protection, the flat memory system must be augmented by some memory management scheme, which is typically implemented through a combination of dedicated hardware (inside or outside the CPU) and software built into the operating system. The flat memory model (at the physical addressing level) still provides the greatest flexibility for implementing this type of memory management. The majority of processor architectures implement a flat memory design, including all early
8-bit In computer architecture, 8-bit integers or other data units are those that are 8 bits wide (1 octet). Also, 8-bit central processing unit (CPU) and arithmetic logic unit (ALU) architectures are those that are based on registers or data buses of ...
processors, the Motorola 68000 series, etc. One exception was the original
8086 The 8086 (also called iAPX 86) is a 16-bit microprocessor chip designed by Intel between early 1976 and June 8, 1978, when it was released. The Intel 8088, released July 1, 1979, is a slightly modified chip with an external 8-bit data bus (allo ...
, Intel's first 16-bit microprocessor, which implemented a crude ''segmented'' memory model which allowed access to more than 64 KiB of memory without the cost of extending all addresses to more than 16-bits.


Memory models

Most modern memory models fall into one of three categories:


Flat memory model

*Simple interface for programmers, clean design *Greatest flexibility due to uniform access speed (segmented memory page switches usually incur varied latency due to longer accesses of other pages, either due to extra CPU logic in changing page, or hardware requirements) *Minimum hardware and CPU real estate for simple controller applications *Maximum execution speed, Simply there isn't any latency due to CPU or logic. *Not suitable for general computing or multitasking operating systems unless enhanced with additional memory management hardware/software; but this is almost always the case in modern CISC processors, which implement advanced memory management and protection technology over a flat memory model.
Linux Linux ( or ) is a family of open-source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991, by Linus Torvalds. Linux is typically packaged as a Linux distribution, which i ...
e.g. uses a flat memory model, see x86 memory segmentation#Practices.


Paged memory model

*Suitable for multitasking, general operating system design, resource protection and allocation *Suitable for virtual memory implementation *More CPU real estate, somewhat lower speed *More complex to program *Rigid page boundaries, not always the most memory efficient *This is the memory model Pentium Pro and newer x86 CPUs use in 32-bit addressing mode when addressing memory using 36-bit addresses. It's called Physical Address Extension


X86 segmented memory model

*Similar to paged memory, but paging is achieved by the implicit addition of two relatively shifted registers: segment:offset *Variable page boundaries, more efficient and flexible than the paged memory model *Quite complex and awkward from a programmer's point of view *More difficult for compilers *Pages can overlap / poor resource protection and isolation *Many to one address translation correspondence: Many segment:offset combinations resolve to the same physical address *Greater chance of programming errors *Implemented in the original Intel 8086,
8088 The Intel 8088 ("''eighty-eighty-eight''", also called iAPX 88) microprocessor is a variant of the Intel 8086. Introduced on June 1, 1979, the 8088 has an eight-bit external data bus instead of the 16-bit bus of the 8086. The 16-bit registers and ...
, 80186, 80286, and supported by 80386 and all subsequent x86 machines through to present day Pentium and Core 2 processors. This memory model has remained ever since in the x86 machines, which now provide multi-mode operation and rarely operate in the compatible segmented mode. See x86 memory segmentation for details. Within the x86 architectures, when operating in the real mode (or emulation), physical address is computed as:General description of Real Mode
"The physical address can be calculated as Value_in_segment_register 16 + Value_in_offset_register." :Address = 16 × segment + offset (I.e., the 16-bit segment register is shifted left by 4 bits and added to a 16-bit offset, resulting in a 20-bit address.)


See also

*
Address space In computing, an address space defines a range of discrete addresses, each of which may correspond to a network host, peripheral device, disk sector, a memory cell or other logical or physical entity. For software programs to save and retrieve ...
*
Memory model (disambiguation) Memory model may refer to: Psychology *Atkinson–Shiffrin memory model *Baddeley's model of working memory * Memory-prediction model Computer science * Memory model (programming) describes how threads interact through memory ** Java Memory Model ...


References

{{Reflist Computer memory