]> Git Repo - binutils.git/blobdiff - opcodes/v850-opc.c
* v850-dis.c (print_insn_v850): Properly handle disassembling
[binutils.git] / opcodes / v850-opc.c
index 87e2452770f599f0173e589d9eb2319150f95e94..56d3f7c6bc04f527773da3c1c30bd887f6eb9c79 100644 (file)
@@ -4,6 +4,15 @@
 /* Local insertion and extraction functions.  */
 static unsigned long insert_d9 PARAMS ((unsigned long, long, const char **));
 static long extract_d9 PARAMS ((unsigned long, int *));
+static unsigned long insert_d22 PARAMS ((unsigned long, long, const char **));
+static long extract_d22 PARAMS ((unsigned long, int *));
+static unsigned long insert_d16_15 PARAMS ((unsigned long, long,
+                                           const char **));
+static long extract_d16_15 PARAMS ((unsigned long, int *));
+static unsigned long insert_d8_7 PARAMS ((unsigned long, long, const char **));
+static long extract_d8_7 PARAMS ((unsigned long, int *));
+static unsigned long insert_d8_6 PARAMS ((unsigned long, long, const char **));
+static long extract_d8_6 PARAMS ((unsigned long, int *));
 
 /* regular opcode */
 #define OP(x)          ((x & 0x3f) << 5)
@@ -11,7 +20,7 @@ static long extract_d9 PARAMS ((unsigned long, int *));
 
 /* conditional branch opcode */
 #define BOP(x)         ((0x0b << 7) | (x & 0x0f))
-#define BOP_MASK       ((0x0b << 7) | 0x0f)
+#define BOP_MASK       ((0x0f << 7) | 0x0f)
 
 /* one-word opcodes */
 #define one(x)         ((unsigned int) (x))
@@ -42,23 +51,23 @@ const struct v850_operand v850_operands[] = {
 
 /* The IMM16 field in a format 6 insn. */
 #define I16    (I5U+1)
-  { 16, 16, 0, 0, 0 }, 
+  { 16, 16, 0, 0, V850_OPERAND_SIGNED }, 
 
 /* The signed DISP7 field in a format 4 insn. */
-#define D7S    (I16+1)
-  { 7, 0, 0, 0, V850_OPERAND_SIGNED },
+#define D7     (I16+1)
+  { 7, 0, 0, 0, 0},
 
 /* The DISP9 field in a format 3 insn. */
-#define D9     (D7S+1)
-  { 0, 0, insert_d9, extract_d9, V850_OPERAND_SIGNED },
+#define D9     (D7+1)
+  { 9, 0, insert_d9, extract_d9, V850_OPERAND_SIGNED },
 
 /* The DISP16 field in a format 6 insn. */
-#define D16    (D9+1)
-  { 16, 0, 0, 0, V850_OPERAND_SIGNED }, 
+#define D16_15 (D9+1)
+  { 16, 16, insert_d16_15, extract_d16_15, V850_OPERAND_SIGNED }, 
 
 /* The DISP22 field in a format 4 insn. */
-#define D22    (D16+1)
-  { 16, 0, 0, 0, 0 },
+#define D22    (D16_15+1)
+  { 22, 0, insert_d22, extract_d22, V850_OPERAND_SIGNED },
 
 #define B3     (D22+1)
 /* The 3 bit immediate field in format 8 insn.  */
@@ -68,16 +77,34 @@ const struct v850_operand v850_operands[] = {
 /* The 4 bit condition code in a setf instruction */
   { 4, 0, 0, 0, V850_OPERAND_CC },
 
-/* The unsigned DISP8 field in a format 4 insn. */
-#define D8     (CCCC+1)
-  { 8, 0, 0, 0, 0 },
+/* The unsigned DISP8_7 field in a format 4 insn. */
+#define D8_7   (CCCC+1)
+  { 8, 0, insert_d8_7, extract_d8_7, 0 },
+
+/* The unsigned DISP8_6 field in a format 4 insn. */
+#define D8_6   (D8_7+1)
+  { 8, 0, insert_d8_6, extract_d8_6, 0 },
 
 /* System register operands.  */
-#define SR1    (D8+1)
-  { 5, 0, 0, 0, V850_OPERAND_SRG }, 
+#define SR1    (D8_6+1)
+  { 5, 0, 0, 0, V850_OPERAND_SRG },
+
+/* EP Register.  */
+#define EP     (SR1+1)
+  { 0, 0, 0, 0, V850_OPERAND_EP },
+
+/* The IMM16 field (unsigned0 in a format 6 insn. */
+#define I16U   (EP+1)
+  { 16, 16, 0, 0, 0}, 
 
-#define SR2    (SR1+1)
+/* The R2 field as a system register.  */
+#define SR2    (I16U+1)
   { 5, 11, 0, 0, V850_OPERAND_SRG },
+
+/* The DISP16 field in a format 8 insn. */
+#define D16    (SR2+1)
+  { 16, 16, 0, 0, V850_OPERAND_SIGNED }, 
+
 } ; 
 
 \f
@@ -91,10 +118,12 @@ const struct v850_operand v850_operands[] = {
 #define IF3    {D9}
 
 /* 16-bit load/store instruction (Format IV) */
-#define IF4A   {D7S, R1, R2}
-#define IF4B   {R2, D7S, R1}
-#define IF4C   {D8, R1, R2}
-#define IF4D   {R2, D8, R1}
+#define IF4A   {D7, EP, R2}
+#define IF4B   {R2, D7, EP}
+#define IF4C   {D8_7, EP, R2}
+#define IF4D   {R2, D8_7, EP}
+#define IF4E   {D8_6, EP, R2}
+#define IF4F   {R2, D8_6, EP}
 
 /* Jump instruction (Format V) */
 #define IF5    {D22}
@@ -102,9 +131,16 @@ const struct v850_operand v850_operands[] = {
 /* 3 operand instruction (Format VI) */
 #define IF6    {I16, R1, R2}
 
-/* 32-bit load/store instruction (Format VII) */
-#define IF7A   {D16, R1, R2}
-#define IF7B   {R2, D16, R1}
+/* 3 operand instruction (Format VI) */
+#define IF6U   {I16U, R1, R2}
+
+/* 32-bit load/store half/word instruction (Format VII) */
+#define IF7A   {D16_15, R1, R2}
+#define IF7B   {R2, D16_15, R1}
+
+/* 32-bit load/store byte instruction (Format VII) */
+#define IF7C   {D16, R1, R2}
+#define IF7D   {R2, D16, R1}
 
 /* Bit manipulation function.  */
 
@@ -129,25 +165,25 @@ const struct v850_operand v850_operands[] = {
 
 const struct v850_opcode v850_opcodes[] = {
 /* load/store instructions */
-{ "sld.b",     OP(0x00),               OP_MASK,        IF4A, 2 },
-{ "sld.h",     OP(0x00),               OP_MASK,        IF4C, 2 },
-{ "sld.w",     OP(0x00),               OP_MASK,        IF4C, 2 },
-{ "sst.b",     OP(0x00),               OP_MASK,        IF4B, 2 },
-{ "sst.h",     OP(0x00),               OP_MASK,        IF4D, 2 },
-{ "sst.w",     OP(0x00),               OP_MASK,        IF4D, 2 },
-
-{ "ld.b",      OP(0x00),               OP_MASK,        IF7A, 4 },
-{ "ld.h",      OP(0x00),               OP_MASK,        IF7A, 4 },
-{ "ld.w",      OP(0x00),               OP_MASK,        IF7A, 4 },
-{ "st.b",      OP(0x00),               OP_MASK,        IF7B, 4 },
-{ "st.h",      OP(0x00),               OP_MASK,        IF7B, 4 },
-{ "st.w",      OP(0x00),               OP_MASK,        IF7B, 4 },
+{ "sld.b",     one(0x0300),            one(0x0780),    IF4A, 2 },
+{ "sld.h",     one(0x0400),            one(0x0780),    IF4C, 2 },
+{ "sld.w",     one(0x0500),            one(0x0781),    IF4E, 2 },
+{ "sst.b",     one(0x0380),            one(0x0780),    IF4B, 2 },
+{ "sst.h",     one(0x0480),            one(0x0780),    IF4D, 2 },
+{ "sst.w",     one(0x0501),            one(0x0781),    IF4F, 2 },
+
+{ "ld.b",      two(0x0700,0x0000),     two (0x07e0,0x0000),    IF7C, 4 },
+{ "ld.h",      two(0x0720,0x0000),     two (0x07e0,0x0001),    IF7A, 4 },
+{ "ld.w",      two(0x0720,0x0001),     two (0x07e0,0x0001),    IF7A, 4 },
+{ "st.b",      two(0x0740,0x0000),     two (0x07e0,0x0000),    IF7D, 4 },
+{ "st.h",      two(0x0760,0x0000),     two (0x07e0,0x0001),    IF7B, 4 },
+{ "st.w",      two(0x0760,0x0001),     two (0x07e0,0x0001),    IF7B, 4 },
 
 /* arithmetic operation instructions */
 { "mov",        OP(0x00),              OP_MASK,        IF1, 2 },
-{ "mov",       OP(0x08),               OP_MASK,        IF2, 2 },
+{ "mov",       OP(0x10),               OP_MASK,        IF2, 2 },
 { "movea",     OP(0x31),               OP_MASK,        IF6, 4 },
-{ "movhi",     OP(0x31),               OP_MASK,        IF6, 4 },
+{ "movhi",     OP(0x32),               OP_MASK,        IF6, 4 },
 { "add",       OP(0x0e),               OP_MASK,        IF1, 2 },
 { "add",       OP(0x12),               OP_MASK,        IF2, 2 },
 { "addi",      OP(0x30),               OP_MASK,        IF6, 4 },
@@ -159,7 +195,7 @@ const struct v850_opcode v850_opcodes[] = {
 { "divh",      OP(0x02),               OP_MASK,        IF1, 2 },
 { "cmp",       OP(0x0f),               OP_MASK,        IF1, 2 },
 { "cmp",       OP(0x13),               OP_MASK,        IF2, 2 },
-{ "setf",      two(0x0000,0x0000),     two(0x0000,0xffff), {CCCC,R2}, 4 },
+{ "setf",      two(0x07e0,0x0000),     two(0x07f0,0xffff), {CCCC,R2}, 4 },
 
 /* saturated operation instructions */
 { "satadd",    OP(0x06),               OP_MASK,        IF1, 2 },
@@ -171,12 +207,12 @@ const struct v850_opcode v850_opcodes[] = {
 /* logical operation instructions */
 { "tst",       OP(0x0b),               OP_MASK,        IF1, 2 },
 { "or",                OP(0x08),               OP_MASK,        IF1, 2 },
-{ "ori",       OP(0x34),               OP_MASK,        IF6, 4 },
+{ "ori",       OP(0x34),               OP_MASK,        IF6U, 4 },
 { "and",       OP(0x0a),               OP_MASK,        IF1, 2 },
-{ "andi",      OP(0x36),               OP_MASK,        IF6, 4 },
+{ "andi",      OP(0x36),               OP_MASK,        IF6U, 4 },
 { "xor",       OP(0x09),               OP_MASK,        IF1, 2 },
-{ "xori",      OP(0x35),               OP_MASK,        IF6, 4 },
-{ "not",       OP(0x01),               OP_MASK,        IF1, 4 },
+{ "xori",      OP(0x35),               OP_MASK,        IF6U, 4 },
+{ "not",       OP(0x01),               OP_MASK,        IF1, 2 },
 { "sar",       OP(0x15),               OP_MASK,        {I5U, R2}, 2 },
 { "sar",       two(0x07e0,0x00a0),     two(0x07e0,0xffff),     {R1,R2}, 4 },
 { "shl",       OP(0x16),               OP_MASK,                {I5U, R2}, 2 },
@@ -211,8 +247,8 @@ const struct v850_opcode v850_opcodes[] = {
 { "bsa",       BOP(0xd),               BOP_MASK,       IF3, 2 },
 
 { "jmp",       one(0x0060),            one(0xffe0),    { R1}, 2 },
-{ "jarl",      one(0x0780),            one(0xf83f),    { D22, R2 }, 4 }, 
-{ "jr",                one(0x0780),            one(0xffe0),    { D22 }, 4 },
+{ "jarl",      one(0x0780),            two(0x07c0,0x0001),{ D22, R2 }, 4 }, 
+{ "jr",                one(0x0780),            two(0xffc0,0x0001),{ D22 }, 4 },
 
 /* bit manipulation instructions */
 { "set1",      two(0x07c0,0x0000),     two(0xc7e0,0x0000),     {B3, D16, R1}, 4 },
@@ -228,7 +264,8 @@ const struct v850_opcode v850_opcodes[] = {
 { "trap",      two(0x07e0,0x0100),     two(0xffe0,0xffff),     {I5U}, 4 },
 { "ldsr",      two(0x07e0,0x0020),     two(0x07e0,0xffff),     {R1,SR2}, 4 },
 { "stsr",      two(0x07e0,0x0040),     two(0x07e0,0xffff),     {SR1,R2}, 4 },
-{ "nop",       one(0x00),              one(0xff),              {0}, 2 },
+{ "nop",       one(0x00),              one(0xffff),            {0}, 2 },
+{ 0, 0, 0, {0}, 0 },
 
 } ;
 
@@ -244,8 +281,11 @@ insert_d9 (insn, value, errmsg)
      long value;
      const char **errmsg;
 {
-  if (value > 511 || value <= -512)
-    *errmsg = "value out of range";
+  if (value > 255 || value <= -256)
+    *errmsg = "branch value out of range";
+
+  if ((value % 2) != 0)
+    *errmsg = "branch to odd offset";
 
   return (insn | ((value & 0x1f0) << 7) | ((value & 0x0e) << 3));
 }
@@ -262,3 +302,107 @@ extract_d9 (insn, invalid)
 
   return ret;
 }
+
+static unsigned long
+insert_d22 (insn, value, errmsg)
+     unsigned long insn;
+     long value;
+     const char **errmsg;
+{
+  if (value > 0xfffff || value <= -0x100000)
+    *errmsg = "branch value out of range";
+
+  if ((value % 2) != 0)
+    *errmsg = "branch to odd offset";
+
+  return (insn | ((value & 0xfffe) << 16) | ((value & 0x3f0000) >> 16));
+}
+
+static long
+extract_d22 (insn, invalid)
+     unsigned long insn;
+     int *invalid;
+{
+  int ret = ((insn & 0xfffe0000) >> 16) | ((insn & 0x3f) << 16);
+
+  return ((ret << 10) >> 10);
+}
+
+static unsigned long
+insert_d16_15 (insn, value, errmsg)
+     unsigned long insn;
+     long value;
+     const char **errmsg;
+{
+  if (value > 0x7fff || value <= -0x8000)
+    *errmsg = "value out of range";
+
+  if ((value % 2) != 0)
+    *errmsg = "load/store half/word at odd offset";
+
+  return (insn | ((value & 0xfffe) << 16));
+}
+
+static long
+extract_d16_15 (insn, invalid)
+     unsigned long insn;
+     int *invalid;
+{
+  int ret = ((insn & 0xfffe0000) >> 16);
+
+  return ((ret << 16) >> 16);
+}
+
+static unsigned long
+insert_d8_7 (insn, value, errmsg)
+     unsigned long insn;
+     long value;
+     const char **errmsg;
+{
+  if (value > 0xff || value < 0)
+    *errmsg = "short load/store half value out of range";
+
+  if ((value % 2) != 0)
+    *errmsg = "short load/store half at odd offset";
+
+  value >>= 1;
+
+  return (insn | (value & 0x7f));
+}
+
+static long
+extract_d8_7 (insn, invalid)
+     unsigned long insn;
+     int *invalid;
+{
+  int ret = (insn & 0x7f);
+
+  return ret << 1;
+}
+
+static unsigned long
+insert_d8_6 (insn, value, errmsg)
+     unsigned long insn;
+     long value;
+     const char **errmsg;
+{
+  if (value > 0xff || value < 0)
+    *errmsg = "short load/store word value out of range";
+
+  if ((value % 4) != 0)
+    *errmsg = "short load/store word at odd offset";
+
+  value >>= 1;
+
+  return (insn | (value & 0x7e));
+}
+
+static long
+extract_d8_6 (insn, invalid)
+     unsigned long insn;
+     int *invalid;
+{
+  int ret = (insn & 0x7e);
+
+  return ret << 1;
+}
This page took 0.035631 seconds and 4 git commands to generate.