-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What does it mean of "a dirty c call"? #28
Comments
Thank you, @haxelion any idea? |
I found that when using TracerGrind in some cases like the lib using m4ri will run for an extremely long time. Then we abandoned m4ri. |
@doegox What is the meaning of "Ooops that's a dirty c call ..."?
|
no idea, poking @haxelion |
Valgrind translates machine code into a mix of VEX IR instructions and ... C calls. However sometimes Valgrind doesn't have the VEX IR translation for an instruction and uses C to try to fix it via emulation (they had SIMD emulation for a while). Since I can't instrument those, I just chose to emit this warning. Since you're using a 4 years old Valgrind version, some recent intel instructions are probably to blame for. |
@haxelion
|
@haxelion maybe we should rephrase the warning with sth like "Valgrind-emulated instruction detected, skipping instrumentation on that one" ? |
@doegox @sia72abedi |
I think maybe this is caused by invoking procedure that link with dynamic linked library. I found that if I recompile my project with static link option, this probrem disappeared. |
As stated. Logs show below.
This situation leads to an infinite loop and makes the disk crashed. (fully used)
Usage environment:
The text was updated successfully, but these errors were encountered: