1. 31 7月, 2013 3 次提交
  2. 30 7月, 2013 1 次提交
    • T
      use separate sigaction buffers for old and new data · 48748143
      Timo Teräs 提交于
      in signal() it is needed since __sigaction uses restrict in parameters
      and sharing the buffer is technically an aliasing error. do the same
      for the syscall, as at least qemu-user does not handle it properly.
      48748143
  3. 29 7月, 2013 1 次提交
  4. 28 7月, 2013 5 次提交
  5. 27 7月, 2013 6 次提交
  6. 26 7月, 2013 2 次提交
    • R
      16ac00ac
    • R
      new mostly-C crt1 implementation · c5e34dab
      Rich Felker 提交于
      the only immediate effect of this commit is enabling PIE support on
      some archs that did not previously have any Scrt1.s, since the
      existing asm files for crt1 override this C code. so some of the
      crt_arch.h files committed are only there for the sake of documenting
      what their archs "would do" if they used the new C-based crt1.
      
      the expectation is that new archs should use this new system rather
      than using heavy asm for crt1. aside from being easier and less
      error-prone, it also ensures that PIE support is available immediately
      (since Scrt1.o is generated from the same C source, using -fPIC)
      rather than having to be added as an afterthought in the porting
      process.
      c5e34dab
  7. 25 7月, 2013 19 次提交
  8. 24 7月, 2013 3 次提交
    • R
      support STB_GNU_UNIQUE symbol bindings in dynamic linker · e152ee97
      Rich Felker 提交于
      these are needed for some C++ library binaries including most builds
      of libstdc++. I'm not entirely clear on the rationale. this patch does
      not implement any special semantics for them, but as far as I can
      tell, no special treatment is needed in correctly-linked programs;
      this binding seems to exist only for catching incorrectly-linked
      programs.
      e152ee97
    • R
      move the dynamic linker's jmp_buf from static to automatic storage · 17276be3
      Rich Felker 提交于
      this more than compensates for the size increase of jmp_buf, and
      greatly reduces bss/data size on archs with huge jmp_buf.
      17276be3
    • R
      change jmp_buf to share an underlying type and struct tag with sigjmp_buf · 9693501c
      Rich Felker 提交于
      this is necessary to meet the C++ ABI target. alternatives were
      considered to avoid the size increase for non-sig jmp_buf objects, but
      they seemed to have worse properties. moreover, the relative size
      increase is only extreme on x86[_64]; one way of interpreting this is
      that, if the size increase from this patch makes jmp_buf use too much
      memory, then the program was already using too much memory when built
      for non-x86 archs.
      9693501c