Deleted Added
sdiff udiff text old ( 10595:25ecfc14f73f ) new ( 10601:6efb37480d87 )
full compact
1/*
2 * Copyright 2014 Google, Inc.
3 * Copyright (c) 2013 ARM Limited
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

75 GDB64_NUMREGS = 98
76};
77
78const int GDB_REG_BYTES = std::max(GDB64_NUMREGS * sizeof(uint64_t),
79 GDB32_NUMREGS * sizeof(uint32_t));
80
81class RemoteGDB : public BaseRemoteGDB
82{
83 protected:
84 bool acc(Addr addr, size_t len);
85 bool write(Addr addr, size_t size, const char *data);
86
87 void getregs();
88 void setregs();
89
90 public:
91 RemoteGDB(System *_system, ThreadContext *tc);
92};
93} // namespace ArmISA
94
95#endif /* __ARCH_ARM_REMOTE_GDB_H__ */