remote_gdb.cc (8775:1e3ca5d77b53) remote_gdb.cc (9020:14321ce30881)
1/*
2 * Copyright (c) 2010 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

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

130 * "Stub" to allow remote cpu to debug over a serial line using gdb.
131 */
132
133#include <sys/signal.h>
134#include <unistd.h>
135
136#include <string>
137
1/*
2 * Copyright (c) 2010 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

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

130 * "Stub" to allow remote cpu to debug over a serial line using gdb.
131 */
132
133#include <sys/signal.h>
134#include <unistd.h>
135
136#include <string>
137
138#include "arch/mips/decoder.hh"
138#include "arch/mips/remote_gdb.hh"
139#include "arch/mips/vtophys.hh"
139#include "arch/mips/remote_gdb.hh"
140#include "arch/mips/vtophys.hh"
140#include "cpu/decode.hh"
141#include "cpu/thread_state.hh"
142#include "debug/GDBAcc.hh"
143#include "debug/GDBMisc.hh"
144#include "mem/page_table.hh"
145#include "sim/full_system.hh"
146
147using namespace std;
148using namespace MipsISA;

--- 151 unchanged lines hidden ---
141#include "cpu/thread_state.hh"
142#include "debug/GDBAcc.hh"
143#include "debug/GDBMisc.hh"
144#include "mem/page_table.hh"
145#include "sim/full_system.hh"
146
147using namespace std;
148using namespace MipsISA;

--- 151 unchanged lines hidden ---