qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6856] Delete some unused macros detected with -Wp, -Wunuse


From: Blue Swirl
Subject: [Qemu-devel] [6856] Delete some unused macros detected with -Wp, -Wunused-macros use
Date: Mon, 16 Mar 2009 16:33:01 +0000

Revision: 6856
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6856
Author:   blueswir1
Date:     2009-03-16 16:33:01 +0000 (Mon, 16 Mar 2009)
Log Message:
-----------
Delete some unused macros detected with -Wp,-Wunused-macros use

Modified Paths:
--------------
    trunk/aes.c
    trunk/console.c
    trunk/cpu-exec.c
    trunk/exec.c
    trunk/hw/cirrus_vga.c
    trunk/hw/dma.c
    trunk/hw/eepro100.c
    trunk/hw/openpic.c
    trunk/hw/pckbd.c
    trunk/hw/piix_pci.c
    trunk/hw/sd.c
    trunk/hw/slavio_intctl.c
    trunk/hw/slavio_misc.c
    trunk/loader.c
    trunk/slirp/misc.c
    trunk/slirp/socket.c
    trunk/slirp/tcp_subr.c
    trunk/target-sparc/helper.c
    trunk/target-sparc/op_helper.c
    trunk/target-sparc/translate.c
    trunk/vl.c
    trunk/vnc.c

Modified: trunk/aes.c
===================================================================
--- trunk/aes.c 2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/aes.c 2009-03-16 16:33:01 UTC (rev 6856)
@@ -40,10 +40,6 @@
 typedef uint16_t u16;
 typedef uint8_t u8;
 
-#define MAXKC   (256/32)
-#define MAXKB   (256/8)
-#define MAXNR   14
-
 /* This controls loop-unrolling in aes_core.c */
 #undef FULL_UNROLL
 # define GETU32(pt) (((u32)(pt)[0] << 24) ^ ((u32)(pt)[1] << 16) ^ 
((u32)(pt)[2] <<  8) ^ ((u32)(pt)[3]))

Modified: trunk/console.c
===================================================================
--- trunk/console.c     2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/console.c     2009-03-16 16:33:01 UTC (rev 6856)
@@ -28,7 +28,6 @@
 //#define DEBUG_CONSOLE
 #define DEFAULT_BACKSCROLL 512
 #define MAX_CONSOLES 12
-#define DEFAULT_MONITOR_SIZE "800x600"
 
 #define QEMU_RGBA(r, g, b, a) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))
 #define QEMU_RGB(r, g, b) QEMU_RGBA(r, g, b, 0xff)

Modified: trunk/cpu-exec.c
===================================================================
--- trunk/cpu-exec.c    2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/cpu-exec.c    2009-03-16 16:33:01 UTC (rev 6856)
@@ -18,7 +18,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 USA
  */
 #include "config.h"
-#define CPU_NO_GLOBAL_REGS
 #include "exec.h"
 #include "disas.h"
 #include "tcg.h"

Modified: trunk/exec.c
===================================================================
--- trunk/exec.c        2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/exec.c        2009-03-16 16:33:01 UTC (rev 6856)
@@ -63,9 +63,6 @@
 
 #define SMC_BITMAP_USE_THRESHOLD 10
 
-#define MMAP_AREA_START        0x00000000
-#define MMAP_AREA_END          0xa8000000
-
 #if defined(TARGET_SPARC64)
 #define TARGET_PHYS_ADDR_SPACE_BITS 41
 #elif defined(TARGET_SPARC)

Modified: trunk/hw/cirrus_vga.c
===================================================================
--- trunk/hw/cirrus_vga.c       2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/cirrus_vga.c       2009-03-16 16:33:01 UTC (rev 6856)
@@ -49,8 +49,6 @@
  *
  ***************************************/
 
-#define qemu_MIN(a,b) ((a) < (b) ? (a) : (b))
-
 // ID
 #define CIRRUS_ID_CLGD5422  (0x23<<2)
 #define CIRRUS_ID_CLGD5426  (0x24<<2)
@@ -173,10 +171,6 @@
 #define CIRRUS_MMIO_LINEDRAW_MODE     0x39     // byte
 #define CIRRUS_MMIO_BLTSTATUS         0x40     // byte
 
-// PCI 0x02: device
-#define PCI_DEVICE_CLGD5462           0x00d0
-#define PCI_DEVICE_CLGD5465           0x00d6
-
 // PCI 0x04: command(word), 0x06(word): status
 #define PCI_COMMAND_IOACCESS                0x0001
 #define PCI_COMMAND_MEMACCESS               0x0002

Modified: trunk/hw/dma.c
===================================================================
--- trunk/hw/dma.c      2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/dma.c      2009-03-16 16:33:01 UTC (rev 6856)
@@ -28,11 +28,9 @@
 
 #define dolog(...) fprintf (stderr, "dma: " __VA_ARGS__)
 #ifdef DEBUG_DMA
-#define lwarn(...) fprintf (stderr, "dma: " __VA_ARGS__)
 #define linfo(...) fprintf (stderr, "dma: " __VA_ARGS__)
 #define ldebug(...) fprintf (stderr, "dma: " __VA_ARGS__)
 #else
-#define lwarn(...)
 #define linfo(...)
 #define ldebug(...)
 #endif

Modified: trunk/hw/eepro100.c
===================================================================
--- trunk/hw/eepro100.c 2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/eepro100.c 2009-03-16 16:33:01 UTC (rev 6856)
@@ -47,23 +47,12 @@
 
 /* Common declarations for all PCI devices. */
 
-#define PCI_VENDOR_ID           0x00    /* 16 bits */
 #define PCI_DEVICE_ID           0x02    /* 16 bits */
 #define PCI_COMMAND             0x04    /* 16 bits */
 #define PCI_STATUS              0x06    /* 16 bits */
 
 #define PCI_REVISION_ID         0x08    /* 8 bits  */
-#define PCI_CLASS_CODE          0x0b    /* 8 bits */
-#define PCI_SUBCLASS_CODE       0x0a    /* 8 bits */
-#define PCI_HEADER_TYPE         0x0e    /* 8 bits */
 
-#define PCI_BASE_ADDRESS_0      0x10    /* 32 bits */
-#define PCI_BASE_ADDRESS_1      0x14    /* 32 bits */
-#define PCI_BASE_ADDRESS_2      0x18    /* 32 bits */
-#define PCI_BASE_ADDRESS_3      0x1c    /* 32 bits */
-#define PCI_BASE_ADDRESS_4      0x20    /* 32 bits */
-#define PCI_BASE_ADDRESS_5      0x24    /* 32 bits */
-
 #define PCI_CONFIG_8(offset, value) \
     (pci_conf[offset] = (value))
 #define PCI_CONFIG_16(offset, value) \
@@ -199,12 +188,6 @@
     ru_ready = 4
 } ru_state_t;
 
-#if defined(__BIG_ENDIAN_BITFIELD)
-#define X(a,b) b,a
-#else
-#define X(a,b) a,b
-#endif
-
 typedef struct {
 #if 1
     uint8_t cmd;
@@ -1465,8 +1448,6 @@
     //~ return !eepro100_buffer_full(s);
 }
 
-#define MIN_BUF_SIZE 60
-
 static void nic_receive(void *opaque, const uint8_t * buf, int size)
 {
     /* TODO:

Modified: trunk/hw/openpic.c
===================================================================
--- trunk/hw/openpic.c  2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/openpic.c  2009-03-16 16:33:01 UTC (rev 6856)
@@ -44,7 +44,6 @@
 #else
 #define DPRINTF(fmt, args...) do { } while (0)
 #endif
-#define ERROR(fmr, args...) do { printf("ERROR: " fmr , ##args); } while (0)
 
 #define USE_MPCxxx /* Intel model is broken, for now */
 

Modified: trunk/hw/pckbd.c
===================================================================
--- trunk/hw/pckbd.c    2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/pckbd.c    2009-03-16 16:33:01 UTC (rev 6856)
@@ -109,8 +109,6 @@
 #define MOUSE_STATUS_ENABLED    0x20
 #define MOUSE_STATUS_SCALE21    0x10
 
-#define KBD_QUEUE_SIZE 256
-
 #define KBD_PENDING_KBD         1
 #define KBD_PENDING_AUX         2
 

Modified: trunk/hw/piix_pci.c
===================================================================
--- trunk/hw/piix_pci.c 2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/piix_pci.c 2009-03-16 16:33:01 UTC (rev 6856)
@@ -210,9 +210,6 @@
 static PCIDevice *piix3_dev;
 PCIDevice *piix4_dev;
 
-/* just used for simpler irq handling. */
-#define PCI_IRQ_WORDS   ((PCI_DEVICES_MAX + 31) / 32)
-
 static void piix3_set_irq(qemu_irq *pic, int irq_num, int level)
 {
     int i, pic_irq, pic_level;

Modified: trunk/hw/sd.c
===================================================================
--- trunk/hw/sd.c       2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/sd.c       2009-03-16 16:33:01 UTC (rev 6856)
@@ -242,8 +242,6 @@
 #define SECTOR_SHIFT   5                       /* 16 kilobytes */
 #define WPGROUP_SHIFT  7                       /* 2 megs */
 #define CMULT_SHIFT    9                       /* 512 times HWBLOCK_SIZE */
-#define BLOCK_SIZE     (1 << (HWBLOCK_SHIFT))
-#define SECTOR_SIZE    (1 << (HWBLOCK_SHIFT + SECTOR_SHIFT))
 #define WPGROUP_SIZE   (1 << (HWBLOCK_SHIFT + SECTOR_SHIFT + WPGROUP_SHIFT))
 
 static const uint8_t sd_csd_rw_mask[16] = {

Modified: trunk/hw/slavio_intctl.c
===================================================================
--- trunk/hw/slavio_intctl.c    2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/slavio_intctl.c    2009-03-16 16:33:01 UTC (rev 6856)
@@ -77,7 +77,6 @@
 #define MASTER_IRQ_MASK ~0x0fa2007f
 #define MASTER_DISABLE 0x80000000
 #define CPU_SOFTIRQ_MASK 0xfffe0000
-#define CPU_HARDIRQ_MASK 0x0000fffe
 #define CPU_IRQ_INT15_IN 0x0004000
 #define CPU_IRQ_INT15_MASK 0x80000000
 

Modified: trunk/hw/slavio_misc.c
===================================================================
--- trunk/hw/slavio_misc.c      2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/hw/slavio_misc.c      2009-03-16 16:33:01 UTC (rev 6856)
@@ -56,10 +56,7 @@
 
 #define MISC_SIZE 1
 #define SYSCTRL_SIZE 4
-#define LED_MAXADDR 1
-#define LED_SIZE (LED_MAXADDR + 1)
 
-#define MISC_MASK 0x0fff0000
 #define MISC_LEDS 0x01600000
 #define MISC_CFG  0x01800000
 #define MISC_DIAG 0x01a00000

Modified: trunk/loader.c
===================================================================
--- trunk/loader.c      2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/loader.c      2009-03-16 16:33:01 UTC (rev 6856)
@@ -199,7 +199,6 @@
     (N_MAGIC(x) == ZMAGIC ? _N_HDROFF((x)) + sizeof (struct exec) :    \
      (N_MAGIC(x) == QMAGIC ? 0 : sizeof (struct exec)))
 #define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? TARGET_PAGE_SIZE : 0)
-#define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text)
 #define _N_SEGMENT_ROUND(x) (((x) + TARGET_PAGE_SIZE - 1) & ~(TARGET_PAGE_SIZE 
- 1))
 
 #define _N_TXTENDADDR(x) (N_TXTADDR(x)+(x).a_text)

Modified: trunk/slirp/misc.c
===================================================================
--- trunk/slirp/misc.c  2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/slirp/misc.c  2009-03-16 16:33:01 UTC (rev 6856)
@@ -5,7 +5,6 @@
  * terms and conditions of the copyright.
  */
 
-#define WANT_SYS_IOCTL_H
 #include <slirp.h>
 
 u_int curtime, time_fasttimo, last_slowtimo;

Modified: trunk/slirp/socket.c
===================================================================
--- trunk/slirp/socket.c        2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/slirp/socket.c        2009-03-16 16:33:01 UTC (rev 6856)
@@ -6,7 +6,6 @@
  */
 
 #include "qemu-common.h"
-#define WANT_SYS_IOCTL_H
 #include <slirp.h>
 #include "ip_icmp.h"
 #ifdef __sun__

Modified: trunk/slirp/tcp_subr.c
===================================================================
--- trunk/slirp/tcp_subr.c      2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/slirp/tcp_subr.c      2009-03-16 16:33:01 UTC (rev 6856)
@@ -38,7 +38,6 @@
  * terms and conditions of the copyright.
  */
 
-#define WANT_SYS_IOCTL_H
 #include <slirp.h>
 
 /* patchable/settable parameters for tcp */

Modified: trunk/target-sparc/helper.c
===================================================================
--- trunk/target-sparc/helper.c 2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/target-sparc/helper.c 2009-03-16 16:33:01 UTC (rev 6856)
@@ -1366,8 +1366,6 @@
                    "fpu_version mmu_version nwindows\n");
 }
 
-#define GET_FLAG(a,b) ((env->psr & a)?b:'-')
-
 void cpu_dump_state(CPUState *env, FILE *f,
                     int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
                     int flags)
@@ -1411,6 +1409,9 @@
                 env->cansave, env->canrestore, env->otherwin, env->wstate,
                 env->cleanwin, env->nwindows - 1 - env->cwp);
 #else
+
+#define GET_FLAG(a,b) ((env->psr & a)?b:'-')
+
     cpu_fprintf(f, "psr: 0x%08x -> %c%c%c%c %c%c%c wim: 0x%08x\n",
                 GET_PSR(env), GET_FLAG(PSR_ZERO, 'Z'), GET_FLAG(PSR_OVF, 'V'),
                 GET_FLAG(PSR_NEG, 'N'), GET_FLAG(PSR_CARRY, 'C'),

Modified: trunk/target-sparc/op_helper.c
===================================================================
--- trunk/target-sparc/op_helper.c      2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/target-sparc/op_helper.c      2009-03-16 16:33:01 UTC (rev 6856)
@@ -29,8 +29,6 @@
 #ifdef DEBUG_ASI
 #define DPRINTF_ASI(fmt, args...) \
 do { printf("ASI: " fmt , ##args); } while (0)
-#else
-#define DPRINTF_ASI(fmt, args...) do {} while (0)
 #endif
 
 #ifdef TARGET_SPARC64

Modified: trunk/target-sparc/translate.c
===================================================================
--- trunk/target-sparc/translate.c      2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/target-sparc/translate.c      2009-03-16 16:33:01 UTC (rev 6856)
@@ -92,11 +92,9 @@
 #define GET_FIELD_SPs(x,a,b) sign_extend (GET_FIELD_SP(x,a,b), ((b) - (a) + 1))
 
 #ifdef TARGET_SPARC64
-#define FFPREG(r) (r)
 #define DFPREG(r) (((r & 1) << 5) | (r & 0x1e))
 #define QFPREG(r) (((r & 1) << 5) | (r & 0x1c))
 #else
-#define FFPREG(r) (r)
 #define DFPREG(r) (r & 0x1e)
 #define QFPREG(r) (r & 0x1c)
 #endif
@@ -2846,24 +2844,6 @@
 #undef FMOVSCC
 #undef FMOVDCC
 #undef FMOVQCC
-#define FMOVCC(size_FDQ, icc)                                           \
-                    {                                                   \
-                        TCGv r_cond;                                    \
-                        int l1;                                         \
-                                                                        \
-                        l1 = gen_new_label();                           \
-                        r_cond = tcg_temp_new();             \
-                        cond = GET_FIELD_SP(insn, 14, 17);              \
-                        gen_cond(r_cond, icc, cond);                    \
-                        tcg_gen_brcondi_tl(TCG_COND_EQ, r_cond,         \
-                                           0, l1);                      \
-                        glue(glue(gen_op_load_fpr_, size_FDQ), T0)      \
-                            (glue(size_FDQ, FPREG(rs2)));               \
-                        glue(glue(gen_op_store_, size_FDQ), T0_fpr)     \
-                            (glue(size_FDQ, FPREG(rd)));                \
-                        gen_set_label(l1);                              \
-                        tcg_temp_free(r_cond);                          \
-                    }
 #define FMOVSCC(icc)                                                    \
                     {                                                   \
                         TCGv r_cond;                                    \

Modified: trunk/vl.c
===================================================================
--- trunk/vl.c  2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/vl.c  2009-03-16 16:33:01 UTC (rev 6856)
@@ -2914,8 +2914,6 @@
 /***********************************************************/
 /* I/O handling */
 
-#define MAX_IO_HANDLERS 64
-
 typedef struct IOHandlerRecord {
     int fd;
     IOCanRWHandler *fd_read_poll;

Modified: trunk/vnc.c
===================================================================
--- trunk/vnc.c 2009-03-13 21:16:24 UTC (rev 6855)
+++ trunk/vnc.c 2009-03-16 16:33:01 UTC (rev 6856)
@@ -149,8 +149,6 @@
     return "unknown";
 }
 
-#define VNC_SOCKET_FORMAT_PRETTY "local %s:%s"
-
 static void do_info_vnc_client(Monitor *mon, VncState *client)
 {
     char *clientAddr =





reply via email to

[Prev in Thread] Current Thread [Next in Thread]