Instruction prefetch

предвыборка (упреждающая выборка) команд выборка в специальный буфер процессора нескольких очередных команд во время выполнения текущей команды. Это минимизирует время ожидания процессором поступления следующей команды, кроме того, так как все современные процессоры обладают конвейерной архитектурой, то выбранные команды декодируются и исполняются на разных ступенях конвейера. Предварительная выборка тесно связана с блоком предсказаний ветвлений программы Смотри также: branch, branch prediction, instruction decoding, pipeline break, prefetcher

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

Instruction prefetch

A technique which attempts to minimise the time a processor spends waiting for machine instructions to be fetched from memory. Instructions following the one currently being executed are loaded into a prefetch queue when the processor's external bus is otherwise idle. If the processor executes a branch instruction or receives an interrupt then the queue must be flushed and reloaded from the new address. Instruction prefetch is often combined with pipelining in an attempt to keep the pipeline busy. By 1995 most processors used prefetching, e.g. Motorola 680x0, Intel 80x86.

Free Online Dictionary of Computing