aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-29 00:44:05 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-29 00:44:05 +0000
commit9b51f431a8acee55ea414ef48231fc10529f253e (patch)
tree521f7de52e196b30baf983d6c6a86006db4e844b
parentd59e49d894372a37e85a753b1cb9544a49ac8b53 (diff)
downloadglibc-9b51f431a8acee55ea414ef48231fc10529f253e.tar
glibc-9b51f431a8acee55ea414ef48231fc10529f253e.tar.gz
glibc-9b51f431a8acee55ea414ef48231fc10529f253e.tar.bz2
glibc-9b51f431a8acee55ea414ef48231fc10529f253e.zip
Update.
* sysdeps/powerpc/fprsave.S: New file. * sysdeps/powerpc/fprrest.S: New file. * sysdeps/powerpc/Makefile [$(subdir)=misc] (sysdep_routines): Add fprsave and fprrest.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/powerpc/Makefile2
-rw-r--r--sysdeps/powerpc/fprrest.S57
-rw-r--r--sysdeps/powerpc/fprsave.S57
4 files changed, 120 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a60ed58c00..6736bcc1fa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2000-02-28 Ulrich Drepper <drepper@redhat.com>
+ * sysdeps/powerpc/fprsave.S: New file.
+ * sysdeps/powerpc/fprrest.S: New file.
+ * sysdeps/powerpc/Makefile [$(subdir)=misc] (sysdep_routines):
+ Add fprsave and fprrest.
+
* sysdeps/powerpc/gprrest0.S: Use ASM_GLOBAL_DIRECTIVE instead of
.globl.
* sysdeps/powerpc/gprsave0.S: Likewise.
diff --git a/sysdeps/powerpc/Makefile b/sysdeps/powerpc/Makefile
index f7ed25002a..3bad48811e 100644
--- a/sysdeps/powerpc/Makefile
+++ b/sysdeps/powerpc/Makefile
@@ -12,7 +12,7 @@ sysdep_routines += ppc-mcount
endif
ifeq ($(subdir),misc)
-sysdep_routines += gprsave0 gprrest0 gprsave1 gprrest1
+sysdep_routines += gprsave0 gprrest0 gprsave1 gprrest1 fprsave fprrest
endif
# On PPC, -fpic works until the GOT contains 2^15 bytes, and possibly
diff --git a/sysdeps/powerpc/fprrest.S b/sysdeps/powerpc/fprrest.S
new file mode 100644
index 0000000000..0400c97310
--- /dev/null
+++ b/sysdeps/powerpc/fprrest.S
@@ -0,0 +1,57 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with the GNU C Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+#include <sysdep.h>
+
+ ASM_GLOBAL_DIRECTIVE _restfpr_14
+_restfpr_14: lfd fp14,-144(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_15
+_restfpr_15: lfd fp15,-136(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_16
+_restfpr_16: lfd fp16,-128(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_17
+_restfpr_17: lfd fp17,-120(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_18
+_restfpr_18: lfd fp18,-112(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_19
+_restfpr_19: lfd fp19,-104(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_20
+_restfpr_20: lfd fp20,-96(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_21
+_restfpr_21: lfd fp21,-88(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_22
+_restfpr_22: lfd fp22,-80(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_23
+_restfpr_23: lfd fp23,-72(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_24
+_restfpr_24: lfd fp24,-64(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_25
+_restfpr_25: lfd fp25,-56(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_26
+_restfpr_26: lfd fp26,-48(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_27
+_restfpr_27: lfd fp27,-40(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_28
+_restfpr_28: lfd fp28,-32(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_29
+_restfpr_29: lfd fp29,-24(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_30
+_restfpr_30: lfd fp30,-16(r11)
+ ASM_GLOBAL_DIRECTIVE _restfpr_31
+_restfpr_31: lfd fp31,-8(r11)
+ blr
diff --git a/sysdeps/powerpc/fprsave.S b/sysdeps/powerpc/fprsave.S
new file mode 100644
index 0000000000..8c4e186d76
--- /dev/null
+++ b/sysdeps/powerpc/fprsave.S
@@ -0,0 +1,57 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.
+ This file is part of the GNU C Library.
+
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with the GNU C Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+#include <sysdep.h>
+
+ ASM_GLOBAL_DIRECTIVE _savefpr_14
+_savefpr_14: stfd fp14,-144(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_15
+_savefpr_15: stfd fp15,-136(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_16
+_savefpr_16: stfd fp16,-128(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_17
+_savefpr_17: stfd fp17,-120(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_18
+_savefpr_18: stfd fp18,-112(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_19
+_savefpr_19: stfd fp19,-104(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_20
+_savefpr_20: stfd fp20,-96(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_21
+_savefpr_21: stfd fp21,-88(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_22
+_savefpr_22: stfd fp22,-80(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_23
+_savefpr_23: stfd fp23,-72(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_24
+_savefpr_24: stfd fp24,-64(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_25
+_savefpr_25: stfd fp25,-56(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_26
+_savefpr_26: stfd fp26,-48(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_27
+_savefpr_27: stfd fp27,-40(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_28
+_savefpr_28: stfd fp28,-32(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_29
+_savefpr_29: stfd fp29,-24(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_30
+_savefpr_30: stfd fp30,-16(r11)
+ ASM_GLOBAL_DIRECTIVE _savefpr_31
+_savefpr_31: stfd fp31,-8(r11)
+ blr