tagged.cc (5337:f81512eb8bdf) tagged.cc (5338:e75d02a09806)
1/*
2 * Copyright (c) 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;

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

29 */
30
31/**
32 * @file
33 * Describes a tagged prefetcher based on template policies.
34 */
35
36#include "arch/isa_traits.hh"
1/*
2 * Copyright (c) 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;

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

29 */
30
31/**
32 * @file
33 * Describes a tagged prefetcher based on template policies.
34 */
35
36#include "arch/isa_traits.hh"
37#include "mem/cache/prefetch/tagged_prefetcher.hh"
37#include "mem/cache/prefetch/tagged.hh"
38
39TaggedPrefetcher::TaggedPrefetcher(const BaseCacheParams *p)
40 : BasePrefetcher(p),
41 latency(p->prefetch_latency), degree(p->prefetch_degree)
42{
43}
44
45void

--- 25 unchanged lines hidden ---
38
39TaggedPrefetcher::TaggedPrefetcher(const BaseCacheParams *p)
40 : BasePrefetcher(p),
41 latency(p->prefetch_latency), degree(p->prefetch_degree)
42{
43}
44
45void

--- 25 unchanged lines hidden ---