On Monday 29 March 2010 12:47:30 Jakob Stoklund Olesen wrote:> On Mar 2, 2010, at 1:45 PM, David Greene wrote: > > -print-before-all > > -print-after-all > > What's the difference between printing before all passes and printing after > all passes?So you want an IR dump before the very first pass? Do you want one after the very last pass? Usually I use both so I get before/after dumps for each pass. -Dave
On Mar 29, 2010, at 11:12 AM, David Greene wrote:> On Monday 29 March 2010 12:47:30 Jakob Stoklund Olesen wrote: >> On Mar 2, 2010, at 1:45 PM, David Greene wrote: >>> -print-before-all >>> -print-after-all >> >> What's the difference between printing before all passes and printing after >> all passes? > > So you want an IR dump before the very first pass? Do you want one after the > very last pass? > > Usually I use both so I get before/after dumps for each pass.I see that you are already collapsing before/after dumps so there is a most one dump between passes. Would it make sense to merge these two options into one?
On Monday 29 March 2010 13:49:32 Jakob Stoklund Olesen wrote:> I see that you are already collapsing before/after dumps so there is a most > one dump between passes. Would it make sense to merge these two options > into one?Actually, they're not merged right now. That was one of the things lost during review. But I think I could add it back in a follow-up patch. It might make sense to merge the options. I don't think I've ever used them separately. Again, I'd do that as a follow-up. -Dave