本文整理汇总了C++中AnalysisProcessor::updateCurrentCtxH方法的典型用法代码示例。如果您正苦于以下问题:C++ AnalysisProcessor::updateCurrentCtxH方法的具体用法?C++ AnalysisProcessor::updateCurrentCtxH怎么用?C++ AnalysisProcessor::updateCurrentCtxH使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AnalysisProcessor
的用法示例。
在下文中一共展示了AnalysisProcessor::updateCurrentCtxH方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: callbackBefore
static void callbackBefore(IRBuilder *irb, CONTEXT *ctx, BOOL hasEA, ADDRINT ea, THREADID threadId)
{
/* Some configurations must be applied before processing */
processingPyConf.applyConfBeforeProcessing(irb);
if (!analysisTrigger.getState())
/* Analysis locked */
return;
if (hasEA)
irb->setup(ea);
/* Update the current context handler */
ap.updateCurrentCtxH(new PINContextHandler(ctx, threadId));
/* Setup Information into Irb */
irb->setThreadID(ap.getThreadID());
/* Python callback before IR processing */
processingPyConf.callbackBeforeIRProc(irb, &ap);
Inst *inst = irb->process(ap);
ap.addInstructionToTrace(inst);
/* Export some information from Irb to Inst */
inst->setOpcode(irb->getOpcode());
inst->setOpcodeCategory(irb->getOpcodeCategory());
inst->setOperands(irb->getOperands());
/* Python callback before instruction processing */
processingPyConf.callbackBefore(inst, &ap);
}
示例2: callbackSyscallExit
/* Callback at the syscall exit */
static void callbackSyscallExit(THREADID threadId, CONTEXT *ctx, SYSCALL_STANDARD std, VOID *v)
{
if (!analysisTrigger.getState())
/* Analysis locked */
return;
/* Update the current context handler */
ap.updateCurrentCtxH(new PINContextHandler(ctx, threadId));
/* Python callback at the end of execution */
processingPyConf.callbackSyscallExit(threadId, std);
}
示例3: callbackAfter
static void callbackAfter(CONTEXT *ctx, THREADID threadId)
{
Inst *inst;
if (!analysisTrigger.getState())
/* Analysis locked */
return;
/* Update the current context handler */
ap.updateCurrentCtxH(new PINContextHandler(ctx, threadId));
/* Get the last instruction */
inst = ap.getLastInstruction();
/* Update statistics */
ap.incNumberOfBranchesTaken(inst->isBranch());
/* Python callback after instruction processing */
processingPyConf.callbackAfter(inst, &ap);
}