| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +2 |
MallocGCSmallScanNoHeader [11]*obj.LSymIs there any way we can make it easy to remember to update this number?
I had quite a frustrating time updating the map implementation trying to find all the little bits and bobs that needed updating in the compiler.
if size > 128 {Mention that this must match the constant in mkmalloc.
(Or put in internal/abi if possible. But I'm not sure mkmalloc can import internal/abi?)
specializedMallocMax = 128Mention that that must match the constant in the compiler.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
MallocGCSmallScanNoHeader [11]*obj.LSymIs there any way we can make it easy to remember to update this number?
I had quite a frustrating time updating the map implementation trying to find all the little bits and bobs that needed updating in the compiler.
I think we can generate a constant in internal/runtime/gc that's equal to the one in mkmalloc. I'll send a cl to do that and to add the 128 constant too.
Mention that this must match the constant in mkmalloc.
(Or put in internal/abi if possible. But I'm not sure mkmalloc can import internal/abi?)
Done
mkmalloc can't import internal/abi because we don't want to require that it's built with the same version of go. But we could put it internal/runtime/gc, because that's also generated by mkmalloc, so we can produce a constant there equal to the one in mkmalloc.
Mention that that must match the constant in the compiler.
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |