public inbox for libc-ports@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v2 00/14] ARM improvements
@ 2013-03-01 17:36 Richard Henderson
  2013-03-01 17:36 ` [PATCH v2 03/14] arm: Introduce and use GET_TLS Richard Henderson
                   ` (13 more replies)
  0 siblings, 14 replies; 35+ messages in thread
From: Richard Henderson @ 2013-03-01 17:36 UTC (permalink / raw)
  To: libc-ports; +Cc: joseph

I believe I've now addressed all of the comments to date.

Patches 4-8 have been approved, but they touch the same code
as patches 1-3, so I'm not rearranging them.

Patch 1 -- Spurious whitespace changes removed.
Patch 2 -- I never saw a review for this one?
Patch 3 -- Totally rewritten, in preparation for new patch for hard-tp.
Patch 6 -- Review mentioned deleting __APCS_32__, but this was already
	   done in patch 7, so I didn't rearrange that.
Patch 9-10 -- New.
Patch 11-12 -- Micro-optimization suggestions from Mans Rullgard applied.
Patch 14 -- Adjusted to avoid r9.

I've yet to test the string routines on big-endian.  I'll delay
re-posting those until I have done so.


r~


Richard Henderson (14):
  arm: Introduce and use LDST_PCREL
  arm: Introduce and use NEGOFF series of macros
  arm: Introduce and use GET_TLS
  arm: Enable thumb2 mode in assembly files
  arm: Use push/pop mnemonics
  arm: Delete LOADREGS macro
  arm: Commonize BX conditionals
  arm: Unless arm4t, pop return address directly into pc
  arm: Tidy architecture selection
  arm: Implement hard-tp for GET_TLS
  arm: Add optimized ffs for armv6t2
  arm: Add optimized addmul_1
  arm: Add optimized submul_1
  arm: Add optimized add_n and sub_n

 ports/sysdeps/arm/__longjmp.S                      |   2 +-
 ports/sysdeps/arm/add_n.S                          |  83 ++++++++++++
 ports/sysdeps/arm/addmul_1.S                       |  66 +++++++++
 ports/sysdeps/arm/arm-mcount.S                     |  10 +-
 ports/sysdeps/arm/armv6t2/ffs.S                    |  35 +++++
 ports/sysdeps/arm/armv6t2/ffsll.S                  |  50 +++++++
 ports/sysdeps/arm/crti.S                           |   4 +-
 ports/sysdeps/arm/crtn.S                           |   8 +-
 ports/sysdeps/arm/dl-machine.h                     |   2 +-
 ports/sysdeps/arm/dl-tlsdesc.S                     |  42 +++---
 ports/sysdeps/arm/dl-trampoline.S                  |  13 +-
 ports/sysdeps/arm/memcpy.S                         |  58 ++++----
 ports/sysdeps/arm/memmove.S                        |  58 ++++----
 ports/sysdeps/arm/start.S                          |  10 +-
 ports/sysdeps/arm/sub_n.S                          |   2 +
 ports/sysdeps/arm/submul_1.S                       |  67 ++++++++++
 ports/sysdeps/arm/sysdep.h                         | 147 +++++++++++++++++----
 ports/sysdeps/unix/arm/sysdep.S                    |  32 ++---
 .../sysdeps/unix/sysv/linux/arm/____longjmp_chk.S  |   4 +-
 ports/sysdeps/unix/sysv/linux/arm/aeabi_read_tp.S  |   9 ++
 ports/sysdeps/unix/sysv/linux/arm/clone.S          |  13 +-
 ports/sysdeps/unix/sysv/linux/arm/mmap.S           |   8 +-
 ports/sysdeps/unix/sysv/linux/arm/mmap64.S         |   8 +-
 ports/sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S  |  21 +--
 .../unix/sysv/linux/arm/nptl/sysdep-cancel.h       |  47 +++----
 .../unix/sysv/linux/arm/nptl/unwind-forcedunwind.c |   4 +-
 .../unix/sysv/linux/arm/nptl/unwind-resume.c       |   4 +-
 ports/sysdeps/unix/sysv/linux/arm/nptl/vfork.S     |  24 ++--
 ports/sysdeps/unix/sysv/linux/arm/syscall.S        |   4 +-
 ports/sysdeps/unix/sysv/linux/arm/sysdep.h         |  69 +++++++---
 ports/sysdeps/unix/sysv/linux/arm/vfork.S          |   2 +-
 31 files changed, 648 insertions(+), 258 deletions(-)
 create mode 100644 ports/sysdeps/arm/add_n.S
 create mode 100644 ports/sysdeps/arm/addmul_1.S
 create mode 100644 ports/sysdeps/arm/armv6t2/ffs.S
 create mode 100644 ports/sysdeps/arm/armv6t2/ffsll.S
 create mode 100644 ports/sysdeps/arm/sub_n.S
 create mode 100644 ports/sysdeps/arm/submul_1.S

-- 
1.8.1.2

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

end of thread, other threads:[~2013-10-25 22:13 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-01 17:36 [PATCH v2 00/14] ARM improvements Richard Henderson
2013-03-01 17:36 ` [PATCH v2 03/14] arm: Introduce and use GET_TLS Richard Henderson
2013-03-01 17:57   ` Roland McGrath
2013-03-05  1:45   ` Joseph S. Myers
2013-03-01 17:36 ` [PATCH v2 04/14] arm: Enable thumb2 mode in assembly files Richard Henderson
2013-03-01 17:36 ` [PATCH v2 01/14] arm: Introduce and use LDST_PCREL Richard Henderson
2013-03-04 17:47   ` Joseph S. Myers
2013-03-01 17:36 ` [PATCH v2 12/14] arm: Add optimized addmul_1 Richard Henderson
2013-03-01 17:58   ` Roland McGrath
2013-03-01 18:00   ` Roland McGrath
2013-03-06  1:18     ` Joseph S. Myers
2013-10-25 22:13       ` Roland McGrath
2013-03-06  1:11   ` Joseph S. Myers
2013-03-01 17:36 ` [PATCH v2 02/14] arm: Introduce and use NEGOFF series of macros Richard Henderson
2013-03-01 17:57   ` Roland McGrath
2013-03-05  1:42   ` Joseph S. Myers
2013-03-01 17:36 ` [PATCH v2 07/14] arm: Commonize BX conditionals Richard Henderson
2013-03-01 17:36 ` [PATCH v2 09/14] arm: Tidy architecture selection Richard Henderson
2013-03-01 17:55   ` Roland McGrath
2013-03-05  2:01   ` Joseph S. Myers
2013-03-01 17:36 ` [PATCH v2 05/14] arm: Use push/pop mnemonics Richard Henderson
2013-03-01 17:36 ` [PATCH v2 14/14] arm: Add optimized add_n and sub_n Richard Henderson
2013-03-01 17:59   ` Roland McGrath
2013-03-06  0:53   ` Joseph S. Myers
2013-03-01 17:36 ` [PATCH v2 13/14] arm: Add optimized submul_1 Richard Henderson
2013-03-01 17:58   ` Roland McGrath
2013-03-06  1:14   ` Joseph S. Myers
2013-03-01 17:36 ` [PATCH v2 11/14] arm: Add optimized ffs for armv6t2 Richard Henderson
2013-03-05  2:08   ` Joseph S. Myers
2013-03-06 15:52     ` Richard Henderson
2013-03-01 17:36 ` [PATCH v2 06/14] arm: Delete LOADREGS macro Richard Henderson
2013-03-01 17:36 ` [PATCH v2 08/14] arm: Unless arm4t, pop return address directly into pc Richard Henderson
2013-03-01 17:36 ` [PATCH v2 10/14] arm: Implement hard-tp for GET_TLS Richard Henderson
2013-03-01 17:55   ` Roland McGrath
2013-03-05  2:01   ` Joseph S. Myers

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