instrument.cpp

来自「bochs : one pc simulator.」· C++ 代码 · 共 206 行

CPP
206
字号
/////////////////////////////////////////////////////////////////////////// $Id: instrument.cc,v 1.14 2006/06/17 12:09:55 sshwarts Exp $/////////////////////////////////////////////////////////////////////////////  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#include <assert.h>#include "bochs.h"#include "cpu/cpu.h"bxInstrumentation *icpu = NULL;static disassembler bx_disassembler;void bx_instr_init(unsigned cpu){  assert(cpu < BX_SMP_PROCESSORS);  if (icpu == NULL)      icpu = new bxInstrumentation[BX_SMP_PROCESSORS];  icpu[cpu].set_cpu_id(cpu);  fprintf(stderr, "Initialize cpu %d\n", cpu);}void bxInstrumentation::bx_instr_reset(){  valid = is_branch = 0;  nprefixes = num_data_accesses = 0;  active = 1;}void bxInstrumentation::bx_instr_new_instruction(){  if (!active) return;  if (valid)  {    char disasm_tbuf[512];	// buffer for instruction disassembly    unsigned length = opcode_size, n;    bx_disassembler.disasm(is32, is64, 0, 0, opcode, disasm_tbuf);    if(length != 0)	    {      fprintf(stderr, "----------------------------------------------------------\n");      fprintf(stderr, "CPU: %d: %s\n", cpu_id, disasm_tbuf);      fprintf(stderr, "LEN: %d\tPREFIXES: %d\tBYTES: ", length, nprefixes);      for(n=0;n<length;n++) fprintf(stderr, "%02x", opcode[n]);      if(is_branch)       {        fprintf(stderr, "\tBRANCH ");        if(is_taken)           fprintf(stderr, "TARGET " FMT_ADDRX " (TAKEN)", target_linear);        else          fprintf(stderr, "(NOT TAKEN)");      }         fprintf(stderr, "\n");      for(n=0;n < num_data_accesses;n++)      {        fprintf(stderr, "MEM ACCESS[%u]: " FMT_ADDRX " (linear) 0x%08x (physical) %s SIZE: %d\n", n,                      data_access[n].laddr,                       data_access[n].paddr,                      data_access[n].op == BX_READ ? "RD":"WR",                      data_access[n].size);      }      fprintf(stderr, "\n");    }  }  valid = is_branch = 0;  nprefixes = num_data_accesses = 0;}void bxInstrumentation::branch_taken(bx_address new_eip){  if (!active || !valid) return;  // find linear address  bx_address laddr = BX_CPU(cpu_id)->get_segment_base(BX_SEG_REG_CS) + new_eip;  is_branch = 1;  is_taken = 1;  target_linear = laddr;}void bxInstrumentation::bx_instr_cnear_branch_taken(bx_address new_eip) {  branch_taken(new_eip);}void bxInstrumentation::bx_instr_cnear_branch_not_taken(){  if (!active || !valid) return;  is_branch = 1;  is_taken = 0;}void bxInstrumentation::bx_instr_ucnear_branch(unsigned what, bx_address new_eip){  branch_taken(new_eip);}void bxInstrumentation::bx_instr_far_branch(unsigned what, Bit16u new_cs, bx_address new_eip){  branch_taken(new_eip);}void bxInstrumentation::bx_instr_opcode(Bit8u *opcode_bytes, unsigned len, bx_bool is32, bx_bool is64){  if (!active) return;  for(unsigned i=0;i<len;i++)   {    opcode[i] = opcode_bytes[i];  }    is32 = is32;  is64 = is64;  opcode_size = len;}void bxInstrumentation::bx_instr_fetch_decode_completed(const bxInstruction_c *i){  if(active) valid = 1; }void bxInstrumentation::bx_instr_prefix(Bit8u prefix){  if(active) nprefixes++;}void bxInstrumentation::bx_instr_interrupt(unsigned vector){  if(active)  {    fprintf(stderr, "CPU %u: interrupt %02xh\n", cpu_id, vector);  }}void bxInstrumentation::bx_instr_exception(unsigned vector){  if(active)  {    fprintf(stderr, "CPU %u: exception %02xh\n", cpu_id, vector);  }}void bxInstrumentation::bx_instr_hwinterrupt(unsigned vector, Bit16u cs, bx_address eip){  if(active)  {    fprintf(stderr, "CPU %u: hardware interrupt %02xh\n", cpu_id, vector);  }}void bxInstrumentation::bx_instr_mem_data(bx_address lin, unsigned size, unsigned rw){  bx_phy_address phy;  if(!active || !valid) return;  if (num_data_accesses >= MAX_DATA_ACCESSES)   {    return;  }  bx_bool page_valid = BX_CPU(cpu_id)->dbg_xlate_linear2phy(lin, &phy);  phy = A20ADDR(phy);  // If linear translation doesn't exist, a paging exception will occur.  // Invalidate physical address data for now.  if (!page_valid)   {    phy = 0;  }  data_access[num_data_accesses].laddr = lin;  data_access[num_data_accesses].paddr = phy;  data_access[num_data_accesses].op    = rw;  data_access[num_data_accesses].size  = size;  num_data_accesses++;}

⌨️ 快捷键说明

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