Iteration idioms:
// Forward pass over all routines in a section for( RTN rtn= SEC_RtnHead(sec); RTN_Valid(rtn); rtn = RTN_Next(rtn) ) // Reverse pass over all routines in a section for( RTN rtn= SEC_RtnTail(sec); RTN_Valid(rtn); rtn = RTN_Prev(rtn) )
|
Call back function used to instrument routines |
|
Add a function used to instrument at routine granularity
|
|
|
|
|
|
|
|
Close rtn, must be called before opening a new rtn |
|
|
|
|
|
|
|
an rtn to a funptr |
|
Insert call relative to a rtn.
|
|
You must call RTN_Open before the first time this is called for an rtn
|
|
|
|
|
|
|
|
|
|
Open rtn, must be called before RTN_InsHead or RTN_InsertCall(). |
|
|
|
Replace a function in the application (replacedRtn) by another function defined in the Pintool (replacementFun). PIN_StartProgram() must be used when using this API. |
|
Replace a routine in the application (replacedRtn) by another function defined in the Pintool (replacementFun) using probes. The replacement function is not instrumented. The signature of the replacement function must be the same as the replaced application routine. Replacement functions typically need to call the replaced routines. However, calls to RTN_Funptr(replacedRtn) will be redirected to replacementFun. Replacement functions must instead call the returned function pointer, which is a copy of the entry point that is not redirected.
|
|
DEPRECATED - use RTN_ReplaceProbed() or RTN_Replace() instead. Replace a function in the application (replacedRtn) by another function defined in the Pintool (replacementFun). The replacement function is not instrumented. |
|
|
|
|
|
|