@@ -577,7 +577,6 @@
{
struct kvm_run *run = env->kvm_run;
int ret;
-
dprintf("kvm_cpu_exec()\n");
do {
@@ -641,7 +640,8 @@
dprintf("kvm_exit_unknown\n");
break;
case KVM_EXIT_FAIL_ENTRY:
- dprintf("kvm_exit_fail_entry\n");
+ printf("kvm_exit_fail_entry\n");
+ exit(1);
break;
case KVM_EXIT_EXCEPTION:
dprintf("kvm_exit_exception\n");
@@ -670,7 +670,31 @@
env->exit_request = 0;
env->exception_index = EXCP_INTERRUPT;
}
-
+
+ /* de, start emulation */
+ if(env->ask_for_emulation){
+ //if( (env->eflags & IF_MASK) && (run->ready_for_interrupt_injection)){
+ if(run->exit_reason == KVM_EXIT_IRQ_WINDOW_OPEN ){
+ int saved_vm_running = vm_running;
+ vm_stop(0);
+ if (kvm_arch_get_registers(env)) {
+ printf("Fatal: kvm vcpu get registers failed\n");
+ abort();
+ }
+ env->kvm_state->regs_modified = 1;
+ env->is_in_emulation = 1;
+ target_ulong pc_start = env->segs[R_CS].base + env->eip;
+ /* int flags = env->hflags |(env->eflags & (IOPL_MASK | TF_MASK
| RF_MASK | VM_MASK)); */
+ /* int code32 = !((flags >> HF_CS32_SHIFT) & 1); */
+ printf("start emulation at pc: 0x%x, eip:0x%x\n", pc_start, env->eip);
+ /* target_disas(stderr, pc_start, 10, code32); */
+ /* env->interrupt_request = 0; */
+ printf("tr type:%d\n", (env->tr.flags >> DESC_TYPE_SHIFT) & 0xf);
+
+ if(saved_vm_running)
+ vm_start();
+ }
+ }
return ret;
}
ask_for_emulation is in the CPU_COMMON
@@ -197,6 +197,8 @@
const char *cpu_model_str; \
struct KVMState *kvm_state; \
struct kvm_run *kvm_run; \
- int kvm_fd;
+ int kvm_fd; \
+ int ask_for_emulation; /* ask for emulation if 1 */ \
+ int is_in_emulation; /* is in emulation */
when is_in_emulation, don't enter kvm again in cpu_exec
#if defined(TARGET_I386)
- if (!kvm_enabled()) {
- /* put eflags in CPU temporary format */
- CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
- DF = 1 - (2 * ((env->eflags >> 10) & 1));
- CC_OP = CC_OP_EFLAGS;
- env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
- }
+ if (!kvm_enabled() || env->is_in_emulation) {
+ /* put eflags in CPU temporary format */
+ CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
+ DF = 1 - (2 * ((env->eflags >> 10) & 1));
+ CC_OP = CC_OP_EFLAGS;
+ env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
+ }
- if (kvm_enabled()) {
- kvm_cpu_exec(env);
- longjmp(env->jmp_env, 1);
- }
+ if (kvm_enabled() && !env->is_in_emulation) {
+ kvm_cpu_exec(env);
+ longjmp(env->jmp_env, 1);
+ }
command "start_emulation", "stop_emulation" support in the monitor
@@ -56,6 +56,9 @@
#include "json-streamer.h"
#include "json-parser.h"
#include "osdep.h"
+/* de */
+static void do_start_emulation(Monitor *mon, const QDict *qdict,
QObject **ret_data)
+{
+ CPUState *env = mon_get_cpu();
+ env->ask_for_emulation = 1;
+ monitor_printf(mon, "Starting emulation...\n");
+}
+
+static void do_stop_emulation(Monitor *mon, const QDict *qdict,
QObject **ret_data)