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 if (op1 & 0x1) {
118 %(ldrh)s
119 } else {
120 %(strh)s
121 }
122 case 0x2:
123 if (op1 & 0x1) {
124 %(ldrsb)s
125 } else {
125 } else if ((RT %% 2) == 0) {
126 %(ldrd)s
127 } else {
128 return new Unknown(machInst);
129 }
130 case 0x3:
131 if (op1 & 0x1) {
132 %(ldrsh)s
133 } else {
134 %(strd)s
135 }
136 default:

--- 920 unchanged lines hidden ---