base.cc (5337:f81512eb8bdf) base.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 * Hardware Prefetcher Definition.
34 */
35
36#include "base/trace.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 * Hardware Prefetcher Definition.
34 */
35
36#include "base/trace.hh"
37#include "mem/cache/base_cache.hh"
38#include "mem/cache/prefetch/base_prefetcher.hh"
37#include "mem/cache/base.hh"
38#include "mem/cache/prefetch/base.hh"
39#include "mem/request.hh"
40#include <list>
41
42BasePrefetcher::BasePrefetcher(const BaseCacheParams *p)
43 : size(p->prefetcher_size), pageStop(!p->prefetch_past_page),
44 serialSquash(p->prefetch_serial_squash),
45 cacheCheckPush(p->prefetch_cache_check_push),
46 only_data(p->prefetch_data_accesses_only)

--- 223 unchanged lines hidden ---
39#include "mem/request.hh"
40#include <list>
41
42BasePrefetcher::BasePrefetcher(const BaseCacheParams *p)
43 : size(p->prefetcher_size), pageStop(!p->prefetch_past_page),
44 serialSquash(p->prefetch_serial_squash),
45 cacheCheckPush(p->prefetch_cache_check_push),
46 only_data(p->prefetch_data_accesses_only)

--- 223 unchanged lines hidden ---