* v850-opc.c (v850_opcodes): Add "jCC" instructions (aliases for
authorJeff Law <law@redhat.com>
Thu, 24 Oct 1996 23:55:11 +0000 (23:55 +0000)
committerJeff Law <law@redhat.com>
Thu, 24 Oct 1996 23:55:11 +0000 (23:55 +0000)
        "bCC"instructions).
Because quantum's code uses jnz, jcc, etc etc etc.

opcodes/ChangeLog
opcodes/v850-opc.c

index 5c953dc46dbef6038023ed8692788c8438a1a5df..c99541853db503a52ff4feb143c8608a9db76238 100644 (file)
@@ -1,3 +1,10 @@
+start-sanitize-v850
+Thu Oct 24 17:53:52 1996  Jeffrey A Law  (law@cygnus.com)
+
+       * v850-opc.c (v850_opcodes): Add "jCC" instructions (aliases for
+       "bCC"instructions).
+
+end-sanitize-v850
 Thu Oct 24 17:21:20 1996  Ian Lance Taylor  <ian@cygnus.com>
 
        * mips-dis.c (_print_insn_mips): Use a tab between the instruction
index aa358379d37f221f587b76f980ae43c9120e66be..4bc1ac45ff7c7dc121f5d0e668a01115f0892558 100644 (file)
@@ -265,6 +265,31 @@ const struct v850_opcode v850_opcodes[] = {
 { "br",                BOP(0x5),               BOP_MASK,       IF3, 0 },
 { "bsa",       BOP(0xd),               BOP_MASK,       IF3, 0 },
 
+/* Branch aliases */
+       /* signed integer */
+{ "jgt",       BOP(0xf),               BOP_MASK,       IF3, 0 },
+{ "jge",       BOP(0xe),               BOP_MASK,       IF3, 0 },
+{ "jlt",       BOP(0x6),               BOP_MASK,       IF3, 0 },
+{ "jle",       BOP(0x7),               BOP_MASK,       IF3, 0 },
+       /* unsigned integer */
+{ "jh",                BOP(0xb),               BOP_MASK,       IF3, 0 },
+{ "jnh",       BOP(0x3),               BOP_MASK,       IF3, 0 },
+{ "jl",                BOP(0x1),               BOP_MASK,       IF3, 0 },
+{ "jnl",       BOP(0x9),               BOP_MASK,       IF3, 0 },
+       /* common */
+{ "je",                BOP(0x2),               BOP_MASK,       IF3, 0 },
+{ "jne",       BOP(0xa),               BOP_MASK,       IF3, 0 },
+       /* others */
+{ "jv",                BOP(0x0),               BOP_MASK,       IF3, 0 },
+{ "jnv",       BOP(0x8),               BOP_MASK,       IF3, 0 },
+{ "jn",                BOP(0x4),               BOP_MASK,       IF3, 0 },
+{ "jp",                BOP(0xc),               BOP_MASK,       IF3, 0 },
+{ "jc",                BOP(0x1),               BOP_MASK,       IF3, 0 },
+{ "jnc",       BOP(0x9),               BOP_MASK,       IF3, 0 },
+{ "jz",                BOP(0x2),               BOP_MASK,       IF3, 0 },
+{ "jnz",       BOP(0xa),               BOP_MASK,       IF3, 0 },
+{ "jsa",       BOP(0xd),               BOP_MASK,       IF3, 0 },
+
 { "jmp",       one(0x0060),            one(0xffe0),    { R1}, 1 },
 { "jr",                one(0x0780),            two(0xffc0,0x0001),{ D22 }, 0 },
 { "jarl",      one(0x0780),            two(0x07c0,0x0001),{ D22, R2 }, 0 }, 
@@ -410,7 +435,7 @@ insert_d8_6 (insn, value, errmsg)
   if ((value % 4) != 0)
     *errmsg = "short load/store word at odd offset";
 
-  value >>= 1;
+  value >>= 2;
 
   return (insn | (value & 0x7e));
 }
This page took 0.040193 seconds and 4 git commands to generate.