It's not only used when deleting a thread any more. Swapping fpuRelease and dissociateVCPUTCB makes no practical difference as they are independent, but it simplifies verification slightly. Signed-off-by: Indan Zupancic <indan@nul.nu>
42 lines
1 KiB
C
42 lines
1 KiB
C
/*
|
|
* Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <config.h>
|
|
#include <object/structures.h>
|
|
#include <model/statedata.h>
|
|
#include <arch/machine/fpu.h>
|
|
|
|
#ifdef CONFIG_HAVE_FPU
|
|
|
|
/* Perform any actions required for the deletion of the given thread. */
|
|
void fpuRelease(tcb_t *thread);
|
|
|
|
void switchLocalFpuOwner(tcb_t *new_owner);
|
|
|
|
/* Switch the current owner of the FPU state on the core specified by 'cpu'. */
|
|
void switchFpuOwner(tcb_t *new_owner, word_t cpu);
|
|
|
|
/* Returns whether or not the passed thread is using the current active fpu state */
|
|
static inline bool_t nativeThreadUsingFPU(tcb_t *thread)
|
|
{
|
|
return thread == NODE_STATE_ON_CORE(ksCurFPUOwner, thread->tcbAffinity);
|
|
}
|
|
|
|
static inline void FORCE_INLINE lazyFPURestore(tcb_t *thread)
|
|
{
|
|
if (thread->tcbFlags & seL4_TCBFlag_fpuDisabled) {
|
|
disableFpu();
|
|
} else if (nativeThreadUsingFPU(thread)) {
|
|
enableFpu();
|
|
} else {
|
|
switchLocalFpuOwner(thread);
|
|
}
|
|
}
|
|
|
|
#endif /* CONFIG_HAVE_FPU */
|
|
|