Deleted Added
sdiff udiff text old ( 7271:c1f84426708a ) new ( 7273:674fc83d1908 )
full compact
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

159 cpsr.t = 0;
160 return cpsr;
161 }
162 if (misc_reg >= MISCREG_CP15_UNIMP_START &&
163 misc_reg < MISCREG_CP15_END) {
164 panic("Unimplemented CP15 register %s read.\n",
165 miscRegName[misc_reg]);
166 }
167 return readMiscRegNoEffect(misc_reg);
168 }
169
170 void
171 setMiscRegNoEffect(int misc_reg, const MiscReg &val)
172 {
173 assert(misc_reg < NumMiscRegs);
174 if (misc_reg == MISCREG_SPSR) {

--- 97 unchanged lines hidden ---