Kind of a silly question, but how does one do integer division (signed or unsigned, either way) on ARM? I'm working on Cortex-A8 and Cortex-A9 in particular. I know that some architectures don't come with integer division, but what is the best way to do it other than convert to float, divide, convert to integer? Or is that indeed the best solution?

Cheers! = )

link|improve this question

Of course the compiler will support integer division in software mode even if not present in the hardware. I doubt those high spec chips do NOT have integer division. I think the ATMega (like Arduino) lacks it. – leppie Dec 1 '11 at 20:48
1  
An Assembly instruction for integer division on ARM does not exist. – Phonon Dec 1 '11 at 20:49
1  
Either convert to float or do a manual divide with an unrolled 3 opcode pattern. – Michael Dorgan Dec 1 '11 at 20:52
@MichaelDorgan Elaborate? – Phonon Dec 1 '11 at 20:58
1  
ARMv7-R, ARMv7VE, otherwise optional in ARMv7-A is what is listed for SDIV and UDIV. You have to look at the options purchased for that core and/or look at the TRM for the specific core you are using. Or just encode the instruction, execute it and see if you get an undefined instruction fault... – dwelch Dec 1 '11 at 21:35
show 5 more comments
feedback

2 Answers

up vote 1 down vote accepted

The compiler normally includes a divide in its library, gcclib for example I have extracted them from gcc and use them directly:

https://github.com/dwelch67/stm32vld/tree/master/stm32f4d/adventure/gcclib

going to float and back is probably not the best solution. you can try it and see how fast it is...This is a multiply but could as easily make it a divide:

https://github.com/dwelch67/stm32vld/blob/master/stm32f4d/float01/vectors.s

I didnt time it though to see how fast/slow. Understood I am using a cortex-m above and you are talking about a cortex-a, different ends of the spectrum, similar float instructions and the gcc lib stuff is similar, for the cortex-m I have to build for thumb but you can just as easily build for arm. Actually with gcc it should all just work automagically you should not need to do it the way I did it. Other compilers as well you should not need to do it the way I did it in the adventure game above.

link|improve this answer
feedback

Some copy-pasta from elsewhere for an integer divide: Basically, 3 instructions per bit. From this website, though I've seen it many other places as well. This site also has a nice version which may be faster in general.


@ Entry  r0: numerator (lo) must be signed positive
@        r2: deniminator (den) must be non-zero and signed negative
idiv:
        lo .req r0; hi .req r1; den .req r2
        mov hi, #0 @ hi = 0
        adds lo, lo, lo
        .rept 32 @ repeat 32 times
          adcs hi, den, hi, lsl #1
          subcc hi, hi, den
          adcs lo, lo, lo
        .endr
        mov pc, lr @ return
@ Exit   r0: quotient (lo)
@        r1: remainder (hi)
link|improve this answer
3  
This is 3 instructions per bit but not 3 cycles per bit. All of the instructions in each step are immediately dependent on the flag setting of the previous, which means a result delay of 3-4 cycles depending on the core. This will likely take 9-12 cycles per step, for a total of ~360 cycles. – John Ripley Dec 10 '11 at 4:03
Sounds about right. Inverse multiply fixed point is always a better option if you can swing it. – Michael Dorgan Dec 10 '11 at 17:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.