The x32 system call ABI
The x32 system call ABI
Posted Sep 9, 2011 14:12 UTC (Fri) by gmaxwell (guest, #30048)In reply to: The x32 system call ABI by NikLi
Parent article: The x32 system call ABI
> Using pointer offsets suffers from one extra indirection and will kill a big part of the cache. On the other hand, pointing to more than 4G of things is an overkill.
You use a single offset (after all, we're assuming you're willing to take a 4G limit in these applications) and keep it in a register.
Alternatively, how about an ABI that promises you that you can get memory under the 4G mark and you use 32 bits internally, and covert at the boundaries to external libraries. This way single applications can be 32 bit without overhead but it doesn't drag the whole system with it?
