Sequencer.cc (11422:4f749e00b667) Sequencer.cc (11430:bd1c6789c33f)
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;

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

683Sequencer::evictionCallback(Addr address)
684{
685 ruby_eviction_callback(address);
686}
687
688void
689Sequencer::regStats()
690{
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;

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

683Sequencer::evictionCallback(Addr address)
684{
685 ruby_eviction_callback(address);
686}
687
688void
689Sequencer::regStats()
690{
691 RubyPort::regStats();
692
693 m_store_waiting_on_load
694 .name(name() + ".store_waiting_on_load")
695 .desc("Number of times a store aliased with a pending load")
696 .flags(Stats::nozero);
697 m_store_waiting_on_store
698 .name(name() + ".store_waiting_on_store")
699 .desc("Number of times a store aliased with a pending store")
700 .flags(Stats::nozero);

--- 61 unchanged lines hidden ---
691 m_store_waiting_on_load
692 .name(name() + ".store_waiting_on_load")
693 .desc("Number of times a store aliased with a pending load")
694 .flags(Stats::nozero);
695 m_store_waiting_on_store
696 .name(name() + ".store_waiting_on_store")
697 .desc("Number of times a store aliased with a pending store")
698 .flags(Stats::nozero);

--- 61 unchanged lines hidden ---