Regenerate.

(Logical change 1.53)
This commit is contained in:
hp.com!davidm 2003-02-22 03:08:22 +00:00
parent 982f0e1684
commit 7849826bf9
2 changed files with 170 additions and 82 deletions

View File

@ -1,5 +1,5 @@
'\" t
.\" Manual page created with latex2man on Thu Feb 20 23:26:18 PST 2003
.\" Manual page created with latex2man on Fri Feb 21 13:48:29 PST 2003
.\" NOTE: This file is generated, DO NOT EDIT.
.de Vb
.ft CW
@ -10,7 +10,7 @@
.fi
..
.TH "UNW\\_RESUME" "3" "20 February 2003" "Programming Library " "Programming Library "
.TH "UNW\\_RESUME" "3" "21 February 2003" "Programming Library " "Programming Library "
.SH NAME
.PP
@ -32,27 +32,47 @@ unw_resume(unw_cursor_t *cursor);
The unw_resume()
routine resumes execution at the stack frame
identified by cursor\&.
Normally, this is accomplished by
restoring the ``preserved\&'' (callee\-saved) machine state. However, if
execution in any of the stack frames younger (more deeply nested) than
the one identified by cursor
was interrupted by a signal, then
The behavior of this routine differs
slightly for local and remote unwinding.
.PP
For local unwinding, unw_resume()
restores the machine state
and then directly resumes execution in the target stack frame. Thus
unw_resume()
will restore the entire machine state, including
the ``preserved\&'' and ``scratch\&'' (caller\-saved) registers, as well as
the signal mask.
does not return in this case. Restoring the
machine state normally involves restoring the ``preserved\&''
(callee\-saved) registers. However, if execution in any of the stack
frames younger (more deeply nested) than the one identified by
cursor
was interrupted by a signal, then unw_resume()
will restore all registers as well as the signal mask.
.PP
For remote unwinding, unw_resume()
installs the machine state
identified by the cursor by calling the access_reg
and
access_fpreg
accessor callbacks as needed. Once that is
accomplished, the resume
accessor callback is invoked. The
unw_resume
routine then returns normally (that is, unlikely
for local unwinding, unw_resume
will always return for remote
unwinding).
.PP
Most platforms reserve some registers to pass arguments to exception
handlers (e.g., IA\-64 uses r15\-r18
for this
purpose). These registers are normally treated like ``scratch\&''
registers. However, if libunwind
is used to define an
exception argument register, e.g., by calling unw_set_reg(),
is used to set an exception
argument register to a particular value (e.g., via
unw_set_reg()),
then unw_resume()
will always install the new value as the
contents of that register. In other words, the exception handling
arguments are installed even in cases where normally only the
will install this
value as the contents of the register. In other words, the exception
handling arguments are installed even in cases where normally only the
``preserved\&'' registers are restored.
.PP
Note that unw_resume()

View File

@ -97,11 +97,15 @@ AM_CPPFLAGS = -I$(top_srcdir)/include
noinst_PROGRAMS_common =
@REMOTE_ONLY_TRUE@TESTS_cdep =
@REMOTE_ONLY_FALSE@TESTS_cdep = test-dyn1 test-exc test-resume-sig test-setjmp test-ptrace
@REMOTE_ONLY_FALSE@TESTS_cdep = Gtest-exc Ltest-exc Gtest-resume-sig Ltest-resume-sig \
@REMOTE_ONLY_FALSE@ Gtest-dyn1 Ltest-dyn1 test-setjmp test-ptrace
@REMOTE_ONLY_TRUE@noinst_PROGRAMS_cdep = $(noinst_PROGRAMS_common)
@REMOTE_ONLY_FALSE@noinst_PROGRAMS_cdep = bt test-init test-varargs
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@noinst_PROGRAMS_arch = ia64-test-sig
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@TESTS_arch = ia64-test-stack ia64-test-rbs
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@TESTS_arch = Gia64-test-stack Lia64-test-stack \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Gia64-test-rbs Lia64-test-rbs
TESTS = $(TESTS_arch) $(TESTS_cdep)
@ -111,8 +115,10 @@ noinst_PROGRAMS = $(noinst_PROGRAMS_common) $(noinst_PROGRAMS_cdep) \
$(noinst_PROGRAMS_arch)
ia64_test_stack_SOURCES = ia64-test-stack.c ia64-test-stack-asm.S
ia64_test_rbs_SOURCES = ia64-test-rbs.c ia64-test-rbs-asm.S
Lia64_test_stack_SOURCES = Lia64-test-stack.c ia64-test-stack-asm.S
Gia64_test_stack_SOURCES = Gia64-test-stack.c ia64-test-stack-asm.S
Lia64_test_rbs_SOURCES = Lia64-test-rbs.c ia64-test-rbs-asm.S
Gia64_test_rbs_SOURCES = Gia64-test-rbs.c ia64-test-rbs-asm.S
LDADD = ../src/libunwind-$(arch).la
@ -122,18 +128,26 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/aux/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/include/config.h
CONFIG_CLEAN_FILES =
@ARCH_IA64_FALSE@@REMOTE_ONLY_TRUE@check_PROGRAMS =
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@check_PROGRAMS = test-dyn1$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ test-exc$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ test-resume-sig$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@check_PROGRAMS = Gtest-exc$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ Ltest-exc$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ Gtest-resume-sig$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ Ltest-resume-sig$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ Gtest-dyn1$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ Ltest-dyn1$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ test-setjmp$(EXEEXT) \
@ARCH_IA64_FALSE@@REMOTE_ONLY_FALSE@ test-ptrace$(EXEEXT)
@ARCH_IA64_TRUE@@REMOTE_ONLY_TRUE@check_PROGRAMS =
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@check_PROGRAMS = \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ ia64-test-stack$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ ia64-test-rbs$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ test-dyn1$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ test-exc$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ test-resume-sig$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Gia64-test-stack$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Lia64-test-stack$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Gia64-test-rbs$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Lia64-test-rbs$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Gtest-exc$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Ltest-exc$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Gtest-resume-sig$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Ltest-resume-sig$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Gtest-dyn1$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ Ltest-dyn1$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ test-setjmp$(EXEEXT) \
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ test-ptrace$(EXEEXT)
@ARCH_IA64_FALSE@@REMOTE_ONLY_TRUE@noinst_PROGRAMS =
@ -147,38 +161,70 @@ CONFIG_CLEAN_FILES =
@ARCH_IA64_TRUE@@REMOTE_ONLY_FALSE@ ia64-test-sig$(EXEEXT)
PROGRAMS = $(noinst_PROGRAMS)
am_Gia64_test_rbs_OBJECTS = Gia64-test-rbs.$(OBJEXT) \
ia64-test-rbs-asm.$(OBJEXT)
Gia64_test_rbs_OBJECTS = $(am_Gia64_test_rbs_OBJECTS)
Gia64_test_rbs_LDADD = $(LDADD)
Gia64_test_rbs_DEPENDENCIES = ../src/libunwind-$(arch).la
Gia64_test_rbs_LDFLAGS =
am_Gia64_test_stack_OBJECTS = Gia64-test-stack.$(OBJEXT) \
ia64-test-stack-asm.$(OBJEXT)
Gia64_test_stack_OBJECTS = $(am_Gia64_test_stack_OBJECTS)
Gia64_test_stack_LDADD = $(LDADD)
Gia64_test_stack_DEPENDENCIES = ../src/libunwind-$(arch).la
Gia64_test_stack_LDFLAGS =
Gtest_dyn1_SOURCES = Gtest-dyn1.c
Gtest_dyn1_OBJECTS = Gtest-dyn1.$(OBJEXT)
Gtest_dyn1_LDADD = $(LDADD)
Gtest_dyn1_DEPENDENCIES = ../src/libunwind-$(arch).la
Gtest_dyn1_LDFLAGS =
Gtest_exc_SOURCES = Gtest-exc.c
Gtest_exc_OBJECTS = Gtest-exc.$(OBJEXT)
Gtest_exc_LDADD = $(LDADD)
Gtest_exc_DEPENDENCIES = ../src/libunwind-$(arch).la
Gtest_exc_LDFLAGS =
Gtest_resume_sig_SOURCES = Gtest-resume-sig.c
Gtest_resume_sig_OBJECTS = Gtest-resume-sig.$(OBJEXT)
Gtest_resume_sig_LDADD = $(LDADD)
Gtest_resume_sig_DEPENDENCIES = ../src/libunwind-$(arch).la
Gtest_resume_sig_LDFLAGS =
am_Lia64_test_rbs_OBJECTS = Lia64-test-rbs.$(OBJEXT) \
ia64-test-rbs-asm.$(OBJEXT)
Lia64_test_rbs_OBJECTS = $(am_Lia64_test_rbs_OBJECTS)
Lia64_test_rbs_LDADD = $(LDADD)
Lia64_test_rbs_DEPENDENCIES = ../src/libunwind-$(arch).la
Lia64_test_rbs_LDFLAGS =
am_Lia64_test_stack_OBJECTS = Lia64-test-stack.$(OBJEXT) \
ia64-test-stack-asm.$(OBJEXT)
Lia64_test_stack_OBJECTS = $(am_Lia64_test_stack_OBJECTS)
Lia64_test_stack_LDADD = $(LDADD)
Lia64_test_stack_DEPENDENCIES = ../src/libunwind-$(arch).la
Lia64_test_stack_LDFLAGS =
Ltest_dyn1_SOURCES = Ltest-dyn1.c
Ltest_dyn1_OBJECTS = Ltest-dyn1.$(OBJEXT)
Ltest_dyn1_LDADD = $(LDADD)
Ltest_dyn1_DEPENDENCIES = ../src/libunwind-$(arch).la
Ltest_dyn1_LDFLAGS =
Ltest_exc_SOURCES = Ltest-exc.c
Ltest_exc_OBJECTS = Ltest-exc.$(OBJEXT)
Ltest_exc_LDADD = $(LDADD)
Ltest_exc_DEPENDENCIES = ../src/libunwind-$(arch).la
Ltest_exc_LDFLAGS =
Ltest_resume_sig_SOURCES = Ltest-resume-sig.c
Ltest_resume_sig_OBJECTS = Ltest-resume-sig.$(OBJEXT)
Ltest_resume_sig_LDADD = $(LDADD)
Ltest_resume_sig_DEPENDENCIES = ../src/libunwind-$(arch).la
Ltest_resume_sig_LDFLAGS =
bt_SOURCES = bt.c
bt_OBJECTS = bt.$(OBJEXT)
bt_LDADD = $(LDADD)
bt_DEPENDENCIES = ../src/libunwind-$(arch).la
bt_LDFLAGS =
am_ia64_test_rbs_OBJECTS = ia64-test-rbs.$(OBJEXT) \
ia64-test-rbs-asm.$(OBJEXT)
ia64_test_rbs_OBJECTS = $(am_ia64_test_rbs_OBJECTS)
ia64_test_rbs_LDADD = $(LDADD)
ia64_test_rbs_DEPENDENCIES = ../src/libunwind-$(arch).la
ia64_test_rbs_LDFLAGS =
ia64_test_sig_SOURCES = ia64-test-sig.c
ia64_test_sig_OBJECTS = ia64-test-sig.$(OBJEXT)
ia64_test_sig_LDADD = $(LDADD)
ia64_test_sig_DEPENDENCIES = ../src/libunwind-$(arch).la
ia64_test_sig_LDFLAGS =
am_ia64_test_stack_OBJECTS = ia64-test-stack.$(OBJEXT) \
ia64-test-stack-asm.$(OBJEXT)
ia64_test_stack_OBJECTS = $(am_ia64_test_stack_OBJECTS)
ia64_test_stack_LDADD = $(LDADD)
ia64_test_stack_DEPENDENCIES = ../src/libunwind-$(arch).la
ia64_test_stack_LDFLAGS =
test_dyn1_SOURCES = test-dyn1.c
test_dyn1_OBJECTS = test-dyn1.$(OBJEXT)
test_dyn1_LDADD = $(LDADD)
test_dyn1_DEPENDENCIES = ../src/libunwind-$(arch).la
test_dyn1_LDFLAGS =
test_exc_SOURCES = test-exc.c
test_exc_OBJECTS = test-exc.$(OBJEXT)
test_exc_LDADD = $(LDADD)
test_exc_DEPENDENCIES = ../src/libunwind-$(arch).la
test_exc_LDFLAGS =
test_init_SOURCES = test-init.c
test_init_OBJECTS = test-init.$(OBJEXT)
test_init_LDADD = $(LDADD)
@ -189,11 +235,6 @@ test_ptrace_OBJECTS = test-ptrace.$(OBJEXT)
test_ptrace_LDADD = $(LDADD)
test_ptrace_DEPENDENCIES = ../src/libunwind-$(arch).la
test_ptrace_LDFLAGS =
test_resume_sig_SOURCES = test-resume-sig.c
test_resume_sig_OBJECTS = test-resume-sig.$(OBJEXT)
test_resume_sig_LDADD = $(LDADD)
test_resume_sig_DEPENDENCIES = ../src/libunwind-$(arch).la
test_resume_sig_LDFLAGS =
test_setjmp_SOURCES = test-setjmp.c
test_setjmp_OBJECTS = test-setjmp.$(OBJEXT)
test_setjmp_DEPENDENCIES = ../src/libunwind-setjmp.la
@ -211,12 +252,16 @@ LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
depcomp = $(SHELL) $(top_srcdir)/aux/depcomp
am__depfiles_maybe = depfiles
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/bt.Po ./$(DEPDIR)/ia64-test-rbs.Po \
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/Gia64-test-rbs.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/Gia64-test-stack.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/Gtest-dyn1.Po ./$(DEPDIR)/Gtest-exc.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/Gtest-resume-sig.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/Lia64-test-rbs.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/Lia64-test-stack.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/Ltest-dyn1.Po ./$(DEPDIR)/Ltest-exc.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/Ltest-resume-sig.Po ./$(DEPDIR)/bt.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/ia64-test-sig.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/ia64-test-stack.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/test-dyn1.Po ./$(DEPDIR)/test-exc.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/test-init.Po ./$(DEPDIR)/test-ptrace.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/test-resume-sig.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/test-setjmp.Po \
@AMDEP_TRUE@ ./$(DEPDIR)/test-varargs.Po
CCASCOMPILE = $(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)
@ -230,11 +275,14 @@ CCLD = $(CC)
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
CFLAGS = @CFLAGS@
DIST_SOURCES = bt.c $(ia64_test_rbs_SOURCES) ia64-test-sig.c \
$(ia64_test_stack_SOURCES) test-dyn1.c test-exc.c test-init.c \
test-ptrace.c test-resume-sig.c test-setjmp.c test-varargs.c
DIST_SOURCES = $(Gia64_test_rbs_SOURCES) $(Gia64_test_stack_SOURCES) \
Gtest-dyn1.c Gtest-exc.c Gtest-resume-sig.c \
$(Lia64_test_rbs_SOURCES) $(Lia64_test_stack_SOURCES) \
Ltest-dyn1.c Ltest-exc.c Ltest-resume-sig.c bt.c \
ia64-test-sig.c test-init.c test-ptrace.c test-setjmp.c \
test-varargs.c
DIST_COMMON = Makefile.am Makefile.in
SOURCES = bt.c $(ia64_test_rbs_SOURCES) ia64-test-sig.c $(ia64_test_stack_SOURCES) test-dyn1.c test-exc.c test-init.c test-ptrace.c test-resume-sig.c test-setjmp.c test-varargs.c
SOURCES = $(Gia64_test_rbs_SOURCES) $(Gia64_test_stack_SOURCES) Gtest-dyn1.c Gtest-exc.c Gtest-resume-sig.c $(Lia64_test_rbs_SOURCES) $(Lia64_test_stack_SOURCES) Ltest-dyn1.c Ltest-exc.c Ltest-resume-sig.c bt.c ia64-test-sig.c test-init.c test-ptrace.c test-setjmp.c test-varargs.c
all: all-am
@ -259,33 +307,48 @@ clean-noinstPROGRAMS:
echo " rm -f $$p $$f"; \
rm -f $$p $$f ; \
done
Gia64-test-rbs$(EXEEXT): $(Gia64_test_rbs_OBJECTS) $(Gia64_test_rbs_DEPENDENCIES)
@rm -f Gia64-test-rbs$(EXEEXT)
$(LINK) $(Gia64_test_rbs_LDFLAGS) $(Gia64_test_rbs_OBJECTS) $(Gia64_test_rbs_LDADD) $(LIBS)
Gia64-test-stack$(EXEEXT): $(Gia64_test_stack_OBJECTS) $(Gia64_test_stack_DEPENDENCIES)
@rm -f Gia64-test-stack$(EXEEXT)
$(LINK) $(Gia64_test_stack_LDFLAGS) $(Gia64_test_stack_OBJECTS) $(Gia64_test_stack_LDADD) $(LIBS)
Gtest-dyn1$(EXEEXT): $(Gtest_dyn1_OBJECTS) $(Gtest_dyn1_DEPENDENCIES)
@rm -f Gtest-dyn1$(EXEEXT)
$(LINK) $(Gtest_dyn1_LDFLAGS) $(Gtest_dyn1_OBJECTS) $(Gtest_dyn1_LDADD) $(LIBS)
Gtest-exc$(EXEEXT): $(Gtest_exc_OBJECTS) $(Gtest_exc_DEPENDENCIES)
@rm -f Gtest-exc$(EXEEXT)
$(LINK) $(Gtest_exc_LDFLAGS) $(Gtest_exc_OBJECTS) $(Gtest_exc_LDADD) $(LIBS)
Gtest-resume-sig$(EXEEXT): $(Gtest_resume_sig_OBJECTS) $(Gtest_resume_sig_DEPENDENCIES)
@rm -f Gtest-resume-sig$(EXEEXT)
$(LINK) $(Gtest_resume_sig_LDFLAGS) $(Gtest_resume_sig_OBJECTS) $(Gtest_resume_sig_LDADD) $(LIBS)
Lia64-test-rbs$(EXEEXT): $(Lia64_test_rbs_OBJECTS) $(Lia64_test_rbs_DEPENDENCIES)
@rm -f Lia64-test-rbs$(EXEEXT)
$(LINK) $(Lia64_test_rbs_LDFLAGS) $(Lia64_test_rbs_OBJECTS) $(Lia64_test_rbs_LDADD) $(LIBS)
Lia64-test-stack$(EXEEXT): $(Lia64_test_stack_OBJECTS) $(Lia64_test_stack_DEPENDENCIES)
@rm -f Lia64-test-stack$(EXEEXT)
$(LINK) $(Lia64_test_stack_LDFLAGS) $(Lia64_test_stack_OBJECTS) $(Lia64_test_stack_LDADD) $(LIBS)
Ltest-dyn1$(EXEEXT): $(Ltest_dyn1_OBJECTS) $(Ltest_dyn1_DEPENDENCIES)
@rm -f Ltest-dyn1$(EXEEXT)
$(LINK) $(Ltest_dyn1_LDFLAGS) $(Ltest_dyn1_OBJECTS) $(Ltest_dyn1_LDADD) $(LIBS)
Ltest-exc$(EXEEXT): $(Ltest_exc_OBJECTS) $(Ltest_exc_DEPENDENCIES)
@rm -f Ltest-exc$(EXEEXT)
$(LINK) $(Ltest_exc_LDFLAGS) $(Ltest_exc_OBJECTS) $(Ltest_exc_LDADD) $(LIBS)
Ltest-resume-sig$(EXEEXT): $(Ltest_resume_sig_OBJECTS) $(Ltest_resume_sig_DEPENDENCIES)
@rm -f Ltest-resume-sig$(EXEEXT)
$(LINK) $(Ltest_resume_sig_LDFLAGS) $(Ltest_resume_sig_OBJECTS) $(Ltest_resume_sig_LDADD) $(LIBS)
bt$(EXEEXT): $(bt_OBJECTS) $(bt_DEPENDENCIES)
@rm -f bt$(EXEEXT)
$(LINK) $(bt_LDFLAGS) $(bt_OBJECTS) $(bt_LDADD) $(LIBS)
ia64-test-rbs$(EXEEXT): $(ia64_test_rbs_OBJECTS) $(ia64_test_rbs_DEPENDENCIES)
@rm -f ia64-test-rbs$(EXEEXT)
$(LINK) $(ia64_test_rbs_LDFLAGS) $(ia64_test_rbs_OBJECTS) $(ia64_test_rbs_LDADD) $(LIBS)
ia64-test-sig$(EXEEXT): $(ia64_test_sig_OBJECTS) $(ia64_test_sig_DEPENDENCIES)
@rm -f ia64-test-sig$(EXEEXT)
$(LINK) $(ia64_test_sig_LDFLAGS) $(ia64_test_sig_OBJECTS) $(ia64_test_sig_LDADD) $(LIBS)
ia64-test-stack$(EXEEXT): $(ia64_test_stack_OBJECTS) $(ia64_test_stack_DEPENDENCIES)
@rm -f ia64-test-stack$(EXEEXT)
$(LINK) $(ia64_test_stack_LDFLAGS) $(ia64_test_stack_OBJECTS) $(ia64_test_stack_LDADD) $(LIBS)
test-dyn1$(EXEEXT): $(test_dyn1_OBJECTS) $(test_dyn1_DEPENDENCIES)
@rm -f test-dyn1$(EXEEXT)
$(LINK) $(test_dyn1_LDFLAGS) $(test_dyn1_OBJECTS) $(test_dyn1_LDADD) $(LIBS)
test-exc$(EXEEXT): $(test_exc_OBJECTS) $(test_exc_DEPENDENCIES)
@rm -f test-exc$(EXEEXT)
$(LINK) $(test_exc_LDFLAGS) $(test_exc_OBJECTS) $(test_exc_LDADD) $(LIBS)
test-init$(EXEEXT): $(test_init_OBJECTS) $(test_init_DEPENDENCIES)
@rm -f test-init$(EXEEXT)
$(LINK) $(test_init_LDFLAGS) $(test_init_OBJECTS) $(test_init_LDADD) $(LIBS)
test-ptrace$(EXEEXT): $(test_ptrace_OBJECTS) $(test_ptrace_DEPENDENCIES)
@rm -f test-ptrace$(EXEEXT)
$(LINK) $(test_ptrace_LDFLAGS) $(test_ptrace_OBJECTS) $(test_ptrace_LDADD) $(LIBS)
test-resume-sig$(EXEEXT): $(test_resume_sig_OBJECTS) $(test_resume_sig_DEPENDENCIES)
@rm -f test-resume-sig$(EXEEXT)
$(LINK) $(test_resume_sig_LDFLAGS) $(test_resume_sig_OBJECTS) $(test_resume_sig_LDADD) $(LIBS)
test-setjmp$(EXEEXT): $(test_setjmp_OBJECTS) $(test_setjmp_DEPENDENCIES)
@rm -f test-setjmp$(EXEEXT)
$(LINK) $(test_setjmp_LDFLAGS) $(test_setjmp_OBJECTS) $(test_setjmp_LDADD) $(LIBS)
@ -299,15 +362,20 @@ mostlyclean-compile:
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gia64-test-rbs.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gia64-test-stack.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gtest-dyn1.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gtest-exc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Gtest-resume-sig.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Lia64-test-rbs.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Lia64-test-stack.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Ltest-dyn1.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Ltest-exc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Ltest-resume-sig.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ia64-test-rbs.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ia64-test-sig.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ia64-test-stack.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-dyn1.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-exc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-init.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-ptrace.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-resume-sig.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-setjmp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-varargs.Po@am__quote@