cache.cc (4626:ed8aacb19c03) cache.cc (4672:cc97e595e07d)
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;

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

53#if defined(USE_CACHE_SPLIT)
54#include "mem/cache/tags/split.hh"
55#endif
56
57#if defined(USE_CACHE_SPLIT_LIFO)
58#include "mem/cache/tags/split_lifo.hh"
59#endif
60
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;

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

53#if defined(USE_CACHE_SPLIT)
54#include "mem/cache/tags/split.hh"
55#endif
56
57#if defined(USE_CACHE_SPLIT_LIFO)
58#include "mem/cache/tags/split_lifo.hh"
59#endif
60
61#include "mem/cache/coherence/simple_coherence.hh"
62
63#include "mem/cache/cache_impl.hh"
64
65// Template Instantiations
66#ifndef DOXYGEN_SHOULD_SKIP_THIS
67
68
69#if defined(USE_CACHE_FALRU)
61#include "mem/cache/cache_impl.hh"
62
63// Template Instantiations
64#ifndef DOXYGEN_SHOULD_SKIP_THIS
65
66
67#if defined(USE_CACHE_FALRU)
70template class Cache<FALRU, SimpleCoherence>;
68template class Cache;
71#endif
72
73#if defined(USE_CACHE_IIC)
69#endif
70
71#if defined(USE_CACHE_IIC)
74template class Cache<IIC, SimpleCoherence>;
72template class Cache;
75#endif
76
77#if defined(USE_CACHE_LRU)
73#endif
74
75#if defined(USE_CACHE_LRU)
78template class Cache<LRU, SimpleCoherence>;
76template class Cache;
79#endif
80
81#if defined(USE_CACHE_SPLIT)
77#endif
78
79#if defined(USE_CACHE_SPLIT)
82template class Cache<Split, SimpleCoherence>;
80template class Cache;
83#endif
84
85#if defined(USE_CACHE_SPLIT_LIFO)
81#endif
82
83#if defined(USE_CACHE_SPLIT_LIFO)
86template class Cache<SplitLIFO, SimpleCoherence>;
84template class Cache;
87#endif
88
89#endif //DOXYGEN_SHOULD_SKIP_THIS
85#endif
86
87#endif //DOXYGEN_SHOULD_SKIP_THIS