RubySlicc_ComponentMapping.hh revision 6468:26abdfe2d980
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/*
31 * $Id$
32 */
33
34#ifndef COMPONENTMAPPINGFNS_H
35#define COMPONENTMAPPINGFNS_H
36
37#include "mem/ruby/common/Global.hh"
38#include "mem/ruby/system/NodeID.hh"
39#include "mem/ruby/system/MachineID.hh"
40#include "mem/ruby/common/Address.hh"
41#include "mem/ruby/common/Set.hh"
42#include "mem/ruby/common/NetDest.hh"
43#include "mem/protocol/GenericMachineType.hh"
44#include "mem/ruby/system/DirectoryMemory.hh"
45
46#ifdef MACHINETYPE_L1Cache
47#define MACHINETYPE_L1CACHE_ENUM MachineType_L1Cache
48#else
49#define MACHINETYPE_L1CACHE_ENUM MachineType_NUM
50#endif
51
52#ifdef MACHINETYPE_L2Cache
53#define MACHINETYPE_L2CACHE_ENUM MachineType_L2Cache
54#else
55#define MACHINETYPE_L2CACHE_ENUM MachineType_NUM
56#endif
57
58#ifdef MACHINETYPE_L3Cache
59#define MACHINETYPE_L3CACHE_ENUM MachineType_L3Cache
60#else
61#define MACHINETYPE_L3CACHE_ENUM MachineType_NUM
62#endif
63
64// used to determine the home directory
65// returns a value between 0 and total_directories_within_the_system
66inline
67NodeID map_Address_to_DirectoryNode(const Address& addr)
68{
69  return DirectoryMemory::mapAddressToDirectoryVersion(addr);
70}
71
72// used to determine the home directory
73// returns a value between 0 and total_directories_within_the_system
74inline
75MachineID map_Address_to_Directory(const Address &addr)
76{
77  MachineID mach = {MachineType_Directory, map_Address_to_DirectoryNode(addr)};
78  return mach;
79}
80
81inline
82MachineID map_Address_to_DMA(const Address & addr)
83{
84  MachineID dma = {MachineType_DMA, 0};
85  return dma;
86}
87
88inline
89MachineID mapAddressToRange(const Address & addr, MachineType type, int low_bit, int num_bits)
90{
91  MachineID mach = {type, 0};
92  if (num_bits == 0)
93    return mach;
94  mach.num = addr.bitSelect(low_bit, low_bit+num_bits-1);
95  return mach;
96}
97
98extern inline NodeID machineIDToNodeID(MachineID machID)
99{
100  return machID.num;
101}
102
103extern inline MachineType machineIDToMachineType(MachineID machID)
104{
105  return machID.type;
106}
107
108extern inline NodeID L1CacheMachIDToProcessorNum(MachineID machID)
109{
110  assert(machID.type == MachineType_L1Cache);
111  return machID.num;
112}
113
114extern inline MachineID getL1MachineID(NodeID L1RubyNode)
115{
116  MachineID mach = {MACHINETYPE_L1CACHE_ENUM, L1RubyNode};
117  return mach;
118}
119
120extern inline GenericMachineType ConvertMachToGenericMach(MachineType machType) {
121  if (machType == MACHINETYPE_L1CACHE_ENUM) {
122    return GenericMachineType_L1Cache;
123  } else if (machType == MACHINETYPE_L2CACHE_ENUM) {
124    return GenericMachineType_L2Cache;
125  } else if (machType == MACHINETYPE_L3CACHE_ENUM) {
126    return GenericMachineType_L3Cache;
127  } else if (machType == MachineType_Directory) {
128    return GenericMachineType_Directory;
129  } else {
130    ERROR_MSG("cannot convert to a GenericMachineType");
131    return GenericMachineType_NULL;
132  }
133}
134
135
136#endif  // COMPONENTMAPPINGFNS_H
137