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

Function GetILOperandPreIndex

arch/arm64/il.cpp:285–291  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

283
284/* Returns an expression that does any pre-incrementing on an operand, if it exists */
285static ExprId GetILOperandPreIndex(LowLevelILFunction& il, InstructionOperand& operand)
286{
287 if (operand.operandClass != MEM_PRE_IDX)
288 return 0;
289
290 return GetILOperandPreOrPostIndex(il, operand);
291}
292
293/* Returns an expression that does any post-incrementing on an operand, if it exists */
294static ExprId GetILOperandPostIndex(LowLevelILFunction& il, InstructionOperand& operand)

Callers 2

LoadStoreOperandPairSizeFunction · 0.85
LoadStoreVectorFunction · 0.85

Calls 1

Tested by

no test coverage detected