You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the MALLOC opcode can be used to reserve a memory range, it doesn't clear memory so as to support constant-cost reserving. Currently, clearing this would be done by clearing one word at a time in a loop, which is unnecessarily expensive for what will be a widely-used usecase.
A new opcode should be added that simply zeroes out a range of memory.
The text was updated successfully, but these errors were encountered:
While the
MALLOC
opcode can be used to reserve a memory range, it doesn't clear memory so as to support constant-cost reserving. Currently, clearing this would be done by clearing one word at a time in a loop, which is unnecessarily expensive for what will be a widely-used usecase.A new opcode should be added that simply zeroes out a range of memory.
The text was updated successfully, but these errors were encountered: