]> gcc.gnu.org Git - gcc.git/commitdiff
RISC-V: Add '-m[no]-csr-check' option in gcc.
authorJiawei <jiawei@iscas.ac.cn>
Thu, 8 Sep 2022 01:50:49 +0000 (09:50 +0800)
committerKito Cheng <kito.cheng@sifive.com>
Fri, 30 Sep 2022 15:09:16 +0000 (23:09 +0800)
Add -m[no]-csr-check option in gcc part, when enable -mcsr-check option,
it will add csr-check in .option section and pass this to assembler.

gcc/ChangeLog:

* config/riscv/riscv.cc (riscv_file_start): New .option.
* config/riscv/riscv.opt: New options.
* doc/invoke.texi: New definations.

gcc/config/riscv/riscv.cc
gcc/config/riscv/riscv.opt
gcc/doc/invoke.texi

index 0d61831582818847a3c65cd116844c3b4fdf8ec6..200ad6031fd4294397822c3e484b4df21ded9686 100644 (file)
@@ -5440,6 +5440,11 @@ riscv_file_start (void)
   if (! riscv_mrelax)
     fprintf (asm_out_file, "\t.option norelax\n");
 
+  /* If the user specifies "-mcsr-check" on the command line then enable csr
+     check in the assembler.  */
+  if (riscv_mcsr_check)
+    fprintf (asm_out_file, "\t.option csr-check\n");
+
   if (riscv_emit_attribute_p)
     riscv_emit_attribute ();
 }
index e3af561c153acf33ffa0b860fe0ad02142f09e1e..8923a11a97df0bfcb152aac66b435162456819ca 100644 (file)
@@ -132,6 +132,12 @@ Target Bool Var(riscv_mrelax) Init(1)
 Take advantage of linker relaxations to reduce the number of instructions
 required to materialize symbol addresses.
 
+mcsr-check
+Target Bool Var(riscv_mcsr_check) Init(0)
+Enable the CSR checking for the ISA-dependent CRS and the read-only CSR.
+The ISA-dependent CSR are only valid when the specific ISA is set.  The
+read-only CSR can not be written by the CSR instructions.
+
 Mask(64BIT)
 
 Mask(MUL)
index 518bfdf0867d21c97d683c7acc3c3f4366cd08f1..a5dc63778356d6cee928cd61b950250f25f78ee1 100644 (file)
@@ -1226,6 +1226,7 @@ See RS/6000 and PowerPC Options.
 -mbig-endian  -mlittle-endian @gol
 -mstack-protector-guard=@var{guard}  -mstack-protector-guard-reg=@var{reg} @gol
 -mstack-protector-guard-offset=@var{offset}}
+-mcsr-check -mno-csr-check @gol
 
 @emph{RL78 Options}
 @gccoptlist{-msim  -mmul=none  -mmul=g13  -mmul=g14  -mallregs @gol
@@ -28605,6 +28606,11 @@ linker relaxations.
 Emit (do not emit) RISC-V attribute to record extra information into ELF
 objects.  This feature requires at least binutils 2.32.
 
+@item -mcsr-check
+@itemx -mno-csr-check
+@opindex mcsr-check
+Enables or disables the CSR checking.
+
 @item -malign-data=@var{type}
 @opindex malign-data
 Control how GCC aligns variables and constants of array, structure, or union
This page took 0.106727 seconds and 5 git commands to generate.