Home
last modified time | relevance | path

Searched refs:NR_EMULATOR_GPRS (Results 1 – 2 of 2) sorted by relevance

/linux-6.12.1/arch/x86/kvm/
Dkvm_emulate.h304 #define NR_EMULATOR_GPRS 16 macro
306 #define NR_EMULATOR_GPRS 8 macro
371 unsigned long _regs[NR_EMULATOR_GPRS];
523 if (KVM_EMULATOR_BUG_ON(nr >= NR_EMULATOR_GPRS, ctxt)) in reg_read()
524 nr &= NR_EMULATOR_GPRS - 1; in reg_read()
535 if (KVM_EMULATOR_BUG_ON(nr >= NR_EMULATOR_GPRS, ctxt)) in reg_write()
536 nr &= NR_EMULATOR_GPRS - 1; in reg_write()
538 BUILD_BUG_ON(sizeof(ctxt->regs_dirty) * BITS_PER_BYTE < NR_EMULATOR_GPRS); in reg_write()
539 BUILD_BUG_ON(sizeof(ctxt->regs_valid) * BITS_PER_BYTE < NR_EMULATOR_GPRS); in reg_write()
Demulate.c251 for_each_set_bit(reg, &dirty, NR_EMULATOR_GPRS) in writeback_registers()