Deleted Added
sdiff udiff text old ( 8520:f9a495adafd9 ) new ( 8527:6bac5b04d588 )
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

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

355 {
356 DPRINTF(MiscRegs, "Writing SCTLR: %#x\n", newVal);
357 SCTLR sctlr = miscRegs[MISCREG_SCTLR];
358 SCTLR new_sctlr = newVal;
359 new_sctlr.nmfi = (bool)sctlr.nmfi;
360 miscRegs[MISCREG_SCTLR] = (MiscReg)new_sctlr;
361 tc->getITBPtr()->invalidateMiscReg();
362 tc->getDTBPtr()->invalidateMiscReg();
363 return;
364 }
365 case MISCREG_TLBTR:
366 case MISCREG_MVFR0:
367 case MISCREG_MVFR1:
368 case MISCREG_MPIDR:
369 case MISCREG_FPSID:
370 return;

--- 158 unchanged lines hidden ---