2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Peter Dinda <pdinda@northwestern.edu>
11 * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
12 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
13 * All rights reserved.
15 * Author: Peter Dinda <pdinda@northwestern.edu>
17 * This is free software. You are permitted to use,
18 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
21 #include <palacios/vmm_halt.h>
22 #include <palacios/vmm_intr.h>
23 #include <palacios/vmm_lowlevel.h>
25 #ifndef V3_CONFIG_DEBUG_HALT
27 #define PrintDebug(fmt, args...)
33 // This should trigger a #GP if cpl != 0, otherwise, yield to host
36 int v3_handle_halt(struct guest_info * info) {
39 v3_raise_exception(info, GPF_EXCEPTION);
41 PrintDebug("CPU Yield\n");
43 while (!v3_intr_pending(info)) {
44 /* Since we're in an exit, time is already paused here, so no need to pause again. */
45 // V3_Print("palacios: halt->yield\n");
50 v3_update_timers(info);
53 /* At this point, we either have some combination of
54 interrupts, including perhaps a timer interrupt, or
57 if (!v3_intr_pending(info)) {
58 /* if no interrupt, then we do halt */
64 /* V3_Print("palacios: done with halt\n"); */