arch/arm64/kernel/perf_callchain.c
Source file repositories/reference/linux-study-clean/arch/arm64/kernel/perf_callchain.c
File Facts
- System
- Linux kernel
- Corpus path
arch/arm64/kernel/perf_callchain.c- Extension
.c- Size
- 872 bytes
- Lines
- 41
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/perf_event.hlinux/stacktrace.hlinux/uaccess.hasm/pointer_auth.h
Detected Declarations
function Copyrightfunction perf_callchain_userfunction perf_callchain_kernel
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* arm64 callchain support
*
* Copyright (C) 2015 ARM Limited
*/
#include <linux/perf_event.h>
#include <linux/stacktrace.h>
#include <linux/uaccess.h>
#include <asm/pointer_auth.h>
static bool callchain_trace(void *data, unsigned long pc)
{
struct perf_callchain_entry_ctx *entry = data;
return perf_callchain_store(entry, pc) == 0;
}
void perf_callchain_user(struct perf_callchain_entry_ctx *entry,
struct pt_regs *regs)
{
if (perf_guest_state()) {
/* We don't support guest os callchain now */
return;
}
arch_stack_walk_user(callchain_trace, entry, regs);
}
void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry,
struct pt_regs *regs)
{
if (perf_guest_state()) {
/* We don't support guest os callchain now */
return;
}
arch_stack_walk(callchain_trace, entry, current, regs);
}
Annotation
- Immediate include surface: `linux/perf_event.h`, `linux/stacktrace.h`, `linux/uaccess.h`, `asm/pointer_auth.h`.
- Detected declarations: `function Copyright`, `function perf_callchain_user`, `function perf_callchain_kernel`.
- Atlas domain: Architecture Layer / arch/arm64.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.