mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-07-07 19:20:41 +00:00
qemu-log: Avoid function call for disabled qemu_log_mask logging
Make qemu_log_mask() a macro which only calls the function to do the actual work if the logging is enabled. This avoids making a function call in possible fast paths where logging is disabled. Backports commit 7ee606230e6b7645d92365d9b39179368e83ac54 from qemu
This commit is contained in:
parent
bc5d7c5e1d
commit
66e1bacd64
|
@ -62,10 +62,17 @@ qemu_log_vprintf(const char *fmt, va_list va)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* log only if a bit is set on the current loglevel mask
|
/* log only if a bit is set on the current loglevel mask:
|
||||||
|
* @mask: bit to check in the mask
|
||||||
|
* @fmt: printf-style format string
|
||||||
|
* @args: optional arguments for format string
|
||||||
*/
|
*/
|
||||||
void GCC_FMT_ATTR(2, 3) qemu_log_mask(int mask, const char *fmt, ...);
|
#define qemu_log_mask(MASK, FMT, ...) \
|
||||||
|
do { \
|
||||||
|
if (unlikely(qemu_loglevel_mask(MASK))) { \
|
||||||
|
qemu_log(FMT, ## __VA_ARGS__); \
|
||||||
|
} \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
/* Special cases: */
|
/* Special cases: */
|
||||||
|
|
||||||
|
|
|
@ -34,15 +34,3 @@ void qemu_log(const char *fmt, ...)
|
||||||
}
|
}
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
void qemu_log_mask(int mask, const char *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
va_start(ap, fmt);
|
|
||||||
if ((qemu_loglevel & mask) && qemu_logfile) {
|
|
||||||
vfprintf(qemu_logfile, fmt, ap);
|
|
||||||
}
|
|
||||||
va_end(ap);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue