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.

59 lines
1.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 "pin.H"
#include <iostream>
#include <fstream>
using std::endl;
using std::ofstream;
using std::string;
using std::cout;
KNOB<string> KnobOutputFile(KNOB_MODE_WRITEONCE, "pintool", "o", "inscount.out",
"specify output file name");
ofstream OutFile;
/* ===================================================================== */
/* Print Help Message */
/* ===================================================================== */
INT32 Usage()
{
cout << endl << KNOB_BASE::StringKnobSummary() << endl;
return -1;
}
/* ===================================================================== */
VOID Fini(INT32 code, VOID *v)
{
OutFile << "In follow_child PinTool" << endl;
OutFile.close();
}
/* ===================================================================== */
int main(INT32 argc, CHAR **argv)
{
if (PIN_Init(argc, argv)) return Usage();
// If the file is not appended to, every instance of the pintool will overwrite it with its own output.
OutFile.open(KnobOutputFile.Value().c_str(), ofstream::app);
PIN_AddFiniFunction(Fini, 0);
// Never returns
PIN_StartProgram();
return 0;
}