public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] config/tc-aarch64.c: Avoid trying to parse a vector mov as immediate.
@ 2013-11-01  0:27 Will Newton
  2013-11-01  9:41 ` Yufeng Zhang
  0 siblings, 1 reply; 2+ messages in thread
From: Will Newton @ 2013-11-01  0:27 UTC (permalink / raw)
  To: binutils; +Cc: Patch Tracking


Parsing a vector mov instruction currently leads to a phantom undefined
symbol being added to the symbol table. e.g.:

       .text
       mov     x0, v0.D[0]

Produces an undefined symbol called "v0.D".

2013-10-31  Will Newton  <will.newton@linaro.org>

	* config/tc-aarch64.c (parse_operands): Avoid trying to
	parse a vector register as an immediate.
---
 gas/config/tc-aarch64.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 14ffdad..02fe4de 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -4810,7 +4810,8 @@ parse_operands (char *str, const aarch64_opcode *opcode)
 	case AARCH64_OPND_IMM_MOV:
 	  {
 	    char *saved = str;
-	    if (reg_name_p (str, REG_TYPE_R_Z_SP))
+	    if (reg_name_p (str, REG_TYPE_R_Z_SP) ||
+		reg_name_p (str, REG_TYPE_VN))
 	      goto failure;
 	    str = saved;
 	    po_misc_or_fail (my_get_expression (&inst.reloc.exp, &str,
-- 
1.8.1.4

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] config/tc-aarch64.c: Avoid trying to parse a vector mov as immediate.
  2013-11-01  0:27 [PATCH] config/tc-aarch64.c: Avoid trying to parse a vector mov as immediate Will Newton
@ 2013-11-01  9:41 ` Yufeng Zhang
  0 siblings, 0 replies; 2+ messages in thread
From: Yufeng Zhang @ 2013-11-01  9:41 UTC (permalink / raw)
  To: Will Newton; +Cc: binutils, Patch Tracking

Hi Will,

Thanks for fixing this.  Can you please add a gas test for it?

Thanks,
Yufeng

On 11/01/13 00:27, Will Newton wrote:
>
> Parsing a vector mov instruction currently leads to a phantom undefined
> symbol being added to the symbol table. e.g.:
>
>         .text
>         mov     x0, v0.D[0]
>
> Produces an undefined symbol called "v0.D".
>
> 2013-10-31  Will Newton<will.newton@linaro.org>
>
> 	* config/tc-aarch64.c (parse_operands): Avoid trying to
> 	parse a vector register as an immediate.
> ---
>   gas/config/tc-aarch64.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
> index 14ffdad..02fe4de 100644
> --- a/gas/config/tc-aarch64.c
> +++ b/gas/config/tc-aarch64.c
> @@ -4810,7 +4810,8 @@ parse_operands (char *str, const aarch64_opcode *opcode)
>   	case AARCH64_OPND_IMM_MOV:
>   	  {
>   	    char *saved = str;
> -	    if (reg_name_p (str, REG_TYPE_R_Z_SP))
> +	    if (reg_name_p (str, REG_TYPE_R_Z_SP) ||
> +		reg_name_p (str, REG_TYPE_VN))
>   	      goto failure;
>   	    str = saved;
>   	    po_misc_or_fail (my_get_expression (&inst.reloc.exp,&str,


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-11-01  9:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-01  0:27 [PATCH] config/tc-aarch64.c: Avoid trying to parse a vector mov as immediate Will Newton
2013-11-01  9:41 ` Yufeng Zhang

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).