Just starting out? Need help? Post your questions and find answers here.
Fred
Administrator
Posts: 18161 Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:
Post
by Fred » Wed Apr 30, 2008 7:29 pm
Using 'DisableDebugger' don't turn on post-generation assembly optimizer, so it's not a good idea to use the debugger on to do speed test. That said, i just fixed the PUSH/POP issue.
Sparkie
PureBatMan Forever
Posts: 2307 Joined: Tue Feb 10, 2004 3:07 am
Location: Ohio, USA
Post
by Sparkie » Wed Apr 30, 2008 8:18 pm
Thanks Fred
What goes around comes around.
PB 5.21 LTS (x86) - Windows 8.1
DoubleDutch
Addict
Posts: 3220 Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:
Post
by DoubleDutch » Wed Apr 30, 2008 9:20 pm
Code: Select all
post-generation assembly optimizer
When was this added?
i just fixed the PUSH/POP issue.
Derek
Addict
Posts: 2354 Joined: Wed Apr 07, 2004 12:51 am
Location: England
Post
by Derek » Wed Apr 30, 2008 10:06 pm
Fred wrote: That said, i just fixed the PUSH/POP issue.
Cheers Fred, great work.
Fred
Administrator
Posts: 18161 Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:
Post
by Fred » Thu May 01, 2008 12:46 am
DoubleDutch wrote: Code: Select all
post-generation assembly optimizer
When was this added?
Since the first PB version. It's a peephole optimizer which detect patterns and replace them with more efficient versions.
Demivec
Addict
Posts: 4260 Joined: Mon Jul 25, 2005 3:51 pm
Location: Utah, USA
Post
by Demivec » Thu May 01, 2008 1:21 am
Fred wrote: Using 'DisableDebugger' don't turn on post-generation assembly optimizer, so it's not a good idea to use the debugger on to do speed test. That said, i just fixed the PUSH/POP issue.
Thanks Fred.