Changes to integer types broke this... Oops.
[gem5.git] / test / 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
29 #include <sys/types.h>
30 #include <stddef.h>
31 #include <stdio.h>
32 #include "dev/pcireg.h"
33
34 int
35 main()
36 {
37 #define POFFSET(x) \
38 printf("offsetof(PCIConfig, hdr."#x") = %d\n", \
39 offsetof(PCIConfig, hdr.x))
40
41 POFFSET(vendor);
42 POFFSET(device);
43 POFFSET(command);
44 POFFSET(status);
45 POFFSET(revision);
46 POFFSET(progIF);
47 POFFSET(subClassCode);
48 POFFSET(classCode);
49 POFFSET(cacheLineSize);
50 POFFSET(latencyTimer);
51 POFFSET(headerType);
52 POFFSET(bist);
53 POFFSET(pci0.baseAddr0);
54 POFFSET(pci0.baseAddr1);
55 POFFSET(pci0.baseAddr2);
56 POFFSET(pci0.baseAddr3);
57 POFFSET(pci0.baseAddr4);
58 POFFSET(pci0.baseAddr5);
59 POFFSET(pci0.cardbusCIS);
60 POFFSET(pci0.subsystemVendorID);
61 POFFSET(pci0.expansionROM);
62 POFFSET(pci0.reserved0);
63 POFFSET(pci0.reserved1);
64 POFFSET(pci0.interruptLine);
65 POFFSET(pci0.interruptPin);
66 POFFSET(pci0.minimumGrant);
67 POFFSET(pci0.minimumLatency);
68
69 return 0;
70 }