Move away from using the statusChange function on snoops. Clean up snooping code...
[gem5.git] / src / unittest / offtest.cc
1 /*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 */
30
31 #include <sys/types.h>
32 #include <stddef.h>
33 #include <stdio.h>
34 #include "dev/pcireg.h"
35
36 int
37 main()
38 {
39 #define POFFSET(x) \
40 printf("offsetof(PCIConfig, hdr."#x") = %d\n", \
41 offsetof(PCIConfig, hdr.x))
42
43 POFFSET(vendor);
44 POFFSET(device);
45 POFFSET(command);
46 POFFSET(status);
47 POFFSET(revision);
48 POFFSET(progIF);
49 POFFSET(subClassCode);
50 POFFSET(classCode);
51 POFFSET(cacheLineSize);
52 POFFSET(latencyTimer);
53 POFFSET(headerType);
54 POFFSET(bist);
55 POFFSET(pci0.baseAddr0);
56 POFFSET(pci0.baseAddr1);
57 POFFSET(pci0.baseAddr2);
58 POFFSET(pci0.baseAddr3);
59 POFFSET(pci0.baseAddr4);
60 POFFSET(pci0.baseAddr5);
61 POFFSET(pci0.cardbusCIS);
62 POFFSET(pci0.subsystemVendorID);
63 POFFSET(pci0.expansionROM);
64 POFFSET(pci0.reserved0);
65 POFFSET(pci0.reserved1);
66 POFFSET(pci0.interruptLine);
67 POFFSET(pci0.interruptPin);
68 POFFSET(pci0.minimumGrant);
69 POFFSET(pci0.minimumLatency);
70
71 return 0;
72 }