Petr Kobalicek
Petr Kobalicek
Can you please elaborate? I don't see a bug anywhere right now. AsmJit assembles far jumps as other assemblers via `ljmp` and `lcall` instructions.
FF25/FF15 encodes `jmp|call r64/m64` forms - you can have that if you use `jmp [mem]` form of the instruction. When you specify absolute address as an immediate AsmJit bails to...
I'm going to clarify this. The instruction sequences proposed are not instructions, but they are instructions or multiple instructions + data. To do a jump with absolute address that is...
Closing as the behavior of AsmJit is OK.
What about writing a build system that uses node.js. I know that it was discussed and it's a bad idea in sense to build node itself, however, I thought about...
I really don't understand why cmake authors invented such a crappy language. I don't think its success is because of the language itself, it's because it provided pretty good detection...
WAF, GYP, GN, what would be next?
Am I the only one skeptical about this module here? :) I don't like putting something like ffi into the core. I think it's unsafe, it will probably never be...
@arigo Without having FFI directly in V8 I think even JIT won't help you. You will probably not be able to extract data from V8 allocated objects without doing it...
I think the common solutions that other projects use are bad: ``` #ifdef _MSC_VER #undef GetObject #endif ``` This is bad as this can break user code that relies on...