|
Call back function when Pin detaches from application |
|
Call back function when application exits |
|
Call-back function when the application forks.
|
|
Call back function when Pin removes all old instrumented code from its cache |
|
Call back function when application signal handler returns.
|
|
Call back function when application handles a signal.
|
|
Call back function when tool creates its own signal handler.
|
|
Call back function when thread begins |
|
Call back function when thread ends |
|
Not implemented yet. |
|
time of callback notification |
|
For experts only! |
|
Call func immediately before Pin relinquishes control of the application through PIN_Detach. The function is not an instrumentation function. There can be more than one Detach function.
|
|
Call func immediately before the application exits. The function is not an instrumentation function--it cannot insert instrumentation. There can be more than one Fini function.
|
|
Register a notification handler that is called when the application forks a new process.
|
|
Register a notification function that is called immediately after the application returns from a signal handler. This notification only occurs if the application returns "normally" from the signal handler. If the application jumps out of its handler early (e.g. via longjmp), the notification does not occur.
|
|
Register a notification function that is called immediately before the application jumps to a signal handler. The tool is only notified of a signal that the application actually handles. Unhandled signals do not trigger a notification.
|
|
Takes over ownership of a signal for the tool and establishes a tool handler for the signal. Tools should never call sigaction() directly to handle signals. Tools should take care when intercepting signals, because this can adversely affect the application if it also uses the signal. The application is still allowed to set up its own handler for an intercepted signal. However, the application is prevented from attempts to block the signal. When an intercepted signal is received, the tool's handler is called first. The tool's handler then decides whether the signal should be forwarded to the application's handler (if any). A tool can set only one "intercept" handler for a particular signal, so a new handler overwrites any previous handler for the same signal. To disable a handler, pass a NULL function pointer.
|
|
Call func immediately after a new thread has been created
|
|
Call func immediately before a thread ends
|
|
Pin relinquishes control of the application and the original uninstrumented code is executed. To ensure proper behavior the function must be invoked through an analysis routine. Invoking via instrumentation routines could cause could cause Pin to misbehave See Tests/detach.C for an example of its use. |
|
Initialize Pin system. Must be called before PIN_StartProgram
|
|
Initialize symbol table code. Pin does not read symbols unless this is called. Must be called before PIN_StartProgram |
|
Insert a probe at an address
|
|
Some Pin API functions must be called when the thread is holding this lock. See also PIN_UnlockClient. |
|
Remove all previously inserted probes |
|
Invalidates all the Fini callback functions registered via PIN_AddFiniFunction; Fini callbacks will no longer be called before the application exits. Must be called prior to invoking PIN_Detach if the tool has previously registered Fini callbacks and libc.so is not yet loaded into memory yet for a dynamically linked binary. |
|
All instrumentation is removed. When application code is executed the instrumentation routines will be called to reinstrument all code. |
|
Remove a probe that was previously inserted at address
|
|
DEPRECATED. Please use PIN_StartProgramProbed(). |
|
Starts program executing, never returns. PIN_Init must be called first |
|
Starts program executing, never returns. PIN_Init must be called first. The command line option -probe must be invoked when using PIN_StartProgramProbed(). A probed program only invokes instrumentation at explicitly inserted probe points. |
|
|
|
Some Pin API functions must be called when the thread is holding this lock. See also PIN_LockClient |
|
For experts only! |