|
|
|
|
|
by mgaunard
789 days ago
|
|
Could just be inefficient spilling caused by ABI requirements due to the inability to inline. In general if you're manipulating values that fit into registers and work on a platform with a shitty ABI,you need to be very careful of what your function call boundaries look like. The most obvious example is SIMD programming on Windows x86 32-bit. |
|