<div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Hi all,</div><div>I'm still experimenting with the Interpreter class and in this case I would like to know a couple of things if possible. Suppose that "instruction" is a StoreInst & that is part of a function called sum with the following prototype: int sum(int a, int b);. During the execution sum is called passing two integer (e.g. 1,2). When the "instruction" is about to be interpreted how can I get the value of a and b? I access to the first argument using Argument *argument = I.getFunction()->arg_begin(), is it the proper way?</div><div><br></div><div>The relevant IR is: <br></div><div><br></div><div>%2 = call i32 @sum(i32 1, i32 2)<br>%3 = alloca i32, align 4<br>%4 = alloca i32, align 4<br>%5 = alloca i32, align 4<br>store i32 %0, i32* %3, align 4<br></div><div><br></div><div>In addition, if I call instruction.getValueOperand() and on the result I call ->dump() I can see i32 %0 as expected but what kind of instruction is returned by getValueOperand()? In the end I would like to understand how to identify if the %0 is a parameter or not.</div><div><br></div><div>Thanks a lot</div><div>Alberto<br></div><div><br></div></div></div></div>