remote_gdb.cc (11793:ef606668d247) remote_gdb.cc (12031:46116545e745)
1/*
2 * Copyright 2014 Google, Inc.
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

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

257#endif
258 return true;
259 } else {
260 return false;
261 }
262}
263
264
1/*
2 * Copyright 2014 Google, Inc.
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

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

257#endif
258 return true;
259 } else {
260 return false;
261 }
262}
263
264
265bool
265void
266RemoteGDB::insertHardBreak(Addr addr, size_t len)
267{
268 warn_once("Breakpoints do not work in Alpha PAL mode.\n"
269 " See PCEventQueue::doService() in cpu/pc_event.cc.\n");
266RemoteGDB::insertHardBreak(Addr addr, size_t len)
267{
268 warn_once("Breakpoints do not work in Alpha PAL mode.\n"
269 " See PCEventQueue::doService() in cpu/pc_event.cc.\n");
270 return BaseRemoteGDB::insertHardBreak(addr, len);
270 BaseRemoteGDB::insertHardBreak(addr, len);
271}
272
273RemoteGDB::BaseGdbRegCache*
274RemoteGDB::gdbRegs() {
275 return new AlphaGdbRegCache(this);
276}
277
271}
272
273RemoteGDB::BaseGdbRegCache*
274RemoteGDB::gdbRegs() {
275 return new AlphaGdbRegCache(this);
276}
277