RISC-V: bge[u] should get higher priority than ble[u].
authorJim Wilson <jimw@sifive.com>
Mon, 17 Sep 2018 18:43:08 +0000 (11:43 -0700)
committerJim Wilson <jimw@sifive.com>
Mon, 17 Sep 2018 18:43:08 +0000 (11:43 -0700)
2018-09-17  Kito Cheng  <kito@andestech.com>
gas/
* testsuite/gas/riscv/bge.d: New.
* testsuite/gas/riscv/bge.s: Likewise.
opcodes/
* riscv-opc.c (riscv_opcodes): Adjust the order of ble and
  bleu.

gas/ChangeLog
gas/testsuite/gas/riscv/bge.d [new file with mode: 0644]
gas/testsuite/gas/riscv/bge.s [new file with mode: 0644]
opcodes/ChangeLog
opcodes/riscv-opc.c

index 3e7680049af850a43fabf39c816a3e0e853a4dab..0a4c56657842d7d559d166d64b4de1f3989ab36b 100644 (file)
@@ -1,3 +1,8 @@
+2018-09-17  Kito Cheng  <kito@andestech.com>
+
+       * testsuite/gas/riscv/bge.d: New.
+       * testsuite/gas/riscv/bge.s: Likewise.
+
 2018-09-17  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR gas/23670
diff --git a/gas/testsuite/gas/riscv/bge.d b/gas/testsuite/gas/riscv/bge.d
new file mode 100644 (file)
index 0000000..b3db91c
--- /dev/null
@@ -0,0 +1,13 @@
+#as:
+#objdump: -d
+
+.*:[   ]+file format .*
+
+
+Disassembly of section .text:
+
+0+000 <foo>:
+[      ]+0:[   ]+00c5d063[     ]+bge[  ]+a1,a2,0 \<foo\>
+[      ]+4:[   ]+feb65ee3[     ]+bge[  ]+a2,a1,0 \<foo\>
+[      ]+8:[   ]+fec5fce3[     ]+bgeu[         ]+a1,a2,0 \<foo\>
+[      ]+c:[   ]+feb67ae3[     ]+bgeu[         ]+a2,a1,0 \<foo\>
diff --git a/gas/testsuite/gas/riscv/bge.s b/gas/testsuite/gas/riscv/bge.s
new file mode 100644 (file)
index 0000000..a28d25e
--- /dev/null
@@ -0,0 +1,5 @@
+foo:
+       bge a1, a2, foo
+       ble a1, a2, foo
+       bgeu a1, a2, foo
+       bleu a1, a2, foo
index 5d575070727338ede81e349a5d6264d54165e8a0..19475dae8ad92cbcba0f977e8dc531a0b6305361 100644 (file)
@@ -1,3 +1,7 @@
+2018-09-17  Kito Cheng  <kito@andestech.com>
+
+       * riscv-opc.c (riscv_opcodes): Adjust the order of ble and bleu.
+
 2018-09-17  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR gas/23670
index 945164a51139437b1bf0bfe96a27eb6798a3c1e9..e0f711811f66a6e51abbe00dacf5d43cb1b27c33 100644 (file)
@@ -250,10 +250,10 @@ const struct riscv_opcode riscv_opcodes[] =
 {"beq",         0, {"I", 0},   "s,t,p",  MATCH_BEQ, MASK_BEQ, match_opcode, INSN_CONDBRANCH },
 {"blez",        0, {"I", 0},   "t,p",  MATCH_BGE, MASK_BGE | MASK_RS1, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
 {"bgez",        0, {"I", 0},   "s,p",  MATCH_BGE, MASK_BGE | MASK_RS2, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
-{"ble",         0, {"I", 0},   "t,s,p",  MATCH_BGE, MASK_BGE, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
-{"bleu",        0, {"I", 0},   "t,s,p",  MATCH_BGEU, MASK_BGEU, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
 {"bge",         0, {"I", 0},   "s,t,p",  MATCH_BGE, MASK_BGE, match_opcode, INSN_CONDBRANCH },
 {"bgeu",        0, {"I", 0},   "s,t,p",  MATCH_BGEU, MASK_BGEU, match_opcode, INSN_CONDBRANCH },
+{"ble",         0, {"I", 0},   "t,s,p",  MATCH_BGE, MASK_BGE, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
+{"bleu",        0, {"I", 0},   "t,s,p",  MATCH_BGEU, MASK_BGEU, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
 {"bltz",        0, {"I", 0},   "s,p",  MATCH_BLT, MASK_BLT | MASK_RS2, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
 {"bgtz",        0, {"I", 0},   "t,p",  MATCH_BLT, MASK_BLT | MASK_RS1, match_opcode, INSN_ALIAS|INSN_CONDBRANCH },
 {"blt",         0, {"I", 0},   "s,t,p",  MATCH_BLT, MASK_BLT, match_opcode, INSN_CONDBRANCH },
This page took 0.041878 seconds and 4 git commands to generate.