3c3
< // Copyright (c) 2010 ARM Limited
---
> // Copyright (c) 2010-2013 ARM Limited
340a341,352
> def template MicroIntImmXConstructor {{
> %(class_name)s::%(class_name)s(ExtMachInst machInst,
> RegIndex _ura,
> RegIndex _urb,
> int32_t _imm)
> : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
> _ura, _urb, _imm)
> {
> %(constructor)s;
> }
> }};
>
351a364,385
> def template MicroIntXERegConstructor {{
> %(class_name)s::%(class_name)s(ExtMachInst machInst,
> RegIndex _ura, RegIndex _urb, RegIndex _urc,
> ArmExtendType _type, uint32_t _shiftAmt)
> : %(base_class)s("%(mnemonic)s", machInst, %(op_class)s,
> _ura, _urb, _urc, _type, _shiftAmt)
> {
> %(constructor)s;
> }
> }};
>
> def template MicroIntXERegDeclare {{
> class %(class_name)s : public %(base_class)s
> {
> public:
> %(class_name)s(ExtMachInst machInst,
> RegIndex _ura, RegIndex _urb, RegIndex _urc,
> ArmExtendType _type, uint32_t _shiftAmt);
> %(BasicExecDeclare)s
> };
> }};
>
404a439,528
> def template BigFpMemImmDeclare {{
> class %(class_name)s : public %(base_class)s
> {
> public:
> // Constructor
> %(class_name)s(const char *mnemonic, ExtMachInst machInst,
> bool load, IntRegIndex dest, IntRegIndex base, int64_t imm);
> %(BasicExecPanic)s
> };
> }};
>
> def template BigFpMemImmConstructor {{
> %(class_name)s::%(class_name)s(const char *mnemonic, ExtMachInst machInst,
> bool load, IntRegIndex dest, IntRegIndex base, int64_t imm)
> : %(base_class)s(mnemonic, machInst, %(op_class)s, load, dest, base, imm)
> {
> %(constructor)s;
> }
> }};
>
> def template BigFpMemRegDeclare {{
> class %(class_name)s : public %(base_class)s
> {
> public:
> // Constructor
> %(class_name)s(const char *mnemonic, ExtMachInst machInst,
> bool load, IntRegIndex dest, IntRegIndex base,
> IntRegIndex offset, ArmExtendType type, int64_t imm);
> %(BasicExecPanic)s
> };
> }};
>
> def template BigFpMemRegConstructor {{
> %(class_name)s::%(class_name)s(const char *mnemonic, ExtMachInst machInst,
> bool load, IntRegIndex dest, IntRegIndex base,
> IntRegIndex offset, ArmExtendType type, int64_t imm)
> : %(base_class)s(mnemonic, machInst, %(op_class)s, load, dest, base,
> offset, type, imm)
> {
> %(constructor)s;
> }
> }};
>
> def template BigFpMemLitDeclare {{
> class %(class_name)s : public %(base_class)s
> {
> public:
> // Constructor
> %(class_name)s(const char *mnemonic, ExtMachInst machInst,
> IntRegIndex dest, int64_t imm);
> %(BasicExecPanic)s
> };
> }};
>
> def template BigFpMemLitConstructor {{
> %(class_name)s::%(class_name)s(const char *mnemonic, ExtMachInst machInst,
> IntRegIndex dest, int64_t imm)
> : %(base_class)s(mnemonic, machInst, %(op_class)s, dest, imm)
> {
> %(constructor)s;
> }
> }};
>
> def template PairMemDeclare {{
> class %(class_name)s : public %(base_class)s
> {
> public:
> // Constructor
> %(class_name)s(const char *mnemonic, ExtMachInst machInst,
> uint32_t size, bool fp, bool load, bool noAlloc, bool signExt,
> bool exclusive, bool acrel, uint32_t imm,
> AddrMode mode, IntRegIndex rn, IntRegIndex rt,
> IntRegIndex rt2);
> %(BasicExecPanic)s
> };
> }};
>
> def template PairMemConstructor {{
> %(class_name)s::%(class_name)s(const char *mnemonic, ExtMachInst machInst,
> uint32_t size, bool fp, bool load, bool noAlloc, bool signExt,
> bool exclusive, bool acrel, uint32_t imm, AddrMode mode,
> IntRegIndex rn, IntRegIndex rt, IntRegIndex rt2)
> : %(base_class)s(mnemonic, machInst, %(op_class)s, size,
> fp, load, noAlloc, signExt, exclusive, acrel,
> imm, mode, rn, rt, rt2)
> {
> %(constructor)s;
> }
> }};
>