⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpu.h

📁 xen虚拟机源代码安装包
💻 H
字号:
/* * i386 virtual CPU header *  *  Copyright (c) 2003 Fabrice Bellard * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#ifndef CPU_I386_H#define CPU_I386_H#include "config.h"#ifdef TARGET_X86_64#define TARGET_LONG_BITS 64#else/* #define TARGET_LONG_BITS 32 */#define TARGET_LONG_BITS 64 /* for Qemu map cache */#endif/* target supports implicit self modifying code */#define TARGET_HAS_SMC/* support for self modifying code even if the modified instruction is   close to the modifying instruction */#define TARGET_HAS_PRECISE_SMC#include "cpu-defs.h"#ifdef CONFIG_SOFTFLOAT#include "softfloat.h"#endif#if defined(__i386__) && !defined(CONFIG_SOFTMMU)#define USE_CODE_COPY#endif#ifdef CONFIG_SOFTFLOAT#ifdef USE_X86LDOUBLEtypedef floatx80 CPU86_LDouble;#elsetypedef float64 CPU86_LDouble;#endif#endif/* Empty for now */typedef struct CPUX86State {    uint32_t a20_mask;    int interrupt_request;    CPU_COMMON} CPUX86State;CPUX86State *cpu_x86_init(void);int cpu_x86_exec(CPUX86State *s);void cpu_x86_close(CPUX86State *s);int cpu_get_pic_interrupt(CPUX86State *s);/* MSDOS compatibility mode FPU exception support */void cpu_set_ferr(CPUX86State *s);void cpu_x86_set_a20(CPUX86State *env, int a20_state);#ifndef IN_OP_I386void cpu_x86_outb(CPUX86State *env, int addr, int val);void cpu_x86_outw(CPUX86State *env, int addr, int val);void cpu_x86_outl(CPUX86State *env, int addr, int val);int cpu_x86_inb(CPUX86State *env, int addr);int cpu_x86_inw(CPUX86State *env, int addr);int cpu_x86_inl(CPUX86State *env, int addr);#endif/* helper2.c */int main_loop(void);#if defined(__i386__) || defined(__x86_64__)#define TARGET_PAGE_BITS 12#elif defined(__ia64__)#define TARGET_PAGE_BITS 14#endif #include "cpu-all.h"#endif /* CPU_I386_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -