snoop_filter.cc (11430:bd1c6789c33f) snoop_filter.cc (11523:81332eb10367)
1/*
2 * Copyright (c) 2013-2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

346 assert(sf_item.holder | sf_item.requested);
347 DPRINTF(SnoopFilter, "%s: new SF value %x.%x\n",
348 __func__, sf_item.requested, sf_item.holder);
349}
350
351void
352SnoopFilter::regStats()
353{
1/*
2 * Copyright (c) 2013-2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

346 assert(sf_item.holder | sf_item.requested);
347 DPRINTF(SnoopFilter, "%s: new SF value %x.%x\n",
348 __func__, sf_item.requested, sf_item.holder);
349}
350
351void
352SnoopFilter::regStats()
353{
354 SimObject::regStats();
355
354 totRequests
355 .name(name() + ".tot_requests")
356 .desc("Total number of requests made to the snoop filter.");
357
358 hitSingleRequests
359 .name(name() + ".hit_single_requests")
360 .desc("Number of requests hitting in the snoop filter with a single "\
361 "holder of the requested data.");

--- 26 unchanged lines hidden ---
356 totRequests
357 .name(name() + ".tot_requests")
358 .desc("Total number of requests made to the snoop filter.");
359
360 hitSingleRequests
361 .name(name() + ".hit_single_requests")
362 .desc("Number of requests hitting in the snoop filter with a single "\
363 "holder of the requested data.");

--- 26 unchanged lines hidden ---