Results 3 issues of Christopher E. Moore

Hello, It looks like your use of CPU_ALLOC is incorrect and causing memory leaks. The use case at https://linux.die.net/man/3/cpu_alloc demonstrates the correct way to implement what you are attempting but...

In binarytrees and merkeltrees, for bit-shifting, you are using `2 ^ x`, which calls pow(). You should use `1

In call.c, for Lua 5.3 support, in case lua_remove is a macro, you define lua_remove_static as a symbol, I'm thinking for dynasm's sake. But then in call_x86.dasc line 713 you're...