FreeBSD/src caa449b (r350069)usr.bin/truss mips-freebsd.c arm-freebsd.c

Use PT_GET_SC_ARGS and PT_GET_SC_RET in truss.

This removes all of the architecture-specific functions from truss.

A per-ABI structure is still needed to map syscall numbers to names
and FreeBSD errno values to ABI error values as well as hold syscall
counters.  However, the linker set of ABI structures is now replaced
with a simple table mapping ABI names to structures.  This approach
permits sharing the same ABI structure among separate names such as
i386 a.out and ELF binaries as well as ELF v1 vs ELF v2 for powerpc64.

A few differences are visible due to using PT_GET_SC_RET to fetch the
error value of a system call.  Note that ktrace/kdump have had the
"new" behaviors for a long time already:
- System calls that return with EJUSTRETURN or ERESTART will now be
  noticed and logged as such.  Previously sigreturn (which uses
  EJUSTRETURN) would report whatever random value was in the register
  holding errno from the previous system call for example.  Now it
  reports EJUSTRETURN.
- System calls that return errno as their error value such as
  posix_fallocate() and posix_fadvise() now report non-zero return
  values as errors instead of success with a non-zero return value.

Reviewed by:    kib
MFC after:      1 month
Sponsored by:   DARPA
Differential Revision:  https://reviews.freebsd.org/D20963
DeltaFile
+0-144usr.bin/truss/mips-freebsd.c
+0-141usr.bin/truss/arm-freebsd.c
+0-141usr.bin/truss/amd64-freebsd32.c
+0-135usr.bin/truss/i386-freebsd.c
+0-134usr.bin/truss/amd64-freebsd.c
+0-130usr.bin/truss/powerpc64-freebsd.c
+0-128usr.bin/truss/sparc64-freebsd.c
+0-128usr.bin/truss/powerpc64-freebsd32.c
+0-123usr.bin/truss/powerpc-freebsd.c
+0-119usr.bin/truss/amd64-linux32.c
+0-116usr.bin/truss/i386-linux.c
+0-112usr.bin/truss/aarch64-cloudabi32.c
+0-112usr.bin/truss/amd64-cloudabi32.c
+0-110usr.bin/truss/aarch64-freebsd.c
+0-109usr.bin/truss/amd64-linux.c
+0-106usr.bin/truss/riscv-freebsd.c
+89-13usr.bin/truss/setup.c
+0-98usr.bin/truss/i386-cloudabi32.c
+0-97usr.bin/truss/amd64-cloudabi64.c
+0-88usr.bin/truss/aarch64-cloudabi64.c
+0-34usr.bin/truss/Makefile
+16-12usr.bin/truss/syscalls.c
+3-2usr.bin/truss/syscall.h
+0-5usr.bin/truss/truss.h
+108-2,33724 files

UnifiedSplitRaw