remote_gdb.hh (8544:2862c39f66f8) | remote_gdb.hh (8931:7a1dfb191e3f) |
---|---|
1/* 2 * Copyright (c) 2007 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 23 unchanged lines hidden (view full) --- 32#define __ARCH_MIPS_REMOTE_GDB_HH__ 33 34#include "arch/mips/registers.hh" 35#include "base/bitfield.hh" 36#include "base/remote_gdb.hh" 37 38class System; 39class ThreadContext; | 1/* 2 * Copyright (c) 2007 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; --- 23 unchanged lines hidden (view full) --- 32#define __ARCH_MIPS_REMOTE_GDB_HH__ 33 34#include "arch/mips/registers.hh" 35#include "base/bitfield.hh" 36#include "base/remote_gdb.hh" 37 38class System; 39class ThreadContext; |
40class PhysicalMemory; | |
41 42namespace MipsISA 43{ 44 45 // The number of special regs depends on gdb. 46 // Two 32-bit regs are packed into one 64-bit reg. 47 const int GdbIntArchRegs = NumIntArchRegs / 2; 48 const int GdbIntSpecialRegs = 6 / 2; --- 45 unchanged lines hidden --- | 40 41namespace MipsISA 42{ 43 44 // The number of special regs depends on gdb. 45 // Two 32-bit regs are packed into one 64-bit reg. 46 const int GdbIntArchRegs = NumIntArchRegs / 2; 47 const int GdbIntSpecialRegs = 6 / 2; --- 45 unchanged lines hidden --- |