This was always too much work for not enough benefit. What I did in the case to debug into such cases, I constructed the C equivalent temporarily, compiled it on the fly also with -g, set the source to this file and could easily debug the function.
setheron•1h ago
How do you know what the equivalent C is for the JIT assembly ?
rurban•18m ago
Since I generate the asm part, generating the C part is easier.
I usually do just simple method JITs, which are C parts. Usually just calling an API method.
rurban•2d ago
setheron•1h ago
rurban•18m ago
I usually do just simple method JITs, which are C parts. Usually just calling an API method.