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

2008-08-23 Thread Rohan Sreeram
Seema Ravandale <[EMAIL PROTECTED]> Cc: Rohan Sreeram <[EMAIL PROTECTED]>; [EMAIL PROTECTED] Sent: Thursday, August 21, 2008 4:17:12 AM Subject: Re: How to use gcc source and try new optmization techniques Rohan, Welcome to GCC and I hope you achieve what you want. I would recommend

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

2008-08-23 Thread Rohan Sreeram
, 2008 11:35:10 PM Subject: Re: How to use gcc source and try new optmization techniques 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=downl

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

2008-08-23 Thread Rohan Sreeram
anks, Rohan - Original Message From: Matthew <[EMAIL PROTECTED]> To: Rohan Sreeram <[EMAIL PROTECTED]> Sent: Wednesday, August 20, 2008 10:30:07 PM Subject: Re: How to use gcc source and try new optmization techniques I'm in a similar position, but some pointers. > 1) Und

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

2008-08-21 Thread Manuel López-Ibáñez
Rohan, Welcome to GCC and I hope you achieve what you want. I would recommend you check our wiki: http://gcc.gnu.org/wiki which has some very useful links: http://gcc.gnu.org/wiki/GettingStarted It is a wiki, so feel free to correct mistakes, improve stuff and add links. If you want to create

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 21, 2008 at 6

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

2008-08-20 Thread Pranav Bhandarkar
Hi, I may not have correctly understood your questions but from what I understand I think you mean to ask how you could easily plug in your optimization pass into GCC so as to test your implementation of some optimization. Well, the way to do that would be to understand the pass structure and dec