lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Fri, 21 Aug 2020 at 14:39, Dibyendu Majumdar <mobile@majumdar.org.uk> wrote:
>
> With gcc, when using using computed goto, it seems following options
> help: -fno-crossjumping -fno-gcse.
>

Forgot to add that only enable this for lvm.c

> I found that the benefits of a custom allocator depend on the
> platform. Default malloc/free on Linux seems very good - but on MacOSX
> a custom allocator is measurably faster (you can try the binary trees
> benchmark for this).
>
> Regards