search for: aashays

Displaying 5 results from an estimated 5 matches for "aashays".

Did you mean: aashay
2010 Apr 06
2
[LLVMdev] Getting size of array allocations
Hi, Pardon me if the terminology I use is off, I'm new to this. Given a statement int a[10]; llvm-gcc generates the following alloca instruction: %a = alloca [10 x i32] This is different than the type of instruction generated by the AllocaInst constructor, which is of the type: %a = alloca i32, i32 10 Now, how do I go about extracting '10' as the array size from the first alloca
2010 Apr 06
0
[LLVMdev] Getting size of array allocations
On 5 April 2010 22:27, aashays <aashay.shringarpure at gatech.edu> wrote: > > Now, how do I go about extracting '10' as the array size from the first > alloca instruction? isArrayAllocation returns false and getArraySize returns > 1. > As a guess, get the type of the first alloca instruction, [10 x...
2013 Mar 11
1
[LLVMdev] regarding C++11 plugins
Hi all, I have written a Clang plug-in which uses some c++11 keywords. Coz of that I am able to load that plug-in. Can you just help me out. It produces lots of warnings at those keywords. Thanks.. -Aashay PICT, Pune -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130311/ccc43416/attachment.html>
2013 Mar 02
0
[LLVMdev] code for static taint analysis
Hi, you have given the following link for the code of static taint analysis but its showing the page not found error. Can you just help me out. * "The code for static taint analysis (which should be similar to what you need) is now publicly available. You can find the code at https://github.com/thinkmoore/llvm-deps." -- John T. *thanks. -------------- next part -------------- An
2013 Mar 02
0
[LLVMdev] Clang Plugin
Hi all, Actually I am trying to build a clang plugin for finding the data dependency in any source file like C/C++ as input file. And have to use the concept called use-def chain in that.so I thought k previous mentioned link will be useful. I have already built the LLVM and currently developed some small plugins also. But stuck up further... :( If possible can any one help me out