| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #include "native_client/src/trusted/validator_arm/actual_classes.h" | 7 #include "native_client/src/trusted/validator_arm/actual_classes.h" |
| 8 | 8 |
| 9 // Implementation of static interface accessors. This are put in a | 9 // Implementation of static interface accessors. This are put in a |
| 10 // separate file, since they are only needed if one compiles in dbg | 10 // separate file, since they are only needed if one compiles in dbg |
| 11 // mode rather than opt. | 11 // mode rather than opt. |
| 12 | 12 |
| 13 namespace nacl_arm_dec { | 13 namespace nacl_arm_dec { |
| 14 | 14 |
| 15 // Defs12To15 | 15 // Defs12To15 |
| 16 const RegDBits12To15Interface Defs12To15::d; | 16 const RegDBits12To15Interface Defs12To15::d; |
| 17 const UpdatesFlagsRegisterBit20Interface Defs12To15::flags; | 17 const UpdatesConditionsBit20Interface Defs12To15::conditions; |
| 18 | 18 |
| 19 // Defs12To15RdRnRsRmNotPc | 19 // Defs12To15RdRnRsRmNotPc |
| 20 const RegMBits0To3Interface Defs12To15RdRnRsRmNotPc::m; | 20 const RegMBits0To3Interface Defs12To15RdRnRsRmNotPc::m; |
| 21 const RegSBits8To11Interface Defs12To15RdRnRsRmNotPc::s; | 21 const RegSBits8To11Interface Defs12To15RdRnRsRmNotPc::s; |
| 22 const RegNBits16To19Interface Defs12To15RdRnRsRmNotPc::n; | 22 const RegNBits16To19Interface Defs12To15RdRnRsRmNotPc::n; |
| 23 | 23 |
| 24 // ImmediateBic | 24 // ImmediateBic |
| 25 const Imm12Bits0To11Interface ImmediateBic::imm12; | 25 const Imm12Bits0To11Interface ImmediateBic::imm12; |
| 26 | 26 |
| 27 // TestImmediate | 27 // TestImmediate |
| 28 const Imm12Bits0To11Interface TestImmediate::imm12; | 28 const Imm12Bits0To11Interface TestImmediate::imm12; |
| 29 | 29 |
| 30 } // namespace nacl_arm_dec | 30 } // namespace nacl_arm_dec |
| OLD | NEW |