Lines Matching defs:exit
88 struct vm_exit *exit = NULL;
289 * 5. Run the vcpu, expecting an immediate exit for IO assist.
291 exit = malloc(sizeof(*exit));
292 if (exit == NULL) {
298 vrunp.vrp_exit = exit;
326 warnx("unexpected vm exit reason: 0%04x",
331 exit = vrunp.vrp_exit;
332 if (exit->vei.vei_port != PCKBC_AUX) {
334 exit->vei.vei_port);
337 if (exit->vei.vei_string != 1) {
344 printf("insn_len = %u\n", exit->vei.vei_insn_len);
345 exit->vrs.vrs_gprs[VCPU_REGS_RIP] += exit->vei.vei_insn_len;
368 warnx("unexpected vm exit reason: 0%04x",
373 if (exit->vei.vei_port != PCJR_DISKCTRL) {
375 exit->vei.vei_port);
376 printf("rip = 0x%llx\n", exit->vrs.vrs_gprs[VCPU_REGS_RIP]);
417 free(exit);