misc.isa (7272:105f6d3e1099) misc.isa (7274:b299cce14211)
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

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

105 return new WarnUnimplemented(
106 isRead ? "mrc cp15isb" : "mcr cp15isb", machInst);
107 case MISCREG_CP15DSB:
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);
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

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

105 return new WarnUnimplemented(
106 isRead ? "mrc cp15isb" : "mcr cp15isb", machInst);
107 case MISCREG_CP15DSB:
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);
113 default:
114 if (isRead) {
115 return new Mrc15(machInst, rt, (IntRegIndex)miscReg);
116 } else {
117 return new Mcr15(machInst, (IntRegIndex)miscReg, rt);
118 }
119 }
120 }
121 '''
122}};
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}};