亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cpu.h

?? QEMU 0.91 source code, supports ARM processor including S3C24xx series
?? H
?? 第 1 頁 / 共 4 頁
字號:
/* *  PowerPC emulation cpu definitions for qemu. * *  Copyright (c) 2003-2007 Jocelyn Mayer * * 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 */#if !defined (__CPU_PPC_H__)#define __CPU_PPC_H__#include "config.h"#include <inttypes.h>//#define PPC_EMULATE_32BITS_HYPV#if defined (TARGET_PPC64)/* PowerPC 64 definitions */typedef uint64_t ppc_gpr_t;#define TARGET_LONG_BITS 64#define TARGET_PAGE_BITS 12#else /* defined (TARGET_PPC64) *//* PowerPC 32 definitions */#if (HOST_LONG_BITS >= 64)/* When using 64 bits temporary registers, * we can use 64 bits GPR with no extra cost * It's even an optimization as this will prevent * the compiler to do unuseful masking in the micro-ops. */typedef uint64_t ppc_gpr_t;#else /* (HOST_LONG_BITS >= 64) */typedef uint32_t ppc_gpr_t;#endif /* (HOST_LONG_BITS >= 64) */#define TARGET_LONG_BITS 32#if defined(TARGET_PPCEMB)/* Specific definitions for PowerPC embedded *//* BookE have 36 bits physical address space */#define TARGET_PHYS_ADDR_BITS 64#if defined(CONFIG_USER_ONLY)/* It looks like a lot of Linux programs assume page size * is 4kB long. This is evil, but we have to deal with it... */#define TARGET_PAGE_BITS 12#else /* defined(CONFIG_USER_ONLY) *//* Pages can be 1 kB small */#define TARGET_PAGE_BITS 10#endif /* defined(CONFIG_USER_ONLY) */#else /* defined(TARGET_PPCEMB) *//* "standard" PowerPC 32 definitions */#define TARGET_PAGE_BITS 12#endif /* defined(TARGET_PPCEMB) */#endif /* defined (TARGET_PPC64) */#include "cpu-defs.h"#define REGX "%016" PRIx64#define ADDRX TARGET_FMT_lx#define PADDRX TARGET_FMT_plx#include <setjmp.h>#include "softfloat.h"#define TARGET_HAS_ICE 1#if defined (TARGET_PPC64)#define ELF_MACHINE     EM_PPC64#else#define ELF_MACHINE     EM_PPC#endif/*****************************************************************************//* MMU model                                                                 */typedef enum powerpc_mmu_t powerpc_mmu_t;enum powerpc_mmu_t {    POWERPC_MMU_UNKNOWN    = 0x00000000,    /* Standard 32 bits PowerPC MMU                            */    POWERPC_MMU_32B        = 0x00000001,    /* PowerPC 6xx MMU with software TLB                       */    POWERPC_MMU_SOFT_6xx   = 0x00000002,    /* PowerPC 74xx MMU with software TLB                      */    POWERPC_MMU_SOFT_74xx  = 0x00000003,    /* PowerPC 4xx MMU with software TLB                       */    POWERPC_MMU_SOFT_4xx   = 0x00000004,    /* PowerPC 4xx MMU with software TLB and zones protections */    POWERPC_MMU_SOFT_4xx_Z = 0x00000005,    /* PowerPC MMU in real mode only                           */    POWERPC_MMU_REAL       = 0x00000006,    /* Freescale MPC8xx MMU model                              */    POWERPC_MMU_MPC8xx     = 0x00000007,    /* BookE MMU model                                         */    POWERPC_MMU_BOOKE      = 0x00000008,    /* BookE FSL MMU model                                     */    POWERPC_MMU_BOOKE_FSL  = 0x00000009,    /* PowerPC 601 MMU model (specific BATs format)            */    POWERPC_MMU_601        = 0x0000000A,#if defined(TARGET_PPC64)#define POWERPC_MMU_64       0x00010000    /* 64 bits PowerPC MMU                                     */    POWERPC_MMU_64B        = POWERPC_MMU_64 | 0x00000001,    /* 620 variant (no segment exceptions)                     */    POWERPC_MMU_620        = POWERPC_MMU_64 | 0x00000002,#endif /* defined(TARGET_PPC64) */};/*****************************************************************************//* Exception model                                                           */typedef enum powerpc_excp_t powerpc_excp_t;enum powerpc_excp_t {    POWERPC_EXCP_UNKNOWN   = 0,    /* Standard PowerPC exception model */    POWERPC_EXCP_STD,    /* PowerPC 40x exception model      */    POWERPC_EXCP_40x,    /* PowerPC 601 exception model      */    POWERPC_EXCP_601,    /* PowerPC 602 exception model      */    POWERPC_EXCP_602,    /* PowerPC 603 exception model      */    POWERPC_EXCP_603,    /* PowerPC 603e exception model     */    POWERPC_EXCP_603E,    /* PowerPC G2 exception model       */    POWERPC_EXCP_G2,    /* PowerPC 604 exception model      */    POWERPC_EXCP_604,    /* PowerPC 7x0 exception model      */    POWERPC_EXCP_7x0,    /* PowerPC 7x5 exception model      */    POWERPC_EXCP_7x5,    /* PowerPC 74xx exception model     */    POWERPC_EXCP_74xx,    /* BookE exception model            */    POWERPC_EXCP_BOOKE,#if defined(TARGET_PPC64)    /* PowerPC 970 exception model      */    POWERPC_EXCP_970,#endif /* defined(TARGET_PPC64) */};/*****************************************************************************//* Exception vectors definitions                                             */enum {    POWERPC_EXCP_NONE    = -1,    /* The 64 first entries are used by the PowerPC embedded specification   */    POWERPC_EXCP_CRITICAL = 0,  /* Critical input                            */    POWERPC_EXCP_MCHECK   = 1,  /* Machine check exception                   */    POWERPC_EXCP_DSI      = 2,  /* Data storage exception                    */    POWERPC_EXCP_ISI      = 3,  /* Instruction storage exception             */    POWERPC_EXCP_EXTERNAL = 4,  /* External input                            */    POWERPC_EXCP_ALIGN    = 5,  /* Alignment exception                       */    POWERPC_EXCP_PROGRAM  = 6,  /* Program exception                         */    POWERPC_EXCP_FPU      = 7,  /* Floating-point unavailable exception      */    POWERPC_EXCP_SYSCALL  = 8,  /* System call exception                     */    POWERPC_EXCP_APU      = 9,  /* Auxiliary processor unavailable           */    POWERPC_EXCP_DECR     = 10, /* Decrementer exception                     */    POWERPC_EXCP_FIT      = 11, /* Fixed-interval timer interrupt            */    POWERPC_EXCP_WDT      = 12, /* Watchdog timer interrupt                  */    POWERPC_EXCP_DTLB     = 13, /* Data TLB miss                             */    POWERPC_EXCP_ITLB     = 14, /* Instruction TLB miss                      */    POWERPC_EXCP_DEBUG    = 15, /* Debug interrupt                           */    /* Vectors 16 to 31 are reserved                                         */    POWERPC_EXCP_SPEU     = 32, /* SPE/embedded floating-point unavailable   */    POWERPC_EXCP_EFPDI    = 33, /* Embedded floating-point data interrupt    */    POWERPC_EXCP_EFPRI    = 34, /* Embedded floating-point round interrupt   */    POWERPC_EXCP_EPERFM   = 35, /* Embedded performance monitor interrupt    */    POWERPC_EXCP_DOORI    = 36, /* Embedded doorbell interrupt               */    POWERPC_EXCP_DOORCI   = 37, /* Embedded doorbell critical interrupt      */    /* Vectors 38 to 63 are reserved                                         */    /* Exceptions defined in the PowerPC server specification                */    POWERPC_EXCP_RESET    = 64, /* System reset exception                    */    POWERPC_EXCP_DSEG     = 65, /* Data segment exception                    */    POWERPC_EXCP_ISEG     = 66, /* Instruction segment exception             */    POWERPC_EXCP_HDECR    = 67, /* Hypervisor decrementer exception          */    POWERPC_EXCP_TRACE    = 68, /* Trace exception                           */    POWERPC_EXCP_HDSI     = 69, /* Hypervisor data storage exception         */    POWERPC_EXCP_HISI     = 70, /* Hypervisor instruction storage exception  */    POWERPC_EXCP_HDSEG    = 71, /* Hypervisor data segment exception         */    POWERPC_EXCP_HISEG    = 72, /* Hypervisor instruction segment exception  */    POWERPC_EXCP_VPU      = 73, /* Vector unavailable exception              */    /* 40x specific exceptions                                               */    POWERPC_EXCP_PIT      = 74, /* Programmable interval timer interrupt     */    /* 601 specific exceptions                                               */    POWERPC_EXCP_IO       = 75, /* IO error exception                        */    POWERPC_EXCP_RUNM     = 76, /* Run mode exception                        */    /* 602 specific exceptions                                               */    POWERPC_EXCP_EMUL     = 77, /* Emulation trap exception                  */    /* 602/603 specific exceptions                                           */    POWERPC_EXCP_IFTLB    = 78, /* Instruction fetch TLB miss                */    POWERPC_EXCP_DLTLB    = 79, /* Data load TLB miss                        */    POWERPC_EXCP_DSTLB    = 80, /* Data store TLB miss                       */    /* Exceptions available on most PowerPC                                  */    POWERPC_EXCP_FPA      = 81, /* Floating-point assist exception           */    POWERPC_EXCP_DABR     = 82, /* Data address breakpoint                   */    POWERPC_EXCP_IABR     = 83, /* Instruction address breakpoint            */    POWERPC_EXCP_SMI      = 84, /* System management interrupt               */    POWERPC_EXCP_PERFM    = 85, /* Embedded performance monitor interrupt    */    /* 7xx/74xx specific exceptions                                          */    POWERPC_EXCP_THERM    = 86, /* Thermal interrupt                         */    /* 74xx specific exceptions                                              */    POWERPC_EXCP_VPUA     = 87, /* Vector assist exception                   */    /* 970FX specific exceptions                                             */    POWERPC_EXCP_SOFTP    = 88, /* Soft patch exception                      */    POWERPC_EXCP_MAINT    = 89, /* Maintenance exception                     */    /* Freescale embeded cores specific exceptions                           */    POWERPC_EXCP_MEXTBR   = 90, /* Maskable external breakpoint              */    POWERPC_EXCP_NMEXTBR  = 91, /* Non maskable external breakpoint          */    POWERPC_EXCP_ITLBE    = 92, /* Instruction TLB error                     */    POWERPC_EXCP_DTLBE    = 93, /* Data TLB error                            */    /* EOL                                                                   */    POWERPC_EXCP_NB       = 96,    /* Qemu exceptions: used internally during code translation              */    POWERPC_EXCP_STOP         = 0x200, /* stop translation                   */    POWERPC_EXCP_BRANCH       = 0x201, /* branch instruction                 */    /* Qemu exceptions: special cases we want to stop translation            */    POWERPC_EXCP_SYNC         = 0x202, /* context synchronizing instruction  */    POWERPC_EXCP_SYSCALL_USER = 0x203, /* System call in user mode only      */};/* Exceptions error codes                                                    */enum {    /* Exception subtypes for POWERPC_EXCP_ALIGN                             */    POWERPC_EXCP_ALIGN_FP      = 0x01,  /* FP alignment exception            */    POWERPC_EXCP_ALIGN_LST     = 0x02,  /* Unaligned mult/extern load/store  */    POWERPC_EXCP_ALIGN_LE      = 0x03,  /* Multiple little-endian access     */    POWERPC_EXCP_ALIGN_PROT    = 0x04,  /* Access cross protection boundary  */    POWERPC_EXCP_ALIGN_BAT     = 0x05,  /* Access cross a BAT/seg boundary   */    POWERPC_EXCP_ALIGN_CACHE   = 0x06,  /* Impossible dcbz access            */    /* Exception subtypes for POWERPC_EXCP_PROGRAM                           */    /* FP exceptions                                                         */    POWERPC_EXCP_FP            = 0x10,    POWERPC_EXCP_FP_OX         = 0x01,  /* FP overflow                       */    POWERPC_EXCP_FP_UX         = 0x02,  /* FP underflow                      */    POWERPC_EXCP_FP_ZX         = 0x03,  /* FP divide by zero                 */    POWERPC_EXCP_FP_XX         = 0x04,  /* FP inexact                        */    POWERPC_EXCP_FP_VXSNAN     = 0x05,  /* FP invalid SNaN op                */    POWERPC_EXCP_FP_VXISI      = 0x06,  /* FP invalid infinite subtraction   */    POWERPC_EXCP_FP_VXIDI      = 0x07,  /* FP invalid infinite divide        */    POWERPC_EXCP_FP_VXZDZ      = 0x08,  /* FP invalid zero divide            */    POWERPC_EXCP_FP_VXIMZ      = 0x09,  /* FP invalid infinite * zero        */    POWERPC_EXCP_FP_VXVC       = 0x0A,  /* FP invalid compare                */    POWERPC_EXCP_FP_VXSOFT     = 0x0B,  /* FP invalid operation              */    POWERPC_EXCP_FP_VXSQRT     = 0x0C,  /* FP invalid square root            */    POWERPC_EXCP_FP_VXCVI      = 0x0D,  /* FP invalid integer conversion     */    /* Invalid instruction                                                   */    POWERPC_EXCP_INVAL         = 0x20,    POWERPC_EXCP_INVAL_INVAL   = 0x01,  /* Invalid instruction               */    POWERPC_EXCP_INVAL_LSWX    = 0x02,  /* Invalid lswx instruction          */    POWERPC_EXCP_INVAL_SPR     = 0x03,  /* Invalid SPR access                */    POWERPC_EXCP_INVAL_FP      = 0x04,  /* Unimplemented mandatory fp instr  */    /* Privileged instruction                                                */    POWERPC_EXCP_PRIV          = 0x30,    POWERPC_EXCP_PRIV_OPC      = 0x01,  /* Privileged operation exception    */    POWERPC_EXCP_PRIV_REG      = 0x02,  /* Privileged register exception     */    /* Trap                                                                  */    POWERPC_EXCP_TRAP          = 0x40,};/*****************************************************************************//* Input pins model                                                          */typedef enum powerpc_input_t powerpc_input_t;enum powerpc_input_t {    PPC_FLAGS_INPUT_UNKNOWN = 0,    /* PowerPC 6xx bus                  */    PPC_FLAGS_INPUT_6xx,    /* BookE bus                        */    PPC_FLAGS_INPUT_BookE,    /* PowerPC 405 bus                  */    PPC_FLAGS_INPUT_405,    /* PowerPC 970 bus                  */    PPC_FLAGS_INPUT_970,    /* PowerPC 401 bus                  */    PPC_FLAGS_INPUT_401,    /* Freescale RCPU bus               */    PPC_FLAGS_INPUT_RCPU,};#define PPC_INPUT(env) (env->bus_model)/*****************************************************************************/typedef struct ppc_def_t ppc_def_t;typedef struct opc_handler_t opc_handler_t;/*****************************************************************************//* Types used to describe some PowerPC registers */typedef struct CPUPPCState CPUPPCState;typedef struct ppc_tb_t ppc_tb_t;typedef struct ppc_spr_t ppc_spr_t;typedef struct ppc_dcr_t ppc_dcr_t;typedef union ppc_avr_t ppc_avr_t;typedef union ppc_tlb_t ppc_tlb_t;/* SPR access micro-ops generations callbacks */struct ppc_spr_t {    void (*uea_read)(void *opaque, int spr_num);    void (*uea_write)(void *opaque, int spr_num);#if !defined(CONFIG_USER_ONLY)    void (*oea_read)(void *opaque, int spr_num);    void (*oea_write)(void *opaque, int spr_num);    void (*hea_read)(void *opaque, int spr_num);    void (*hea_write)(void *opaque, int spr_num);#endif    const unsigned char *name;};/* Altivec registers (128 bits) */union ppc_avr_t {    uint8_t u8[16];    uint16_t u16[8];    uint32_t u32[4];    uint64_t u64[2];};/* Software TLB cache */typedef struct ppc6xx_tlb_t ppc6xx_tlb_t;struct ppc6xx_tlb_t {    target_ulong pte0;    target_ulong pte1;    target_ulong EPN;};typedef struct ppcemb_tlb_t ppcemb_tlb_t;struct ppcemb_tlb_t {    target_phys_addr_t RPN;    target_ulong EPN;    target_ulong PID;    target_ulong size;    uint32_t prot;    uint32_t attr; /* Storage attributes */};union ppc_tlb_t {    ppc6xx_tlb_t tlb6;    ppcemb_tlb_t tlbe;};/*****************************************************************************//* Machine state register bits definition                                    */#define MSR_SF   63 /* Sixty-four-bit mode                            hflags */#define MSR_TAG  62 /* Tag-active mode (POWERx ?)                            */#define MSR_ISF  61 /* Sixty-four-bit interrupt mode on 630                  */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产午夜精品美女毛片视频| 福利一区福利二区| 欧美日韩亚洲高清一区二区| 亚洲欧美另类小说| 99久久国产综合色|国产精品| 亚洲天堂网中文字| 色综合久久综合网欧美综合网| 一区二区三区小说| 欧美精品免费视频| 狠狠网亚洲精品| 国产精品色一区二区三区| 91麻豆免费观看| 午夜电影久久久| 亚洲精品在线观看视频| 波多野结衣中文一区| 亚洲免费高清视频在线| 欧美一区二区精品在线| 国产乱子伦一区二区三区国色天香 | 国产成人在线视频网站| 中文字幕精品综合| 欧美亚洲另类激情小说| 蜜臀va亚洲va欧美va天堂| 国产清纯在线一区二区www| 在线亚洲一区二区| 另类小说图片综合网| 国产精品视频一二三区 | 欧洲国内综合视频| 美女爽到高潮91| 成人免费一区二区三区在线观看 | 国产不卡在线一区| 亚洲成在线观看| 2023国产一二三区日本精品2022| 成人av网站免费| 日本不卡免费在线视频| 亚洲天堂网中文字| 久久美女艺术照精彩视频福利播放 | 欧美tk—视频vk| 91免费视频观看| 久久99国产精品久久| 亚洲人成网站在线| 久久一日本道色综合| 欧美视频一区二区三区| www.av亚洲| 经典一区二区三区| 五月天中文字幕一区二区| 国产精品色在线观看| 久久色在线观看| 欧美高清www午色夜在线视频| k8久久久一区二区三区 | 国产成人免费视频精品含羞草妖精| 亚洲一区二区精品视频| 国产精品久久久久久久久果冻传媒| 日韩无一区二区| 欧美三级三级三级| 97久久超碰精品国产| 国产福利一区二区三区视频| 亚洲成av人片一区二区三区| 日韩毛片一二三区| 国产精品美女一区二区| 久久在线观看免费| 日韩你懂的电影在线观看| 777久久久精品| 欧美性色黄大片| 色悠悠亚洲一区二区| av不卡在线播放| 成人免费看片app下载| 国产美女av一区二区三区| 极品尤物av久久免费看| 免费欧美在线视频| 奇米影视一区二区三区小说| 亚洲18影院在线观看| 亚洲一区二区偷拍精品| 亚洲美女视频在线观看| 亚洲特黄一级片| 综合激情成人伊人| 亚洲精品一卡二卡| 依依成人综合视频| 一区二区久久久| 亚洲自拍与偷拍| 亚洲成a天堂v人片| 性做久久久久久| 视频一区中文字幕国产| 日本不卡123| 久久激情综合网| 国产精品一区2区| 风间由美一区二区三区在线观看| 国产美女视频91| 成人晚上爱看视频| 91美女在线观看| 欧美日韩一级片在线观看| 欧美乱熟臀69xxxxxx| 日韩西西人体444www| 精品国产第一区二区三区观看体验| 精品蜜桃在线看| 中日韩免费视频中文字幕| 亚洲欧美另类在线| 日韩成人av影视| 国产乱码精品一区二区三区忘忧草| 国产盗摄视频一区二区三区| 成人一级黄色片| 欧美亚洲丝袜传媒另类| 日韩一级在线观看| 国产免费成人在线视频| 亚洲视频免费在线| 石原莉奈一区二区三区在线观看| 久久99国产精品久久99| 99精品欧美一区二区三区小说| 日本二三区不卡| 日韩免费视频线观看| 自拍偷自拍亚洲精品播放| 亚洲一区二区三区四区不卡| 久久精品国产免费| 91在线一区二区三区| 91精品国产一区二区三区| 国产日韩欧美综合一区| 亚洲免费观看高清完整版在线观看 | 91麻豆免费看| 欧美一区二区三区日韩视频| 国产欧美一区视频| 亚洲国产欧美日韩另类综合| 国产乱码精品一区二区三区五月婷| 在线观看亚洲一区| 国产日韩欧美激情| 午夜成人免费视频| av资源网一区| 日韩欧美一二区| 亚洲午夜一区二区三区| 国产99久久精品| 欧美一区在线视频| 亚洲影院在线观看| 从欧美一区二区三区| 69堂国产成人免费视频| 亚洲日本一区二区| 国产高清在线观看免费不卡| 欧美日韩极品在线观看一区| 国产精品久久免费看| 麻豆一区二区三| 欧美日韩一级片在线观看| 最新国产の精品合集bt伙计| 精品一区二区av| 欧美精品色综合| 亚洲午夜精品在线| av男人天堂一区| 久久久久久久一区| 久久精工是国产品牌吗| 91麻豆精品久久久久蜜臀| 依依成人精品视频| 99re热视频这里只精品 | 亚洲欧洲无码一区二区三区| 九一久久久久久| 日韩三级.com| 免费日韩伦理电影| 欧美一区二区免费观在线| 视频一区在线播放| 欧美视频你懂的| 亚洲与欧洲av电影| 欧美吞精做爰啪啪高潮| 亚洲人成电影网站色mp4| 成人av片在线观看| 亚洲视频中文字幕| 9l国产精品久久久久麻豆| 中文字幕精品一区| 成人爽a毛片一区二区免费| 久久久一区二区三区| 国产一区二区三区在线观看精品| 日韩精品中文字幕在线一区| 麻豆精品蜜桃视频网站| 日韩欧美成人一区二区| 久久国产三级精品| 日韩女优视频免费观看| 国产在线视频不卡二| 国产偷v国产偷v亚洲高清| 国产成人自拍网| 中文字幕中文字幕中文字幕亚洲无线| 粉嫩嫩av羞羞动漫久久久 | 亚洲人成小说网站色在线 | 日本午夜一本久久久综合| 欧美不卡激情三级在线观看| 老司机精品视频在线| 精品少妇一区二区三区日产乱码 | 久久女同精品一区二区| 韩日精品视频一区| 中文av一区二区| 色天天综合久久久久综合片| 亚洲一区二区三区激情| 884aa四虎影成人精品一区| 久久精品国产精品亚洲红杏| 国产亚洲综合在线| av激情亚洲男人天堂| 亚洲国产精品一区二区久久恐怖片| 欧美日韩国产三级| 国产麻豆精品视频| 亚洲另类中文字| 欧美精品久久久久久久多人混战| 捆绑调教美女网站视频一区| 国产精品人人做人人爽人人添| 日本乱人伦一区| 麻豆精品国产传媒mv男同| 欧美激情综合在线| 欧美丰满美乳xxx高潮www|