a6fef54678
- for bochs files with other header, replaced with current mandrake header
155 lines
5.5 KiB
C
155 lines
5.5 KiB
C
// Copyright (C) 2001 MandrakeSoft S.A.
|
|
//
|
|
// MandrakeSoft S.A.
|
|
// 43, rue d'Aboukir
|
|
// 75002 Paris - France
|
|
// http://www.linux-mandrake.com/
|
|
// http://www.mandrakesoft.com/
|
|
//
|
|
// 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
|
|
|
|
|
|
|
|
// possible types passed to BX_INSTR_TLB_CNTRL()
|
|
#define BX_INSTR_MOV_CR3 10
|
|
#define BX_INSTR_INVLPG 11
|
|
#define BX_INSTR_TASKSWITCH 12
|
|
|
|
// possible types passed to BX_INSTR_CACHE_CNTRL()
|
|
#define BX_INSTR_INVD 20
|
|
#define BX_INSTR_WBINVD 21
|
|
|
|
|
|
#if BX_INSTRUMENTATION
|
|
|
|
#define BX_INSTR_IS_CALL 10
|
|
#define BX_INSTR_IS_RET 11
|
|
#define BX_INSTR_IS_IRET 12
|
|
#define BX_INSTR_IS_JMP 13
|
|
#define BX_INSTR_IS_INT 14
|
|
|
|
void bx_instr_opcode_begin(Bit32u linear);
|
|
void bx_instr_opcode_end(Bit32u linear);
|
|
void bx_instr_fetch_byte(Bit8u val8);
|
|
void bx_instr_fetch_word(Bit16u val16);
|
|
void bx_instr_fetch_dword(Bit32u val32);
|
|
void bx_instr_interrupt(unsigned vector);
|
|
void bx_instr_exception(unsigned vector);
|
|
void bx_instr_inp(Bit16u addr, unsigned len);
|
|
void bx_instr_outp(Bit16u addr, unsigned len);
|
|
void bx_instr_cnear_branch_taken(Bit32u new_eip);
|
|
void bx_instr_cnear_branch_not_taken(void);
|
|
void bx_instr_ucnear_branch(unsigned what, Bit32u new_eip);
|
|
void bx_instr_far_branch(unsigned what, Bit32u new_cs, Bit32u new_eip);
|
|
void bx_instr_lin_read(Bit32u lin, Bit32u phy, unsigned len);
|
|
void bx_instr_lin_write(Bit32u lin, Bit32u phy, unsigned len);
|
|
|
|
#define BX_INSTR_OPCODE_BEGIN(linear) bx_instr_opcode_begin(linear)
|
|
#define BX_INSTR_OPCODE_END(linear) bx_instr_opcode_end(linear)
|
|
#define BX_INSTR_FETCH_BYTE(val8) bx_instr_fetch_byte(val8)
|
|
#define BX_INSTR_FETCH_WORD(val16) bx_instr_fetch_word(val16)
|
|
#define BX_INSTR_FETCH_DWORD(val32) bx_instr_fetch_dword(val32)
|
|
#define BX_INSTR_INTERRUPT(vector) bx_instr_interrupt(vector)
|
|
#define BX_INSTR_EXCEPTION(vector) bx_instr_exception(vector)
|
|
#define BX_INSTR_INP(addr, len) bx_instr_inp(addr, len)
|
|
#define BX_INSTR_OUTP(addr, len) bx_instr_outp(addr, len)
|
|
#define BX_INSTR_CNEAR_BRANCH_TAKEN(new_eip) bx_instr_cnear_branch_taken(new_eip)
|
|
#define BX_INSTR_CNEAR_BRANCH_NOT_TAKEN() bx_instr_cnear_branch_not_taken()
|
|
#define BX_INSTR_UCNEAR_BRANCH(what, new_eip) bx_instr_ucnear_branch(what, new_eip)
|
|
#define BX_INSTR_FAR_BRANCH(what, new_cs, new_eip) bx_instr_far_branch(what, new_cs, new_eip)
|
|
#define BX_INSTR_LIN_READ(lin, phy, len) bx_instr_lin_read(lin, phy, len)
|
|
#define BX_INSTR_LIN_WRITE(lin, phy, len) bx_instr_lin_write(lin, phy, len)
|
|
|
|
|
|
// called from the debug prompt
|
|
void bx_instr_start(void);
|
|
void bx_instr_stop(void);
|
|
void bx_instr_reset(void);
|
|
void bx_instr_print(void);
|
|
|
|
#else
|
|
|
|
#define BX_INSTR_OPCODE_BEGIN(linear)
|
|
#define BX_INSTR_OPCODE_END(linear)
|
|
#define BX_INSTR_FETCH_BYTE(val8)
|
|
#define BX_INSTR_FETCH_WORD(val16)
|
|
#define BX_INSTR_FETCH_DWORD(val32)
|
|
#define BX_INSTR_INTERRUPT(vector)
|
|
#define BX_INSTR_EXCEPTION(vector)
|
|
#define BX_INSTR_INP(addr, len)
|
|
#define BX_INSTR_OUTP(addr, len)
|
|
#define BX_INSTR_CNEAR_BRANCH_TAKEN(new_eip)
|
|
#define BX_INSTR_CNEAR_BRANCH_NOT_TAKEN()
|
|
#define BX_INSTR_UCNEAR_BRANCH(what, new_eip)
|
|
#define BX_INSTR_FAR_BRANCH(what, new_cs, new_eip)
|
|
#define BX_INSTR_LIN_READ(lin, phy, len)
|
|
#define BX_INSTR_LIN_WRITE(lin, phy, len)
|
|
|
|
#endif
|
|
|
|
// rest are no-ops
|
|
#define BX_INSTR_INIT()
|
|
#define BX_INSTR_SHUTDOWN()
|
|
#define BX_INSTR_OPCODE_BYTE1(b)
|
|
#define BX_INSTR_OPCODE_BYTE2(b)
|
|
#define BX_INSTR_OPCODE_G1EbIb(nnn)
|
|
#define BX_INSTR_OPCODE_G1EvIv(nnn)
|
|
#define BX_INSTR_OPCODE_G1EvIb(nnn)
|
|
#define BX_INSTR_OPCODE_G2EbIb(nnn)
|
|
#define BX_INSTR_OPCODE_G2EvIb(nnn)
|
|
#define BX_INSTR_OPCODE_G2Eb1(nnn)
|
|
#define BX_INSTR_OPCODE_G2Ev1(nnn)
|
|
#define BX_INSTR_OPCODE_G2EbCL(nnn)
|
|
#define BX_INSTR_OPCODE_G2EvCL(nnn)
|
|
#define BX_INSTR_OPCODE_G3Eb(nnn)
|
|
#define BX_INSTR_OPCODE_G3Ev(nnn)
|
|
#define BX_INSTR_OPCODE_G4(nnn)
|
|
#define BX_INSTR_OPCODE_G5(nnn)
|
|
#define BX_INSTR_OPCODE_G6(nnn)
|
|
#define BX_INSTR_OPCODE_G7(nnn)
|
|
#define BX_INSTR_OPCODE_G8EvIb(nnn)
|
|
#define BX_INSTR_MEM_CODE(linear, size)
|
|
#define BX_INSTR_MEM_DATA(linear, size, rw)
|
|
#define BX_INSTR_TLB_CNTRL(what, newval)
|
|
#define BX_INSTR_CACHE_CNTRL(what)
|
|
#define BX_INSTR_HWINTERRUPT(vector, cs, eip)
|
|
#define BX_INSTR_OPCODE_REPEATING()
|
|
|
|
#define BX_INSTR_PREFIX_AS()
|
|
#define BX_INSTR_PREFIX_OS()
|
|
#define BX_INSTR_PREFIX_REP()
|
|
#define BX_INSTR_PREFIX_REPNE()
|
|
#define BX_INSTR_PREFIX_LOCK()
|
|
#define BX_INSTR_PREFIX_CS()
|
|
#define BX_INSTR_PREFIX_SS()
|
|
#define BX_INSTR_PREFIX_DS()
|
|
#define BX_INSTR_PREFIX_ES()
|
|
#define BX_INSTR_PREFIX_FS()
|
|
#define BX_INSTR_PREFIX_GS()
|
|
|
|
#define BX_INSTR_MODRM32(modrm)
|
|
#define BX_INSTR_SIB32(sib)
|
|
#define BX_INSTR_MODRM16(modrm)
|
|
#define BX_INSTR_SIB_mod0_base5(ss)
|
|
#define BX_INSTR_SIB_MOD0_IND4()
|
|
#define BX_INSTR_SIB_MOD1_IND4()
|
|
#define BX_INSTR_SIB_MOD2_IND4()
|
|
|
|
#define BX_INSTR_IRET()
|
|
#define BX_INSTR_DEBUG_PROMPT()
|
|
|
|
#define BX_INSTR_PHY_WRITE(addr, len)
|
|
#define BX_INSTR_PHY_READ(addr, len)
|