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 "sim/sim_object.hh"
40
41struct PowerISAParams;
42class ThreadContext;
43class Checkpoint;
44class EventManager;
45
46namespace PowerISA

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

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

--- 30 unchanged lines hidden ---