1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-30 21:21:45 +02:00
Fork of the libunwind official github repo — http://www.nongnu.org/libunwind/
Go to file
mostang.com!davidm fb1997ff0a Add include of "ia64-test-rbs.h".
(NELEMS): New macro.
(RECURSION_DEPTH): Fix definition: loadup() allocates 93 local regs, not 95.
(spill_func_t): Make it return an "int".
(DCL): Adjust accordingly.
(verbose): New variable.
(nerrors): Make it an "int".
(unwind_count): Ditto.
(unwind_and_resume): Make it return an int.  Print info-output only if verbose is
	set.  After unwinding to the desired point, redirect IP to
	resumption_point_label and store return value in EH_ARG0 and original
	IP in EH_ARG1.
(run_check): New function.
(main): Remove open test code and call run_check() instead.

(Logical change 1.49)
2003-02-15 08:49:55 +00:00
aux Fix checkin lossage. 2003-01-17 18:12:55 +00:00
BitKeeper/etc Mention automake-cache directory. 2002-12-03 08:19:58 +00:00
doc Regenerate. 2003-02-08 10:10:59 +00:00
include (likely): Make them work even for non-GCC (or old GCC) compilers. 2003-02-15 03:10:30 +00:00
scripts Initial revision 2002-12-19 07:16:50 +00:00
src (unw_set_caching_policy): Call ia64_init() first if necessary. 2003-02-15 08:49:55 +00:00
tests Add include of "ia64-test-rbs.h". 2003-02-15 08:49:55 +00:00
acinclude.m4 Remove libtool.m4 gunk---it's no longer needed with libtool v1.4.3. 2003-01-16 03:10:11 +00:00
aclocal.m4 Regenerate. 2003-01-28 03:40:06 +00:00
AUTHORS Initial revision 2002-02-23 20:27:03 +00:00
ChangeLog Correct typo. 2003-01-23 10:04:09 +00:00
ChangeSet Initial revision 2002-02-15 18:20:10 +00:00
configure Regenerate. 2003-02-08 10:10:59 +00:00
configure.in (AC_CHECK_HEADERS): Mention ia64intrin.h. 2003-02-14 03:09:27 +00:00
COPYING Switch to MIT license. 2002-11-16 03:23:11 +00:00
INSTALL Initial revision 2002-02-23 20:27:03 +00:00
Makefile.am Add ARCH_HPPA. 2003-01-14 07:11:56 +00:00
Makefile.in Regenerate. 2003-02-08 10:10:59 +00:00
NEWS ia32 -> x86. 2002-12-19 07:16:50 +00:00
README Update version number and build instructions. 2002-02-23 20:27:03 +00:00

This is version 0.2 of the unwind library.  At the moment, only the
IA-64 Linux (IPF Linux) platform is supported and even that support
has received only light testing.  Consequently, this release is
intended primarily to expose the unwind API to more developers and to
collect feedback on what does and does not work.  Having said that,
backtracing through gcc-generated code might work reasonably well.

There is virtually no documentation at the moment.  A brief outline of
the unwind API is in file NOTES.  To get a feel for how things are
intended to work, you may also want to take a look at
include/libunwind.h and include/libunwind-ia64.h.  Finally, the test
program in tests/bt.c shows two ways of how to do a simple backtrace:
one uses libunwind directly, the other uses a libunwind-based
implementation of the backtrace() function.  The test program in
tests/exc.c shows the basics of how to do exception handling with this
library.

The following steps should be used to compile and install this library:

	$ ./configure
	$ make
	$ make install prefix=PREFIX

where PREFIX is the installation prefix.  By default, a prefix of
/usr/local is used, such that libunwind.a is installed in
/usr/local/lib and unwind.h is installed in /usr/local/include.  For
testing, you may want to use a prefix of /usr/local instead.

Please direct all questions regarding this library to:

	libunwind@linux.hpl.hp.com

For spam protection, you'll have to subscribe to this list before
posting a question.  You can do this by sending a mail to
libunwind-request@linux.hpl.hp.com with a body of:

	subscribe libunwind

Note: the host that is running this list is behind a firewall, so
you'll not be able to use the Web interface to manage your
subscription.  Send a mail containing "help" to
libunwind-request@linux.hpl.hp.com for information on how to manage
your subscription via email.

	--david