mirror of https://github.com/xemu-project/xemu.git
Make likely/unlikely accessible also in hw/.
Revert the logfile->stderr change. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3194 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
a50a6282d7
commit
2e03286b9a
|
@ -62,7 +62,7 @@
|
||||||
#define DEBUG_BLOCK
|
#define DEBUG_BLOCK
|
||||||
#if defined(DEBUG_BLOCK) && !defined(QEMU_TOOL)
|
#if defined(DEBUG_BLOCK) && !defined(QEMU_TOOL)
|
||||||
#define DEBUG_BLOCK_PRINT(formatCstr, args...) do { if (loglevel != 0) \
|
#define DEBUG_BLOCK_PRINT(formatCstr, args...) do { if (loglevel != 0) \
|
||||||
{ fprintf(stderr, formatCstr, ##args); fflush(stderr); } } while (0)
|
{ fprintf(logfile, formatCstr, ##args); fflush(logfile); } } while (0)
|
||||||
#else
|
#else
|
||||||
#define DEBUG_BLOCK_PRINT(formatCstr, args...)
|
#define DEBUG_BLOCK_PRINT(formatCstr, args...)
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -28,12 +28,14 @@
|
||||||
#define tostring(s) #s
|
#define tostring(s) #s
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef likely
|
||||||
#if __GNUC__ < 3
|
#if __GNUC__ < 3
|
||||||
#define __builtin_expect(x, n) (x)
|
#define __builtin_expect(x, n) (x)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define likely(x) __builtin_expect(!!(x), 1)
|
#define likely(x) __builtin_expect(!!(x), 1)
|
||||||
#define unlikely(x) __builtin_expect(!!(x), 0)
|
#define unlikely(x) __builtin_expect(!!(x), 0)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __i386__
|
#ifdef __i386__
|
||||||
#define REGPARM(n) __attribute((regparm(n)))
|
#define REGPARM(n) __attribute((regparm(n)))
|
||||||
|
|
|
@ -46,9 +46,6 @@ void omap_badwidth_write32(void *opaque, target_phys_addr_t addr,
|
||||||
OMAP_32B_REG(addr);
|
OMAP_32B_REG(addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define likely
|
|
||||||
#define unlikely
|
|
||||||
|
|
||||||
/* Interrupt Handlers */
|
/* Interrupt Handlers */
|
||||||
struct omap_intr_handler_s {
|
struct omap_intr_handler_s {
|
||||||
qemu_irq *pins;
|
qemu_irq *pins;
|
||||||
|
|
9
vl.h
9
vl.h
|
@ -93,6 +93,15 @@ static inline char *realpath(const char *path, char *resolved_path)
|
||||||
#define tostring(s) #s
|
#define tostring(s) #s
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef likely
|
||||||
|
#if __GNUC__ < 3
|
||||||
|
#define __builtin_expect(x, n) (x)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define likely(x) __builtin_expect(!!(x), 1)
|
||||||
|
#define unlikely(x) __builtin_expect(!!(x), 0)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef MIN
|
#ifndef MIN
|
||||||
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue