Displaying 1 result from an estimated 1 matches for "getmopptrsize".
2011 Feb 17
2
[LLVMdev] Getting load/store byte size
I'm instrumenting memory loads and stores in a LLVM module pass. In this
work, I need to do
(1) Getting memory address of the operand, (Looks I've done correctly)
(2) Getting memory read/write size, (Question)
(3) Location id of the load/store instruction. (Easy, I've done)
For example, say that I'm reading a local variable 'a':
%1 = load i32* %a, align 4
I need to know