1/* PLT trampolines.
2 Copyright (C) 2022-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <https://www.gnu.org/licenses/>. */
18
19#include <sysdep.h>
20#include <sys/asm.h>
21
22#if !defined __loongarch_soft_float
23#define USE_LASX
24#define _dl_runtime_resolve _dl_runtime_resolve_lasx
25#define _dl_runtime_profile _dl_runtime_profile_lasx
26#include "dl-trampoline.h"
27#undef FRAME_SIZE
28#undef USE_LASX
29#undef _dl_runtime_resolve
30#undef _dl_runtime_profile
31
32#define USE_LSX
33#define _dl_runtime_resolve _dl_runtime_resolve_lsx
34#define _dl_runtime_profile _dl_runtime_profile_lsx
35#include "dl-trampoline.h"
36#undef FRAME_SIZE
37#undef USE_LSX
38#undef _dl_runtime_resolve
39#undef _dl_runtime_profile
40#endif
41
42#include "dl-trampoline.h"
43

source code of glibc/sysdeps/loongarch/dl-trampoline.S