misc.isa (7274:b299cce14211) misc.isa (7276:8444b49bd88d)
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

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

108 return new WarnUnimplemented(
109 isRead ? "mrc cp15dsb" : "mcr cp15dsb", machInst);
110 case MISCREG_CP15DMB:
111 return new WarnUnimplemented(
112 isRead ? "mrc cp15dmb" : "mcr cp15dmb", machInst);
113 case MISCREG_ICIALLUIS:
114 return new WarnUnimplemented(
115 isRead ? "mrc icialluis" : "mcr icialluis", 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

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

108 return new WarnUnimplemented(
109 isRead ? "mrc cp15dsb" : "mcr cp15dsb", machInst);
110 case MISCREG_CP15DMB:
111 return new WarnUnimplemented(
112 isRead ? "mrc cp15dmb" : "mcr cp15dmb", machInst);
113 case MISCREG_ICIALLUIS:
114 return new WarnUnimplemented(
115 isRead ? "mrc icialluis" : "mcr icialluis", machInst);
116 case MISCREG_ICIMVAU:
117 return new WarnUnimplemented(
118 isRead ? "mrc icimvau" : "mcr icimvau", machInst);
116 default:
117 if (isRead) {
118 return new Mrc15(machInst, rt, (IntRegIndex)miscReg);
119 } else {
120 return new Mcr15(machInst, (IntRegIndex)miscReg, rt);
121 }
122 }
123 }
124 '''
125}};
119 default:
120 if (isRead) {
121 return new Mrc15(machInst, rt, (IntRegIndex)miscReg);
122 } else {
123 return new Mcr15(machInst, (IntRegIndex)miscReg, rt);
124 }
125 }
126 }
127 '''
128}};