You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

183 lines
5.6 KiB

/*
* Copyright 2002-2019 Intel Corporation.
*
* This software is provided to you as Sample Source Code as defined in the accompanying
* End User License Agreement for the Intel(R) Software Development Products ("Agreement")
* section 1.L.
*
* This software and the related documents are provided as is, with no express or implied
* warranties, other than those that are expressly stated in the License.
*/
#include <fstream>
#include <cstring>
#include <cassert>
#include "xstateBVUtils.h"
#include "../Utils/regvalue_utils.h"
using std::endl;
using std::ofstream;
/////////////////////
// GLOBAL VARIABLES
/////////////////////
// A knob for defining which context to test. One of:
// 1. context - regular CONTEXT passed to the analysis routine using IARG_CONTEXT.
// 2. partial - partial CONTEXT passed to the analysis routine using IARG_PARTIAL_CONTEXT.
// 3. reference - IARG_REG_REFERENCE passed to the analysis routine.
KNOB<string> KnobModificationMethod(KNOB_MODE_WRITEONCE, "pintool",
"method", "context", "specify which context to test. One of default|partial.");
// A knob for defining which state class to test. One of:
// 1. x87 - The x87 FPU registers.
// 2. SSE - The SSE registers (xmms).
// 3. AVX - The AVX registers (ymms).
KNOB<string> KnobTestStateClass(KNOB_MODE_WRITEONCE, "pintool",
"stateClass", "x87", "specify which context to test. One of x87|SSE|AVX (case sensitive).");
// A knob for defining the output file name
KNOB<string> KnobOutputFile(KNOB_MODE_WRITEONCE, "pintool",
"o", "checkXStateBV_tool.out", "specify output file name");
// ofstream object for handling the output
ofstream OutFile;
REG testedRegister = REG_INVALID();
TEST_REG_CLASS regClass = TEST_REG_CLASS_INVALID;
/////////////////////
// UTILITY FUNCTIONS
/////////////////////
REG GetRegister()
{
static const REG testRegs[TEST_REG_CLASS_SIZE] =
{
REG_FPCW,
REG_XMM3,
REG_YMM3
};
return testRegs[regClass];
}
/////////////////////
// ANALYSIS FUNCTIONS
/////////////////////
static void ChangeRegister(CONTEXT * ctxt)
{
PIN_REGISTER val;
const UINT64* newval = reinterpret_cast<const UINT64*>(toolRegisterValues[regClass]);
AssignNewPinRegisterValue(&val, newval, (testRegSize[regClass]+7)/8);
PIN_SetContextRegval(ctxt, testedRegister, reinterpret_cast<UINT8*>(&val));
}
static void ChangeRegisterAndExecute(CONTEXT * ctxt, ADDRINT executeAtAddr)
{
ChangeRegister(ctxt);
PIN_SetContextReg(ctxt, REG_INST_PTR, executeAtAddr);
PIN_ExecuteAt(ctxt);
}
static void ChangeRegisterReference(PIN_REGISTER* reg)
{
const UINT64* newval = reinterpret_cast<const UINT64*>(toolRegisterValues[regClass]);
AssignNewPinRegisterValue(reg, newval, (testRegSize[regClass]+7)/8);
}
/////////////////////
// CALLBACKS
/////////////////////
static VOID ImageLoad(IMG img, VOID * v)
{
if (IMG_IsMainExecutable(img))
{
// Find the placeholder for PIN_ExecuteAt
RTN executeAtRtn = RTN_FindByName(img, "ExecuteAt");
assert(RTN_Valid(executeAtRtn));
// Find and application's ChangeRegisterValue function.
RTN changeRegisterValueRtn = RTN_FindByName(img, "ChangeRegisterValue");
assert(RTN_Valid(changeRegisterValueRtn));
RTN_Open(changeRegisterValueRtn);
if (KnobModificationMethod.Value() == "context")
{
RTN_InsertCall(changeRegisterValueRtn, IPOINT_BEFORE, AFUNPTR(ChangeRegisterAndExecute),
IARG_CONTEXT,
IARG_ADDRINT, RTN_Address(executeAtRtn),
IARG_END);
}
else if (KnobModificationMethod.Value() == "partial")
{
REGSET regsin;
REGSET regsout;
REGSET_Clear(regsin);
REGSET_Clear(regsout);
REGSET_Insert(regsout, testedRegister);
RTN_InsertCall(changeRegisterValueRtn, IPOINT_BEFORE, AFUNPTR(ChangeRegister),
IARG_PARTIAL_CONTEXT, &regsin, &regsout,
IARG_END);
}
else if (KnobModificationMethod.Value() == "reference")
{
RTN_InsertCall(changeRegisterValueRtn, IPOINT_BEFORE, AFUNPTR(ChangeRegisterReference),
IARG_REG_REFERENCE, GetRegister(),
IARG_END);
}
else
{
OutFile << "ERROR: Unknown modification method specified: " << KnobModificationMethod.Value() << endl;
PIN_ExitApplication(12); // never returns
}
RTN_Close(changeRegisterValueRtn);
}
}
static VOID Fini(INT32 code, VOID *v)
{
OutFile.close();
}
/////////////////////
// MAIN FUNCTION
/////////////////////
int main(int argc, char * argv[])
{
// Initialize Pin
PIN_InitSymbols();
PIN_Init(argc, argv);
// Open the output file
OutFile.open(KnobOutputFile.Value().c_str());
// Set the test parameters
regClass = GetTestReg(KnobTestStateClass.Value());
if (TEST_REG_CLASS_INVALID == regClass)
{
OutFile << "ERROR: Unknown state class: " << KnobTestStateClass.Value() << endl;
PIN_ExitApplication(11); // never returns
}
testedRegister = GetRegister();
// Add instrumentation
IMG_AddInstrumentFunction(ImageLoad, 0);
PIN_AddFiniFunction(Fini, 0);
// Start running the application
PIN_StartProgram(); // never returns
return 0;
}