Tim Peters <t...@python.org> added the comment:

BTW, your cache WIP

https://github.com/python/cpython/pull/25130/files

partly moves to tracking pool (instead of byte) addresses, but any such attempt 
faces a subtlety:  it's not necessarily the case that a pool is entirely 
"owned" by obmalloc or by the system.  It can be split.

To be concrete, picture a decimal machine with arenas at 10,000 byte boundaries 
and pools at 100-byte boundaries, with the system malloc returning 20-byte 
aligned addresses.

If obmalloc gets an arena starting at address 20,020, the pool range(20000, 
20100) has its first 20 bytes owned by the system, but its last 80 bytes owned 
by obmalloc. Pass 20050 to the PR's address_in_range, and it will say it's 
owned by the system (because its _pool_ address, 20000, is). But it's actually 
owned by obmalloc.

I'm not sure it matters, but it's easy to get a headache trying to out-think it 
;-) In that case, obmalloc simply ignores the partial pool at the start, and 
the first address it can pass out is 20100. So it would never be valid for 
free() or realloc() to get 20050 as an input.

On the other end, the arena would end at byte 20020 + 10000 - 1 = 30019. This 
seems worse! If 30040 were passed in, that's a system address, but its _pool_ 
address is 30000, which obmalloc does control.

That reminds me now why the current scheme tracks byte addresses instead ;-) It 
appears it would require more tricks to deal correctly in all cases when 
system-supplied arenas aren't necessarily aligned to pool addresses (which was 
never a consideration in the old scheme, since a pool was at largest a system 
page, and all mmap()-like functions (used to get an arena) in real life return 
an address at worst page-aligned).

Or we'd need to find ways to force mmap() (across different systems' spellings) 
to return a pool-aligned address for arenas to begin with.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue43593>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to