Deleted Added
sdiff udiff text old ( 4626:ed8aacb19c03 ) new ( 4672:cc97e595e07d )
full compact
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)
70template class Cache<FALRU, SimpleCoherence>;
71#endif
72
73#if defined(USE_CACHE_IIC)
74template class Cache<IIC, SimpleCoherence>;
75#endif
76
77#if defined(USE_CACHE_LRU)
78template class Cache<LRU, SimpleCoherence>;
79#endif
80
81#if defined(USE_CACHE_SPLIT)
82template class Cache<Split, SimpleCoherence>;
83#endif
84
85#if defined(USE_CACHE_SPLIT_LIFO)
86template class Cache<SplitLIFO, SimpleCoherence>;
87#endif
88
89#endif //DOXYGEN_SHOULD_SKIP_THIS