You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as mentioned in renode/renode#330, we should mention the use of cpu LogTranslationBlockFetch true as an alternative to cpu LogFunctionNames true for improving performance when logging function names.
The text was updated successfully, but these errors were encountered:
LogFunctionNames will log when the function actually is executed. LogTranslationBlockFetch will only log when the block is first fetched and translated and will not log subsequently if the block is executed from cache and not retranslated. Very often LogTranslationBlockFetch is the good first approximation but its not a "true" trace.
as mentioned in renode/renode#330, we should mention the use of
cpu LogTranslationBlockFetch true
as an alternative tocpu LogFunctionNames true
for improving performance when logging function names.The text was updated successfully, but these errors were encountered: