debug.cc (11164:b6c6c55b59ac) debug.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2003-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) 2003-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 "sim/debug.hh"
33
32#include <string>
33#include <vector>
34
35#include "base/debug.hh"
34#include <string>
35#include <vector>
36
37#include "base/debug.hh"
36#include "sim/debug.hh"
38#include "cpu/pc_event.hh"
37#include "sim/eventq_impl.hh"
38#include "sim/global_event.hh"
39#include "sim/sim_events.hh"
40#include "sim/sim_exit.hh"
39#include "sim/eventq_impl.hh"
40#include "sim/global_event.hh"
41#include "sim/sim_events.hh"
42#include "sim/sim_exit.hh"
41#include "cpu/pc_event.hh"
42#include "sim/system.hh"
43
44using namespace std;
45
46//
47// Debug event: place a breakpoint on the process function and
48// schedule the event to break at a particular cycle
49//

--- 91 unchanged lines hidden ---
43#include "sim/system.hh"
44
45using namespace std;
46
47//
48// Debug event: place a breakpoint on the process function and
49// schedule the event to break at a particular cycle
50//

--- 91 unchanged lines hidden ---