tools/testing/selftests/kvm/x86/flds_emulation.h
Source file repositories/reference/linux-study-clean/tools/testing/selftests/kvm/x86/flds_emulation.h
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/kvm/x86/flds_emulation.h- Extension
.h- Size
- 1638 bytes
- Lines
- 53
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
kvm_util.h
Detected Declarations
function instructionfunction handle_flds_emulation_failure_exit
Annotated Snippet
#ifndef SELFTEST_KVM_FLDS_EMULATION_H
#define SELFTEST_KVM_FLDS_EMULATION_H
#include "kvm_util.h"
#define FLDS_MEM_EAX ".byte 0xd9, 0x00"
/*
* flds is an instruction that the KVM instruction emulator is known not to
* support. This can be used in guest code along with a mechanism to force
* KVM to emulate the instruction (e.g. by providing an MMIO address) to
* exercise emulation failures.
*/
static inline void flds(u64 address)
{
__asm__ __volatile__(FLDS_MEM_EAX :: "a"(address));
}
static inline void handle_flds_emulation_failure_exit(struct kvm_vcpu *vcpu)
{
struct kvm_run *run = vcpu->run;
struct kvm_regs regs;
u8 *insn_bytes;
u64 flags;
TEST_ASSERT_KVM_EXIT_REASON(vcpu, KVM_EXIT_INTERNAL_ERROR);
TEST_ASSERT(run->emulation_failure.suberror == KVM_INTERNAL_ERROR_EMULATION,
"Unexpected suberror: %u",
run->emulation_failure.suberror);
flags = run->emulation_failure.flags;
TEST_ASSERT(run->emulation_failure.ndata >= 3 &&
flags & KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES,
"run->emulation_failure is missing instruction bytes");
TEST_ASSERT(run->emulation_failure.insn_size >= 2,
"Expected a 2-byte opcode for 'flds', got %d bytes",
run->emulation_failure.insn_size);
insn_bytes = run->emulation_failure.insn_bytes;
TEST_ASSERT(insn_bytes[0] == 0xd9 && insn_bytes[1] == 0,
"Expected 'flds [eax]', opcode '0xd9 0x00', got opcode 0x%02x 0x%02x",
insn_bytes[0], insn_bytes[1]);
vcpu_regs_get(vcpu, ®s);
regs.rip += 2;
vcpu_regs_set(vcpu, ®s);
}
#endif /* !SELFTEST_KVM_FLDS_EMULATION_H */
Annotation
- Immediate include surface: `kvm_util.h`.
- Detected declarations: `function instruction`, `function handle_flds_emulation_failure_exit`.
- Atlas domain: Support Tooling And Documentation / tools.
- 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.