MicroBlaze Processor Reference Guide
203
UG081 (v14.7)
Instructions
idiv
Integer Divide
Description
The contents of register rB is divided by the contents of register rA and the result is placed into
register rD.
If the U bit is set, rA and rB are considered unsigned values. If the U bit is clear, rA and rB are
considered signed values.
If the value of rA is 0, the DZO bit in MSR will be set and the value in rD will be 0, unless an
exception is generated.
If the U bit is clear, the value of rA is -1, and the value of rB is -2147483648, the DZO bit in MSR
will be set and the value in rD will be -2147483648, unless an exception is generated.
Pseudocode
if (rA) = 0 then
(rD)
<-
0
MSR[DZO] <- 1
ESR[EC] <- 00101
ESR[DEC] <- 0
else if U = 0 and (rA) = -1 and (rB) =
-2147483648 then
(rD)
<-
-2147483648
MSR[DZO] <- 1
ESR[EC] <- 00101
ESR[DEC] <- 1
else
(rD)
←
(rB) / (rA)
Registers Altered
•
rD, unless a divide exception is generated, in which case the register is unchanged
•
MSR[DZO], if the value in rA is zero
•
ESR[EC], if the value in rA is zero
Latency
•
1 cycle if (rA) = 0, otherwise 32 cycles with
C_AREA_OPTIMIZED=0
•
1 cycle if (rA) = 0, otherwise 34 cycles with
C_AREA_OPTIMIZED=1
Note
This instruction is only valid if MicroBlaze is configured to use a hardware divider (
C_USE_DIV =
1
).
idiv
rD, rA, rB
divide rB by rA (signed)
idivu
rD, rA, rB
divide rB by rA (unsigned)
0 1 0 0 1 0
rD
rA
rB
0 0 0 0 0 0 0 0 0 U 0
0
6
1
1
1
6
2
1
3
1
Содержание MicroBlaze
Страница 1: ...MicroBlaze Processor Reference Guide Embedded Development Kit EDK 14 7 UG081 v14 7...
Страница 4: ...MicroBlaze Processor Reference Guide www xilinx com UG081 v14 7...
Страница 8: ...8 www xilinx com MicroBlaze Processor Reference Guide UG081 v14 7 Chapter 1 Introduction Send Feedback...
Страница 262: ...262 www xilinx com MicroBlaze Processor Reference Guide UG081 v14 7 Send Feedback...