public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: jiawei@iscas.ac.cn
To: "Tsukasa OI" <research_trasio@irq.a4lg.com>
Cc: binutils@sourceware.org
Subject: Re: Re: [PATCH 2/2] RISC-V: Support Zcmp cm.mv instructions
Date: Thu, 27 Jul 2023 12:52:13 +0800 (GMT+08:00)	[thread overview]
Message-ID: <677ae3ba.28fe5.18995b0b531.Coremail.jiawei@iscas.ac.cn> (raw)
In-Reply-To: <7b0f49ec-364d-50ad-5e4e-181d0f712dd1@irq.a4lg.com>

&gt; -----原始邮件-----
&gt; 发件人: "Tsukasa OI" <research_trasio@irq.a4lg.com>
&gt; 发送时间: 2023-07-27 09:31:26 (星期四)
&gt; 收件人: jiawei@iscas.ac.cn
&gt; 抄送: binutils@sourceware.org
&gt; 主题: Re: [PATCH 2/2] RISC-V: Support Zcmp cm.mv instructions
&gt; 
&gt; So, two patches make full 'Zcmp' extension support, right?

Yes, I still waiting more comment and adjusting the first one.

&gt; 
&gt; I think following patch (inline) is required too because 'Zcmp' is
&gt; incompatible with 'Zcd' (since current Binutils [without my recent patch
&gt; set] does not infer 'Zcd' from 'C' plus 'D', we need to check 'C' + 'D'
&gt; as well).

Thanks!The Zcmp and Zcd has enconding space conflict, 
I will add this in next version patch.

&gt; 
&gt; Thanks,
&gt; Tsukasa
&gt; 
&gt; diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c
&gt; index e68de65fac15..b42814b6ed3d 100644
&gt; --- a/bfd/elfxx-riscv.c
&gt; +++ b/bfd/elfxx-riscv.c
&gt; @@ -1970,6 +1970,15 @@ riscv_parse_check_conflicts (riscv_parse_subset_t
&gt; *rps)
&gt;  	(_("rv%d does not support the `zcf' extension"), xlen);
&gt;        no_conflict = false;
&gt;      }
&gt; +  if (riscv_lookup_subset (rps-&gt;subset_list, "zcmp", &amp;subset)
&gt; +      &amp;&amp; ((riscv_lookup_subset (rps-&gt;subset_list, "c", &amp;subset)
&gt; +	   &amp;&amp; riscv_lookup_subset (rps-&gt;subset_list, "d", &amp;subset))
&gt; +	  || riscv_lookup_subset (rps-&gt;subset_list, "zcd", &amp;subset)))
&gt; +    {
&gt; +      rps-&gt;error_handler (
&gt; +	  _ ("`zcmp' is conflict with the `c+d' / `zcd' extension"));
&gt; +      no_conflict = false;
&gt; +    }
&gt;    if (riscv_lookup_subset (rps-&gt;subset_list, "zfinx", &amp;subset)
&gt;        &amp;&amp; riscv_lookup_subset (rps-&gt;subset_list, "f", &amp;subset))
&gt;      {
&gt; -- 
&gt; 
&gt; 
&gt; On 2023/07/26 18:06, Jiawei wrote:
&gt; &gt; This patch supports Zcmp instruction 'cm.mva01s' and 'cm.mvsa01'.
&gt; &gt; All disassemble instructions use the sreg format.
&gt; &gt; 
&gt; &gt; Co-Authored by: Charlie Keaney <charlie.keaney@embecosm.com>
&gt; &gt; Co-Authored by: Mary Bennett <mary.bennett@embecosm.com>
&gt; &gt; Co-Authored by: Nandni Jamnadas <nandni.jamnadas@embecosm.com>
&gt; &gt; Co-Authored by: Sinan Lin <sinan.lin@linux.alibaba.com>
&gt; &gt; Co-Authored by: Simon Cook <simon.cook@embecosm.com>
&gt; &gt; Co-Authored by: Shihua Liao <shihua@iscas.ac.cn>
&gt; &gt; Co-Authored by: Yulong Shi <yulong@iscas.ac.cn>
&gt; &gt; 
&gt; &gt; gas/ChangeLog:
&gt; &gt; 
&gt; &gt;         * config/tc-riscv.c (validate_riscv_insn): New operators.
&gt; &gt;         (riscv_ip): Ditto.
&gt; &gt;         * testsuite/gas/riscv/zcmp-mv.d: New test.
&gt; &gt;         * testsuite/gas/riscv/zcmp-mv.s: New test.
&gt; &gt; 
&gt; &gt; include/ChangeLog:
&gt; &gt; 
&gt; &gt;         * opcode/riscv-opc.h (MATCH_CM_MVA01S): New opcode.
&gt; &gt;         (MASK_CM_MVA01S): New mask.
&gt; &gt;         (MATCH_CM_MVSA01): New opcode.
&gt; &gt;         (MASK_CM_MVSA01): New mask.
&gt; &gt;         (DECLARE_INSN): New declarations.
&gt; &gt;         * opcode/riscv.h (OP_MASK_SREG1): New mask.
&gt; &gt;         (OP_SH_SREG1): New operand code.
&gt; &gt;         (OP_MASK_SREG2): New mask.
&gt; &gt;         (OP_SH_SREG2): New operand code.
&gt; &gt;         (X_A0): New reg number.
&gt; &gt;         (X_A1): Ditto.
&gt; &gt;         (X_S7): Ditto.
&gt; &gt;         (RISCV_SREG_0_7): New macro function.
&gt; &gt; 
&gt; &gt; opcodes/ChangeLog:
&gt; &gt; 
&gt; &gt;         * riscv-dis.c (riscv_get_sregno):
&gt; &gt;         (print_insn_args):
&gt; &gt;         * riscv-opc.c (match_sreg1_not_eq_sreg2):
&gt; &gt; 
&gt; &gt; ---
&gt; &gt;  gas/config/tc-riscv.c             | 17 +++++++++++++++++
&gt; &gt;  gas/testsuite/gas/riscv/zcmp-mv.d | 26 ++++++++++++++++++++++++++
&gt; &gt;  gas/testsuite/gas/riscv/zcmp-mv.s | 21 +++++++++++++++++++++
&gt; &gt;  include/opcode/riscv-opc.h        |  6 ++++++
&gt; &gt;  include/opcode/riscv.h            | 12 ++++++++++++
&gt; &gt;  opcodes/riscv-dis.c               | 19 +++++++++++++++++++
&gt; &gt;  opcodes/riscv-opc.c               |  8 ++++++++
&gt; &gt;  7 files changed, 109 insertions(+)
&gt; &gt;  create mode 100644 gas/testsuite/gas/riscv/zcmp-mv.d
&gt; &gt;  create mode 100644 gas/testsuite/gas/riscv/zcmp-mv.s
&gt; &gt; 
&gt; &gt; diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c
&gt; &gt; index 266a91451b7..c5be308aa08 100644
&gt; &gt; --- a/gas/config/tc-riscv.c
&gt; &gt; +++ b/gas/config/tc-riscv.c
&gt; &gt; @@ -1578,6 +1578,9 @@ validate_riscv_insn (const struct riscv_opcode *opc, int length)
&gt; &gt;  	    case 'c':
&gt; &gt;  	      switch (*++oparg)
&gt; &gt;  		{
&gt; &gt; +		/* sreg operators in cm.mvsa01 and cm.mva01s. */
&gt; &gt; +		case '1': USE_BITS (OP_MASK_SREG1, OP_SH_SREG1); break;
&gt; &gt; +		case '2': USE_BITS (OP_MASK_SREG2, OP_SH_SREG2); break;
&gt; &gt;  		/* byte immediate operators, load/store byte insns.  */
&gt; &gt;  		case 'h': used_bits |= ENCODE_ZCB_HALFWORD_UIMM (-1U); break;
&gt; &gt;  		/* halfword immediate operators, load/store halfword insns.  */
&gt; &gt; @@ -3785,6 +3788,20 @@ riscv_ip (char *str, struct riscv_cl_insn *ip, expressionS *imm_expr,
&gt; &gt;  		      asarg = expr_parse_end;
&gt; &gt;  		      imm_expr-&gt;X_op = O_absent;
&gt; &gt;  		      continue;
&gt; &gt; +
&gt; &gt; +			case '1':
&gt; &gt; +		      if (!reg_lookup (&amp;asarg, RCLASS_GPR, ®no)
&gt; &gt; +			  || !RISCV_SREG_0_7 (regno))
&gt; &gt; +			break;
&gt; &gt; +		      INSERT_OPERAND (SREG1, *ip, regno % 8);
&gt; &gt; +		      continue;
&gt; &gt; +
&gt; &gt; +			case '2':
&gt; &gt; +		      if (!reg_lookup (&amp;asarg, RCLASS_GPR, ®no)
&gt; &gt; +			  || !RISCV_SREG_0_7 (regno))
&gt; &gt; +			break;
&gt; &gt; +		      INSERT_OPERAND (SREG2, *ip, regno % 8);
&gt; &gt; +		      continue;
&gt; &gt;  
&gt; &gt;  		    default:
&gt; &gt;  		      goto unknown_riscv_ip_operand;
&gt; &gt; diff --git a/gas/testsuite/gas/riscv/zcmp-mv.d b/gas/testsuite/gas/riscv/zcmp-mv.d
&gt; &gt; new file mode 100644
&gt; &gt; index 00000000000..351d301dd3f
&gt; &gt; --- /dev/null
&gt; &gt; +++ b/gas/testsuite/gas/riscv/zcmp-mv.d
&gt; &gt; @@ -0,0 +1,26 @@
&gt; &gt; +#as: -march=rv64i_zcmp
&gt; &gt; +#source: zcmp-mv.s
&gt; &gt; +#objdump: -dr -Mno-aliases
&gt; &gt; +
&gt; &gt; +.*:[	 ]+file format .*
&gt; &gt; +
&gt; &gt; +
&gt; &gt; +Disassembly of section .text:
&gt; &gt; +
&gt; &gt; +0+000 <target>:
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+ac7e[	 ]+cm.mva01s[	 ]+s0,s7
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+ac7a[	 ]+cm.mva01s[	 ]+s0,s6
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+acfe[	 ]+cm.mva01s[	 ]+s1,s7
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+acfa[	 ]+cm.mva01s[	 ]+s1,s6
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+afee[	 ]+cm.mva01s[	 ]+s7,s3
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+ade2[	 ]+cm.mva01s[	 ]+s3,s0
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+aef2[	 ]+cm.mva01s[	 ]+s5,s4
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+aefa[	 ]+cm.mva01s[	 ]+s5,s6
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+afa2[	 ]+cm.mvsa01[	 ]+s7,s0
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+af22[	 ]+cm.mvsa01[	 ]+s6,s0
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+afa6[	 ]+cm.mvsa01[	 ]+s7,s1
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+af26[	 ]+cm.mvsa01[	 ]+s6,s1
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+adbe[	 ]+cm.mvsa01[	 ]+s3,s7
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+ada2[	 ]+cm.mvsa01[	 ]+s3,s0
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+aeb2[	 ]+cm.mvsa01[	 ]+s5,s4
&gt; &gt; +[	 ]*[0-9a-f]+:[	 ]+aeba[	 ]+cm.mvsa01[	 ]+s5,s6
&gt; &gt; diff --git a/gas/testsuite/gas/riscv/zcmp-mv.s b/gas/testsuite/gas/riscv/zcmp-mv.s
&gt; &gt; new file mode 100644
&gt; &gt; index 00000000000..0bcf2a6cd98
&gt; &gt; --- /dev/null
&gt; &gt; +++ b/gas/testsuite/gas/riscv/zcmp-mv.s
&gt; &gt; @@ -0,0 +1,21 @@
&gt; &gt; +target:
&gt; &gt; +
&gt; &gt; +	# cm.mva01s
&gt; &gt; +	cm.mva01s s0,s7
&gt; &gt; +	cm.mva01s s0,s6
&gt; &gt; +	cm.mva01s s1,s7
&gt; &gt; +	cm.mva01s s1,s6
&gt; &gt; +	cm.mva01s s7,s3
&gt; &gt; +	cm.mva01s x19,s0
&gt; &gt; +	cm.mva01s s5,x20
&gt; &gt; +	cm.mva01s x21,x22
&gt; &gt; +
&gt; &gt; +	# cm.mvsa01
&gt; &gt; +	cm.mvsa01 s7,s0
&gt; &gt; +	cm.mvsa01 s6,s0
&gt; &gt; +	cm.mvsa01 s7,s1
&gt; &gt; +	cm.mvsa01 s6,s1
&gt; &gt; +	cm.mvsa01 s3,s7
&gt; &gt; +	cm.mvsa01 x19,s0
&gt; &gt; +	cm.mvsa01 s5,x20
&gt; &gt; +	cm.mvsa01 x21,x22
&gt; &gt; diff --git a/include/opcode/riscv-opc.h b/include/opcode/riscv-opc.h
&gt; &gt; index f8054f54f15..11e9c0b99d0 100644
&gt; &gt; --- a/include/opcode/riscv-opc.h
&gt; &gt; +++ b/include/opcode/riscv-opc.h
&gt; &gt; @@ -2244,6 +2244,10 @@
&gt; &gt;  #define MASK_CM_POPRET 0xff03
&gt; &gt;  #define MATCH_CM_POPRETZ 0xbc02
&gt; &gt;  #define MASK_CM_POPRETZ 0xff03
&gt; &gt; +#define MATCH_CM_MVA01S 0xac62
&gt; &gt; +#define MASK_CM_MVA01S 0xfc63
&gt; &gt; +#define MATCH_CM_MVSA01 0xac22
&gt; &gt; +#define MASK_CM_MVSA01 0xfc63
&gt; &gt;  /* Svinval instruction.  */
&gt; &gt;  #define MATCH_SINVAL_VMA 0x16000073
&gt; &gt;  #define MASK_SINVAL_VMA 0xfe007fff
&gt; &gt; @@ -3419,6 +3423,8 @@ DECLARE_INSN(cm_push, MATCH_CM_PUSH, MASK_CM_PUSH)
&gt; &gt;  DECLARE_INSN(cm_pop, MATCH_CM_POP, MASK_CM_POP)
&gt; &gt;  DECLARE_INSN(cm_popret, MATCH_CM_POPRET, MASK_CM_POPRET)
&gt; &gt;  DECLARE_INSN(cm_popretz, MATCH_CM_POPRETZ, MASK_CM_POPRETZ)
&gt; &gt; +DECLARE_INSN(cm_mvsa01, MATCH_CM_MVSA01, MASK_CM_MVSA01)
&gt; &gt; +DECLARE_INSN(cm_mva01s, MATCH_CM_MVA01S, MASK_CM_MVA01S)
&gt; &gt;  /* Vendor-specific (T-Head) XTheadBa instructions.  */
&gt; &gt;  DECLARE_INSN(th_addsl, MATCH_TH_ADDSL, MASK_TH_ADDSL)
&gt; &gt;  /* Vendor-specific (T-Head) XTheadBb instructions.  */
&gt; &gt; diff --git a/include/opcode/riscv.h b/include/opcode/riscv.h
&gt; &gt; index f9bfb19bd5e..44576fa9241 100644
&gt; &gt; --- a/include/opcode/riscv.h
&gt; &gt; +++ b/include/opcode/riscv.h
&gt; &gt; @@ -326,6 +326,10 @@ static inline unsigned int riscv_insn_length (insn_t insn)
&gt; &gt;  /* Zc fields.  */
&gt; &gt;  #define OP_MASK_RLIST		0xf
&gt; &gt;  #define OP_SH_RLIST		4
&gt; &gt; +#define OP_MASK_SREG1		0x7
&gt; &gt; +#define OP_SH_SREG1		7
&gt; &gt; +#define OP_MASK_SREG2		0x7
&gt; &gt; +#define OP_SH_SREG2		2
&gt; &gt;  
&gt; &gt;  #define NVECR 32
&gt; &gt;  #define NVECM 1
&gt; &gt; @@ -341,7 +345,10 @@ static inline unsigned int riscv_insn_length (insn_t insn)
&gt; &gt;  #define X_T2 7
&gt; &gt;  #define X_S0 8
&gt; &gt;  #define X_S1 9
&gt; &gt; +#define X_A0 10
&gt; &gt; +#define X_A1 11
&gt; &gt;  #define X_S2 18
&gt; &gt; +#define X_S7 23
&gt; &gt;  #define X_S10 26
&gt; &gt;  #define X_S11 27
&gt; &gt;  #define X_T3 28
&gt; &gt; @@ -389,6 +396,11 @@ static inline unsigned int riscv_insn_length (insn_t insn)
&gt; &gt;  /* The maximal number of subset can be required.  */
&gt; &gt;  #define MAX_SUBSET_NUM 4
&gt; &gt;  
&gt; &gt; +/* The range of sregs.  */
&gt; &gt; +#define RISCV_SREG_0_7(REGNO) \
&gt; &gt; +	((REGNO == X_S0 || REGNO == X_S1) \
&gt; &gt; +	 || (REGNO &gt;= X_S2 &amp;&amp; REGNO &lt;= X_S7))
&gt; &gt; +
&gt; &gt;  /* All RISC-V instructions belong to at least one of these classes.  */
&gt; &gt;  enum riscv_insn_class
&gt; &gt;  {
&gt; &gt; diff --git a/opcodes/riscv-dis.c b/opcodes/riscv-dis.c
&gt; &gt; index d938c9cb2ed..058698c0c0a 100644
&gt; &gt; --- a/opcodes/riscv-dis.c
&gt; &gt; +++ b/opcodes/riscv-dis.c
&gt; &gt; @@ -263,6 +263,17 @@ riscv_get_spimm (insn_t l)
&gt; &gt;    return spimm;
&gt; &gt;  }
&gt; &gt;  
&gt; &gt; +/* Get s-register regno by using sreg number.
&gt; &gt; +  e.g. the regno of s0 is 8, so
&gt; &gt; +  riscv_get_sregno (0) equals 8. */
&gt; &gt; +
&gt; &gt; +static unsigned
&gt; &gt; +riscv_get_sregno (unsigned sreg_idx)
&gt; &gt; +{
&gt; &gt; +  return sreg_idx &gt; 1 ?
&gt; &gt; +      sreg_idx + 16 : sreg_idx + 8;
&gt; &gt; +}
&gt; &gt; +
&gt; &gt;  /* Print insn arguments for 32/64-bit code.  */
&gt; &gt;  
&gt; &gt;  static void
&gt; &gt; @@ -667,6 +678,14 @@ print_insn_args (const char *oparg, insn_t l, bfd_vma pc, disassemble_info *info
&gt; &gt;  	      case 'c': /* Zcb extension 16 bits length instruction fields. */
&gt; &gt;  		switch (*++oparg)
&gt; &gt;  		  {
&gt; &gt; +		  case '1':
&gt; &gt; +		    print (info-&gt;stream, dis_style_register, "%s",
&gt; &gt; +		      riscv_gpr_names[riscv_get_sregno (EXTRACT_OPERAND (SREG1, l))]);
&gt; &gt; +		    break;
&gt; &gt; +		  case '2':
&gt; &gt; +		    print (info-&gt;stream, dis_style_register, "%s",
&gt; &gt; +		      riscv_gpr_names[riscv_get_sregno (EXTRACT_OPERAND (SREG2, l))]);
&gt; &gt; +		    break;
&gt; &gt;  		  case 'b':
&gt; &gt;  		    print (info-&gt;stream, dis_style_immediate, "%d",
&gt; &gt;  		      (int)EXTRACT_ZCB_BYTE_UIMM (l));
&gt; &gt; diff --git a/opcodes/riscv-opc.c b/opcodes/riscv-opc.c
&gt; &gt; index 7d2f92e736b..b0a69efed49 100644
&gt; &gt; --- a/opcodes/riscv-opc.c
&gt; &gt; +++ b/opcodes/riscv-opc.c
&gt; &gt; @@ -329,6 +329,12 @@ match_th_load_pair(const struct riscv_opcode *op,
&gt; &gt;    return rd1 != rd2 &amp;&amp; rd1 != rs &amp;&amp; rd2 != rs &amp;&amp; match_opcode (op, insn);
&gt; &gt;  }
&gt; &gt;  
&gt; &gt; +match_sreg1_not_eq_sreg2 (const struct riscv_opcode *op, insn_t insn)
&gt; &gt; +{
&gt; &gt; +  return match_opcode (op, insn)
&gt; &gt; +      &amp;&amp; (EXTRACT_OPERAND (SREG1, insn) != EXTRACT_OPERAND (SREG2, insn));
&gt; &gt; +}
&gt; &gt; +
&gt; &gt;  const struct riscv_opcode riscv_opcodes[] =
&gt; &gt;  {
&gt; &gt;  /* name, xlen, isa, operands, match, mask, match_func, pinfo.  */
&gt; &gt; @@ -1972,6 +1978,8 @@ const struct riscv_opcode riscv_opcodes[] =
&gt; &gt;  {"cm.pop",     0,  INSN_CLASS_ZCMP, "{Wcr},Wcp",  MATCH_CM_POP, MASK_CM_POP, match_opcode, 0 },
&gt; &gt;  {"cm.popret",  0,  INSN_CLASS_ZCMP, "{Wcr},Wcp",  MATCH_CM_POPRET, MASK_CM_POPRET, match_opcode, 0 },
&gt; &gt;  {"cm.popretz", 0,  INSN_CLASS_ZCMP, "{Wcr},Wcp",  MATCH_CM_POPRETZ, MASK_CM_POPRETZ, match_opcode, 0 },
&gt; &gt; +{"cm.mva01s",  0,  INSN_CLASS_ZCMP, "Wc1,Wc2",    MATCH_CM_MVA01S, MASK_CM_MVA01S, match_opcode, 0 },
&gt; &gt; +{"cm.mvsa01",  0,  INSN_CLASS_ZCMP, "Wc1,Wc2",    MATCH_CM_MVSA01, MASK_CM_MVSA01, match_sreg1_not_eq_sreg2, 0 },
&gt; &gt;  
&gt; &gt;  /* Supervisor instructions.  */
&gt; &gt;  {"csrr",       0, INSN_CLASS_ZICSR, "d,E",   MATCH_CSRRS, MASK_CSRRS|MASK_RS1, match_opcode, INSN_ALIAS },
</target></yulong@iscas.ac.cn></shihua@iscas.ac.cn></simon.cook@embecosm.com></sinan.lin@linux.alibaba.com></nandni.jamnadas@embecosm.com></mary.bennett@embecosm.com></charlie.keaney@embecosm.com></research_trasio@irq.a4lg.com>

  reply	other threads:[~2023-07-27  4:52 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-26  9:06 [v2 PATCH 1/2] RISC-V: Support Zcmp push/pop instructions Jiawei
2023-07-26  9:06 ` [PATCH 2/2] RISC-V: Support Zcmp cm.mv instructions Jiawei
2023-07-27  1:31   ` Tsukasa OI
2023-07-27  4:52     ` jiawei [this message]
2023-07-31  8:01   ` Tsukasa OI
2023-08-01  4:25 ` [v2 PATCH 1/2] RISC-V: Support Zcmp push/pop instructions Nelson Chu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=677ae3ba.28fe5.18995b0b531.Coremail.jiawei@iscas.ac.cn \
    --to=jiawei@iscas.ac.cn \
    --cc=binutils@sourceware.org \
    --cc=research_trasio@irq.a4lg.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).