X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fpalacios%2Fvmm.c;h=82073f0619b6c54e1951f24c608698ddbc642572;hp=a20399babca460e7ec59de36bf4cf38ba1dd6d71;hb=e23a867d9dcecc70fc76adc0f89404dbc50e5b78;hpb=33916e4213bf7bb340361669bcdb2f3169ea5f06 diff --git a/palacios/src/palacios/vmm.c b/palacios/src/palacios/vmm.c index a20399b..82073f0 100644 --- a/palacios/src/palacios/vmm.c +++ b/palacios/src/palacios/vmm.c @@ -28,8 +28,8 @@ #include -/* These should be the only global variables in Palacios */ -/* They are architecture specific variables */ + + v3_cpu_arch_t v3_cpu_type; struct v3_os_hooks * os_hooks = NULL; @@ -101,3 +101,31 @@ v3_cpu_mode_t v3_get_host_cpu_mode() { #endif + +#define V3_Yield(addr) \ + do { \ + extern struct v3_os_hooks * os_hooks; \ + if ((os_hooks) && (os_hooks)->yield_cpu) { \ + (os_hooks)->yield_cpu(); \ + } \ + } while (0) \ + + +void v3_yield_cond(struct guest_info * info) { + uint64_t cur_cycle; + rdtscll(cur_cycle); + + if (cur_cycle > (info->yield_start_cycle + info->yield_cycle_period)) { + + PrintDebug("Conditional Yield (cur_cyle=%p, start_cycle=%p, period=%p)\n", + (void *)cur_cycle, (void *)info->yield_start_cycle, (void *)info->yield_cycle_period); + + V3_Yield(); + rdtscll(info->yield_start_cycle); + } +} + +void v3_yield(struct guest_info * info) { + V3_Yield(); + rdtscll(info->yield_start_cycle); +}