-
The radix 2^51 trick
The radix 2^51 trick
To do long addition we sum right to left, if result is greater than 10, we carry 1 to its left.
The assembly code have extra instruction to hold that carry, if we can eliminate it, then our generated assembly code has less thing to do. How can we do that?
Appears in lists (1)
More like this (2)
-
Parameter Passing in C and C++
Now that we know how to read assembly language, we can talk about how parameter passing...
-
RUSTGO: Calling Rust From Go
RUSTGO: Calling Rust From Go Go can call into assembly, however, writing assembly code is hard....