lua-users home
lua-l archive

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


With gcc, when using using computed goto, it seems following options
help: -fno-crossjumping -fno-gcse.

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