|
From: Julian S. <js...@ac...> - 2007-11-07 21:51:05
|
> vex: priv/host-x86/isel.c:510 (doHelperCall): Assertion > `typeOfIRExpr(env->type_env, args[i]) == Ity_I32' failed. > vex storage: T total 2095603544 bytes allocated Sounds like you've got an IR helper call with an argument type which isn't handled by the backend (instruction selector). Find the basic block containing the problem insn: Rerun with --vex-guest-chase-thresh=0 --trace-flags=10000000 --trace-notbelow=999999. Once you know the translation number that it craps out at, replace the 999999 with that. Rerun. That should show you the actual basic block it is complaining about. Send. J |