2000-04-21 22:22:24 +02:00
|
|
|
/* ia64-opc-x.c -- IA-64 `X' opcode table.
|
2009-09-02 09:25:43 +02:00
|
|
|
Copyright 1998, 1999, 2000, 2002, 2005, 2007 Free Software Foundation, Inc.
|
2000-04-21 22:22:24 +02:00
|
|
|
Contributed by Timothy Wall <twall@cygnus.com>
|
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
This file is part of the GNU opcodes library.
|
2000-04-21 22:22:24 +02:00
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
This library is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
any later version.
|
2000-04-21 22:22:24 +02:00
|
|
|
|
2007-07-05 11:49:03 +02:00
|
|
|
It is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
|
|
License for more details.
|
2000-04-21 22:22:24 +02:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this file; see the file COPYING. If not, write to the
|
2007-07-05 11:49:03 +02:00
|
|
|
Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
2000-04-21 22:22:24 +02:00
|
|
|
|
|
|
|
#include "ia64-opc.h"
|
|
|
|
|
2002-11-07 15:33:48 +01:00
|
|
|
/* Identify the specific X-unit type. */
|
2000-04-21 22:22:24 +02:00
|
|
|
#define X0 IA64_TYPE_X, 0
|
|
|
|
#define X IA64_TYPE_X, 1
|
|
|
|
|
2002-11-07 15:33:48 +01:00
|
|
|
/* Instruction bit fields: */
|
2000-04-21 22:22:24 +02:00
|
|
|
#define bBtype(x) (((ia64_insn) ((x) & 0x7)) << 6)
|
|
|
|
#define bD(x) (((ia64_insn) ((x) & 0x1)) << 35)
|
|
|
|
#define bPa(x) (((ia64_insn) ((x) & 0x1)) << 12)
|
|
|
|
#define bPr(x) (((ia64_insn) ((x) & 0x3f)) << 0)
|
|
|
|
#define bVc(x) (((ia64_insn) ((x) & 0x1)) << 20)
|
|
|
|
#define bWha(x) (((ia64_insn) ((x) & 0x3)) << 33)
|
|
|
|
#define bX3(x) (((ia64_insn) ((x) & 0x7)) << 33)
|
|
|
|
#define bX6(x) (((ia64_insn) ((x) & 0x3f)) << 27)
|
Patch to update IA-64 port to SDM 2.1.
bfd/ChangeLog
* cpu-ia64-opc.c: Add operand constant "ar.csd".
gas/ChangeLog
* config/tc-ia64.c (pseudo_func): Add "@pause" constant for "hint"
instruction.
(emit_one_bundle): Handle "hint" instruction.
(operand_match): Match IA64_OPND_AR_CSD.
gas/testsuite/ChangeLog
* gas/ia64/opc-b.d: Update for instructions added by SDM2.1.
* gas/ia64/opc-b.s: Ditto.
* gas/ia64/opc-f.d: Ditto.
* gas/ia64/opc-f.s: Ditto.
* gas/ia64/opc-i.d: Ditto.
* gas/ia64/opc-i.s: Ditto.
* gas/ia64/opc-m.d: Ditto.
* gas/ia64/opc-m.s: Ditto.
* gas/ia64/opc-x.d: Ditto.
* gas/ia64/opc-x.s: Ditto.
include/opcode/ChangeLog
* ia64.h: Fix copyright message.
(IA64_OPND_AR_CSD): New operand kind.
opcodes/ChangeLog
* ia64-opc-d.c (ia64_opcodes_d): Add "hint" instruction.
* ia64-opc-b.c: Add "hint.b" instruction.
* ia64-opc-f.c: Add "hint.f" instruction.
* ia64-opc-i.c: Add "hint.i" instruction.
* ia64-opc-m.c: Add "hint.m", "fc.i", "ld16", "st16", and
"cmp8xchg16" instructions.
* ia64-opc-x.c: Add "hint.x" instruction.
* ia64-opc.h (AR_CSD): New macro.
* ia64-ic.tbl: Update according to SDM2.1.
* ia64-raw.tbl: Ditto.
* ia64-waw.tbl: Ditto.
* ia64-gen.c (in_iclass): Handle "hint" like "nop".
(lookup_regindex): Recognize AR[FCR], AR[EFLAG], AR[CSD],
AR[SSD], AR[CFLG], AR[FSR], AR[FIR], and AR[FDR].
* ia64-asmtab.c: Regenerate.
2002-12-05 03:08:02 +01:00
|
|
|
#define bY(x) (((ia64_insn) ((x) & 0x1)) << 26)
|
2000-04-21 22:22:24 +02:00
|
|
|
|
|
|
|
#define mBtype bBtype (-1)
|
|
|
|
#define mD bD (-1)
|
|
|
|
#define mPa bPa (-1)
|
|
|
|
#define mPr bPr (-1)
|
|
|
|
#define mVc bVc (-1)
|
|
|
|
#define mWha bWha (-1)
|
|
|
|
#define mX3 bX3 (-1)
|
|
|
|
#define mX6 bX6 (-1)
|
Patch to update IA-64 port to SDM 2.1.
bfd/ChangeLog
* cpu-ia64-opc.c: Add operand constant "ar.csd".
gas/ChangeLog
* config/tc-ia64.c (pseudo_func): Add "@pause" constant for "hint"
instruction.
(emit_one_bundle): Handle "hint" instruction.
(operand_match): Match IA64_OPND_AR_CSD.
gas/testsuite/ChangeLog
* gas/ia64/opc-b.d: Update for instructions added by SDM2.1.
* gas/ia64/opc-b.s: Ditto.
* gas/ia64/opc-f.d: Ditto.
* gas/ia64/opc-f.s: Ditto.
* gas/ia64/opc-i.d: Ditto.
* gas/ia64/opc-i.s: Ditto.
* gas/ia64/opc-m.d: Ditto.
* gas/ia64/opc-m.s: Ditto.
* gas/ia64/opc-x.d: Ditto.
* gas/ia64/opc-x.s: Ditto.
include/opcode/ChangeLog
* ia64.h: Fix copyright message.
(IA64_OPND_AR_CSD): New operand kind.
opcodes/ChangeLog
* ia64-opc-d.c (ia64_opcodes_d): Add "hint" instruction.
* ia64-opc-b.c: Add "hint.b" instruction.
* ia64-opc-f.c: Add "hint.f" instruction.
* ia64-opc-i.c: Add "hint.i" instruction.
* ia64-opc-m.c: Add "hint.m", "fc.i", "ld16", "st16", and
"cmp8xchg16" instructions.
* ia64-opc-x.c: Add "hint.x" instruction.
* ia64-opc.h (AR_CSD): New macro.
* ia64-ic.tbl: Update according to SDM2.1.
* ia64-raw.tbl: Ditto.
* ia64-waw.tbl: Ditto.
* ia64-gen.c (in_iclass): Handle "hint" like "nop".
(lookup_regindex): Recognize AR[FCR], AR[EFLAG], AR[CSD],
AR[SSD], AR[CFLG], AR[FSR], AR[FIR], and AR[FDR].
* ia64-asmtab.c: Regenerate.
2002-12-05 03:08:02 +01:00
|
|
|
#define mY bY (-1)
|
2000-04-21 22:22:24 +02:00
|
|
|
|
|
|
|
#define OpX3X6(a,b,c) (bOp (a) | bX3 (b) | bX6(c)), \
|
|
|
|
(mOp | mX3 | mX6)
|
Patch to update IA-64 port to SDM 2.1.
bfd/ChangeLog
* cpu-ia64-opc.c: Add operand constant "ar.csd".
gas/ChangeLog
* config/tc-ia64.c (pseudo_func): Add "@pause" constant for "hint"
instruction.
(emit_one_bundle): Handle "hint" instruction.
(operand_match): Match IA64_OPND_AR_CSD.
gas/testsuite/ChangeLog
* gas/ia64/opc-b.d: Update for instructions added by SDM2.1.
* gas/ia64/opc-b.s: Ditto.
* gas/ia64/opc-f.d: Ditto.
* gas/ia64/opc-f.s: Ditto.
* gas/ia64/opc-i.d: Ditto.
* gas/ia64/opc-i.s: Ditto.
* gas/ia64/opc-m.d: Ditto.
* gas/ia64/opc-m.s: Ditto.
* gas/ia64/opc-x.d: Ditto.
* gas/ia64/opc-x.s: Ditto.
include/opcode/ChangeLog
* ia64.h: Fix copyright message.
(IA64_OPND_AR_CSD): New operand kind.
opcodes/ChangeLog
* ia64-opc-d.c (ia64_opcodes_d): Add "hint" instruction.
* ia64-opc-b.c: Add "hint.b" instruction.
* ia64-opc-f.c: Add "hint.f" instruction.
* ia64-opc-i.c: Add "hint.i" instruction.
* ia64-opc-m.c: Add "hint.m", "fc.i", "ld16", "st16", and
"cmp8xchg16" instructions.
* ia64-opc-x.c: Add "hint.x" instruction.
* ia64-opc.h (AR_CSD): New macro.
* ia64-ic.tbl: Update according to SDM2.1.
* ia64-raw.tbl: Ditto.
* ia64-waw.tbl: Ditto.
* ia64-gen.c (in_iclass): Handle "hint" like "nop".
(lookup_regindex): Recognize AR[FCR], AR[EFLAG], AR[CSD],
AR[SSD], AR[CFLG], AR[FSR], AR[FIR], and AR[FDR].
* ia64-asmtab.c: Regenerate.
2002-12-05 03:08:02 +01:00
|
|
|
#define OpX3X6Y(a,b,c,d) (bOp (a) | bX3 (b) | bX6(c) | bY(d)), \
|
|
|
|
(mOp | mX3 | mX6 | mY)
|
2000-04-21 22:22:24 +02:00
|
|
|
#define OpVc(a,b) (bOp (a) | bVc (b)), (mOp | mVc)
|
|
|
|
#define OpPaWhaD(a,b,c,d) \
|
|
|
|
(bOp (a) | bPa (b) | bWha (c) | bD (d)), (mOp | mPa | mWha | mD)
|
|
|
|
#define OpBtypePaWhaD(a,b,c,d,e) \
|
|
|
|
(bOp (a) | bBtype (b) | bPa (c) | bWha (d) | bD (e)), \
|
|
|
|
(mOp | mBtype | mPa | mWha | mD)
|
|
|
|
#define OpBtypePaWhaDPr(a,b,c,d,e,f) \
|
|
|
|
(bOp (a) | bBtype (b) | bPa (c) | bWha (d) | bD (e) | bPr (f)), \
|
|
|
|
(mOp | mBtype | mPa | mWha | mD | mPr)
|
|
|
|
|
|
|
|
struct ia64_opcode ia64_opcodes_x[] =
|
|
|
|
{
|
Patch to update IA-64 port to SDM 2.1.
bfd/ChangeLog
* cpu-ia64-opc.c: Add operand constant "ar.csd".
gas/ChangeLog
* config/tc-ia64.c (pseudo_func): Add "@pause" constant for "hint"
instruction.
(emit_one_bundle): Handle "hint" instruction.
(operand_match): Match IA64_OPND_AR_CSD.
gas/testsuite/ChangeLog
* gas/ia64/opc-b.d: Update for instructions added by SDM2.1.
* gas/ia64/opc-b.s: Ditto.
* gas/ia64/opc-f.d: Ditto.
* gas/ia64/opc-f.s: Ditto.
* gas/ia64/opc-i.d: Ditto.
* gas/ia64/opc-i.s: Ditto.
* gas/ia64/opc-m.d: Ditto.
* gas/ia64/opc-m.s: Ditto.
* gas/ia64/opc-x.d: Ditto.
* gas/ia64/opc-x.s: Ditto.
include/opcode/ChangeLog
* ia64.h: Fix copyright message.
(IA64_OPND_AR_CSD): New operand kind.
opcodes/ChangeLog
* ia64-opc-d.c (ia64_opcodes_d): Add "hint" instruction.
* ia64-opc-b.c: Add "hint.b" instruction.
* ia64-opc-f.c: Add "hint.f" instruction.
* ia64-opc-i.c: Add "hint.i" instruction.
* ia64-opc-m.c: Add "hint.m", "fc.i", "ld16", "st16", and
"cmp8xchg16" instructions.
* ia64-opc-x.c: Add "hint.x" instruction.
* ia64-opc.h (AR_CSD): New macro.
* ia64-ic.tbl: Update according to SDM2.1.
* ia64-raw.tbl: Ditto.
* ia64-waw.tbl: Ditto.
* ia64-gen.c (in_iclass): Handle "hint" like "nop".
(lookup_regindex): Recognize AR[FCR], AR[EFLAG], AR[CSD],
AR[SSD], AR[CFLG], AR[FSR], AR[FIR], and AR[FDR].
* ia64-asmtab.c: Regenerate.
2002-12-05 03:08:02 +01:00
|
|
|
{"break.x", X0, OpX3X6 (0, 0, 0x00), {IMMU62}, 0, 0, NULL},
|
|
|
|
{"nop.x", X0, OpX3X6Y (0, 0, 0x01, 0), {IMMU62}, 0, 0, NULL},
|
|
|
|
{"hint.x", X0, OpX3X6Y (0, 0, 0x01, 1), {IMMU62}, 0, 0, NULL},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"movl", X, OpVc (6, 0), {R1, IMMU64}, 0, 0, NULL},
|
2000-04-21 22:22:24 +02:00
|
|
|
#define BRL(a,b) \
|
2002-11-07 15:33:48 +01:00
|
|
|
X0, OpBtypePaWhaDPr (0xC, 0, a, 0, b, 0), {TGT64}, PSEUDO, 0, NULL
|
|
|
|
{"brl.few", BRL (0, 0)},
|
|
|
|
{"brl", BRL (0, 0)},
|
|
|
|
{"brl.few.clr", BRL (0, 1)},
|
|
|
|
{"brl.clr", BRL (0, 1)},
|
|
|
|
{"brl.many", BRL (1, 0)},
|
|
|
|
{"brl.many.clr", BRL (1, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
#undef BRL
|
|
|
|
#define BRL(a,b,c) \
|
2002-11-07 15:33:48 +01:00
|
|
|
X0, OpBtypePaWhaD (0xC, 0, a, b, c), {TGT64}, 0, 0, NULL
|
|
|
|
#define BRLP(a,b,c) \
|
|
|
|
X0, OpBtypePaWhaD (0xC, 0, a, b, c), {TGT64}, PSEUDO, 0, NULL
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.sptk.few", BRL (0, 0, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.sptk", BRLP (0, 0, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.sptk.few.clr", BRL (0, 0, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.sptk.clr", BRLP (0, 0, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.spnt.few", BRL (0, 1, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.spnt", BRLP (0, 1, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.spnt.few.clr", BRL (0, 1, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.spnt.clr", BRLP (0, 1, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.dptk.few", BRL (0, 2, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.dptk", BRLP (0, 2, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.dptk.few.clr", BRL (0, 2, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.dptk.clr", BRLP (0, 2, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.dpnt.few", BRL (0, 3, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.dpnt", BRLP (0, 3, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.dpnt.few.clr", BRL (0, 3, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.cond.dpnt.clr", BRLP (0, 3, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.cond.sptk.many", BRL (1, 0, 0)},
|
|
|
|
{"brl.cond.sptk.many.clr", BRL (1, 0, 1)},
|
|
|
|
{"brl.cond.spnt.many", BRL (1, 1, 0)},
|
|
|
|
{"brl.cond.spnt.many.clr", BRL (1, 1, 1)},
|
|
|
|
{"brl.cond.dptk.many", BRL (1, 2, 0)},
|
|
|
|
{"brl.cond.dptk.many.clr", BRL (1, 2, 1)},
|
|
|
|
{"brl.cond.dpnt.many", BRL (1, 3, 0)},
|
|
|
|
{"brl.cond.dpnt.many.clr", BRL (1, 3, 1)},
|
|
|
|
{"brl.sptk.few", BRL (0, 0, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.sptk", BRLP (0, 0, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.sptk.few.clr", BRL (0, 0, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.sptk.clr", BRLP (0, 0, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.spnt.few", BRL (0, 1, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.spnt", BRLP (0, 1, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.spnt.few.clr", BRL (0, 1, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.spnt.clr", BRLP (0, 1, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.dptk.few", BRL (0, 2, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.dptk", BRLP (0, 2, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.dptk.few.clr", BRL (0, 2, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.dptk.clr", BRLP (0, 2, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.dpnt.few", BRL (0, 3, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.dpnt", BRLP (0, 3, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.dpnt.few.clr", BRL (0, 3, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.dpnt.clr", BRLP (0, 3, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.sptk.many", BRL (1, 0, 0)},
|
|
|
|
{"brl.sptk.many.clr", BRL (1, 0, 1)},
|
|
|
|
{"brl.spnt.many", BRL (1, 1, 0)},
|
|
|
|
{"brl.spnt.many.clr", BRL (1, 1, 1)},
|
|
|
|
{"brl.dptk.many", BRL (1, 2, 0)},
|
|
|
|
{"brl.dptk.many.clr", BRL (1, 2, 1)},
|
|
|
|
{"brl.dpnt.many", BRL (1, 3, 0)},
|
|
|
|
{"brl.dpnt.many.clr", BRL (1, 3, 1)},
|
|
|
|
#undef BRL
|
2002-11-07 15:33:48 +01:00
|
|
|
#undef BRLP
|
|
|
|
#define BRL(a,b,c) X, OpPaWhaD (0xD, a, b, c), {B1, TGT64}, 0, 0, NULL
|
|
|
|
#define BRLP(a,b,c) X, OpPaWhaD (0xD, a, b, c), {B1, TGT64}, PSEUDO, 0, NULL
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.sptk.few", BRL (0, 0, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.sptk", BRLP (0, 0, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.sptk.few.clr", BRL (0, 0, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.sptk.clr", BRLP (0, 0, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.spnt.few", BRL (0, 1, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.spnt", BRLP (0, 1, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.spnt.few.clr", BRL (0, 1, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.spnt.clr", BRLP (0, 1, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.dptk.few", BRL (0, 2, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.dptk", BRLP (0, 2, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.dptk.few.clr", BRL (0, 2, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.dptk.clr", BRLP (0, 2, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.dpnt.few", BRL (0, 3, 0)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.dpnt", BRLP (0, 3, 0)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.dpnt.few.clr", BRL (0, 3, 1)},
|
2002-11-07 15:33:48 +01:00
|
|
|
{"brl.call.dpnt.clr", BRLP (0, 3, 1)},
|
2000-04-21 22:22:24 +02:00
|
|
|
{"brl.call.sptk.many", BRL (1, 0, 0)},
|
|
|
|
{"brl.call.sptk.many.clr", BRL (1, 0, 1)},
|
|
|
|
{"brl.call.spnt.many", BRL (1, 1, 0)},
|
|
|
|
{"brl.call.spnt.many.clr", BRL (1, 1, 1)},
|
|
|
|
{"brl.call.dptk.many", BRL (1, 2, 0)},
|
|
|
|
{"brl.call.dptk.many.clr", BRL (1, 2, 1)},
|
|
|
|
{"brl.call.dpnt.many", BRL (1, 3, 0)},
|
|
|
|
{"brl.call.dpnt.many.clr", BRL (1, 3, 1)},
|
|
|
|
#undef BRL
|
2002-11-07 15:33:48 +01:00
|
|
|
#undef BRLP
|
|
|
|
{NULL, 0, 0, 0, 0, {0}, 0, 0, NULL}
|
2000-04-21 22:22:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#undef X0
|
|
|
|
#undef X
|
|
|
|
|
|
|
|
#undef bBtype
|
|
|
|
#undef bD
|
|
|
|
#undef bPa
|
|
|
|
#undef bPr
|
|
|
|
#undef bVc
|
|
|
|
#undef bWha
|
|
|
|
#undef bX3
|
|
|
|
#undef bX6
|
|
|
|
|
|
|
|
#undef mBtype
|
|
|
|
#undef mD
|
|
|
|
#undef mPa
|
|
|
|
#undef mPr
|
|
|
|
#undef mVc
|
|
|
|
#undef mWha
|
|
|
|
#undef mX3
|
|
|
|
#undef mX6
|
|
|
|
|
|
|
|
#undef OpX3X6
|
|
|
|
#undef OpVc
|
|
|
|
#undef OpPaWhaD
|
|
|
|
#undef OpBtypePaWhaD
|
|
|
|
#undef OpBtypePaWhaDPr
|