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.
51 lines
1.3 KiB
51 lines
1.3 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.
|
|
*/
|
|
|
|
/*
|
|
* This test verifies that we can call PIN_LockClient / PIN_UnlockClient
|
|
* from a static analysis tool, either directly or indirectly via
|
|
* RTN_FindNameByAddress(), which happens to call these functions internally.
|
|
* Note, this is just a unit test. There's no real need to call the lock
|
|
* functions directly from a static analysis tool.
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include "pin.H"
|
|
using std::string;
|
|
using std::endl;
|
|
|
|
KNOB<string> KnobInputFile(KNOB_MODE_WRITEONCE, "pintool",
|
|
"i", "<imagename>", "specify an image to read");
|
|
|
|
|
|
int main(INT32 argc, CHAR **argv)
|
|
{
|
|
PIN_InitSymbols();
|
|
if (PIN_Init(argc,argv))
|
|
return 1;
|
|
|
|
IMG img = IMG_Open(KnobInputFile);
|
|
|
|
if (!IMG_Valid(img))
|
|
{
|
|
std::cout << "Could not open " << KnobInputFile.Value() << endl;
|
|
return 1;
|
|
}
|
|
|
|
RTN_FindNameByAddress(0x123);
|
|
|
|
PIN_LockClient();
|
|
PIN_UnlockClient();
|
|
|
|
IMG_Close(img);
|
|
return 0;
|
|
}
|