Home
last modified time | relevance | path

Searched refs:nextrip (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/amd64/vmm/amd/
H A Dsvm_softc.h50 uint64_t nextrip; /* next instruction to be executed by guest */ member
H A Dsvm.c618 vcpu->nextrip = ~0; in svm_init()
1623 if (vcpustate->nextrip != state->rip) { in svm_inj_interrupts()
1627 vcpustate->nextrip, state->rip); in svm_inj_interrupts()
2129 vcpustate->nextrip = state->rip; in svm_run()
2521 SNAPSHOT_VAR_OR_LEAVE(vcpu->nextrip, meta, ret, done); in svm_snapshot()
/f-stack/freebsd/amd64/vmm/intel/
H A Dvmx.h94 uint64_t nextrip; /* next instruction to be executed by guest */ member
H A Dvmx.c1172 vmx->state[i].nextrip = ~0; in vmx_init()
1423 if (vmx->state[vcpu].nextrip != guestrip) { in vmx_inject_interrupts()
1428 vmx->state[vcpu].nextrip, guestrip); in vmx_inject_interrupts()
3144 vmx->state[vcpu].nextrip = rip; in vmx_run()
/f-stack/freebsd/amd64/vmm/
H A Dvmm.c122 uint64_t nextrip; /* (x) next instruction to execute */ member
1068 vcpu->nextrip = val; in vm_set_register()
1512 vcpu->nextrip += vie->num_processed; in vm_handle_inst_emul()
1514 "decoding", vcpu->nextrip); in vm_handle_inst_emul()
1743 error = vmmops_run(vm->cookie, vcpuid, vcpu->nextrip, pmap, &evinfo); in vm_run()
1754 vcpu->nextrip = vme->rip + vme->inst_length; in vm_run()
1839 "nextrip from %#lx to %#lx", vcpu->nextrip, rip); in vm_restart_instruction()
1840 vcpu->nextrip = rip; in vm_restart_instruction()
2779 SNAPSHOT_VAR_OR_LEAVE(vcpu->nextrip, meta, ret, done); in vm_snapshot_vcpus()