Von neumann architecture

фон-неймановская архитектура, принстонская архитектура доминирующая в настоящее время организация ЭВМ, основанная на концепции хранимой программы, для которой используется линейно адресуемая память (main memory), способная выполнять операции чтения и записи. Эта единая память хранит и команды программы, и данные. Команды выбираются процессором из памяти последовательно одна за другой, кроме случаев применения управляющих команд (переходы, программные прерывания, вызовы подпрограмм). Принципы компьютера с хранимой программой американский математик Джон фон Нейман (John von Neumann, 1903-1957) сформулировал в проекте отчёта "First Draft of a Report on the EDVAC" (1945 г.), отправленный им частным образом ста крупнейшим западным учёным. Однако авторство принадлежит не ему, а разработчикам сверхсекретного в то время компьютера ENIAC Джону Маучли (J. Mauchly) и Джону Эккерту (J. Eckert), у которых Нейман проходил стажировку. Учитывая это, в настоящее время данную архитектуру всё чаще называют принстонской, по названию университета, в котором работали Маучли и Эккерт. Размещение команд и данных в одной памяти имеет ряд недостатков, что вызвало появление так называемой гарвардской архитектуры (Harvard architecture) Смотри также: system architecture

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

Von neumann architecture

A computer architecture conceived by mathematician John von Neumann, which forms the core of nearly every computer system in use today (regardless of size). In contrast to a Turing machine, a von Neumann machine has a random-access memory (RAM) which means that each successive operation can read or write any memory location, independent of the location accessed by the previous operation. A von Neumann machine also has a central processing unit (CPU) with one or more registers that hold data that are being operated on. The CPU has a set of built-in operations (its instruction set) that is far richer than with the Turing machine, e.g. adding two binary integers, or branching to another part of a program if the binary integer in some register is equal to zero (conditional branch). The CPU can interpret the contents of memory either as instructions or as data according to the fetch-execute cycle. Von Neumann considered parallel computers but recognized the problems of construction and hence settled for a sequential system. For this reason, parallel computers are sometimes referred to as non-von Neumann architectures. A von Neumann machine can compute the same class of functions as a universal Turing machine.

Free Online Dictionary of Computing