misc.isa (7276:8444b49bd88d) misc.isa (7285:4b45e35807f2)
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

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

95 return new NopInst(machInst);
96 case NUM_MISCREGS:
97 return new Unknown(machInst);
98 case MISCREG_DCCISW:
99 return new WarnUnimplemented(
100 isRead ? "mrc dccisw" : "mcr dcisw", machInst);
101 case MISCREG_DCCIMVAC:
102 return new WarnUnimplemented(
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

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

95 return new NopInst(machInst);
96 case NUM_MISCREGS:
97 return new Unknown(machInst);
98 case MISCREG_DCCISW:
99 return new WarnUnimplemented(
100 isRead ? "mrc dccisw" : "mcr dcisw", machInst);
101 case MISCREG_DCCIMVAC:
102 return new WarnUnimplemented(
103 isRead ? "mrc dccimvac" : "mcr dcimvac", machInst);
103 isRead ? "mrc dccimvac" : "mcr dccimvac", machInst);
104 case MISCREG_DCCMVAC:
105 return new WarnUnimplemented(
106 isRead ? "mrc dccmvac" : "mcr dccmvac", machInst);
104 case MISCREG_CP15ISB:
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(

--- 17 unchanged lines hidden ---
107 case MISCREG_CP15ISB:
108 return new WarnUnimplemented(
109 isRead ? "mrc cp15isb" : "mcr cp15isb", machInst);
110 case MISCREG_CP15DSB:
111 return new WarnUnimplemented(
112 isRead ? "mrc cp15dsb" : "mcr cp15dsb", machInst);
113 case MISCREG_CP15DMB:
114 return new WarnUnimplemented(

--- 17 unchanged lines hidden ---