I'm developing a taint analysis tool using PIN.
And I have a question, How to get operands of lea
instruction?
About lea instruction like lea rdx, ptr [rip+0x2244aa]
,
getting the first operand using INS_OperandReg(ins, 0)
is possible.
But I want to check if the second operand is tainted, but I cannot get it.
And I couldn't find any function that returns the value of rip+0x2244aa
Is there any function that I can get the memory address(second operand) in lea?