|
|
|
|
|
by cmovq
133 days ago
|
|
Last time I checked LLVM had surprisingly bad codegen for this using int128. On x86 you only need two instructions: __asm (
"mulq %[multiplier]\n"
"divq %[divisor]\n"
: "=a"(result)
: "a"(num), [multiplier]"r"(multiplier), [divisor]"r"(divisor)
: "rdx"
);
The intermediate 128bit number is in rdx:rax. |
|