arch/arm64/include/asm/neon.h

Source file repositories/reference/linux-study-clean/arch/arm64/include/asm/neon.h

File Facts

System
Linux kernel
Corpus path
arch/arm64/include/asm/neon.h
Extension
.h
Size
429 bytes
Lines
20
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef __ASM_NEON_H
#define __ASM_NEON_H

#include <linux/types.h>
#include <asm/fpsimd.h>

#define cpu_has_neon()		system_supports_fpsimd()

void kernel_neon_begin(struct user_fpsimd_state *);
void kernel_neon_end(struct user_fpsimd_state *);

#endif /* ! __ASM_NEON_H */

Annotation

Implementation Notes