summaryrefslogtreecommitdiffstats
path: root/sys/arch/powerpc/include/reg.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Delete procfs; it's always had races and is now unused: no one noticed forguenther2014-09-081-2/+2
| | | | | | months that I broke it before the 5.5 release. confirmed as not being required by ports by sthen@, ajacoutot@, dcoppa@
* Add struct fpreg.kettenis2006-05-161-2/+6
|
* Remove the advertising clause in the UCB license which Berkeleymillert2003-06-021-6/+2
| | | | rescinded 22 July 1999. Proofed by myself and Theo.
* backout prematurederaadt2002-09-151-2/+2
|
* KNFderaadt2002-09-151-2/+2
|
* Improved altivec support for powerpc/macppc.drahn2002-03-141-4/+3
| | | | | | | | | | Fix bug where altivec context was not freed on process exit. Fix bug where vscr was not correctly saved/restored. replace asm statement was macros which expand to the same asm code or to .long XXX which evaluates to the same instruction since in-tree gas does not support altivec. Enable ALTIVEC support by default on macppc, still conditional for other powerpc ports.
* Move the process_read_reg prototype to the correct file, it is specifieddrahn2001-12-171-2/+3
| | | | | in ptrace.h, not in md header files. Protect vector functions/variables with _KERNEL.
* Add AltiVec support to powerpc/macppc. This is not currently enabled becausedrahn2001-11-131-1/+14
| | | | | | | the 'as' in openbsd source tree does not yet support altivec instructions. The pieces to enable it have been put in macppc/conf/GENERIC and macppc/conf/Makefile.macppc in comments. Once 'as' is updated the kernel option should be removed.
* header file include/define cleanup. commit N of many.drahn2001-06-291-1/+2
|
* Add kernel support for debugging with gdb. This also make /proc allowrahnds1998-08-071-2/+19
| | | | | | | | | | | | | | access to the registers. The format of the registers returned in ptrace, /proc and in the coredump header match what gdb was expecting. Floating point registers are not yet copied into the structure. The location of the fpr needs to be found and copied. <- TODO Changes to trap.c was to add some interm debugging. code is commented out. powerpc does not currently have a MID_* type, since it uses ELF instead of a.out, one was never added. Currently the coredump is done in form of MID_NONE. What is the correct approach for this?? Elf format coredumps... maybe?
* adding files previously missing.rahnds1997-01-021-0/+45
The reg.h file may not be complete, currently the port does not support ptrace.