remote_gdb.cc (8782:10c9297e14d5) 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

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

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

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

129 * "Stub" to allow remote cpu to debug over a serial line using gdb.
130 */
131
132#include <sys/signal.h>
133#include <unistd.h>
134
135#include <string>
136
137#include "arch/arm/decoder.hh"
137#include "arch/arm/pagetable.hh"
138#include "arch/arm/registers.hh"
139#include "arch/arm/remote_gdb.hh"
140#include "arch/arm/utility.hh"
141#include "arch/arm/vtophys.hh"
142#include "base/intmath.hh"
143#include "base/remote_gdb.hh"
144#include "base/socket.hh"
145#include "base/trace.hh"
138#include "arch/arm/pagetable.hh"
139#include "arch/arm/registers.hh"
140#include "arch/arm/remote_gdb.hh"
141#include "arch/arm/utility.hh"
142#include "arch/arm/vtophys.hh"
143#include "base/intmath.hh"
144#include "base/remote_gdb.hh"
145#include "base/socket.hh"
146#include "base/trace.hh"
146#include "cpu/decode.hh"
147#include "cpu/static_inst.hh"
148#include "cpu/thread_context.hh"
149#include "cpu/thread_state.hh"
150#include "debug/GDBAcc.hh"
151#include "debug/GDBMisc.hh"
152#include "mem/page_table.hh"
153#include "mem/physical.hh"
154#include "mem/port.hh"

--- 191 unchanged lines hidden ---
147#include "cpu/static_inst.hh"
148#include "cpu/thread_context.hh"
149#include "cpu/thread_state.hh"
150#include "debug/GDBAcc.hh"
151#include "debug/GDBMisc.hh"
152#include "mem/page_table.hh"
153#include "mem/physical.hh"
154#include "mem/port.hh"

--- 191 unchanged lines hidden ---