blob: a8a8c9a649ff8c799de63078d7b617e745a20cc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License ("CDDL"), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2020 Joyent, Inc.
*/
#ifndef _SYS_KFPU_H
#define _SYS_KFPU_H
/*
* This header file provides a means for the kernel to opt into using the FPU.
* Care should be exercised when using the FPU.
*/
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct kfpu_state kfpu_state_t;
/*
* Allocate a new kernel FPU state. This may be allocated at a time independent
* from its use. It will stay around until such a time as kernel_fpu_free() is
* called. A given kernel FPU state may only be used by a single thread at any
* time; however, it is not bound to a given thread.
*/
extern kfpu_state_t *kernel_fpu_alloc(int);
extern void kernel_fpu_free(kfpu_state_t *);
/*
* These functions begin and end the use of the kernel FPU. Once this is called,
* a given kernel thread will be allowed to use the FPU. This will be saved and
* restored across context switches.
*/
extern void kernel_fpu_begin(kfpu_state_t *, uint_t);
extern void kernel_fpu_end(kfpu_state_t *, uint_t);
/*
* Internal validation function.
*/
extern void kernel_fpu_no_swtch(void);
/*
* Flag definitions for kernel_fpu_begin and kernel_fpu_end.
*/
#define KFPU_NO_STATE 0x01 /* kfpu_state_t not passed; use preemption */
#define KFPU_USE_LWP 0x02 /* kfpu_state_t not passed; use lwp */
#ifdef __cplusplus
}
#endif
#endif /* _SYS_KFPU_H */
|