git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1320 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
#ifndef __IOPORT_COM_AH__
|
|
#define __IOPORT_COM_AH__
|
|
|
|
#include "config/FailConfig.hpp"
|
|
|
|
#ifdef CONFIG_EVENT_IOPORT
|
|
|
|
#include "../../../bochs/bochs.h"
|
|
#include "../../../bochs/cpu/cpu.h"
|
|
#include "../SALInst.hpp"
|
|
|
|
#include "BochsHelpers.hpp"
|
|
|
|
// TODO: ATM only capturing bytewise output (most common, I suppose)
|
|
|
|
aspect IOPortCom {
|
|
pointcut outInstruction() = "% ...::bx_cpu_c::OUT_DXAL(...)";
|
|
|
|
advice execution (outInstruction()) : after ()
|
|
{
|
|
unsigned rDX = getCPU(tjp->that())->gen_reg[2].word.rx; // port number
|
|
unsigned char rAL = getCPU(tjp->that())->gen_reg[0].word.byte.rl; // data
|
|
fail::simulator.onIOPortEvent(rAL, rDX, true);
|
|
}
|
|
|
|
pointcut inInstruction() = "% ...::bx_cpu_c::IN_ALDX(...)";
|
|
|
|
advice execution (inInstruction()) : after ()
|
|
{
|
|
unsigned rDX = getCPU(tjp->that())->gen_reg[2].word.rx; // port number
|
|
unsigned char rAL = getCPU(tjp->that())->gen_reg[0].word.byte.rl; // data
|
|
fail::simulator.onIOPortEvent(rAL, rDX, false);
|
|
}
|
|
};
|
|
|
|
#endif // CONFIG_EVENT_IOPORT
|
|
|
|
#endif // __IOPORT_COM_AH__
|