Open sh4m2hwz opened 1 year ago
Hi @sh4m2hwz
After an analyzes with @commial, it seems that in your IR, you are translating an IR code which comes from a memory with segmentation use.
(something as SS:DWORD PTR[ESP]
for example, which may appear in IR in something like @32[segm(ss, esp)]
)
It seems that the default code (used in the generation in case of jit) tries to do that and uses a jitter which is not initialized here in your case (and you don't want that).
Maybe you will have to remove the segmentation in the IR if you are not using it, or maybe patch the IR code to use a custom function made by you which will handle the segmentation ?
system: windows 10 python 3.9.8