sim-card
/
qemu
Archived
10
0
Fork 0

cpu-exec.c: Correct comment about this file and indentation cleanup

Each target uses the #define macro (in target-xxx/cpu.h) to rename
cpu_exec (cpu-exec.c) to cpu_xxx_exec, then defines its own cpu_loop
which calls cpu_xxx_exec. So basically, cpu-exec.c is not only the i386
emulator main execution loop. This patch corrects the comment of this
file and does indentation cleanup.

Signed-off-by: Chen Wei-Ren (陳韋任) <chenwj@iis.sinica.edu.tw>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
陳韋任 2012-02-06 14:02:55 +08:00 committed by Stefan Hajnoczi
parent e3c52bf2e5
commit e965fc3807
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/* /*
* i386 emulator main execution loop * emulator main execution loop
* *
* Copyright (c) 2003-2005 Fabrice Bellard * Copyright (c) 2003-2005 Fabrice Bellard
* *
@ -304,7 +304,7 @@ int cpu_exec(CPUState *env)
env->hflags2 |= HF2_NMI_MASK; env->hflags2 |= HF2_NMI_MASK;
do_interrupt_x86_hardirq(env, EXCP02_NMI, 1); do_interrupt_x86_hardirq(env, EXCP02_NMI, 1);
next_tb = 0; next_tb = 0;
} else if (interrupt_request & CPU_INTERRUPT_MCE) { } else if (interrupt_request & CPU_INTERRUPT_MCE) {
env->interrupt_request &= ~CPU_INTERRUPT_MCE; env->interrupt_request &= ~CPU_INTERRUPT_MCE;
do_interrupt_x86_hardirq(env, EXCP12_MCHK, 0); do_interrupt_x86_hardirq(env, EXCP12_MCHK, 0);
next_tb = 0; next_tb = 0;
@ -390,7 +390,7 @@ int cpu_exec(CPUState *env)
next_tb = 0; next_tb = 0;
} }
} }
} }
#elif defined(TARGET_ARM) #elif defined(TARGET_ARM)
if (interrupt_request & CPU_INTERRUPT_FIQ if (interrupt_request & CPU_INTERRUPT_FIQ
&& !(env->uncached_cpsr & CPSR_F)) { && !(env->uncached_cpsr & CPSR_F)) {
@ -429,7 +429,7 @@ int cpu_exec(CPUState *env)
{ {
int idx = -1; int idx = -1;
/* ??? This hard-codes the OSF/1 interrupt levels. */ /* ??? This hard-codes the OSF/1 interrupt levels. */
switch (env->pal_mode ? 7 : env->ps & PS_INT_MASK) { switch (env->pal_mode ? 7 : env->ps & PS_INT_MASK) {
case 0 ... 3: case 0 ... 3:
if (interrupt_request & CPU_INTERRUPT_HARD) { if (interrupt_request & CPU_INTERRUPT_HARD) {
idx = EXCP_DEV_INTERRUPT; idx = EXCP_DEV_INTERRUPT;
@ -562,7 +562,7 @@ int cpu_exec(CPUState *env)
barrier(); barrier();
if (likely(!env->exit_request)) { if (likely(!env->exit_request)) {
tc_ptr = tb->tc_ptr; tc_ptr = tb->tc_ptr;
/* execute the generated code */ /* execute the generated code */
next_tb = tcg_qemu_tb_exec(env, tc_ptr); next_tb = tcg_qemu_tb_exec(env, tc_ptr);
if ((next_tb & 3) == 2) { if ((next_tb & 3) == 2) {
/* Instruction counter expired. */ /* Instruction counter expired. */