Segmented address space

сегментированное адресное пространство в таком адресном пространстве исполнительный адрес формируется из адреса в команде и/или в регистре и адреса в сегментном регистре. Преимущество сегментированной памяти в более компактной кодировке машинных команд. Она широко использовалась корпорацией Intel в процессорах 80х86, однако с удешевлением микросхем памяти победу на рынке одержали процессоры с линейной адресацией памяти смотри linear address space Смотри также: near call, segmented memory Синоним(ы): segmented addressing architecture

Англо-русский словарь компьютерных терминов

Segmented address space

An addressing scheme where all memory references are formed by adding an offset to a base address held in a segment register. The effect is to segment memory into blocks, which may overlap either partially or completely, depending on the contents of the segment registers but normally they would be distinct to give access to the maximum total range of addresses. In this case the scheme does provide some degree of memory protection within a single process since, for example, a data reference cannot affect an area of memory containing code. However, compilers must either generate slower code or code with artificial limits on the size of data structures. The best known implementation is that used on the Intel 8086 and later Intel microprocessors, where a 16-bit offset is added to a 16-bit base address held in one of four segment base registers. Each instruction has a default segment (code (CS), data (DS), stack (SS), ? (ES)) which determines which segment register is used. Special prefix instructions allow this default to be overridden. Other computers, such as GE-645/Honeywell Multics, Burroughs large systems (B-5500, B-6600), and others, have used segmentation to good effect. Opposite: flat address space. See also addressing mode. .

Free Online Dictionary of Computing