MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / GetILOperandPostIndex

Function GetILOperandPostIndex

arch/arm64/il.cpp:294–300  ·  view source on GitHub ↗

Returns an expression that does any post-incrementing on an operand, if it exists */

Source from the content-addressed store, hash-verified

292
293/* Returns an expression that does any post-incrementing on an operand, if it exists */
294static ExprId GetILOperandPostIndex(LowLevelILFunction& il, InstructionOperand& operand)
295{
296 if (operand.operandClass != MEM_POST_IDX)
297 return 0;
298
299 return GetILOperandPreOrPostIndex(il, operand);
300}
301
302/* Returns an IL expression that reads (and only reads) from the operand.
303 It accounts for, but does not generate IL that executes, pre and post indexing.

Callers 2

LoadStoreOperandPairSizeFunction · 0.85
LoadStoreVectorFunction · 0.85

Calls 1

Tested by

no test coverage detected