aboutsummaryrefslogtreecommitdiff
path: root/include/opcode
diff options
context:
space:
mode:
authorClaudiu Zissulescu <claziss@gmail.com>2023-09-25 17:02:41 +0300
committerClaudiu Zissulescu <claziss@gmail.com>2023-09-25 17:02:41 +0300
commit8784b6df8871c873a4cb14820ec8f6677fdf7838 (patch)
tree2874abe81c3f34285e704a3a709b30ad16dc68a9 /include/opcode
parent6ba813bf383f479485d1d0e0db51dc00df132fe8 (diff)
downloadgdb-8784b6df8871c873a4cb14820ec8f6677fdf7838.zip
gdb-8784b6df8871c873a4cb14820ec8f6677fdf7838.tar.gz
gdb-8784b6df8871c873a4cb14820ec8f6677fdf7838.tar.bz2
Revert "arc: Update opcode related include files for ARCv3."
This reverts commit 04414221df53bb5129e34bec354dae3121db436a.
Diffstat (limited to 'include/opcode')
-rw-r--r--include/opcode/arc-attrs.h4
-rw-r--r--include/opcode/arc-func.h188
-rw-r--r--include/opcode/arc.h121
3 files changed, 56 insertions, 257 deletions
diff --git a/include/opcode/arc-attrs.h b/include/opcode/arc-attrs.h
index 01276a6..f0478dc 100644
--- a/include/opcode/arc-attrs.h
+++ b/include/opcode/arc-attrs.h
@@ -37,8 +37,8 @@ const struct feature_type
} FEATURE_LIST_NAME [] =
{
{ BTSCN, ARC_OPCODE_ARCALL, "BITSCAN", "bit-scan" },
- { CD, ARC_OPCODE_ARCVx, "CD", "code-density" },
- { DIV, ARC_OPCODE_ARCVx, "DIV_REM", "div/rem" },
+ { CD, ARC_OPCODE_ARCV2, "CD", "code-density" },
+ { DIV, ARC_OPCODE_ARCV2, "DIV_REM", "div/rem" },
{ DP, ARC_OPCODE_ARCv2HS, "FPUD", "double-precision FPU" },
{ DPA, ARC_OPCODE_ARCv2EM, "FPUDA", "double assist FP" },
{ DPX, ARC_OPCODE_ARCFPX, "DPFP", "double-precision FPX" },
diff --git a/include/opcode/arc-func.h b/include/opcode/arc-func.h
index 7835610..65d21e3 100644
--- a/include/opcode/arc-func.h
+++ b/include/opcode/arc-func.h
@@ -22,8 +22,8 @@
/* mask = 00000000000000000000000000000000. */
#ifndef REPLACE_none
#define REPLACE_none
-ATTRIBUTE_UNUSED static bfd_vma
-replace_none (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_none (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x00;
@@ -35,8 +35,8 @@ replace_none (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
/* mask = 11111111. */
#ifndef REPLACE_bits8
#define REPLACE_bits8
-ATTRIBUTE_UNUSED static bfd_vma
-replace_bits8 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_bits8 (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xff;
insn |= ((value >> 0) & 0x00ff) << 0;
@@ -49,8 +49,8 @@ replace_bits8 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
/* mask = 1111111111111111. */
#ifndef REPLACE_bits16
#define REPLACE_bits16
-ATTRIBUTE_UNUSED static bfd_vma
-replace_bits16 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_bits16 (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xffff;
insn |= ((value >> 0) & 0xffff) << 0;
@@ -63,8 +63,8 @@ replace_bits16 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
/* mask = 111111111111111111111111. */
#ifndef REPLACE_bits24
#define REPLACE_bits24
-ATTRIBUTE_UNUSED static bfd_vma
-replace_bits24 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_bits24 (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xffffff;
insn |= ((value >> 0) & 0xffffff) << 0;
@@ -78,8 +78,8 @@ replace_bits24 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
/* mask = 111111111111111111111111. */
#ifndef REPLACE_bits24_be
#define REPLACE_bits24_be
-ATTRIBUTE_UNUSED static bfd_vma
-replace_bits24_be (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_bits24_be (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xffffff00;
insn |= ((value >> 0) & 0xffffff) << 8;
@@ -87,39 +87,27 @@ replace_bits24_be (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_bits24_be. */
+#endif /* REPLACE_bits24_be */
/* mask = 11111111111111111111111111111111. */
#ifndef REPLACE_word32
#define REPLACE_word32
-ATTRIBUTE_UNUSED static bfd_vma
-replace_word32 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_word32 (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xffffffff;
insn |= ((value >> 0) & 0xffffffff) << 0;
return insn;
}
-#endif /* REPLACE_word32. */
-
-/* mask = 1111111111111111111111111111111111111111111111111111111111111111. */
-#ifndef REPLACE_word64
-#define REPLACE_word64
-ATTRIBUTE_UNUSED static bfd_vma
-replace_word64 (bfd_vma insn, bfd_vma value)
-{
- insn |= value;
-
- return insn;
-}
-#endif /* REPLACE_word64. */
+#endif /* REPLACE_word32 */
/* mask = 0000000000000000000000000000000011111111111111111111111111111111. */
#ifndef REPLACE_limm
#define REPLACE_limm
-ATTRIBUTE_UNUSED static bfd_vma
-replace_limm (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_limm (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xffffffff;
insn |= ((value >> 0) & 0xffffffff) << 0;
@@ -127,13 +115,13 @@ replace_limm (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_limm. */
+#endif /* REPLACE_limm */
/* mask = 000000000000000011111111111111111111111111111111. */
#ifndef REPLACE_limms
#define REPLACE_limms
-ATTRIBUTE_UNUSED static bfd_vma
-replace_limms (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_limms (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xffffffff;
insn |= ((value >> 0) & 0xffffffff) << 0;
@@ -141,13 +129,13 @@ replace_limms (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_limms. */
+#endif /* REPLACE_limms */
/* mask = 00000111111111102222222222000000. */
#ifndef REPLACE_disp21h
#define REPLACE_disp21h
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp21h (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp21h (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x7feffc0;
insn |= ((value >> 0) & 0x03ff) << 17;
@@ -156,13 +144,13 @@ replace_disp21h (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp21h. */
+#endif /* REPLACE_disp21h */
/* mask = 00000111111111002222222222000000. */
#ifndef REPLACE_disp21w
#define REPLACE_disp21w
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp21w (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp21w (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x7fcffc0;
insn |= ((value >> 0) & 0x01ff) << 18;
@@ -171,13 +159,13 @@ replace_disp21w (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp21w. */
+#endif /* REPLACE_disp21w */
/* mask = 00000111111111102222222222003333. */
#ifndef REPLACE_disp25h
#define REPLACE_disp25h
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp25h (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp25h (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x7feffcf;
insn |= ((value >> 0) & 0x03ff) << 17;
@@ -187,13 +175,13 @@ replace_disp25h (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp25h. */
+#endif /* REPLACE_disp25h */
/* mask = 00000111111111002222222222003333. */
#ifndef REPLACE_disp25w
#define REPLACE_disp25w
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp25w (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp25w (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x7fcffcf;
insn |= ((value >> 0) & 0x01ff) << 18;
@@ -203,13 +191,13 @@ replace_disp25w (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp25w. */
+#endif /* REPLACE_disp25w */
/* mask = 00000000000000000000000111111111. */
#ifndef REPLACE_disp9
#define REPLACE_disp9
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp9 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp9 (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x1ff;
insn |= ((value >> 0) & 0x01ff) << 0;
@@ -217,13 +205,13 @@ replace_disp9 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp9. */
+#endif /* REPLACE_disp9 */
/* mask = 00000000111111112000000000000000. */
#ifndef REPLACE_disp9ls
#define REPLACE_disp9ls
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp9ls (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp9ls (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xff8000;
insn |= ((value >> 0) & 0x00ff) << 16;
@@ -237,8 +225,8 @@ replace_disp9ls (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
/* mask = 0000000111111111. */
#ifndef REPLACE_disp9s
#define REPLACE_disp9s
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp9s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp9s (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x1ff;
insn |= ((value >> 0) & 0x01ff) << 0;
@@ -246,13 +234,13 @@ replace_disp9s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp9s. */
+#endif /* REPLACE_disp9s */
/* mask = 0000011111111111. */
#ifndef REPLACE_disp13s
#define REPLACE_disp13s
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp13s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp13s (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x7ff;
insn |= ((value >> 0) & 0x07ff) << 0;
@@ -260,13 +248,13 @@ replace_disp13s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp13s. */
+#endif /* REPLACE_disp13s */
/* mask = 0000022222200111. */
#ifndef REPLACE_disp9s1
#define REPLACE_disp9s1
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp9s1 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp9s1 (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0x7e7;
insn |= ((value >> 0) & 0x0007) << 0;
@@ -275,13 +263,13 @@ replace_disp9s1 (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp9s1. */
+#endif /* REPLACE_disp9s1 */
/* mask = 00000000000000000000111111222222. */
#ifndef REPLACE_disp12s
#define REPLACE_disp12s
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp12s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
+ATTRIBUTE_UNUSED static unsigned
+replace_disp12s (unsigned insn, int value ATTRIBUTE_UNUSED)
{
insn = insn & ~0xfff;
insn |= ((value >> 0) & 0x003f) << 6;
@@ -289,13 +277,13 @@ replace_disp12s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
return insn;
}
-#endif /* REPLACE_disp12s. */
+#endif /* REPLACE_disp12s */
/* mask = 0000001111111111. */
#ifndef REPLACE_jli
#define REPLACE_jli
-ATTRIBUTE_UNUSED static bfd_vma
-replace_jli (bfd_vma insn, bfd_vma value)
+ATTRIBUTE_UNUSED static unsigned
+replace_jli (unsigned insn, int value)
{
insn = insn & ~0x3ff;
insn |= ((value >> 0) & 0x03ff) << 0;
@@ -303,76 +291,4 @@ replace_jli (bfd_vma insn, bfd_vma value)
return insn;
}
-#endif /* REPLACE_jli. */
-
-#ifndef REPLACE_disp8ls
-#define REPLACE_disp8ls
-/* mask = 0000 0000 1111 1110 2000 0000 0000 0000. */
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp8ls (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
-{
- insn = insn & ~0xfe8000;
- insn |= ((value >> 0) & 0x007f) << 17;
- insn |= ((value >> 7) & 0x0001) << 15;
-
- return insn;
-}
-#endif /* REPLACE_disp8ls. */
-
-#ifndef REPLACE_disp9s
-#define REPLACE_disp9s
-/* mask = 0000000111111111
- insn = 1111001sssssssss. */
-static bfd_vma
-replace_disp9s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
-{
- insn = insn & ~0x1ff;
- insn |= ((value >> 0) & 0x01ff) << 0;
-
- return insn;
-}
-#endif /* REPLACE_disp9s. */
-
-#ifndef REPLACE_disp6s
-#define REPLACE_disp6s
-/* mask = 0000000000111111
- insn = 1111011000ssssss. */
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp6s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
-{
- insn = insn & ~0x3f;
- insn |= ((value >> 0) & 0x003f) << 0;
-
- return insn;
-}
-
-#endif /* REPLACE_disp6s. */
-
-#ifndef REPLACE_disp7s
-#define REPLACE_disp7s
-/* mask = 0000000001111111
- insn = 11101bbb1sssssss. */
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp7s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
-{
- insn = insn & ~0x7f;
- insn |= ((value >> 0) & 0x007f) << 0;
-
- return insn;
-}
-#endif /* REPLACE_disp7s. */
-
-#ifndef REPLACE_disp12s
-#define REPLACE_disp12s
-/* mask = 00000000000000000000111111222222
- insn = 00100RRR101010000RRRssssssSSSSSS. */
-ATTRIBUTE_UNUSED static bfd_vma
-replace_disp12s (bfd_vma insn, bfd_vma value ATTRIBUTE_UNUSED)
-{
- insn = insn & ~0xfff;
- insn |= ((value >> 0) & 0x003f) << 6;
- insn |= ((value >> 6) & 0x003f) << 0;
-
- return insn;
-}
-#endif /* REPLACE_disp12s. */
+#endif /* REPLACE_jli */
diff --git a/include/opcode/arc.h b/include/opcode/arc.h
index fe3278a..0fae874 100644
--- a/include/opcode/arc.h
+++ b/include/opcode/arc.h
@@ -199,19 +199,13 @@ extern int arc_opcode_len (const struct arc_opcode *opcode);
#define ARC_OPCODE_ARC700 0x0002 /* ARC 700 specific insns. */
#define ARC_OPCODE_ARCv2EM 0x0004 /* ARCv2 EM specific insns. */
#define ARC_OPCODE_ARCv2HS 0x0008 /* ARCv2 HS specific insns. */
-#define ARC_OPCODE_ARC64 0x0010 /* ARC64 specific insns. */
-#define ARC_OPCODE_ARC32 0x0020 /* ARC32 specific insns. */
/* CPU combi. */
#define ARC_OPCODE_ARCALL (ARC_OPCODE_ARC600 | ARC_OPCODE_ARC700 \
- | ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS \
- | ARC_OPCODE_ARC64 | ARC_OPCODE_ARC32)
+ | ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS)
#define ARC_OPCODE_ARCFPX (ARC_OPCODE_ARC700 | ARC_OPCODE_ARCv2EM)
#define ARC_OPCODE_ARCV1 (ARC_OPCODE_ARC600 | ARC_OPCODE_ARC700)
#define ARC_OPCODE_ARCV2 (ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS)
-#define ARC_OPCODE_ARCVx \
- (ARC_OPCODE_ARCv2EM | ARC_OPCODE_ARCv2HS | ARC_OPCODE_ARC64 \
- | ARC_OPCODE_ARC32)
#define ARC_OPCODE_ARCMPY6E (ARC_OPCODE_ARC700 | ARC_OPCODE_ARCV2)
/* The operands table is an array of struct arc_operand. */
@@ -331,9 +325,6 @@ extern const unsigned arc_NToperand;
/* Mark the colon position. */
#define ARC_OPERAND_COLON 0x4000
-/* Mark a floating point register. */
-#define ARC_OPERAND_FP 0x8000
-
/* Mask for selecting the type for typecheck purposes. */
#define ARC_OPERAND_TYPECHECK_MASK \
(ARC_OPERAND_IR \
@@ -378,16 +369,6 @@ struct arc_flag_class
/* List of valid flags (codes). */
unsigned flags[256];
-
- /* Some special cases needs to use insert/extract functions for
- flags as well. The function prototypes are identically like the
- one used for insertion/extraction of an operand. The reason
- beeing the ability of reusing these functions. */
- unsigned long long (*insert) (unsigned long long instruction,
- long long int op,
- const char **errmsg);
- long long int (*extract) (unsigned long long instruction,
- bool *invalid);
};
extern const struct arc_flag_class arc_flag_classes[];
@@ -460,8 +441,6 @@ struct arc_pseudo_insn
extern const struct arc_pseudo_insn arc_pseudo_insns[];
extern const unsigned arc_num_pseudo_insn;
-extern const struct arc_pseudo_insn arc64_pseudo_insns[];
-extern const unsigned arc64_num_pseudo_insn;
/* Structure for AUXILIARY registers. */
struct arc_aux_reg
@@ -499,10 +478,8 @@ extern const unsigned arc_num_relax_opcodes;
#define FIELDC(word) ((word & 0x3F) << 6)
#define FIELDF (0x01 << 15)
#define FIELDQ (0x1F)
-#define HARD_FIELDF (0x00)
-#define INSN3OP(MOP,SOP) \
- (((MOP & 0x1F) << 27) | ((SOP & 0x3F) << 16) | HARD_FIELDF)
+#define INSN3OP(MOP,SOP) (((MOP & 0x1F) << 27) | ((SOP & 0x3F) << 16))
#define INSN2OPX(MOP,SOP1,SOP2) (INSN3OP (MOP,SOP1) | (SOP2 & 0x3F))
#define INSN2OP(MOP,SOP) (INSN2OPX (MOP,0x2F,SOP))
@@ -690,100 +667,6 @@ typedef enum
#define ARC_NUM_ADDRTYPES 16
-/*ARC64 floating point enums. */
-#define P_HALF 0
-#define P_SINGLE 1
-#define P_DOUBLE 2
-
-#define TOPF_FMADD 0
-#define TOPF_FMSUB 1
-#define TOPF_FNMADD 2
-#define TOPF_FNMSUB 3
-#define TOPF_VFMADD 4
-#define TOPF_VFMSUB 5
-#define TOPF_VFNMADD 6
-#define TOPF_VFNMSUB 7
-#define TOPF_VFMADDS 0xC
-#define TOPF_VFMSUBS 0xD
-#define TOPF_VFNMADDS 0xE
-#define TOPF_VFNMSUBS 0xF
-
-#define DOPF_FADD 0
-#define DOPF_FSUB 1
-#define DOPF_FMUL 2
-#define DOPF_FDIV 3
-#define DOPF_FCMP 4
-#define DOPF_FCMPF 5
-#define DOPF_FMIN 6
-#define DOPF_FMAX 7
-#define DOPF_FSGNJ 8
-#define DOPF_FSGNJN 10
-#define DOPF_FSGNJX 11
-#define DOPF_VFADD 0x10
-#define DOPF_VFSUB 0x11
-#define DOPF_VFMUL 0x12
-#define DOPF_VFDIV 0x13
-#define DOPF_VFADDS 0x14
-#define DOPF_VFSUBS 0x15
-#define DOPF_VFMULS 0x16
-#define DOPF_VFDIVS 0x17
-#define DOPF_VFUNPKL 0x18
-#define DOPF_VFUNPKM 0x19
-#define DOPF_VFPACKL 0x1a
-#define DOPF_VFPACKM 0x1b
-#define DOPF_VFBFLYL 0x1c
-#define DOPF_VFBFLYM 0x1d
-#define DOPF_VFADDSUB 0x1e
-#define DOPF_VFSUBADD 0x1f
-
-#define SOPF_FSQRT 0
-#define SOPF_VFSQRT 1
-#define SOPF_VFEXCH 2
-
-#define COPF_FMOV 0
-#define COPF_VFMOV 1
-
-#define FUINT2S 0
-#define FS2UINT 0
-#define FINT2S 0
-#define FS2INT 0
-#define FSRND 0
-#define F2UINT_RZ 0
-#define FSINT_RZ 0
-#define FSRND_RZ 0
-#define FMVI2S 0
-#define FMVS2I 0
-#define FS2H 0
-#define FH2S 0
-#define FS2H_RZ 0
-
-#define FUINT2D 1
-#define FS2UL 1
-#define FINT2D 1
-#define FS2L 1
-#define FS2D 1
-#define FS2UL_RZ 1
-#define FS2L_RZ 1
-
-#define FUL2S 2
-#define FD2UINT 2
-#define FL2S 2
-#define FD2INT 2
-#define FD2S 2
-#define FD2UINT_RZ 2
-#define FD2INT_RZ 2
-
-#define FUL2D 3
-#define FD2UL 3
-#define FL2D 3
-#define FD2L 3
-#define FDRND 3
-#define FD2UL_RZ 3
-#define FD2L_RZ 3
-#define FDRND_RZ 3
-#define FMVL2D 3
-#define FMVD2L 3
-
#ifdef __cplusplus
}
#endif