Annotation of cf/mips64_jit.h, revision 1.1

1.1     ! root        1: /*
        !             2:  * Cisco router simulation platform.
        !             3:  * Copyright (c) 2005,2006 Christophe Fillot ([email protected])
        !             4:  *
        !             5:  * MIPS64 JIT compiler.
        !             6:  */
        !             7: 
        !             8: #ifndef __MIPS64_JIT_H__
        !             9: #define __MIPS64_JIT_H__
        !            10: 
        !            11: #include "utils.h"
        !            12: 
        !            13: /* Size of executable page area (in Mb) */
        !            14: #ifndef __CYGWIN__
        !            15: #define MIPS_EXEC_AREA_SIZE  64
        !            16: #else
        !            17: #define MIPS_EXEC_AREA_SIZE  16
        !            18: #endif
        !            19: 
        !            20: /* Buffer size for JIT code generation */
        !            21: #define MIPS_JIT_BUFSIZE     32768
        !            22: 
        !            23: /* Maximum number of X86 chunks */
        !            24: #define MIPS_JIT_MAX_CHUNKS  32
        !            25: 
        !            26: /* Instruction jump patch */
        !            27: struct mips64_insn_patch {
        !            28:    u_char *jit_insn;
        !            29:    m_uint64_t mips_pc;
        !            30: };
        !            31: 
        !            32: /* Instruction patch table */
        !            33: #define MIPS64_INSN_PATCH_TABLE_SIZE  32
        !            34: 
        !            35: struct mips64_jit_patch_table {
        !            36:    struct mips64_insn_patch patches[MIPS64_INSN_PATCH_TABLE_SIZE];
        !            37:    u_int cur_patch;
        !            38:    struct mips64_jit_patch_table *next;
        !            39: };
        !            40: 
        !            41: /* MIPS64 translated code block */
        !            42: struct mips64_jit_tcb {
        !            43:    m_uint64_t start_pc;
        !            44:    u_char **jit_insn_ptr;
        !            45:    m_uint64_t acc_count;
        !            46:    m_uint32_t phys_page;
        !            47:    mips_insn_t *mips_code;
        !            48:    u_int mips_trans_pos;
        !            49:    u_int jit_chunk_pos;
        !            50:    u_char *jit_ptr;
        !            51:    insn_exec_page_t *jit_buffer;
        !            52:    insn_exec_page_t *jit_chunks[MIPS_JIT_MAX_CHUNKS];
        !            53:    struct mips64_jit_patch_table *patch_table;
        !            54:    mips64_jit_tcb_t *prev,*next;
        !            55: #if DEBUG_BLOCK_TIMESTAMP
        !            56:    m_uint64_t tm_first_use,tm_last_use;
        !            57: #endif
        !            58: };
        !            59: 
        !            60: /* MIPS instruction recognition */
        !            61: struct mips64_insn_tag {
        !            62:    int (*emit)(cpu_mips_t *cpu,mips64_jit_tcb_t *,mips_insn_t);
        !            63:    m_uint32_t mask,value;
        !            64:    int delay_slot;
        !            65: };
        !            66: 
        !            67: /* MIPS jump instruction (for block scan) */
        !            68: struct mips64_insn_jump {
        !            69:    char *name;
        !            70:    m_uint32_t mask,value;
        !            71:    int offset_bits;
        !            72:    int relative;
        !            73: };
        !            74: 
        !            75: /* Get the JIT instruction pointer in a translated block */
        !            76: static forced_inline 
        !            77: u_char *mips64_jit_tcb_get_host_ptr(mips64_jit_tcb_t *b,m_uint64_t vaddr)
        !            78: {
        !            79:    m_uint64_t offset;
        !            80: 
        !            81:    offset = (vaddr - b->start_pc) >> 2;
        !            82:    return(b->jit_insn_ptr[offset]);
        !            83: }
        !            84: 
        !            85: /* Check if there are pending IRQ */
        !            86: extern void mips64_check_pending_irq(mips64_jit_tcb_t *b);
        !            87: 
        !            88: /* Initialize instruction lookup table */
        !            89: void mips64_jit_create_ilt(void);
        !            90: 
        !            91: /* Initialize the JIT structure */
        !            92: int mips64_jit_init(cpu_mips_t *cpu);
        !            93: 
        !            94: /* Flush the JIT */
        !            95: u_int mips64_jit_flush(cpu_mips_t *cpu,u_int threshold);
        !            96: 
        !            97: /* Shutdown the JIT */
        !            98: void mips64_jit_shutdown(cpu_mips_t *cpu);
        !            99: 
        !           100: /* Fetch a MIPS instruction and emit corresponding x86 translated code */
        !           101: struct mips64_insn_tag *mips64_jit_fetch_and_emit(cpu_mips_t *cpu,
        !           102:                                                   mips64_jit_tcb_t *block,
        !           103:                                                   int delay_slot);
        !           104: 
        !           105: /* Record a patch to apply in a compiled block */
        !           106: int mips64_jit_tcb_record_patch(mips64_jit_tcb_t *block,u_char *x86_ptr,
        !           107:                                 m_uint64_t vaddr);
        !           108: 
        !           109: /* Free an instruction block */
        !           110: void mips64_jit_tcb_free(cpu_mips_t *cpu,mips64_jit_tcb_t *block,
        !           111:                          int list_removal);
        !           112: 
        !           113: /* Check if the specified address belongs to the specified block */
        !           114: int mips64_jit_tcb_local_addr(mips64_jit_tcb_t *block,m_uint64_t vaddr,
        !           115:                               u_char **haddr);
        !           116: 
        !           117: /* Execute compiled MIPS code */
        !           118: void *mips64_jit_run_cpu(cpu_gen_t *cpu);
        !           119: 
        !           120: /* Set the Pointer Counter (PC) register */
        !           121: void mips64_set_pc(mips64_jit_tcb_t *b,m_uint64_t new_pc);
        !           122: 
        !           123: /* Set the Return Address (RA) register */
        !           124: void mips64_set_ra(mips64_jit_tcb_t *b,m_uint64_t ret_pc);
        !           125: 
        !           126: /* Single-step operation */
        !           127: void mips64_emit_single_step(mips64_jit_tcb_t *b,mips_insn_t insn);
        !           128: 
        !           129: /* Virtual Breakpoint */
        !           130: void mips64_emit_breakpoint(mips64_jit_tcb_t *b);
        !           131: 
        !           132: /* Emit unhandled instruction code */
        !           133: int mips64_emit_invalid_delay_slot(mips64_jit_tcb_t *b);
        !           134: 
        !           135: /* 
        !           136:  * Increment count register and trigger the timer IRQ if value in compare 
        !           137:  * register is the same.
        !           138:  */
        !           139: void mips64_inc_cp0_count_reg(mips64_jit_tcb_t *b);
        !           140: 
        !           141: /* Increment the number of executed instructions (performance debugging) */
        !           142: void mips64_inc_perf_counter(mips64_jit_tcb_t *b);
        !           143: 
        !           144: #endif

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.