]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
RISC-V: Accept constant operands in la and lla
authorSebastian Huber <sebastian.huber@embedded-brains.de>
Tue, 19 Jun 2018 05:12:48 +0000 (07:12 +0200)
committerSebastian Huber <sebastian.huber@embedded-brains.de>
Wed, 20 Jun 2018 05:24:25 +0000 (07:24 +0200)
opcodes/
PR gas/23305
* riscv-opc.c (riscv_opcodes): Use new format specifier 'B' for
la and lla.

gas/
PR gas/23305
* config/tc-riscv.c (riscv_ip): Add format specifier 'B' for
constants and symbols.
* testsuite/gas/riscv/lla32.d: New file.
* testsuite/gas/riscv/lla32.s: Likewise.
* testsuite/gas/riscv/lla64-fail.d: Likewise.
* testsuite/gas/riscv/lla64-fail.l: Likewise.
* testsuite/gas/riscv/lla64-fail.s: Likewise.
* testsuite/gas/riscv/lla64.d: Likewise.
* testsuite/gas/riscv/lla64.s: Likewise.

gas/ChangeLog
gas/config/tc-riscv.c
gas/testsuite/gas/riscv/lla32.d [new file with mode: 0644]
gas/testsuite/gas/riscv/lla32.s [new file with mode: 0644]
gas/testsuite/gas/riscv/lla64-fail.d [new file with mode: 0644]
gas/testsuite/gas/riscv/lla64-fail.l [new file with mode: 0644]
gas/testsuite/gas/riscv/lla64-fail.s [new file with mode: 0644]
gas/testsuite/gas/riscv/lla64.d [new file with mode: 0644]
gas/testsuite/gas/riscv/lla64.s [new file with mode: 0644]
opcodes/ChangeLog
opcodes/riscv-opc.c

index 332a063d55d6622f75ed2a87811a3336ee72732e..33ba540ed2709e8480185edf662e2fc04be9b197 100644 (file)
@@ -1,3 +1,16 @@
+2018-06-20  Sebastian Huber  <sebastian.huber@embedded-brains.de>
+
+       PR gas/23305
+       * config/tc-riscv.c (riscv_ip): Add format specifier 'B' for
+       constants and symbols.
+       * testsuite/gas/riscv/lla32.d: New file.
+       * testsuite/gas/riscv/lla32.s: Likewise.
+       * testsuite/gas/riscv/lla64-fail.d: Likewise.
+       * testsuite/gas/riscv/lla64-fail.l: Likewise.
+       * testsuite/gas/riscv/lla64-fail.s: Likewise.
+       * testsuite/gas/riscv/lla64.d: Likewise.
+       * testsuite/gas/riscv/lla64.s: Likewise.
+
 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
 
        * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11, add subdir-objects.
index a0ea87a3fa7909344fa1d0480ccab10dfce39aa2..bdec30741b298826944c6b908ff5b8b2c8ed0a1a 100644 (file)
@@ -1935,6 +1935,17 @@ rvc_lui:
              s = expr_end;
              continue;
 
+           case 'B':
+             my_getExpression (imm_expr, s);
+             normalize_constant_expr (imm_expr);
+             /* The 'B' format specifier must be a symbol or a constant.  */
+             if (imm_expr->X_op != O_symbol && imm_expr->X_op != O_constant)
+               break;
+             if (imm_expr->X_op == O_symbol)
+               *imm_reloc = BFD_RELOC_32;
+             s = expr_end;
+             continue;
+
            case 'j': /* Sign-extended immediate.  */
              *imm_reloc = BFD_RELOC_RISCV_LO12_I;
              p = percent_op_itype;
diff --git a/gas/testsuite/gas/riscv/lla32.d b/gas/testsuite/gas/riscv/lla32.d
new file mode 100644 (file)
index 0000000..ab766b4
--- /dev/null
@@ -0,0 +1,19 @@
+#as: -march=rv32i -mabi=ilp32
+#objdump: -dr
+
+.*:     file format elf32-littleriscv
+
+
+Disassembly of section .text:
+
+0+000 <.text>:
+   0:  00100513                li      a0,1
+   4:  00001537                lui     a0,0x1
+   8:  00001537                lui     a0,0x1
+   c:  00150513                addi    a0,a0,1 # 1001 <c>
+  10:  00001537                lui     a0,0x1
+  14:  fff50513                addi    a0,a0,-1 # fff <d>
+  18:  80000537                lui     a0,0x80000
+  1c:  fff50513                addi    a0,a0,-1 # 7fffffff <h\+0x80000000>
+  20:  00000513                li      a0,0
+  24:  fff00513                li      a0,-1
diff --git a/gas/testsuite/gas/riscv/lla32.s b/gas/testsuite/gas/riscv/lla32.s
new file mode 100644 (file)
index 0000000..8d5773e
--- /dev/null
@@ -0,0 +1,15 @@
+.set a, 0x1
+.set b, 0x1000
+.set c, 0x1001
+.set d, 0xfff
+.set e, 0x7fffffff
+.set g, 0x0
+.set h, 0xffffffff
+.text
+       lla a0, a
+       lla a0, b
+       lla a0, c
+       lla a0, d
+       lla a0, e
+       lla a0, g
+       lla a0, h
diff --git a/gas/testsuite/gas/riscv/lla64-fail.d b/gas/testsuite/gas/riscv/lla64-fail.d
new file mode 100644 (file)
index 0000000..97b2e10
--- /dev/null
@@ -0,0 +1,3 @@
+#as: -march=rv64i -mabi=lp64
+#source: lla64-fail.s
+#error-output: lla64-fail.l
diff --git a/gas/testsuite/gas/riscv/lla64-fail.l b/gas/testsuite/gas/riscv/lla64-fail.l
new file mode 100644 (file)
index 0000000..088f18e
--- /dev/null
@@ -0,0 +1,2 @@
+.*: Assembler messages:
+.*: Error: offset too large
diff --git a/gas/testsuite/gas/riscv/lla64-fail.s b/gas/testsuite/gas/riscv/lla64-fail.s
new file mode 100644 (file)
index 0000000..e8379bf
--- /dev/null
@@ -0,0 +1,3 @@
+.set a, 0xffffffff
+.text
+       lla a0, a
diff --git a/gas/testsuite/gas/riscv/lla64.d b/gas/testsuite/gas/riscv/lla64.d
new file mode 100644 (file)
index 0000000..7848eec
--- /dev/null
@@ -0,0 +1,20 @@
+#as: -march=rv64i -mabi=lp64
+#objdump: -dr
+
+.*:     file format elf64-littleriscv
+
+
+Disassembly of section .text:
+
+0+000 <.text>:
+   0:  0010051b                addiw   a0,zero,1
+   4:  00001537                lui     a0,0x1
+   8:  00001537                lui     a0,0x1
+   c:  0015051b                addiw   a0,a0,1
+  10:  00001537                lui     a0,0x1
+  14:  fff5051b                addiw   a0,a0,-1
+  18:  80000537                lui     a0,0x80000
+  1c:  fff5051b                addiw   a0,a0,-1
+  20:  0000051b                sext.w  a0,zero
+  24:  fff0051b                addiw   a0,zero,-1
+  28:  80000537                lui     a0,0x80000
diff --git a/gas/testsuite/gas/riscv/lla64.s b/gas/testsuite/gas/riscv/lla64.s
new file mode 100644 (file)
index 0000000..4be5082
--- /dev/null
@@ -0,0 +1,17 @@
+.set a, 0x1
+.set b, 0x1000
+.set c, 0x1001
+.set d, 0xfff
+.set e, 0x7fffffff
+.set g, 0x0
+.set h, 0xffffffffffffffff
+.set i, 0xffffffff80000000
+.text
+       lla a0, a
+       lla a0, b
+       lla a0, c
+       lla a0, d
+       lla a0, e
+       lla a0, g
+       lla a0, h
+       lla a0, i
index 0cfb8065ee72cc2d12265cda899b54bcd8254701..c5ef6a367e2cf3f50e4e1a752141f7a0f266d59c 100644 (file)
@@ -1,3 +1,9 @@
+2018-06-20  Sebastian Huber  <sebastian.huber@embedded-brains.de>
+
+       PR gas/23305
+       * riscv-opc.c (riscv_opcodes): Use new format specifier 'B' for
+       la and lla.
+
 2018-06-19  Simon Marchi  <simon.marchi@ericsson.com>
 
        * Makefile.am (AUTOMAKE_OPTIONS): Remove 1.11.
index 47e9659c978984b2a575da39f11355a1fb41f889..8e55916451e94f97ea32e2cba9aa87940a2048b1 100644 (file)
@@ -278,8 +278,8 @@ const struct riscv_opcode riscv_opcodes[] =
    applied to an add instruction, for relaxation to use.  */
 {"add",       "I",   "d,s,t,0",MATCH_ADD, MASK_ADD, match_opcode, 0 },
 {"add",       "I",   "d,s,j",  MATCH_ADDI, MASK_ADDI, match_opcode, INSN_ALIAS },
-{"la",        "I",   "d,A",  0,    (int) M_LA,  match_never, INSN_MACRO },
-{"lla",       "I",   "d,A",  0,    (int) M_LLA,  match_never, INSN_MACRO },
+{"la",        "I",   "d,B",  0,    (int) M_LA,  match_never, INSN_MACRO },
+{"lla",       "I",   "d,B",  0,    (int) M_LLA,  match_never, INSN_MACRO },
 {"la.tls.gd", "I",   "d,A",  0,    (int) M_LA_TLS_GD,  match_never, INSN_MACRO },
 {"la.tls.ie", "I",   "d,A",  0,    (int) M_LA_TLS_IE,  match_never, INSN_MACRO },
 {"neg",       "I",   "d,t",  MATCH_SUB, MASK_SUB | MASK_RS1, match_opcode, INSN_ALIAS }, /* sub 0 */