Pointer analysis in GCC-4.3.0 - Getting spurious pointsTo pair.

2009-06-15 Thread Seema Ravandale
and command line options  -fdump-ipa-all -funit-at-a-time  -fipa-pta, we are getting spurious pointsTo pairs as, D.1255 = { B A } , D = { B C A } Is the current analysis Flow-insensitive? Even if It is, the sperious information, D -> A should not occur. Please, Can someone clarify on this? - Seema

Updates: Workshop on Essential Abstractions in GCC, 2009

2009-05-14 Thread Seema Ravandale
Workshop on Essential Abstractions in GCC, 2009 (http://www.cse.iitb.ac.in/grc/gcc-workshop-09) - Organized by: GCC Resource Center (http://www.cse.iitb.ac.in/grc). Venue: Department

Re: ANNOUNCEMENT: Generic Data Flow Analyzer for GCC

2009-03-05 Thread Seema Ravandale
gt; to provide better warnings, and Chris Lattner said that the overhead > of doing this was very low. > The beauty of GDFA code lies within, the specifications provided for GDFA. One does not have to implement local analysis in order to incorporate new data flow analysis. (for time being, bit

Re: ANNOUNCEMENT: Generic Data Flow Analyzer for GCC

2009-03-05 Thread Seema Ravandale
Hi. Sorry for inconvenience. The link should work now. If it wont, then please have patience for few days. The work of server upgradation is going on, which might have coused problem. We are talking to system administrator for the same. The problem will be fixed within a couple of days. - Seema

ANNOUNCEMENT: Generic Data Flow Analyzer for GCC

2009-03-04 Thread seema
Announcement: gdfa - Generic data flow analyzer for GCC. Developed by: GCC resource center, IITB Patch and the Documentation can be found at the below link, http://www.cse.iitb.ac.in/grc/gdfa.html Ms. Seema S. Ravandale Project Engg, GCC Resource Center Department of Computer Science &

ANNOUNCEMENT: Generic Data Flow Analyzer for GCC

2009-03-03 Thread Seema Ravandale
Announcement: gdfa - Generic data flow analyzer for GCC. Developed by: GCC resource center, IITB Patch and the Documentation can be found at the below link, http://www.cse.iitb.ac.in/grc/gdfa.html Ms. Seema S. Ravandale Project Engg, GCC Resource Center Department of Computer Science &

Extracting Function Pointer Information??

2009-03-03 Thread Seema Ravandale
ts to foo would be stored. Is there any way to find it out? - Seema Ravandale Note: I am working on GCC-4.3.0

Re: How to use gcc source and try new optmization techniques

2008-08-20 Thread Seema Ravandale
Hi Rohan, I have already worked on cfg data structure, plugin "data flow pass" on cfg. For this purpose, following links would be useful. http://www.cse.iitb.ac.in/~uday/gcc-workshop/?file=downloads more info can be available at http://www.cse.iitb.ac.in/grc/ - Seema On Thu, Aug 2

Re: mf-runtime.c IC error..

2007-06-11 Thread Seema S. Ravandale
allocation so that there will be fewer calls to ggc_realloc, "Make" went through. Is there any known/similar problem related to ggc_realloc() ?? Is it to do with book-keeping information getting merged with allocated memory or it is taken care by gcc-garbage collector?? Thank you. - Seema

mf-runtime.c IC error..

2007-06-11 Thread Seema S. Ravandale
__mf_sigusr1_respond’: ../../../src/gcc-4.0.2/libmudflap/mf-runtime.c:2192: internal compiler error: Segmentation fault What could be the possible reasons for such error?? -- Seema S. Ravandale, Research Fellow, Centre for Formal Design and Verification of Softwares, Indian Institute of Technology, Bombay.

What is purpose of numbered variables??

2007-06-01 Thread Seema S. Ravandale
operations. Is this only purpose in case of globals?? e.g int b; //local variable array[b] = c will be translated to b.0 = b; array[b.0] = c anything to do with SSA? What if we disable them? -Seema Ravandale

Re:Access to symbol table??

2007-05-31 Thread Seema S. Ravandale
stores scope information at IR level... -Seema

Re: Access to symbol table??

2007-05-31 Thread Seema S. Ravandale
> On 5/31/07, Seema S. Ravandale <[EMAIL PROTECTED]> wrote: >> Hi... >> This is Seema here. I am working on GCC in IITB as research fellow. >> >> Actually i am trying to find out scope information of a variable. > >> But i >> didnt find any inform

Access to symbol table??

2007-05-31 Thread Seema S. Ravandale
Hi... This is Seema here. I am working on GCC in IITB as research fellow. Actually i am trying to find out scope information of a variable. But i didnt find any information within "decl" data structure of a variable. somewhere i read that "level # attribute" gives the inforamt