Possible Duplicate:
How can I multiply two 64bit numbers using x86 assembly language?
How do you multiply two 64-bit numbers in x86 assembler?
This question is important for historical reasons.
Presumably, Joel meant 386 assembler.
Related question
|
1
|
How do you multiply two 64-bit numbers in x86 assembler? This question is important for historical reasons. Presumably, Joel meant 386 assembler. Related question
|
||||
|
closed as exact duplicate by starblue, Sinan Ünür, Earwicker, Shog9, jjnguy Jul 17 at 13:41 |
|
|
You can split it in two 32-bit numbers A and B, and, given that (A0*X + B0) * (A1 * X + B1) equals A0 * A1 * XX + (A0 * B1 + B0 * A1 ) * X + B0 * B1 (where X is 2^32) You would have to account for overflow on every part-product:
Do the math like that. |
||||||
|
|
|
Looks like there's already a thread on this: http://stackoverflow.com/questions/87771/how-do-you-multiply-two-64bit-numbers-in-assembly |
||
|
|
|
|
if you consider x86_64 to be an x86 platform, gcc suggests this:
Here, |
||||
|
|
|
I think that this would work, but it has been done by hand and not checked in any way...
|
||||||
|
|
|
One option you always have when presented with questions like this is to make use of your compiler's ability to produce source-annotated assembly. For GCC:
will produce human readable assembly(well, as human readable as any assembly can be...) with source code interspersed. Here's a short program multiplying 2 longs on a 32 bit architecture.
|
||||
|
|
|
Faster code, using the ideas that you probably only want a 64 bit product, that you don't care about overflow or signed numbers. (A signed version is similar). (This is untested, but I think its right)
MUL64_MEMORY:
mov edi, val1high
mov esi, val1low
mov ecx, val2high
mov ebx, val2low
MUL64_EDIESI_ECXEBX:
mov eax, edi
mul ebx
xch eax, ebx ; partial product top 32 bits
mul esi
xch esi, eax ; partial product lower 32 bits
add ebx, edx
mul ecx
add ebx, eax ; final upper 32 bits
; answer here in EBXESI
(Edit: first draft had useless adc instructions. Result looks much like code emitted from GCC compiler [See other answer] except this fits entirely in registers) |
|||
|
|