isa.hh (10035:2a0fbecfeb14) isa.hh (10698:829adc48e175)
1/*
2 * Copyright (c) 2009 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;

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

68 InternalProcReg ipr[NumInternalProcRegs]; // Internal processor regs
69
70 protected:
71 InternalProcReg readIpr(int idx, ThreadContext *tc);
72 void setIpr(int idx, InternalProcReg val, ThreadContext *tc);
73
74 public:
75
1/*
2 * Copyright (c) 2009 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;

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

68 InternalProcReg ipr[NumInternalProcRegs]; // Internal processor regs
69
70 protected:
71 InternalProcReg readIpr(int idx, ThreadContext *tc);
72 void setIpr(int idx, InternalProcReg val, ThreadContext *tc);
73
74 public:
75
76 MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid = 0);
76 MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid = 0) const;
77 MiscReg readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid = 0);
78
79 void setMiscRegNoEffect(int misc_reg, const MiscReg &val,
80 ThreadID tid = 0);
81 void setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc,
82 ThreadID tid = 0);
83
84 void

--- 50 unchanged lines hidden ---
77 MiscReg readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid = 0);
78
79 void setMiscRegNoEffect(int misc_reg, const MiscReg &val,
80 ThreadID tid = 0);
81 void setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc,
82 ThreadID tid = 0);
83
84 void

--- 50 unchanged lines hidden ---