Enumerations | |
enum | PROBE_TYPE { PROBE_INVALID, PROBE_REDIRECT, PROBE_SINGLE_THREAD, PROBE_MULTI_THREAD, PROBE_FUNCTION_WRAPPER } |
Functions | |
BOOL | LEVEL_PINCLIENT::INS_IsPinXfer (INS ins) |
BOOL | LEVEL_PINCLIENT::INS_IsNativeXfer (INS ins) |
VOID | LEVEL_PINCLIENT::INS_SetNativeXfer (INS ins) |
VOID | LEVEL_PINCLIENT::TRACE_ExitsXferToNative (TRACE trace) |
VOID | LEVEL_PINCLIENT::INS_SetPinXfer (INS ins) |
BOOL | LEVEL_PINCLIENT::INS_IsNativeCall (INS ins) |
BOOL | LEVEL_PINCLIENT::INS_IsXlateCall (INS ins) |
VOID | LEVEL_PINCLIENT::INS_SetXlateCall (INS ins) |
VOID | LEVEL_PINCLIENT::INS_SetNativeCall (INS ins) |
VOID | LEVEL_PINCLIENT::INS_RedirectControlFlowToAddress (INS ins, ADDRINT target_addr) |
VOID * | LEVEL_PINCLIENT::PIN_NewProbedThreadContext () |
AFUNPTR | LEVEL_PINCLIENT::RTN_ReplaceSignatureProbed (RTN orgRtn, AFUNPTR replacementFunptr,...) |
AFUNPTR | LEVEL_PINCLIENT::RTN_InsertProbe (RTN rtn, AFUNPTR probe) |
VOID | LEVEL_PINCLIENT::PROTO_Free (PROTO proto) |
|
|
|
|
|
|
|
|
|
|
Patch a given branch or call instruction to the given target address.
|
|
A call instruction is not translated into a PUSH and a JUMP. This implies that the application might realize that the call is being made from the trace in the code cache and thus any code that depends on the return address at the target site is no longer valid and thus results in program corruption. Doing this implies any instruction following the call in the trace is executed. |
|
Set a control flow instruction to transfer control back to the native code on the taken path. This is the default mechanism. |
|
Set a control flow instruction to transfer control back to the trace generator upon the taken path. |
|
A call instruction is translated into a return address PUSH and a JMP to ensure that the application does not realize that the call occured in the code cache if it looked at the return address on the stack since we put the original application return address on the stack. This implies that when a return is executed at the call target the control returns to the original application. Any fallthrough instructions in the trace are not executed. Also see INS_SetNativeCall for otherwise. |
|
|
|
Free the specified function prototype.
|
|
Install a probe at the entry point of a routine
|
|
Replace a routine in the application (orgRtn) by another function defined in the Pintool (replacementFunptr) using probes. The replacement function is not instrumented. Replacement functions typically need to call the replaced routines. However, calls to RTN_Funptr(orgRtn) will be redirected to replacementFunptr. Replacement functions must instead call the returned function pointer, which is a copy of the entry point that is not redirected. The replacement function signature does not have to be the same as the replaced function. The replacement function arguments must be passed to the replacement function using the Pin IARG_TYPEs, in the same way as RTN_InsertCall(). A prototype of the routine in the application must also be passed in as an argument. See PROTO_Allocate for more information.
|
|
All exits from this trace go back to original code |