pc_event.cc (9649:c717bd5e0a1d) pc_event.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2002-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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 * Steve Reinhardt
30 */
31
1/*
2 * Copyright (c) 2002-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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Nathan Binkert
29 * Steve Reinhardt
30 */
31
32#include "cpu/pc_event.hh"
33
32#include <algorithm>
33#include <string>
34#include <utility>
35
36#include "base/debug.hh"
37#include "base/trace.hh"
38#include "cpu/base.hh"
34#include <algorithm>
35#include <string>
36#include <utility>
37
38#include "base/debug.hh"
39#include "base/trace.hh"
40#include "cpu/base.hh"
39#include "cpu/pc_event.hh"
40#include "cpu/thread_context.hh"
41#include "debug/PCEvent.hh"
42#include "sim/core.hh"
43#include "sim/system.hh"
44
45using namespace std;
46
47PCEventQueue::PCEventQueue()

--- 125 unchanged lines hidden ---
41#include "cpu/thread_context.hh"
42#include "debug/PCEvent.hh"
43#include "sim/core.hh"
44#include "sim/system.hh"
45
46using namespace std;
47
48PCEventQueue::PCEventQueue()

--- 125 unchanged lines hidden ---