remote_gdb.hh (11274:d9a0136ab8cc) remote_gdb.hh (12031:46116545e745)
1/*
2 * Copyright (c) 2015 LabWare
3 * Copyright (c) 2002-2005 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

48
49class RemoteGDB : public BaseRemoteGDB
50{
51 protected:
52 // Machine memory
53 bool acc(Addr addr, size_t len);
54 bool write(Addr addr, size_t size, const char *data);
55
1/*
2 * Copyright (c) 2015 LabWare
3 * Copyright (c) 2002-2005 The Regents of The University of Michigan
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

48
49class RemoteGDB : public BaseRemoteGDB
50{
51 protected:
52 // Machine memory
53 bool acc(Addr addr, size_t len);
54 bool write(Addr addr, size_t size, const char *data);
55
56 bool insertHardBreak(Addr addr, size_t len);
56 void insertHardBreak(Addr addr, size_t len) override;
57
58 class AlphaGdbRegCache : public BaseGdbRegCache
59 {
60 using BaseGdbRegCache::BaseGdbRegCache;
61 private:
62 struct {
63 uint64_t gpr[32];
64 uint64_t fpr[32];

--- 19 unchanged lines hidden ---
57
58 class AlphaGdbRegCache : public BaseGdbRegCache
59 {
60 using BaseGdbRegCache::BaseGdbRegCache;
61 private:
62 struct {
63 uint64_t gpr[32];
64 uint64_t fpr[32];

--- 19 unchanged lines hidden ---