Home | History | Annotate | Line # | Download | only in rs6000
e500crtsavg32gpr.S revision 1.1.1.8
      1      1.1  mrg /*
      2      1.1  mrg  * Special support for e500 eabi and SVR4
      3      1.1  mrg  *
      4  1.1.1.8  mrg  *   Copyright (C) 2008-2022 Free Software Foundation, Inc.
      5      1.1  mrg  *   Written by Nathan Froyd
      6      1.1  mrg  *
      7      1.1  mrg  * This file is free software; you can redistribute it and/or modify it
      8      1.1  mrg  * under the terms of the GNU General Public License as published by the
      9      1.1  mrg  * Free Software Foundation; either version 3, or (at your option) any
     10      1.1  mrg  * later version.
     11      1.1  mrg  *
     12      1.1  mrg  * This file is distributed in the hope that it will be useful, but
     13      1.1  mrg  * WITHOUT ANY WARRANTY; without even the implied warranty of
     14      1.1  mrg  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     15      1.1  mrg  * General Public License for more details.
     16      1.1  mrg  *
     17      1.1  mrg  * Under Section 7 of GPL version 3, you are granted additional
     18      1.1  mrg  * permissions described in the GCC Runtime Library Exception, version
     19      1.1  mrg  * 3.1, as published by the Free Software Foundation.
     20      1.1  mrg  *
     21      1.1  mrg  * You should have received a copy of the GNU General Public License and
     22      1.1  mrg  * a copy of the GCC Runtime Library Exception along with this program;
     23      1.1  mrg  * see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
     24      1.1  mrg  * <http://www.gnu.org/licenses/>.
     25      1.1  mrg  */
     26      1.1  mrg 
     27      1.1  mrg 	.section ".text"
     28      1.1  mrg 	#include "ppc-asm.h"
     29      1.1  mrg 
     30      1.1  mrg #ifdef __SPE__
     31      1.1  mrg 
     32      1.1  mrg /* Routines for saving 32-bit integer registers, called by the compiler.  */
     33      1.1  mrg /* "GOT" versions that load the address of the GOT into lr before returning.  */
     34      1.1  mrg 
     35      1.1  mrg HIDDEN_FUNC(_save32gpr_14_g)	stw 14,-72(11)
     36      1.1  mrg HIDDEN_FUNC(_save32gpr_15_g)	stw 15,-68(11)
     37      1.1  mrg HIDDEN_FUNC(_save32gpr_16_g)	stw 16,-64(11)
     38      1.1  mrg HIDDEN_FUNC(_save32gpr_17_g)	stw 17,-60(11)
     39      1.1  mrg HIDDEN_FUNC(_save32gpr_18_g)	stw 18,-56(11)
     40      1.1  mrg HIDDEN_FUNC(_save32gpr_19_g)	stw 19,-52(11)
     41      1.1  mrg HIDDEN_FUNC(_save32gpr_20_g)	stw 20,-48(11)
     42      1.1  mrg HIDDEN_FUNC(_save32gpr_21_g)	stw 21,-44(11)
     43      1.1  mrg HIDDEN_FUNC(_save32gpr_22_g)	stw 22,-40(11)
     44      1.1  mrg HIDDEN_FUNC(_save32gpr_23_g)	stw 23,-36(11)
     45      1.1  mrg HIDDEN_FUNC(_save32gpr_24_g)	stw 24,-32(11)
     46      1.1  mrg HIDDEN_FUNC(_save32gpr_25_g)	stw 25,-28(11)
     47      1.1  mrg HIDDEN_FUNC(_save32gpr_26_g)	stw 26,-24(11)
     48      1.1  mrg HIDDEN_FUNC(_save32gpr_27_g)	stw 27,-20(11)
     49      1.1  mrg HIDDEN_FUNC(_save32gpr_28_g)	stw 28,-16(11)
     50      1.1  mrg HIDDEN_FUNC(_save32gpr_29_g)	stw 29,-12(11)
     51      1.1  mrg HIDDEN_FUNC(_save32gpr_30_g)	stw 30,-8(11)
     52      1.1  mrg HIDDEN_FUNC(_save32gpr_31_g)	stw 31,-4(11)
     53      1.1  mrg 				b _GLOBAL_OFFSET_TABLE_-4
     54      1.1  mrg FUNC_END(_save32gpr_31_g)
     55      1.1  mrg FUNC_END(_save32gpr_30_g)
     56      1.1  mrg FUNC_END(_save32gpr_29_g)
     57      1.1  mrg FUNC_END(_save32gpr_28_g)
     58      1.1  mrg FUNC_END(_save32gpr_27_g)
     59      1.1  mrg FUNC_END(_save32gpr_26_g)
     60      1.1  mrg FUNC_END(_save32gpr_25_g)
     61      1.1  mrg FUNC_END(_save32gpr_24_g)
     62      1.1  mrg FUNC_END(_save32gpr_23_g)
     63      1.1  mrg FUNC_END(_save32gpr_22_g)
     64      1.1  mrg FUNC_END(_save32gpr_21_g)
     65      1.1  mrg FUNC_END(_save32gpr_20_g)
     66      1.1  mrg FUNC_END(_save32gpr_19_g)
     67      1.1  mrg FUNC_END(_save32gpr_18_g)
     68      1.1  mrg FUNC_END(_save32gpr_17_g)
     69      1.1  mrg FUNC_END(_save32gpr_16_g)
     70      1.1  mrg FUNC_END(_save32gpr_15_g)
     71      1.1  mrg FUNC_END(_save32gpr_14_g)
     72      1.1  mrg 
     73      1.1  mrg #endif
     74