Re: Squeezing more performance from the Lua interpreter
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Squeezing more performance from the Lua interpreter
- From: Dibyendu Majumdar <mobile@...>
- Date: 2020年8月21日 14:39:59 +0100
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