]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/include/profile.h
zfs: merge openzfs/zfs@0ee9b0239
[FreeBSD/FreeBSD.git] / sys / arm64 / include / profile.h
1 /*-
2  * SPDX-License-Identifier: MIT-CMU
3  *
4  * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
5  * All rights reserved.
6  *
7  * Author: Chris G. Demetriou
8  * 
9  * Permission to use, copy, modify and distribute this software and
10  * its documentation is hereby granted, provided that both the copyright
11  * notice and this permission notice appear in all copies of the
12  * software, derivative works or modified versions, and any portions
13  * thereof, and that both notices appear in supporting documentation.
14  * 
15  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 
16  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 
17  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18  * 
19  * Carnegie Mellon requests users of this software to return to
20  *
21  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
22  *  School of Computer Science
23  *  Carnegie Mellon University
24  *  Pittsburgh PA 15213-3890
25  *
26  * any improvements or extensions that they make and grant Carnegie the
27  * rights to redistribute these changes.
28  *
29  *      from: NetBSD: profile.h,v 1.9 1997/04/06 08:47:37 cgd Exp
30  *      from: FreeBSD: src/sys/alpha/include/profile.h,v 1.4 1999/12/29
31  */
32
33 #ifdef __arm__
34 #include <arm/profile.h>
35 #else /* !__arm__ */
36
37 #ifndef _MACHINE_PROFILE_H_
38 #define _MACHINE_PROFILE_H_
39
40 #define FUNCTION_ALIGNMENT      32
41
42 typedef u_long  fptrdiff_t;
43
44 #ifndef _KERNEL
45
46 #include <sys/cdefs.h>
47
48 typedef __uintfptr_t    uintfptr_t;
49
50 #define _MCOUNT_DECL \
51 static void _mcount(uintfptr_t frompc, uintfptr_t selfpc) __used; \
52 static void _mcount
53
54 /*
55  * Call into _mcount. On arm64 the .mcount is a function so callers will
56  * handle caller saved registers. As we don't directly touch any callee
57  * saved registers we can just load the two arguments and use a tail call
58  * into the MI _mcount function.
59  *
60  * When building with gcc frompc will be in x0, however this is not the
61  * case on clang. As such we need to load it from the stack. As long as
62  * the caller follows the ABI this will load the correct value.
63  */
64 #define MCOUNT __asm(                                   \
65 "       .text                                   \n"     \
66 "       .align  6                               \n"     \
67 "       .type   .mcount,#function               \n"     \
68 "       .globl  .mcount                         \n"     \
69 "       .mcount:                                \n"     \
70 "       .cfi_startproc                          \n"     \
71         /* Load the caller return address as frompc */  \
72 "       ldr     x0, [x29, #8]                   \n"     \
73         /* Use our return address as selfpc */          \
74 "       mov     x1, lr                          \n"     \
75 "       b       _mcount                         \n"     \
76 "       .cfi_endproc                            \n"     \
77 "       .size   .mcount, . - .mcount            \n"     \
78         );
79 #if 0
80 /*
81  * If clang passed frompc correctly we could implement it like this, however
82  * all clang versions we care about would need to be fixed before we could
83  * make this change.
84  */
85 void
86 mcount(uintfptr_t frompc)
87 {
88         _mcount(frompc, __builtin_return_address(0));
89 }
90 #endif
91
92 #endif /* !_KERNEL */
93
94 #endif /* !_MACHINE_PROFILE_H_ */
95
96 #endif /* !__arm__ */