remote_gdb.cc (11274:d9a0136ab8cc) remote_gdb.cc (11793:ef606668d247)
1/*
2 * Copyright 2015 LabWare
3 * Copyright 2014 Google, Inc.
4 * Copyright (c) 2007 The Hewlett-Packard Development Company
5 * All rights reserved.
6 *
7 * The license below extends only to copyright in the software and shall
8 * not be construed as granting a license to any other intellectual

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

35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 *
39 * Authors: Gabe Black
40 * Boris Shingarov
41 */
42
1/*
2 * Copyright 2015 LabWare
3 * Copyright 2014 Google, Inc.
4 * Copyright (c) 2007 The Hewlett-Packard Development Company
5 * All rights reserved.
6 *
7 * The license below extends only to copyright in the software and shall
8 * not be construed as granting a license to any other intellectual

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

35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 *
39 * Authors: Gabe Black
40 * Boris Shingarov
41 */
42
43#include "arch/x86/remote_gdb.hh"
44
43#include <sys/signal.h>
44#include <unistd.h>
45
46#include <string>
47
45#include <sys/signal.h>
46#include <unistd.h>
47
48#include <string>
49
48#include "arch/x86/regs/int.hh"
49#include "arch/x86/regs/misc.hh"
50#include "arch/vtophys.hh"
50#include "arch/x86/pagetable_walker.hh"
51#include "arch/x86/process.hh"
51#include "arch/x86/pagetable_walker.hh"
52#include "arch/x86/process.hh"
52#include "arch/x86/remote_gdb.hh"
53#include "arch/vtophys.hh"
53#include "arch/x86/regs/int.hh"
54#include "arch/x86/regs/misc.hh"
54#include "base/remote_gdb.hh"
55#include "base/socket.hh"
56#include "base/trace.hh"
57#include "cpu/base.hh"
58#include "cpu/thread_context.hh"
59#include "debug/GDBAcc.hh"
60#include "mem/page_table.hh"
61#include "sim/full_system.hh"

--- 159 unchanged lines hidden ---
55#include "base/remote_gdb.hh"
56#include "base/socket.hh"
57#include "base/trace.hh"
58#include "cpu/base.hh"
59#include "cpu/thread_context.hh"
60#include "debug/GDBAcc.hh"
61#include "mem/page_table.hh"
62#include "sim/full_system.hh"

--- 159 unchanged lines hidden ---