From 5e8c8f8f89533ff627f6d73391c712604bf705ee Mon Sep 17 00:00:00 2001
From: Jie Zhang <jie.zhang@analog.com>
Date: Tue, 1 Sep 2009 00:24:02 +0000
Subject: [PATCH] 	* read.c (TC_START_LABEL): Add a new argument. 
 (read_a_source_file): Pass the beginning of the symbol through 	the
 new argument of TC_START_LABEL. 	* config/tc-arm.h (TC_START_LABEL):
 Add a new argument. 	* config/tc-bfin.c (bfin_start_label): Only search '('
 and '[' 	from the beginning of the symbol. 	* config/tc-bfin.h
 (TC_START_LABEL): Add the new argument. 	* config/tc-d30v.h
 (TC_START_LABEL): Likewise. 	* config/tc-fr30.h (TC_START_LABEL): Likewise.
 	* config/tc-m32c.h (TC_START_LABEL): Likewise. 	* config/tc-m32r.h
 (TC_START_LABEL): Likewise. 	* config/tc-mep.h (TC_START_LABEL): Likewise.

	testsuite/
	* gas/bfin/stack2.s: Add pop multiple instruction with a label
	on the same line.
	* gas/bfin/stack2.d: Adjust accordingly.
---
 gas/ChangeLog                   | 15 +++++++++++++++
 gas/config/tc-arm.h             |  2 +-
 gas/config/tc-bfin.c            | 15 +++++++--------
 gas/config/tc-bfin.h            |  4 ++--
 gas/config/tc-d30v.h            |  2 +-
 gas/config/tc-fr30.h            |  8 ++------
 gas/config/tc-m32c.h            |  8 ++------
 gas/config/tc-m32r.h            |  2 +-
 gas/config/tc-mep.h             |  2 +-
 gas/read.c                      |  4 ++--
 gas/testsuite/ChangeLog         |  6 ++++++
 gas/testsuite/gas/bfin/stack2.d |  2 ++
 gas/testsuite/gas/bfin/stack2.s |  2 ++
 13 files changed, 44 insertions(+), 28 deletions(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 9884c5de484..e6b08706b88 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,18 @@
+2009-09-01  Jie Zhang  <jie.zhang@analog.com>
+
+	* read.c (TC_START_LABEL): Add a new argument.
+	(read_a_source_file): Pass the beginning of the symbol through
+	the new argument of TC_START_LABEL.
+	* config/tc-arm.h (TC_START_LABEL): Add a new argument.
+	* config/tc-bfin.c (bfin_start_label): Only search '(' and '['
+	from the beginning of the symbol.
+	* config/tc-bfin.h (TC_START_LABEL): Add the new argument.
+	* config/tc-d30v.h (TC_START_LABEL): Likewise.
+	* config/tc-fr30.h (TC_START_LABEL): Likewise.
+	* config/tc-m32c.h (TC_START_LABEL): Likewise.
+	* config/tc-m32r.h (TC_START_LABEL): Likewise.
+	* config/tc-mep.h (TC_START_LABEL): Likewise.
+
 2009-08-31  H.J. Lu  <hongjiu.lu@intel.com>
 
 	PR gas/10570
diff --git a/gas/config/tc-arm.h b/gas/config/tc-arm.h
index 2a85afd46b8..dacb342c69d 100644
--- a/gas/config/tc-arm.h
+++ b/gas/config/tc-arm.h
@@ -161,7 +161,7 @@ void arm_copy_symbol_attributes (symbolS *, symbolS *);
   (arm_copy_symbol_attributes (DEST, SRC))
 #endif
 
-#define TC_START_LABEL(C,STR)            (c == ':' || (c == '/' && arm_data_in_code ()))
+#define TC_START_LABEL(C,S,STR)            (C == ':' || (C == '/' && arm_data_in_code ()))
 #define tc_canonicalize_symbol_name(str) arm_canonicalize_symbol_name (str);
 #define obj_adjust_symtab() 		 arm_adjust_symtab ()
 
diff --git a/gas/config/tc-bfin.c b/gas/config/tc-bfin.c
index 1563e979e4c..ea8243a03d9 100644
--- a/gas/config/tc-bfin.c
+++ b/gas/config/tc-bfin.c
@@ -2175,15 +2175,14 @@ bfin_eol_in_insn (char *line)
 }
 
 bfd_boolean
-bfin_start_label (char *ptr)
+bfin_start_label (char *s, char *ptr)
 {
-  ptr--;
-  while (!ISSPACE (*ptr) && !is_end_of_line[(unsigned char) *ptr])
-    ptr--;
-
-  ptr++;
-  if (*ptr == '(' || *ptr == '[')
-    return FALSE;
+  while (s != ptr)
+    {
+      if (*s == '(' || *s == '[')
+	return FALSE;
+      s++;
+    }
 
   return TRUE;
 } 
diff --git a/gas/config/tc-bfin.h b/gas/config/tc-bfin.h
index 2c9f4f3cfed..976d39d3df7 100644
--- a/gas/config/tc-bfin.h
+++ b/gas/config/tc-bfin.h
@@ -40,7 +40,7 @@
 #define WORKING_DOT_WORD
 
 extern void bfin_start_line_hook (void);
-extern bfd_boolean bfin_start_label (char *);
+extern bfd_boolean bfin_start_label (char *, char *);
 
 #define md_start_line_hook()    bfin_start_line_hook()
 #define md_number_to_chars	number_to_chars_littleendian
@@ -61,7 +61,7 @@ extern bfd_boolean bfin_eol_in_insn (char *);
 
 #define DOUBLESLASH_LINE_COMMENTS
 
-#define TC_START_LABEL(ch ,ptr) (ch == ':' && bfin_start_label (ptr))
+#define TC_START_LABEL(c, s, ptr) (c == ':' && bfin_start_label (s, ptr))
 #define tc_fix_adjustable(FIX) bfin_fix_adjustable (FIX)
 extern bfd_boolean bfin_fix_adjustable (struct fix *);
 
diff --git a/gas/config/tc-d30v.h b/gas/config/tc-d30v.h
index e63ef410832..da7326f6dd2 100644
--- a/gas/config/tc-d30v.h
+++ b/gas/config/tc-d30v.h
@@ -48,7 +48,7 @@ extern long md_pcrel_from_section (struct fix *, segT);
 int d30v_cleanup (int);
 #define md_after_pass_hook()	     d30v_cleanup (FALSE)
 #define md_cleanup()		     d30v_cleanup (FALSE)
-#define TC_START_LABEL(ch, ptr)      (ch == ':' && d30v_cleanup (FALSE))
+#define TC_START_LABEL(ch, s, ptr)      (ch == ':' && d30v_cleanup (FALSE))
 void d30v_start_line (void);
 #define md_start_line_hook()	     d30v_start_line ()
 
diff --git a/gas/config/tc-fr30.h b/gas/config/tc-fr30.h
index 54f60dbe40a..9859c8b2913 100644
--- a/gas/config/tc-fr30.h
+++ b/gas/config/tc-fr30.h
@@ -59,12 +59,8 @@ extern const struct relax_type md_relax_table[];
 
 /* We need a special version of the TC_START_LABEL macro so that we
    allow the LDI:8, LDI:20, LDI:32 and delay slot instructions to be
-   parsed as such.  Note - in a HORRIBLE HACK, we make use of the
-   knowledge that this marco is only ever evaluated in one place
-   (read_a_source_file in read.c) where we can access the local
-   variable 's' - the start of the symbol that was terminated by
-   'character'.  Also we need to be able to change the contents of
+   parsed as such. We need to be able to change the contents of
    the local variable 'c' which is passed to this macro as 'character'.  */
-#define TC_START_LABEL(character, i_l_p)			\
+#define TC_START_LABEL(character, s, i_l_p)				\
   ((character) != ':' ? 0 : (character = fr30_is_colon_insn (s)) ? 0 : ((character = ':'), 1))
 extern char fr30_is_colon_insn (char *);
diff --git a/gas/config/tc-m32c.h b/gas/config/tc-m32c.h
index 1b5a4835f26..4cab1d747a8 100644
--- a/gas/config/tc-m32c.h
+++ b/gas/config/tc-m32c.h
@@ -77,13 +77,9 @@ extern long md_pcrel_from_section (struct fix *, segT);
 
 /* We need a special version of the TC_START_LABEL macro so that we
    allow the :Z, :S, :Q and :G suffixes to be
-   parsed as such.  Note - in a HORRIBLE HACK, we make use of the
-   knowledge that this marco is only ever evaluated in one place
-   (read_a_source_file in read.c) where we can access the local
-   variable 's' - the start of the symbol that was terminated by
-   'character'.  Also we need to be able to change the contents of
+   parsed as such. We need to be able to change the contents of
    the local variable 'c' which is passed to this macro as 'character'.  */
-#define TC_START_LABEL(character, i_l_p)			\
+#define TC_START_LABEL(character, s, i_l_p)				\
   ((character) != ':' ? 0 : (character = m32c_is_colon_insn (s)) ? 0 : ((character = ':'), 1))
 extern char m32c_is_colon_insn (char *);
 
diff --git a/gas/config/tc-m32r.h b/gas/config/tc-m32r.h
index 8f031613517..cf5dbf4f5ed 100644
--- a/gas/config/tc-m32r.h
+++ b/gas/config/tc-m32r.h
@@ -102,7 +102,7 @@ extern int m32r_force_relocation (struct fix *);
 /* Ensure insns at labels are aligned to 32 bit boundaries.  */
 int m32r_fill_insn (int);
 #define md_after_pass_hook()	m32r_fill_insn (1)
-#define TC_START_LABEL(ch, ptr)	(ch == ':' && m32r_fill_insn (0))
+#define TC_START_LABEL(ch, s, ptr)	(ch == ':' && m32r_fill_insn (0))
 
 #define md_cleanup                 m32r_elf_section_change_hook
 #define md_elf_section_change_hook m32r_elf_section_change_hook
diff --git a/gas/config/tc-mep.h b/gas/config/tc-mep.h
index dd5118c3d3c..59f83b05431 100644
--- a/gas/config/tc-mep.h
+++ b/gas/config/tc-mep.h
@@ -97,7 +97,7 @@ extern void mep_prepare_relax_scan (fragS *, offsetT *, relax_substateT);
 #define VTEXT_SECTION_NAME ".vtext"
 
 /* Needed to process pending instructions when a label is encountered.  */
-#define TC_START_LABEL(ch, ptr)    ((ch == ':') && mep_flush_pending_output ())
+#define TC_START_LABEL(ch, s, ptr)    ((ch == ':') && mep_flush_pending_output ())
 
 #define tc_unrecognized_line(c) mep_unrecognized_line (c)
 extern int mep_unrecognized_line (int);
diff --git a/gas/read.c b/gas/read.c
index 40bb11b9d43..d3df99c78c1 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -42,7 +42,7 @@
 #include "dw2gencfi.h"
 
 #ifndef TC_START_LABEL
-#define TC_START_LABEL(x,y) (x == ':')
+#define TC_START_LABEL(x,y,z) (x == ':')
 #endif
 
 /* Set by the object-format or the target.  */
@@ -760,7 +760,7 @@ read_a_source_file (char *name)
 		 S points to the beginning of the symbol.
 		   [In case of pseudo-op, s->'.'.]
 		 Input_line_pointer->'\0' where c was.  */
-	      if (TC_START_LABEL (c, input_line_pointer))
+	      if (TC_START_LABEL (c, s, input_line_pointer))
 		{
 		  if (flag_m68k_mri)
 		    {
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog
index 4a2f405bf95..708912226e7 100644
--- a/gas/testsuite/ChangeLog
+++ b/gas/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-01  Jie Zhang  <jie.zhang@analog.com>
+
+	* gas/bfin/stack2.s: Add pop multiple instruction with a label
+	on the same line.
+	* gas/bfin/stack2.d: Adjust accordingly.
+
 2009-08-31  Jan Beulich  <jbeulich@novell.com>
 
 	* gas/elf/section5.l: Remove no longer issued warning pattern.
diff --git a/gas/testsuite/gas/bfin/stack2.d b/gas/testsuite/gas/bfin/stack2.d
index d87b4ff8ae6..59d2d0208e0 100644
--- a/gas/testsuite/gas/bfin/stack2.d
+++ b/gas/testsuite/gas/bfin/stack2.d
@@ -81,3 +81,5 @@ Disassembly of section .text:
   94:	00 e8 02 00 	LINK 0x8;.*
   98:	00 e8 ff ff 	LINK 0x3fffc;.*
   9c:	01 e8 00 00 	UNLINK;
+  a0:	b3 05       	\(R7:6, P5:3\) = \[SP\+\+\];
+	\.\.\.
diff --git a/gas/testsuite/gas/bfin/stack2.s b/gas/testsuite/gas/bfin/stack2.s
index 0824e7bbbb7..adb4288e4f8 100755
--- a/gas/testsuite/gas/bfin/stack2.s
+++ b/gas/testsuite/gas/bfin/stack2.s
@@ -123,3 +123,5 @@ LINK 0X8;
 LINK 0x3FFFC;
 
 UNLINK ; /* de-allocate the stack frame (b)*/
+
+L$L$foo:  (R7:6,P5:3) = [SP++]; /* Pop multiple on the same line with a label */
-- 
GitLab