Use sigsetjmp/siglongjmp in opcodes
sigsetjmp/siglongjmp without saving the signal mask is faster than setjmp/longjmp on systems where the signal mask is saved. This patch uses sigsetjmp/siglongjmp without saving the signal mask if possible. PR binutils/16886 * config.in: Regenerated. * configure: Likewise. * configure.in: Check if sigsetjmp is available. * h8500-dis.c (private): Replace jmp_buf with OPCODES_SIGJMP_BUF. (fetch_data): Replace longjmp with OPCODES_SIGLONGJMP. (print_insn_h8500): Replace setjmp with OPCODES_SIGSETJMP. * i386-dis.c (dis_private): Replace jmp_buf with OPCODES_SIGJMP_BUF. (fetch_data): Replace longjmp with OPCODES_SIGLONGJMP. (print_insn): Replace setjmp with OPCODES_SIGSETJMP. * ns32k-dis.c (private): Replace jmp_buf with OPCODES_SIGJMP_BUF. (fetch_data): Replace longjmp with OPCODES_SIGLONGJMP. (print_insn_ns32k): Replace setjmp with OPCODES_SIGSETJMP. * sysdep.h (OPCODES_SIGJMP_BUF): New macro. (OPCODES_SIGSETJMP): Likewise. (OPCODES_SIGLONGJMP): Likewise. * vax-dis.c (private): Replace jmp_buf with OPCODES_SIGJMP_BUF. (fetch_data): Replace longjmp with OPCODES_SIGLONGJMP. (print_insn_vax): Replace setjmp with OPCODES_SIGSETJMP. * xtensa-dis.c (dis_private): Replace jmp_buf with OPCODES_SIGJMP_BUF. (fetch_data): Replace longjmp with OPCODES_SIGLONGJMP. (print_insn_xtensa): Replace setjmp with OPCODES_SIGSETJMP. * z8k-dis.c(instr_data_s): Replace jmp_buf with OPCODES_SIGJMP_BUF. (fetch_data): Replace longjmp with OPCODES_SIGLONGJMP. (print_insn_z8k): Replace setjmp with OPCODES_SIGSETJMP.
Showing
- opcodes/ChangeLog 29 additions, 0 deletionsopcodes/ChangeLog
- opcodes/config.in 3 additions, 0 deletionsopcodes/config.in
- opcodes/configure 35 additions, 0 deletionsopcodes/configure
- opcodes/configure.in 11 additions, 0 deletionsopcodes/configure.in
- opcodes/h8500-dis.c 3 additions, 3 deletionsopcodes/h8500-dis.c
- opcodes/i386-dis.c 3 additions, 3 deletionsopcodes/i386-dis.c
- opcodes/ns32k-dis.c 3 additions, 3 deletionsopcodes/ns32k-dis.c
- opcodes/sysdep.h 14 additions, 0 deletionsopcodes/sysdep.h
- opcodes/vax-dis.c 3 additions, 3 deletionsopcodes/vax-dis.c
- opcodes/xtensa-dis.c 3 additions, 3 deletionsopcodes/xtensa-dis.c
- opcodes/z8k-dis.c 3 additions, 3 deletionsopcodes/z8k-dis.c
Loading
Please register or sign in to comment