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.

188 lines
5.1 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.
*/
/*
* Negative test - Do Not Use!!!
*
*/
#include "pin.H"
#include <iostream>
#include <stdio.h>
#include <stddef.h>
using std::cerr;
using std::string;
using std::endl;
/*
* Name of the output file
*/
KNOB<string> KnobOutputFile(KNOB_MODE_WRITEONCE, "pintool", "o", "buffererror.out", "output file");
/* Struct for holding memory references. Rather than having two separate
* buffers for loads and stores, we just use one struct that includes a
* flag for type.
*/
struct MEMREF
{
ADDRINT pc;
ADDRINT address;
UINT32 size;
UINT32 load;
};
FILE *outfile;
BUFFER_ID bufId;
PIN_LOCK fileLock;
TLS_KEY buf_key;
#define NUM_BUF_PAGES 8192
/*!
* Print out help message.
*/
INT32 Usage()
{
cerr << "This tool contains errors. Do not use!" << endl;
return -1;
}
VOID Trace(TRACE trace, VOID *v){
UINT32 refSize;
for(BBL bbl = TRACE_BblHead(trace); BBL_Valid(bbl); bbl=BBL_Next(bbl)){
for(INS ins = BBL_InsHead(bbl); INS_Valid(ins); ins=INS_Next(ins)){
if(INS_IsMemoryRead(ins)){
refSize = INS_MemoryReadSize(ins);
// This is an error test!!! IARG_REG_REFERENCE cannot be used
// with the InsertFillBuffer API because it cannot be inlined.
//
INS_InsertFillBuffer(ins, IPOINT_BEFORE, bufId,
IARG_REG_REFERENCE, offsetof(struct MEMREF, pc),
IARG_MEMORYREAD_EA, offsetof(struct MEMREF, address),
IARG_UINT32, refSize, offsetof(struct MEMREF, size),
IARG_UINT32, 1, offsetof(struct MEMREF, load),
IARG_END);
}
}
}
}
/*!
* Called when a buffer fills up, or the thread exits, so we can process it or pass it off
* as we see fit.
* @param[in] id buffer handle
* @param[in] tid id of owning thread
* @param[in] ctxt application context when the buffer filled
* @param[in] buf actual pointer to buffer
* @param[in] numElements number of records
* @param[in] v callback value
* @return A pointer to the buffer to resume filling.
*/
VOID * BufferFull(BUFFER_ID bid, THREADID tid, const CONTEXT *ctxt, VOID *buf,
UINT64 numElements, VOID *v)
{
PIN_GetLock(&fileLock, 1);
ASSERTX(buf == PIN_GetThreadData(buf_key, tid));
struct MEMREF* reference=(struct MEMREF*)buf;
UINT64 i;
for(i=0; i<numElements; i++, reference++){
fprintf(outfile, "%lx %lx %u %u\n", (unsigned long)reference->pc, (unsigned long)reference->address,
reference->size, reference->load);
}
fflush(outfile);
PIN_ReleaseLock(&fileLock);
return buf;
}
/*!
* Print out analysis results.
* This function is called when the application exits.
* @param[in] code exit code of the application
* @param[in] v value specified by the tool in the
* PIN_AddFiniFunction function call
*/
VOID Fini(INT32 code, VOID *v)
{
PIN_GetLock(&fileLock, 1);
fclose(outfile);
printf("outfile closed\n");
PIN_ReleaseLock(&fileLock);
}
void ThreadStart(THREADID tid, CONTEXT * context, int flags, void * v)
{
// We check that we got the right thing in the buffer full callback
PIN_SetThreadData(buf_key, PIN_GetBufferPointer(context, bufId), tid);
}
/*!
* The main procedure of the tool.
* This function is called when the application image is loaded but not yet started.
* @param[in] argc total number of elements in the argv array
* @param[in] argv array of command line arguments,
* including pin -t <toolname> -- ...
*/
int main(int argc, char *argv[])
{
// Initialize PIN library. Print help message if -h(elp) is specified
// in the command line or the command line is invalid
if( PIN_Init(argc,argv) )
{
return Usage();
}
// Initialize the memory reference buffer
bufId = PIN_DefineTraceBuffer(sizeof(struct MEMREF), NUM_BUF_PAGES,
BufferFull, 0);
if (bufId == BUFFER_ID_INVALID)
{
cerr << "Error allocating initial buffer" << endl;
return 1;
}
outfile = fopen(KnobOutputFile.Value().c_str(), "w");
if (!outfile)
{
cerr << "Couldn't open buffererror.out" << endl;
return 1;
}
PIN_InitLock(&fileLock);
// add an instrumentation function
TRACE_AddInstrumentFunction(Trace, 0);
// Register function to be called when the application exits
PIN_AddFiniFunction(Fini, 0);
buf_key = PIN_CreateThreadDataKey(0);
PIN_AddThreadStartFunction(ThreadStart, 0);
// Start the program, never returns
PIN_StartProgram();
return 0;
}