Displaying 3 results from an estimated 3 matches for "tp58435p58583".
2013 Jun 11
0
[LLVMdev] Getting the memory address of all operands on an expression
Hi Abhinash,
On 10/06/13 23:05, Abhinash Jain wrote:
> How to get memory address of all operands which constitutes an expression ?
in LLVM IR, the operands of most expression are registers, so don't have a
memory address. In short, you can't always succeed. However in cases where
the operands do come from memory in a fairly direct way, you can find out what
the memory is using the
2013 Jun 18
3
[LLVMdev] Getting the memory address of all operands on an expression
...tains (fetch) the values from the memory address b and c
resp. .
I want to know the way through which i can get this memory address of b and
c (in hexadecimal format).
--
View this message in context: http://llvm.1065342.n5.nabble.com/Getting-the-memory-address-of-all-operands-on-an-expression-tp58435p58583.html
Sent from the LLVM - Dev mailing list archive at Nabble.com.
2013 Jun 10
3
[LLVMdev] Getting the memory address of all operands on an expression
How to get memory address of all operands which constitutes an expression ?
eg. a=b+c; (want to know the memory address of b and c)...... Since I want
this at run time, So at assembly level this expression will become something
like as follows:-
Load r1, M[b]
Load r2, M[c]
r3=r1+r2
store M[a],r3
Now what i want to do is that, at every store instruction, I should get the
memory address of all