> ... initial guess for a jump target was too small ...
Ye that one is annoying.
I am making a VM compiler right now, and I have the same problem. I would probably have to make some intermediate tree to solve it without making every jump a "far jump".
Sometimes you can get into a series of these where each subsequent increase in length results in a previous jump that worked before now being out of range. That can get quite tedious.
Ye that one is annoying.
I am making a VM compiler right now, and I have the same problem. I would probably have to make some intermediate tree to solve it without making every jump a "far jump".
Moving instructions is a headache :)