cache.cc (3712:c8a8938402cd) cache.cc (3719:23ca579a363a)
1/*
2 * Copyright (c) 2004-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;

--- 59 unchanged lines hidden (view full) ---

68
69#include "mem/cache/cache_impl.hh"
70
71// Template Instantiations
72#ifndef DOXYGEN_SHOULD_SKIP_THIS
73
74
75#if defined(USE_CACHE_FALRU)
1/*
2 * Copyright (c) 2004-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;

--- 59 unchanged lines hidden (view full) ---

68
69#include "mem/cache/cache_impl.hh"
70
71// Template Instantiations
72#ifndef DOXYGEN_SHOULD_SKIP_THIS
73
74
75#if defined(USE_CACHE_FALRU)
76template class Cache<CacheTags<FALRU>, BlockingBuffer, SimpleCoherence>;
77template class Cache<CacheTags<FALRU>, BlockingBuffer, UniCoherence>;
78template class Cache<CacheTags<FALRU>, MissQueue, SimpleCoherence>;
79template class Cache<CacheTags<FALRU>, MissQueue, UniCoherence>;
76template class Cache, SimpleCoherence>;
77template class Cache, UniCoherence>;
80#endif
81
82#if defined(USE_CACHE_IIC)
78#endif
79
80#if defined(USE_CACHE_IIC)
83template class Cache<CacheTags<IIC>, BlockingBuffer, SimpleCoherence>;
84template class Cache<CacheTags<IIC>, BlockingBuffer, UniCoherence>;
85template class Cache<CacheTags<IIC>, MissQueue, SimpleCoherence>;
86template class Cache<CacheTags<IIC>, MissQueue, UniCoherence>;
81template class Cache, SimpleCoherence>;
82template class Cache, UniCoherence>;
87#endif
88
89#if defined(USE_CACHE_LRU)
83#endif
84
85#if defined(USE_CACHE_LRU)
90template class Cache<CacheTags<LRU>, BlockingBuffer, SimpleCoherence>;
91template class Cache<CacheTags<LRU>, BlockingBuffer, UniCoherence>;
92template class Cache<CacheTags<LRU>, MissQueue, SimpleCoherence>;
93template class Cache<CacheTags<LRU>, MissQueue, UniCoherence>;
86template class Cache, SimpleCoherence>;
87template class Cache, UniCoherence>;
94#endif
95
96#if defined(USE_CACHE_SPLIT)
88#endif
89
90#if defined(USE_CACHE_SPLIT)
97template class Cache<CacheTags<Split>, BlockingBuffer, SimpleCoherence>;
98template class Cache<CacheTags<Split>, BlockingBuffer, UniCoherence>;
99template class Cache<CacheTags<Split>, MissQueue, SimpleCoherence>;
100template class Cache<CacheTags<Split>, MissQueue, UniCoherence>;
91template class Cache, SimpleCoherence>;
92template class Cache, UniCoherence>;
101#endif
102
103#if defined(USE_CACHE_SPLIT_LIFO)
93#endif
94
95#if defined(USE_CACHE_SPLIT_LIFO)
104template class Cache<CacheTags<SplitLIFO>, BlockingBuffer, SimpleCoherence>;
105template class Cache<CacheTags<SplitLIFO>, BlockingBuffer, UniCoherence>;
106template class Cache<CacheTags<SplitLIFO>, MissQueue, SimpleCoherence>;
107template class Cache<CacheTags<SplitLIFO>, MissQueue, UniCoherence>;
96template class Cache, SimpleCoherence>;
97template class Cache, UniCoherence>;
108#endif
109
110#endif //DOXYGEN_SHOULD_SKIP_THIS
98#endif
99
100#endif //DOXYGEN_SHOULD_SKIP_THIS