Displaying 3 results from an estimated 3 matches for "insttrument".
Did you mean:
instrument
2005 Jan 16
2
[LLVMdev] getting all def-uses
Hi,
I want to get all the d-u pairs exercised at run-time. I am doing
two things for this. I am useing the d-u iterator to instrument all uses.
I also want to get an address trace. What are the instructions I should
insttrument. Is load and store sufficient. Also, how do I go abt doing
this ?
Thanks
-Sriraman.
2005 Jan 17
0
[LLVMdev] getting all def-uses
On Sun, 16 Jan 2005, Sriraman Tallam wrote:
> I want to get all the d-u pairs exercised at run-time. I am doing
> two things for this. I am useing the d-u iterator to instrument all uses.
> I also want to get an address trace. What are the instructions I should
> insttrument. Is load and store sufficient. Also, how do I go abt doing
> this ?
Hi Sriraman,
If you are looking for accessed memory locations, instrumenting loads and
stores should be sufficient. To do this, just walk to program (e.g. all
BB's in a function, all instructions in a BB) and for each l...
2005 Jan 17
1
[LLVMdev] getting all def-uses
...Sun, 16 Jan 2005, Sriraman Tallam wrote:
>
> > I want to get all the d-u pairs exercised at run-time. I am doing
> > two things for this. I am useing the d-u iterator to instrument all uses.
> > I also want to get an address trace. What are the instructions I should
> > insttrument. Is load and store sufficient. Also, how do I go abt doing
> > this ?
>
> Hi Sriraman,
>
> If you are looking for accessed memory locations, instrumenting loads and
> stores should be sufficient. To do this, just walk to program (e.g. all
> BB's in a function, all instr...