summaryrefslogtreecommitdiffstats
path: root/sys/contrib/ia64
Commit message (Collapse)AuthorAgeFilesLines
* Apply local modifications to make Unwind Express BETA 10 buildable andmarcel2006-07-0712-20/+92
| | | | usable in the FreeBSD kernel.
* This commit was generated by cvs2svn to compensate for changes in r160160,marcel2006-07-074-1121/+0
| | | | which included commits to RCS files with non-trunk default branches.
* Import BETA 10 of HP's Unwind Express. This import does not containmarcel2006-07-0728-347/+1908
| | | | | | | any modifications to make it build as part of the FreeBSD kernel. Now that the source appears to have stabilized, local changes will happen on HEAD and will therefore cause affected files to be pulled from the vendor branch.
* Update to BETA 7. Besides C++ support, which is irrelevant to us,marcel2004-05-0918-190/+1273
| | | | this version mostly has bugs fixes.
* Import beta6 of libuwx. This release has some minor fixes andmarcel2003-10-2929-572/+773
| | | | some minor corrections to beta5.
* Upgrade Unwind Express (libuwx) to BETA 5. This upgrade includesmarcel2003-10-0912-155/+260
| | | | | | | | | | | | | | | | all the fixes locally applied and submitted to the author. Not included in BETA 5, but part of this import are: o FreeBSD specific ifdefs to make this compile within a kernel. These are limited to include directives and defines. o Removal of unused variables, proper casts and initializations to allow building with -Werror. This happens in code so has a higher chance of causing future import conflicts but not enough to worry about it. I'm especially thankful that the author accepted the change to replace DISABLE_TRACE with UWX_TRACE_ENABLE so that we can use it in kernel config files without nasty mappings or indirections as that would make the integration less perfect. Thanks Cary!
* Fix a nasty bug that was exposed by disabling the trace support bymarcel2003-07-121-4/+4
| | | | | | | | | | default. There were 2 cases where the trace code was in the else- part of an if-statement without any compound construct to protect against nullification. The result was that 2 unconditional statements turned into conditional statements and wrecked havoc. This fix has been returned to the vendor and in anticipation of a future import committed onto the vendor branch.
* Rename DISABLE_TRACE to UWX_TRACE_ENABLE and change the conditionalmarcel2003-07-113-4/+7
| | | | | | | | | | | | compilation accordingly. The net effect is that tracing is not by default present and that it can easily be compiled-in. The tracer uses getenv() and printf(), which cannot be used in all cases (ie from the debugger) and with this change we improved the applicability of the unwinder. This change is made on the vendor branch and given back to the vendor for possible inclusion in future versions.
* This is beta4 of libuwx; an ia64 stack unwinder. This code is mademarcel2003-05-1529-0/+5320
available by Hewlett-Packard under the MIT license. The unwinder is small, clean and fast and needed little adaptation for use in the kernel. This import has embedded in it the changes needed to make it build in a kernel environment. To optimize the common case, the kernel will minimize the number of registers saved by not saving the preserved registers. In case access to preserved registers is needed (signal handling, ptrace) the kernel will unwind to the context of the syscall or exception. For this we need an unwinder. Approved by: re (blanket)
OpenPOWER on IntegriCloud