Sequencer.cc (11519:bf08fb8ccf4b) Sequencer.cc (11523:81332eb10367)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

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

716Sequencer::evictionCallback(Addr address)
717{
718 ruby_eviction_callback(address);
719}
720
721void
722Sequencer::regStats()
723{
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
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;

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

716Sequencer::evictionCallback(Addr address)
717{
718 ruby_eviction_callback(address);
719}
720
721void
722Sequencer::regStats()
723{
724 RubyPort::regStats();
725
724 m_store_waiting_on_load
725 .name(name() + ".store_waiting_on_load")
726 .desc("Number of times a store aliased with a pending load")
727 .flags(Stats::nozero);
728 m_store_waiting_on_store
729 .name(name() + ".store_waiting_on_store")
730 .desc("Number of times a store aliased with a pending store")
731 .flags(Stats::nozero);

--- 61 unchanged lines hidden ---
726 m_store_waiting_on_load
727 .name(name() + ".store_waiting_on_load")
728 .desc("Number of times a store aliased with a pending load")
729 .flags(Stats::nozero);
730 m_store_waiting_on_store
731 .name(name() + ".store_waiting_on_store")
732 .desc("Number of times a store aliased with a pending store")
733 .flags(Stats::nozero);

--- 61 unchanged lines hidden ---