misc.isa (7285:4b45e35807f2) misc.isa (7286:f6d759c122a9)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating

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

114 return new WarnUnimplemented(
115 isRead ? "mrc cp15dmb" : "mcr cp15dmb", machInst);
116 case MISCREG_ICIALLUIS:
117 return new WarnUnimplemented(
118 isRead ? "mrc icialluis" : "mcr icialluis", machInst);
119 case MISCREG_ICIMVAU:
120 return new WarnUnimplemented(
121 isRead ? "mrc icimvau" : "mcr icimvau", machInst);
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 ARM Limited
4// All rights reserved
5//
6// The license below extends only to copyright in the software and shall
7// not be construed as granting a license to any other intellectual
8// property including but not limited to intellectual property relating

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

114 return new WarnUnimplemented(
115 isRead ? "mrc cp15dmb" : "mcr cp15dmb", machInst);
116 case MISCREG_ICIALLUIS:
117 return new WarnUnimplemented(
118 isRead ? "mrc icialluis" : "mcr icialluis", machInst);
119 case MISCREG_ICIMVAU:
120 return new WarnUnimplemented(
121 isRead ? "mrc icimvau" : "mcr icimvau", machInst);
122 case MISCREG_BPIMVA:
123 return new WarnUnimplemented(
124 isRead ? "mrc bpimva" : "mcr bpimva", machInst);
122 default:
123 if (isRead) {
124 return new Mrc15(machInst, rt, (IntRegIndex)miscReg);
125 } else {
126 return new Mcr15(machInst, (IntRegIndex)miscReg, rt);
127 }
128 }
129 }
130 '''
131}};
125 default:
126 if (isRead) {
127 return new Mrc15(machInst, rt, (IntRegIndex)miscReg);
128 } else {
129 return new Mcr15(machInst, (IntRegIndex)miscReg, rt);
130 }
131 }
132 }
133 '''
134}};