blob: 5ce77857221d82df161320e5183b88c74bb25613 [file] [log] [blame]
Steve Raasch92638f92003-10-07 10:41:54 -04001/*
Steve Reinhardtad8b9632005-06-05 05:16:00 -04002 * Copyright (c) 2003-2005 The Regents of The University of Michigan
Steve Raasch92638f92003-10-07 10:41:54 -04003 * 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.
Ali Saidicb0cf2d2006-05-31 19:26:56 -040027 *
28 * Authors: Nathan Binkert
Steve Raasch92638f92003-10-07 10:41:54 -040029 */
30
31/**
32 * @file
Nathan Binkerteef3a2e2009-05-17 14:34:50 -070033 * Defines global host-dependent types:
Steve Raasch92638f92003-10-07 10:41:54 -040034 * Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
35 */
36
Nathan Binkerteef3a2e2009-05-17 14:34:50 -070037#ifndef __BASE_TYPES_HH__
38#define __BASE_TYPES_HH__
Steve Raasch92638f92003-10-07 10:41:54 -040039
40#include <inttypes.h>
41
42/** uint64_t constant */
Ali Saidi3a3e3562008-09-10 14:26:15 -040043#define ULL(N) ((uint64_t)N##ULL)
Steve Raasch92638f92003-10-07 10:41:54 -040044/** int64_t constant */
Ali Saidi3a3e3562008-09-10 14:26:15 -040045#define LL(N) ((int64_t)N##LL)
Steve Raasch92638f92003-10-07 10:41:54 -040046
47/** Statistics counter type. Not much excuse for not using a 64-bit
48 * integer here, but if you're desperate and only run short
49 * simulations you could make this 32 bits.
50 */
51typedef int64_t Counter;
52
53/**
54 * Clock cycle count type.
55 * @note using an unsigned breaks the cache.
56 */
57typedef int64_t Tick;
Nathan Binkert2c5fe6f2009-11-04 16:57:01 -080058typedef uint64_t UTick;
Steve Raasch92638f92003-10-07 10:41:54 -040059
Nathan Binkert0b835632008-10-09 04:58:23 -070060const Tick MaxTick = LL(0x7fffffffffffffff);
Steve Reinhardt29e34a72006-06-09 23:01:31 -040061
Gabe Black3f7979c2006-02-21 03:38:21 -050062/**
63 * Address type
64 * This will probably be moved somewhere else in the near future.
65 * This should be at least as big as the biggest address width in use
66 * in the system, which will probably be 64 bits.
67 */
68typedef uint64_t Addr;
69
Gabe Black6f4bd2c2010-10-31 00:07:20 -070070typedef uint16_t MicroPC;
71
72static const MicroPC MicroPCRomBit = 1 << (sizeof(MicroPC) * 8 - 1);
73
74static inline MicroPC
75romMicroPC(MicroPC upc)
76{
77 return upc | MicroPCRomBit;
78}
79
80static inline MicroPC
81normalMicroPC(MicroPC upc)
82{
83 return upc & ~MicroPCRomBit;
84}
85
86static inline bool
87isRomMicroPC(MicroPC upc)
88{
89 return MicroPCRomBit & upc;
90}
91
Gabe Blacke3651fd2006-03-10 18:26:12 -050092const Addr MaxAddr = (Addr)-1;
93
Nathan Binkert47877cf2009-05-26 09:23:13 -070094/**
95 * Thread index/ID type
96 */
97typedef int16_t ThreadID;
98const ThreadID InvalidThreadID = (ThreadID)-1;
99
Gabe Black6833ca72010-09-13 19:26:03 -0700100class FaultBase;
101template <class T> class RefCountingPtr;
102typedef RefCountingPtr<FaultBase> Fault;
103
Nathan Binkerteef3a2e2009-05-17 14:34:50 -0700104#endif // __BASE_TYPES_HH__