coral::callable
Over-Usage
#7
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The
coral::callable
type erasing container is used a lot throughout the various first-party libraries of the code base. However, the ownership semantics that is employed within make it expensive to both create and call compared to the scenarios it is used it.The most blatant example of this is as a function argument that is executed within the frame of the function it is passed to. Because the object will never live beyond the scope of its use, it shouldn't need to take ownership of the lambda memory through copying. Simply referencing the value has some simple performance wins across the board.
Memory layout drops from 32 to 16 bytes on x86-64 and 8 bytes under 32-bit compilation.
No more redundant copying of bits before they are executed.
Reduced copying and less L-values will give the compiler an easier time optimizing out the pointer indirections.