aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1996-10-29 19:25:35 +0000
committerJeff Law <law@redhat.com>1996-10-29 19:25:35 +0000
commit244558e3547f0ac1ce858df1f35fefe2cfc6c977 (patch)
treec7369a1e6f7f435214b469f665b96fd87fe94b91 /opcodes
parentbb36347e6c936ba05aecb8dde98dbc0b78bda345 (diff)
downloadgdb-244558e3547f0ac1ce858df1f35fefe2cfc6c977.zip
gdb-244558e3547f0ac1ce858df1f35fefe2cfc6c977.tar.gz
gdb-244558e3547f0ac1ce858df1f35fefe2cfc6c977.tar.bz2
* v850-opc.c (D9_RELAX): Renamed from D9, all references
changed. (v850_operands): Make sure D22 immediately follows D9_RELAX.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog15
-rw-r--r--opcodes/v850-opc.c33
2 files changed, 35 insertions, 13 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index c995418..cb239a5 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,6 +1,21 @@
start-sanitize-v850
+Tue Oct 29 12:22:21 1996 Jeffrey A Law (law@cygnus.com)
+
+ * v850-opc.c (D9_RELAX): Renamed from D9, all references
+ changed.
+ (v850_operands): Make sure D22 immediately follows D9_RELAX.
+
+end-sanitize-v850
+Fri Oct 25 12:12:53 1996 Ian Lance Taylor <ian@cygnus.com>
+
+ * i386-dis.c (print_insn_x86): Set info->bytes_per_line to 5.
+
+start-sanitize-v850
Thu Oct 24 17:53:52 1996 Jeffrey A Law (law@cygnus.com)
+ * v850-opc.c (insert_d8_6): Fix operand insertion for sld.w
+ and sst.w instructions.
+
* v850-opc.c (v850_opcodes): Add "jCC" instructions (aliases for
"bCC"instructions).
diff --git a/opcodes/v850-opc.c b/opcodes/v850-opc.c
index 4bc1ac4..59270ed 100644
--- a/opcodes/v850-opc.c
+++ b/opcodes/v850-opc.c
@@ -74,19 +74,11 @@ const struct v850_operand v850_operands[] = {
#define D7 (I16+1)
{ 7, 0, 0, 0, 0},
-/* The DISP9 field in a format 3 insn. */
-#define D9 (D7+1)
- { 9, 0, insert_d9, extract_d9, V850_OPERAND_SIGNED | V850_OPERAND_DISP },
-
/* The DISP16 field in a format 6 insn. */
-#define D16_15 (D9+1)
+#define D16_15 (D7+1)
{ 16, 16, insert_d16_15, extract_d16_15, V850_OPERAND_SIGNED },
-/* The DISP22 field in a format 4 insn. */
-#define D22 (D16_15+1)
- { 22, 0, insert_d22, extract_d22, V850_OPERAND_SIGNED | V850_OPERAND_DISP },
-
-#define B3 (D22+1)
+#define B3 (D16_15+1)
/* The 3 bit immediate field in format 8 insn. */
{ 3, 11, 0, 0, 0 },
@@ -122,6 +114,17 @@ const struct v850_operand v850_operands[] = {
#define D16 (SR2+1)
{ 16, 16, 0, 0, V850_OPERAND_SIGNED },
+/* The DISP22 field in a format 4 insn, relaxable. */
+#define D9_RELAX (D16+1)
+ { 9, 0, insert_d9, extract_d9, V850_OPERAND_RELAX | V850_OPERAND_SIGNED | V850_OPERAND_DISP },
+
+/* The DISP22 field in a format 4 insn.
+
+ This _must_ follow D9_RELAX; the assembler assumes that the longer
+ version immediately follows the shorter version for relaxing. */
+#define D22 (D9_RELAX+1)
+ { 22, 0, insert_d22, extract_d22, V850_OPERAND_SIGNED | V850_OPERAND_DISP },
+
} ;
@@ -132,7 +135,7 @@ const struct v850_operand v850_operands[] = {
#define IF2 {I5, R2}
/* conditional branch instruction format (Format III) */
-#define IF3 {D9}
+#define IF3 {D9_RELAX}
/* 16-bit load/store instruction (Format IV) */
#define IF4A {D7, EP, R2}
@@ -265,7 +268,11 @@ const struct v850_opcode v850_opcodes[] = {
{ "br", BOP(0x5), BOP_MASK, IF3, 0 },
{ "bsa", BOP(0xd), BOP_MASK, IF3, 0 },
-/* Branch aliases */
+/* Branch macros.
+
+ We use the short form in the opcode/mask fields. The assembler
+ will twiddle bits as necessary if the long form is needed. */
+
/* signed integer */
{ "jgt", BOP(0xf), BOP_MASK, IF3, 0 },
{ "jge", BOP(0xe), BOP_MASK, IF3, 0 },
@@ -435,7 +442,7 @@ insert_d8_6 (insn, value, errmsg)
if ((value % 4) != 0)
*errmsg = "short load/store word at odd offset";
- value >>= 2;
+ value >>= 1;
return (insn | (value & 0x7e));
}