3:194
Volume 3: Instruction Reference
or
or — Logical Or
Format:
(
qp
) or
r
1
=
r
2
,
r
3
register_form
(
qp
) or
r
1
=
imm
8
,
r
3
imm8_form
Description:
The two source operands are logically ORed and the result placed in GR
r
1
. In the
register form the first operand is GR
r
2
; in the immediate form the first operand is taken
from the
imm
8
encoding field.
Operation:
if (PR[
qp
]) {
check_target_register(
r
1
);
tmp_src = (register_form ? GR[
r
2
] : sign_ext(
imm
8
, 8));
tmp_nat = (register_form ? GR[
r
2
].nat : 0);
GR[
r
1
] = tmp_src | GR[
r
3
];
GR[
r
1
].nat = tmp_nat || GR[
r
3
].nat;
}
Interruptions:
Illegal Operation fault
Summary of Contents for Itanium 9150M
Page 1: ......
Page 209: ...3 200 Volume 3 Instruction Reference padd Interruptions Illegal Operation fault...
Page 405: ...3 396 Volume 3 Resource and Dependency Semantics...
Page 406: ...3 397 Intel Itanium Architecture Software Developer s Manual Rev 2 3 Index...
Page 407: ...3 398 Intel Itanium Architecture Software Developer s Manual Rev 2 3...
Page 419: ...INDEX Index 12 Index for Volumes 1 2 3 and 4...
Page 420: ......