search for: nedev

Displaying 3 results from an estimated 3 matches for "nedev".

Did you mean: netdev
2010 Aug 07
3
[LLVMdev] Determine whether a stored variable is local or global in the code of LLVM 2.7
Hi, I am trying to modify visitStoreInst() function in Execution.cpp of LLVM 2.7 to do some extra things. How I can determine whether the stored variable is global or local for some function? Regards, Nayden -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100806/fba58a79/attachment.html>
2010 Aug 09
0
[LLVMdev] Determine whether a stored variable is local or global in the code of LLVM 2.7
...d like to know something different than that. How I can determine if the address at which data is stored is part of the heap or part of the stack. Regards, Nayden On Sat, Aug 7, 2010 at 3:22 AM, Patrick Marlier <patrick.marlier at unine.ch>wrote: > >> On 08/07/2010 04:41 AM, Nayden Nedev wrote: >> >>> Hi, >>> >>> I am trying to modify visitStoreInst() function in Execution.cpp of LLVM >>> 2.7 to do some extra things. How I can determine whether the stored >>> variable is global or local for some function? >>> >>>...
2010 Aug 28
0
[LLVMdev] get the size of pointed object by an argument of a function
Hi, I would like to get a copy of all arguments of a called function in LLVM. Unfortunately, when the argument is void* the size of the pointed object in LLVM is one byte (it is treated as char*), and I cannot get the size of the pointed object in Interpreter::visitCallSite(CallSite CS). Do you know how to get this? I just would like to get a copy of the pointed object by the argument. --Nayden