Deleted Added
sdiff udiff text old ( 10935:acd48ddd725f ) new ( 12106:7784fac1b159 )
full compact
1/*
2 * Copyright (c) 2009 The Regents of The University of Michigan
3 * Copyright (c) 2009 The University of Edinburgh
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

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

31 */
32
33#ifndef __ARCH_POWER_ISA_HH__
34#define __ARCH_POWER_ISA_HH__
35
36#include "arch/power/registers.hh"
37#include "arch/power/types.hh"
38#include "base/misc.hh"
39#include "cpu/reg_class.hh"
40#include "sim/sim_object.hh"
41
42struct PowerISAParams;
43class ThreadContext;
44class Checkpoint;
45class EventManager;
46
47namespace PowerISA

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

82 }
83
84 void
85 setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc)
86 {
87 fatal("Power does not currently have any misc regs defined\n");
88 }
89
90 RegId flattenRegId(const RegId& regId) const { return regId; }
91
92 int
93 flattenIntIndex(int reg) const
94 {
95 return reg;
96 }
97
98 int
99 flattenFloatIndex(int reg) const

--- 30 unchanged lines hidden ---