tags:

views:

110

answers:

1

Hello, I'm finishing up a VBS2-powered game and am about to begin optimizing the code and improve performance. I can't seem to find any code profiling tools that can analyze the proprietary VBS2 scripting language. Does anyone have any suggestions for tools I can use to analyze the performance of these scripts, or the processes/threads that make up my game? At this point, I'm just trying to find any tools that can help me analyze the performance of my application at any level.

Thanks so much in advance for your help!

+1  A: 

I'm not familiar with VBS2, but can you take stackshots? Tools can help, like pstack, but if you just have a debugger with a pause button or ctrl-break, you can do it. Here's a blow-by-blow example of using them for performance tuning. Here's a short explanation.

Mike Dunlavey