arch/arm64/include/asm/stacktrace/frame.h

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

File Facts

System
Linux kernel
Corpus path
arch/arm64/include/asm/stacktrace/frame.h
Extension
.h
Size
1116 bytes
Lines
49
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

struct frame_record {
	u64 fp;
	u64 lr;
};

/*
 * A metadata frame record indicating a special unwind.
 * The record::{fp,lr} fields must be zero to indicate the presence of
 * metadata.
 */
struct frame_record_meta {
	struct frame_record record;
	u64 type;
};
#endif /* __ASSEMBLER__ */

#endif /* __ASM_STACKTRACE_FRAME_H */

Annotation

Implementation Notes