misc.isa (7286:f6d759c122a9) | misc.isa (7297:2b127f2655d6) |
---|---|
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 --- 108 unchanged lines hidden (view full) --- 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); | 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 --- 108 unchanged lines hidden (view full) --- 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); |
125 case MISCREG_BPIALLIS: 126 return new WarnUnimplemented( 127 isRead ? "mrc bpiallis" : "mcr bpiallis", machInst); 128 case MISCREG_BPIALL: 129 return new WarnUnimplemented( 130 isRead ? "mrc bpiall" : "mcr bpiall", machInst); |
|
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}}; | 131 default: 132 if (isRead) { 133 return new Mrc15(machInst, rt, (IntRegIndex)miscReg); 134 } else { 135 return new Mcr15(machInst, (IntRegIndex)miscReg, rt); 136 } 137 } 138 } 139 ''' 140}}; |