Looking at PIN's Inspection API Page there is a method called INS_IsLea()
which returns true if the current instruction is a LEA
isntruction. This is useful, but I need to determine if one of the instruction operands are indirect references. For example:
MOV rax, (%rdi)
I'd like to be able to determine that the second operand is in fact an indirect reference, but there does not seem to be a method available for this.