mailing list of musl libc
 help / color / mirror / code / Atom feed
* Potential cleanup work post-1.1.9
@ 2015-05-02 22:48 Rich Felker
  2015-05-18  5:24 ` Rich Felker
  0 siblings, 1 reply; 2+ messages in thread
From: Rich Felker @ 2015-05-02 22:48 UTC (permalink / raw)
  To: musl

Just some ideas to jot down somewhere public:

- Changing pthread_cancel signal handler to use mcontext_t members by
  name (with the name provided by pthread_arch.h) instead of offset
  macros and a fake overlaid array.

- Re-unifying x86_64 and x32 sigsetjmp.s by moving both saved values
  to after the signal mask.

- Providing inline atomics instead of runtime-switched for sh4a.

- Cleaning out cruft from struct __pthread, possibly condensing
  multiple locks, packing small/boolean values into chars or
  bitfields, etc.

- Evaluating whether it still makes sense to have struct __libc, or
  all the members in it.

- Eliminating float code in malloc on soft-float archs.

- Deduplicating atomic.h emulations of a_* in terms of a_cas, so that
  archs where everything is emulated in terms of a_cas can just define
  a_cas (much like how syscall.h and syscall_arch.h work now).

- Default atomics implementation for new archs to use (at least
  initially) based on __sync_* builtins.

- Bits deduplication.

- Possibly eliminating preference of globals over TLS, at least when
  it uglifies/enlarges/complexifies the code, for example use of
  libc.threads_minus_1 to determine whether to skip locks and
  libc.uselocale_cnt (instead of __pthread_self()->locale) in the
  CURRENT_LOCALE macro.



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

end of thread, other threads:[~2015-05-18  5:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-02 22:48 Potential cleanup work post-1.1.9 Rich Felker
2015-05-18  5:24 ` Rich Felker

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

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 NNTP newsgroup(s).