tyomitch писал(а):Дык, а что должен-то?
Для большей определённости платформой можно считать чистый свежепоставленный MS-DOS 6.22, запущенный в VMware 4.5; я тестировался именно там.
Intel Hex Opcodes And Mnemonics, 8086/80186/80286/80386/80486 Instruction Set, BOUND - Array Index Bound Check (80188+)
писал(а):BOUND - Array Index Bound Check (80188+)
Usage: BOUND src,limit
Modifies flags: None
Array index in source register is checked against upper and lower
bounds in memory source. The first word located at "limit" is
the lower boundary and the word at "limit+2" is the upper array bound.
Interrupt 5 occurs if the source value is less than or higher than
the source.
Clocks Size
Operands 808x 286 386 486 Bytes
reg16,mem32 - nj=13 nj=10 7 2
reg32,mem64 - nj=13 nj=10 7 2
- nj = no jump taken
62 / r BOUND r16,m16&16
62 / r BOUND r32,m32&32
tyomitch писал(а):дело за малым -- предсказать, основываясь на этой доке, реальный наблюдаемый эффект
IF (ArrayIndex < LowerBound OR ArrayIndex > UpperBound)
(* Below lower bound or above upper bound *)
THEN
#BR;
FI;
IA-32 Intel® Architecture
Software Developer’s
Manual
Volume 2:
Instruction Set Reference писал(а):BOUND—Check Array Index Against Bounds
Opcode/ Instruction/ Description
62 /r; BOUND r16, m16&16; Check if r16 (array index) is within bounds specified by m16&16
62 /r; BOUND r32, m32&32; Check if r32 (array index) is within bounds specified by m32&32
Description
Determines if the first operand (array index) is within the bounds of an array specified the second operand (bounds operand). The array index is a signed integer located in a register. The bounds operand is a memory location that contains a pair of signed doubleword-integers (when the operand-size attribute is 32) or a pair of signed word-integers (when the operand-size attribute is 16). The first doubleword (or word) is the lower bound of the array and the second doubleword (or word) is the upper bound of the array. The array index must be greater than or equal to the lower bound and less than or equal to the upper bound plus the operand size in bytes. If the index is not within bounds, a BOUND range exceeded exception (#BR) is signaled. (When a this exception is generated, the saved return instruction pointer points to the BOUND instruction.)
The bounds limit data structure (two words or doublewords containing the lower and upper limits of the array) is usually placed just before the array itself, making the limits addressable via a constant offset from the beginning of the array. Because the address of the array already will be present in a register, this practice avoids extra bus cycles to obtain the effective address of the array bounds.
tyomitch писал(а):#BR -- это не реальный наблюдаемый эффект. Это нечто внутри процессора, что невозможно увидеть.
А что будет возможно увидеть, всё-таки?
When a this exception is generated, the saved return instruction pointer points to the BOUND instruction.
Approximator писал(а):tyomitch писал(а):#BR -- это не реальный наблюдаемый эффект. Это нечто внутри процессора, что невозможно увидеть.
А что будет возможно увидеть, всё-таки?
Я тебя совсем не понимаю Все инструкции (по моему глубокому разумению), которые выполняются изменяют что-либо в процессоре .
#BR (BOUND Range Exceeded) - всего лишь один из 19 IA-32 General Exceptions.
tyomitch писал(а):Approximator писал(а):tyomitch писал(а):#BR -- это не реальный наблюдаемый эффект. Это нечто внутри процессора, что невозможно увидеть.
А что будет возможно увидеть, всё-таки?
Я тебя совсем не понимаю Все инструкции (по моему глубокому разумению), которые выполняются изменяют что-либо в процессоре .
#BR (BOUND Range Exceeded) - всего лишь один из 19 IA-32 General Exceptions.
Просто смысл моей загадки был не "открыть N-томник от Интела и найти там нужный опкод", а "соотнести это с другими имеющимися фактами".
Ещё раз подчёркиваю: речь не о сферическом процессоре в вакууме, а о компьютере целиком. Когда я записываю байт в RAM, это невозможно увидеть, а когда я записываю его в видеобуфер -- возможно. А когда я посылаю его в порт 61h, его возможно ещё и услышать
Сейчас этот форум просматривают: AhrefsBot и гости: 42