-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: use mremap to move "big" stacks when growing on linux #52910
Comments
CC @golang/runtime |
I'm not sure exactly how this would help. We wouldn't have to copy the memory, sure, but we still have to go through the stack and update any pointers into the stack. I believe that is the much more expensive part, because it requires unwinding the stack, looking up funcdata, trapsing though pointer bitmaps, and all that. |
Ok thx, I didn't knew about that part (I naivly assumed everything that wasn't accessed using a stack relative pointer was moved to heap). |
Just as food for thought, This may warrant a different ticket though. (Also worth pointing out that while |
@CAFxX I don't think it can work in current conditions, because mremap unmaps the old range, so if an other reference exist it's gonna sigsev when accessed after the remap. s1, s2 := getSlices()
s3 := append(s1, s2...) // assume s1 is big and remap happen.
s1[0] = 1 // SIGSEV because s1's mmaping doesn't exists anymore and has been remmaped to s3. There are options about configuring that:
|
@Jorropo sure, that's why I mentioned
if the array is not dead it becomes much more complicated (and probably not worth the complexity) as you correctly point out |
mb, but if we are capable to prove that I think better optimisations are possible:
There would be counter examples like when too much conditionals are involved (then we couldn't do the optimizations I'm thinking about but we could remap). But I doubt this shows up in real code. If you think this is worthwhile, I think you should open a new issue. :) |
Sure. Just to address your points: proving the array is dead unfortunately would not automatically mean we can coalesce (e.g. if we're appending data coming from external sources), and definitely stack allocations would not help under my assumption of large slices (both because of the size threshold for stack allocations, and, more in general, because we would again run into the same problem mentioned above). |
mremap
allows to move a part of the virtual address space while leaving the physical one unchanged, it also allows growing the moved space with a zero fill.This is a perfect candidate for resizing big stacks, as this is essentially an ~O(1) operation (it's O(N) on the number of pages, but this cost is minimal and this is heavly dominated by the kernel entry overhead).
This could even maybe allows us to skip taking a few locks because we wouldn't have to interact with the shared memory pool (altho maybe still to keep the address space coherent ?).
This would be a non portable optimization as this syscall is linux specific.
The text was updated successfully, but these errors were encountered: